From afab3ac45242ccdeea587d285af26aadafd5979c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Dominik=20=C5=BBegle=C5=84?= Date: Mon, 8 Apr 2024 23:48:16 +0200 Subject: [PATCH] Storylines (#125) * Improve mission dialog layout * wip * Update storybook * Rework mission system * Fix asteroid mining order * Add mission generator * Simplify Observer type * Add trade tutorial * Remove unused files * Drop .m. part of conversation filename * Fix mission chains * Fix copy * Add pirate removing tutorial * Use fromPolar util * Degrade Russo to commander * Fix case when player ends conversation * Add rescue missions * Fix negative trade offer * Add tutorial end * Update base save * Update readme --- .storybook/main.js | 2 +- README.md | 2 +- _templates/mission/new/conversation.ejs.t | 19 + _templates/mission/new/mission.ejs.t | 58 + build/conversation-loader.ts | 53 + core/components/journal.ts | 6 + core/components/missions.ts | 11 +- core/hooks.ts | 2 +- core/sim/Sim.ts | 34 +- core/sim/baseConfig.ts | 21 +- core/systems/ai/orderPlanning.ts | 34 +- core/systems/fogOfWarUpdating.ts | 2 +- core/systems/mission/destroy.ts | 167 - core/systems/mission/generic/ship-rescue.ts | 190 + .../mission/main/ffw/tutorial-autoorder.ts | 79 + .../mission/main/ffw/tutorial-escort.ts | 114 + .../mission/main/ffw/tutorial-miner.ts | 96 + .../mission/main/ffw/tutorial-pirates.ts | 128 + .../mission/main/ffw/tutorial-trade.ts | 108 + core/systems/mission/mapping.ts | 29 + core/systems/mission/mission.ts | 81 +- core/systems/mission/patrol.ts | 137 - core/systems/mission/rewards.ts | 49 +- core/systems/mission/types.ts | 22 +- core/systems/orderExecuting/misc.ts | 31 +- core/systems/orderExecuting/patrol.ts | 9 +- core/systems/pirateSpawning.ts | 11 +- core/systems/utils/entityIndex.ts | 8 +- core/systems/utils/sectorIndex.ts | 39 +- core/tags.ts | 1 + core/utils/generators.ts | 29 + core/utils/misc.ts | 4 + core/utils/moving.ts | 43 +- core/utils/observer.ts | 15 +- core/utils/trading.ts | 4 +- core/world/asteroids.ts | 15 +- core/world/data/base.json | 145930 +++++++-------- core/world/data/map.json | 14 +- core/world/data/missions.json | 154 - .../data/missions/generic/ship-rescue.d.ts | 9 + .../data/missions/generic/ship-rescue.yml | 21 + .../missions/main/ffw/tutorial-autoorder.d.ts | 9 + .../missions/main/ffw/tutorial-autoorder.yml | 14 + .../data/missions/main/ffw/tutorial-end.d.ts | 9 + .../data/missions/main/ffw/tutorial-end.yml | 12 + .../missions/main/ffw/tutorial-escort.d.ts | 9 + .../missions/main/ffw/tutorial-escort.yml | 34 + .../missions/main/ffw/tutorial-miner.d.ts | 9 + .../data/missions/main/ffw/tutorial-miner.yml | 38 + .../missions/main/ffw/tutorial-pirates.d.ts | 9 + .../missions/main/ffw/tutorial-pirates.yml | 42 + .../missions/main/ffw/tutorial-trade.d.ts | 9 + .../data/missions/main/ffw/tutorial-trade.yml | 34 + core/world/data/missions/schema.json | 50 + core/world/data/shipNames.json | 14 + core/world/data/ships.json | 6 +- core/world/index.ts | 21 +- core/world/teleporters.ts | 3 +- jest.config.js | 2 +- kit/Dialog.tsx | 20 +- kit/Dropdown.scss | 1 + kit/Scrollbar.scss | 7 + kit/Scrollbar.scss.d.ts | 4 + kit/Scrollbar.tsx | 15 + kit/theming/global.scss | 2 + package-lock.json | 45758 +++-- package.json | 18 +- ui/atoms.ts | 11 +- ui/components/ConfigDialog.tsx | 2 +- ui/components/ContextMenu/ShipToSpace.tsx | 3 +- .../ConversationDialog.stories.tsx | 31 + .../ConversationDialog/ConversationDialog.tsx | 154 + ui/components/ConversationDialog/index.ts | 1 + ui/components/ConversationDialog/styles.scss | 47 + .../styles.scss.d.ts} | 3 + ui/components/ImmediateConversation.tsx | 47 + .../MissionDialog/MissionDialog.scss | 26 - .../MissionDialog/MissionDialog.stories.tsx | 52 - ui/components/MissionDialog/MissionDialog.tsx | 33 +- .../MissionDialog/MissionDialogComponent.tsx | 128 - ui/components/MissionDialog/index.ts | 1 - .../MissionsOverlay.stories.tsx | 3 + .../MissionsOverlayComponent.tsx | 22 +- ui/components/Panel/Panel.tsx | 5 + ui/hooks/useObservable.ts | 17 + ui/views/Game.tsx | 16 +- ui/views/Load.tsx | 2 +- ui/views/NewGame.tsx | 5 +- ui/workers/headlessSim.ts | 4 +- webpack.d.ts => webpack-files.d.ts | 0 webpack.config.js => webpack.config.ts | 8 + 91 files changed, 95504 insertions(+), 99047 deletions(-) create mode 100644 _templates/mission/new/conversation.ejs.t create mode 100644 _templates/mission/new/mission.ejs.t create mode 100644 build/conversation-loader.ts delete mode 100644 core/systems/mission/destroy.ts create mode 100644 core/systems/mission/generic/ship-rescue.ts create mode 100644 core/systems/mission/main/ffw/tutorial-autoorder.ts create mode 100644 core/systems/mission/main/ffw/tutorial-escort.ts create mode 100644 core/systems/mission/main/ffw/tutorial-miner.ts create mode 100644 core/systems/mission/main/ffw/tutorial-pirates.ts create mode 100644 core/systems/mission/main/ffw/tutorial-trade.ts create mode 100644 core/systems/mission/mapping.ts delete mode 100644 core/systems/mission/patrol.ts delete mode 100644 core/world/data/missions.json create mode 100644 core/world/data/missions/generic/ship-rescue.d.ts create mode 100644 core/world/data/missions/generic/ship-rescue.yml create mode 100644 core/world/data/missions/main/ffw/tutorial-autoorder.d.ts create mode 100644 core/world/data/missions/main/ffw/tutorial-autoorder.yml create mode 100644 core/world/data/missions/main/ffw/tutorial-end.d.ts create mode 100644 core/world/data/missions/main/ffw/tutorial-end.yml create mode 100644 core/world/data/missions/main/ffw/tutorial-escort.d.ts create mode 100644 core/world/data/missions/main/ffw/tutorial-escort.yml create mode 100644 core/world/data/missions/main/ffw/tutorial-miner.d.ts create mode 100644 core/world/data/missions/main/ffw/tutorial-miner.yml create mode 100644 core/world/data/missions/main/ffw/tutorial-pirates.d.ts create mode 100644 core/world/data/missions/main/ffw/tutorial-pirates.yml create mode 100644 core/world/data/missions/main/ffw/tutorial-trade.d.ts create mode 100644 core/world/data/missions/main/ffw/tutorial-trade.yml create mode 100644 core/world/data/missions/schema.json create mode 100644 core/world/data/shipNames.json create mode 100644 kit/Scrollbar.scss create mode 100644 kit/Scrollbar.scss.d.ts create mode 100644 kit/Scrollbar.tsx create mode 100644 ui/components/ConversationDialog/ConversationDialog.stories.tsx create mode 100644 ui/components/ConversationDialog/ConversationDialog.tsx create mode 100644 ui/components/ConversationDialog/index.ts create mode 100644 ui/components/ConversationDialog/styles.scss rename ui/components/{MissionDialog/MissionDialog.scss.d.ts => ConversationDialog/styles.scss.d.ts} (52%) create mode 100644 ui/components/ImmediateConversation.tsx delete mode 100644 ui/components/MissionDialog/MissionDialog.scss delete mode 100644 ui/components/MissionDialog/MissionDialog.stories.tsx delete mode 100644 ui/components/MissionDialog/MissionDialogComponent.tsx create mode 100644 ui/hooks/useObservable.ts rename webpack.d.ts => webpack-files.d.ts (100%) rename webpack.config.js => webpack.config.ts (93%) diff --git a/.storybook/main.js b/.storybook/main.js index 3eec4766..8958acbb 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -1,4 +1,4 @@ -import custom from "../webpack.config.js"; +import custom from "../webpack.config.ts"; module.exports = { stories: [ diff --git a/README.md b/README.md index 581d3dc0..537212ed 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # Sector Alpha -Welcome to Sector Alpha, where you take on the role of a fleet commander in a universe that's living its own life. Set in the 2600s, shortly after humankind's first encounter with the enigmatic Tau in Tau Ceti system, this game unfolds in a world shrouded in mystery. Humanity knows little about the Tau, and fear is our constant companion. +Welcome to Sector Alpha, where you take on the role of a fleet commander in a universe that's living its own life. Set in the 2500s, shortly after humankind's first encounter with the enigmatic Tau in Tau Ceti system, this game unfolds in a world shrouded in mystery. Humanity knows little about the Tau, and fear is our constant companion. ### Game Features diff --git a/_templates/mission/new/conversation.ejs.t b/_templates/mission/new/conversation.ejs.t new file mode 100644 index 00000000..6238b5ad --- /dev/null +++ b/_templates/mission/new/conversation.ejs.t @@ -0,0 +1,19 @@ +--- +to: core/world/data/missions/<%= name.split(".").join("/") %>.yml +--- + +Start: npc.greeting + +Actors: + npc: + name: NPC + lines: + greeting: + text: Line + next: + - player.greeting + + player: + lines: + greeting: + text: Response diff --git a/_templates/mission/new/mission.ejs.t b/_templates/mission/new/mission.ejs.t new file mode 100644 index 00000000..31e15c46 --- /dev/null +++ b/_templates/mission/new/mission.ejs.t @@ -0,0 +1,58 @@ +--- +to: core/systems/mission/<%= name.split(".").join("/") %>.ts +--- + +import Mustache from "mustache"; +import type { Mission, MissionCommon } from "@core/components/missions"; +import { first } from "@fxts/core"; +import type { Sim } from "@core/sim"; +import type { MissionHandler } from "../../types"; +import conversation from "../../../../world/data/missions/<%= name.split(".").join("/") %>.yml"; + +Mustache.escape = (text) => text; + +interface <%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_"), false) %>Mission extends Mission { + type: "<%= name %>"; +} + +export const <%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_"), true) %>Mission = ( + minerId: number, + common: MissionCommon +): <%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_")) %>Mission => ({ + ...common, + minerId, + type: "<%= name %>", +}); + +export const is<%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_")) %>Mission = ( + mission: Mission +): mission is <%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_")) %>Mission => + mission.type === "<%= name %>"; + +export const <%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_"), true) %>MissionHandler: MissionHandler = { + generate: (_sim) => ({ + conversation, + rewards: [], + type: "<%= name %>", + }), + accept: (sim, offer) => { + const player = first(sim.queries.player.getIt())!; + + return <%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_"), true) %>Mission(miner.id, { + accepted: sim.getTime(), + }); + }, + isFailed: (mission, sim) => { + if (!is<%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_")) %>Mission(mission)) + throw new Error("Mission is not a <%= name %> mission"); + }, + isCompleted: (mission: Mission, sim) => { + if (!is<%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_")) %>Mission(mission)) + throw new Error("Mission is not a <%= name %> mission"); + }, + update: (mission: Mission, _sim: Sim) => { + if (!is<%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_")) %>Mission(mission)) + throw new Error("Mission is not a <%= name %> mission"); + }, + formatProgress: (mission: <%= h.inflection.camelize(name.replace(/\./g, "_").replace(/-/g, "_")) %>Mission) => "", +}; diff --git a/build/conversation-loader.ts b/build/conversation-loader.ts new file mode 100644 index 00000000..c141d073 --- /dev/null +++ b/build/conversation-loader.ts @@ -0,0 +1,53 @@ +/* eslint-disable no-invalid-this */ + +import { load } from "js-yaml"; +import type webpack from "webpack"; +import fs from "fs"; +import path from "path"; +import AJV from "ajv"; +import schema from "../core/world/data/missions/schema.json"; + +const validator = new AJV(); + +// eslint-disable-next-line func-names +const loader: webpack.LoaderDefinition = function (this, content) { + const parsed = load(content, { + json: true, + }); + if (!validator.validate(schema, parsed)) { + throw new Error(validator.errorsText()); + } + + const filename = `${this.resourcePath.split(".yml")[0]}.d.ts`; + + let fileContent = ""; + try { + fileContent = fs.readFileSync(filename).toString(); + } catch (err) { + if (err.code !== "ENOENT") { + throw err; + } + } + + const generatedContent = `/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/${path.relative( + path.join(process.cwd(), "core/world/data"), + this.resourcePath + )}" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} +`; + + if (fileContent !== generatedContent) { + fs.writeFileSync(filename, generatedContent); + } + + return `export default ${JSON.stringify(parsed)}`; +}; + +export default loader; diff --git a/core/components/journal.ts b/core/components/journal.ts index 26d22e75..e05189e0 100644 --- a/core/components/journal.ts +++ b/core/components/journal.ts @@ -26,6 +26,12 @@ export interface TradeEntry extends Entry { * entity) */ target: string; + /** + * ID of target object + * + * Entity may not exist anymore, therefore sim.getOrThrow should not be used + */ + targetId: number; price: number; action: TradeOfferType; } diff --git a/core/components/missions.ts b/core/components/missions.ts index 1ddcd436..51108c6c 100644 --- a/core/components/missions.ts +++ b/core/components/missions.ts @@ -1,4 +1,4 @@ -import type { MissionOffer } from "@ui/components/MissionDialog"; +import type { MissionConversation } from "@core/systems/mission/types"; import type { BaseComponent } from "./component"; export type Reward = { @@ -23,12 +23,21 @@ export interface MissionCommon { max: number; label?: string; }; + cancellable: boolean; } export type Mission = MissionCommon & { type: string; [key: string]: any; }; +export interface MissionOffer { + conversation: MissionConversation; + rewards: Reward[]; + type: string; + immediate: boolean; + data?: Record; +} + export interface Missions extends BaseComponent<"missions"> { /** * Time at which the last mission was declined diff --git a/core/hooks.ts b/core/hooks.ts index 8ecef299..718f6f61 100644 --- a/core/hooks.ts +++ b/core/hooks.ts @@ -1,3 +1,3 @@ import { Observable } from "./utils/observer"; -export const storageHook = new Observable<[string]>("storage"); +export const storageHook = new Observable("storage"); diff --git a/core/sim/Sim.ts b/core/sim/Sim.ts index cedb56ca..d15c2149 100644 --- a/core/sim/Sim.ts +++ b/core/sim/Sim.ts @@ -31,31 +31,29 @@ export class Sim extends BaseSim { @Expose() entityIdCounter: number = 0; hooks: { - addComponent: Observable< - [{ entity: Entity; component: keyof CoreComponents }] - >; - removeComponent: Observable< - [ - { - entity: Entity; - component: keyof CoreComponents; - } - ] - >; - addTag: Observable<[{ entity: Entity; tag: EntityTag }]>; - removeTag: Observable<[{ entity: Entity; tag: EntityTag }]>; - removeEntity: Observable<[Entity]>; - destroy: Observable<[]>; + addComponent: Observable<{ + entity: Entity; + component: keyof CoreComponents; + }>; + removeComponent: Observable<{ + entity: Entity; + component: keyof CoreComponents; + }>; + addTag: Observable<{ entity: Entity; tag: EntityTag }>; + removeTag: Observable<{ entity: Entity; tag: EntityTag }>; + removeEntity: Observable; + destroy: Observable; phase: Record< "start" | "init" | "update" | "render" | "cleanup" | "end", - Observable<[number]> + Observable >; }; @Expose() @Type(() => Entity) entities: Map; + systems: System[]; queries: Queries; paths: Record>; @@ -84,8 +82,9 @@ export class Sim extends BaseSim { }; this.queries = createQueries(this); + this.systems = systems; - systems.forEach((system) => system.apply(this)); + this.systems.forEach((system) => system.apply(this)); } registerEntity = (entity: Entity) => { @@ -237,6 +236,7 @@ export class Sim extends BaseSim { sim.entities = entityMap; + sim.systems = config.systems; config.systems.forEach((system) => system.apply(sim)); Object.values(sim.queries).forEach((indexOrNested) => { if (indexOrNested instanceof Index) { diff --git a/core/sim/baseConfig.ts b/core/sim/baseConfig.ts index 3cb9f593..4050a0bd 100644 --- a/core/sim/baseConfig.ts +++ b/core/sim/baseConfig.ts @@ -18,13 +18,6 @@ import { FacilityBuildingSystem } from "@core/systems/facilityBuilding"; import { HitpointsRegeneratingSystem } from "@core/systems/hitpointsRegenerating"; import { InflationStatisticGatheringSystem } from "@core/systems/inflationStatisticGathering"; import { MiningSystem } from "@core/systems/mining"; -import { MissionSystem } from "@core/systems/mission"; -import { destroyMissionHandler } from "@core/systems/mission/destroy"; -import { patrolMissionHandler } from "@core/systems/mission/patrol"; -import { - moneyRewardHandler, - relationRewardHandler, -} from "@core/systems/mission/rewards"; import { MovingSystem } from "@core/systems/moving"; import { NavigatingSystem } from "@core/systems/navigating"; import { OrderExecutingSystem } from "@core/systems/orderExecuting/orderExecuting"; @@ -65,7 +58,8 @@ export const bootstrapSystems = [ new CrewGrowingSystem(), ]; -export const createBaseConfig = (): SimConfig => { +export const createBaseConfig = async (): Promise => { + const { MissionSystem } = await import("@core/systems/mission/mission"); const config: SimConfig = { systems: [ ...bootstrapSystems, @@ -78,16 +72,7 @@ export const createBaseConfig = (): SimConfig => { new TauHarassingSystem(), new DeadUnregisteringSystem(), new CollectibleUnregisteringSystem(), - new MissionSystem( - { - patrol: patrolMissionHandler, - destroy: destroyMissionHandler, - }, - { - money: moneyRewardHandler, - relation: relationRewardHandler, - } - ), + new MissionSystem(), new PirateSpawningSystem(), new FogOfWarUpdatingSystem(), ], diff --git a/core/systems/ai/orderPlanning.ts b/core/systems/ai/orderPlanning.ts index 4fd7703f..867f3607 100644 --- a/core/systems/ai/orderPlanning.ts +++ b/core/systems/ai/orderPlanning.ts @@ -1,17 +1,18 @@ import type { Faction } from "@core/archetypes/faction"; import { relationThresholds } from "@core/components/relations"; import { minBy } from "lodash"; -import { add, norm, random, subtract } from "mathjs"; +import { add, norm, random, subtract, distance } from "mathjs"; import { filter, flatMap, map, pipe, sum, toArray } from "@fxts/core"; import type { TransactionInput } from "@core/components/trade"; import type { Position2D } from "@core/components/position"; import { getRandomPositionInBounds } from "@core/utils/misc"; +import { hecsToCartesian } from "@core/components/hecsPosition"; import { asteroidField } from "../../archetypes/asteroidField"; import { commanderRange, facility } from "../../archetypes/facility"; import type { Waypoint } from "../../archetypes/waypoint"; import { createWaypoint } from "../../archetypes/waypoint"; import type { Sector } from "../../archetypes/sector"; -import { sector as asSector } from "../../archetypes/sector"; +import { sector as asSector, sectorSize } from "../../archetypes/sector"; import type { MineOrder, TradeOrder } from "../../components/orders"; import { mineAction } from "../../components/orders"; import { dumpCargo, getAvailableSpace } from "../../components/storage"; @@ -214,12 +215,16 @@ function autoMine( if (getAvailableSpace(entity.cp.storage) !== entity.cp.storage.max) { autoTrade(entity, sectorDistance); } else { + const baseSector = asSector( + entity.sim.getOrThrow( + (entity.cp.autoOrder.default as MineOrder).sectorId! + ) + ); + const currentSector = asSector( + entity.sim.getOrThrow(entity.cp.position.sector) + ); const sectorsInRange = getSectorsInTeleportRange( - asSector( - entity.sim.getOrThrow( - (entity.cp.autoOrder.default as MineOrder).sectorId! - ) - ), + baseSector, sectorDistance, entity.sim ); @@ -241,8 +246,19 @@ function autoMine( toArray ); const field = minBy(eligibleFields, (e) => - norm( - subtract(entity.cp.position.coord, e.cp.position.coord) as Position2D + distance( + add( + hecsToCartesian(currentSector.cp.hecsPosition.value, sectorSize), + entity.cp.position.coord + ), + add( + hecsToCartesian( + entity.sim.getOrThrow(e.cp.position.sector).cp.hecsPosition + .value, + sectorSize + ), + e.cp.position.coord + ) ) ); diff --git a/core/systems/fogOfWarUpdating.ts b/core/systems/fogOfWarUpdating.ts index da28bcc8..300f2b9e 100644 --- a/core/systems/fogOfWarUpdating.ts +++ b/core/systems/fogOfWarUpdating.ts @@ -127,7 +127,7 @@ export class FogOfWarUpdatingSystem extends System<"exec"> { entity.cp.render!.visible && (entity.tags.has("facility") || entity.tags.has("collectible")) ) { - entity.tags.add("discovered"); + entity.addTag("discovered"); } } } diff --git a/core/systems/mission/destroy.ts b/core/systems/mission/destroy.ts deleted file mode 100644 index deadafbb..00000000 --- a/core/systems/mission/destroy.ts +++ /dev/null @@ -1,167 +0,0 @@ -import Mustache from "mustache"; -import type { Mission, MissionCommon } from "@core/components/missions"; -import { relationThresholds } from "@core/components/relations"; -import { pickRandom } from "@core/utils/generators"; -import { random, randomInt } from "mathjs"; -import { first, map, pipe, repeat, toArray } from "@fxts/core"; -import { createShip } from "@core/archetypes/ship"; -import { shipClasses } from "@core/world/ships"; -import { addSubordinate } from "@core/components/subordinates"; -import type { Position2D } from "@core/components/position"; -import type { Sim } from "@core/sim"; -import missions from "../../world/data/missions.json"; -import type { MissionHandler } from "./types"; -import { getRelationFactor } from "./utils"; - -Mustache.escape = (text) => text; - -interface DestroyMission extends Mission { - type: "destroy"; - entities: number[]; - faction: number; -} - -export const destroyMission = ( - entityIds: number[], - faction: number, - common: MissionCommon -): DestroyMission => ({ - ...common, - entities: entityIds, - type: "destroy", - faction, -}); - -const isDestroyMission = (mission: Mission): mission is DestroyMission => - mission.type === "destroy"; - -export const destroyMissionHandler: MissionHandler = { - generate: (sim) => { - const player = first(sim.queries.player.getIt())!; - const faction = pickRandom( - sim.queries.ai - .get() - .filter( - (f) => player.cp.relations.values[f.id] >= relationThresholds.mission - ) - ); - if (!faction) return null; - - const sector = pickRandom( - sim.queries.sectors - .get() - .filter( - (s) => - s.cp.owner?.id === faction.id && - !player.cp.missions.value.some( - (mission) => mission.sectorId === s.id - ) - ) - ); - const variant = pickRandom(["Pirates"] as const); - - const withFacility = Math.random() > 0.75; - - const pirateFaction = sim.queries.ai - .get() - .find((f) => f.cp.name.slug === "PIR")!; - const shipClass = shipClasses.find((s) => s.slug === "roach")!; - const spawnPoint: Position2D = [randomInt(-0.3, 0.3), randomInt(-0.3, 0.3)]; - const entities = pipe( - repeat(randomInt(2, 4), () => - createShip(sim, { - ...shipClass, - owner: pirateFaction, - position: spawnPoint, - sector, - }) - ), - map((cb) => cb()), - toArray - ); - - entities[0].cp.autoOrder.default = { - type: "pillage", - sectorId: sector.id, - clockwise: Math.random() > 0.5, - }; - entities.slice(1).forEach((entity) => { - addSubordinate(entities[0], entity); - entity.cp.autoOrder.default = { - type: "escort", - targetId: entities[0].id, - }; - }); - - const reward = Math.round( - (entities.length * randomInt(25, 35) + - (withFacility ? randomInt(800, 1200) : 0)) * - 1000 * - getRelationFactor(faction) - ); - - const template = pickRandom( - missions[`destroy${variant}`].filter( - (mission) => withFacility === (mission.variant === "facilityRaid") - ) - ); - const transform = (text: string) => - Mustache.render(text, { - faction: faction.cp.name.value, - sector: sector.cp.name.value, - reward, - }); - - return { - title: transform(template.title), - prompt: transform(template.prompt), - actorName: "Local Police", - responses: template.responses.map((r) => ({ - next: transform(r.next), - text: transform(r.text), - actor: "player", - type: r.type as "accept" | "decline" | "neutral", - })), - data: destroyMission( - entities.map((e) => e.id), - faction.id, - { - accepted: sim.getTime(), - title: transform(template.title), - description: transform(template.description), - rewards: [ - { type: "money", amount: reward }, - { type: "relation", amount: random(1, 2), factionId: faction.id }, - ], - references: [ - { id: sector.id, name: sector.cp.name.value }, - ...entities.map((e) => ({ id: e.id, name: e.cp.name.value })), - ], - progress: { - current: 0, - max: entities.length, - }, - } - ), - }; - }, - isFailed: () => false, - isCompleted: (mission: Mission, sim) => { - if (!isDestroyMission(mission)) - throw new Error("Mission is not a destroy mission"); - - return mission.entities.every((id) => !sim.get(id)); - }, - update: (mission: Mission, sim: Sim) => { - if (!isDestroyMission(mission)) - throw new Error("Mission is not a destroy mission"); - - const destroyed = mission.entities.filter((id) => !sim.get(id)); - mission.progress.current -= destroyed.length; - mission.references = mission.references.filter( - (r) => !destroyed.includes(r.id) - ); - }, - formatProgress: (mission: Mission) => - `${mission.progress.current} / ${mission.progress.max} destroyed`, -}; diff --git a/core/systems/mission/generic/ship-rescue.ts b/core/systems/mission/generic/ship-rescue.ts new file mode 100644 index 00000000..c5c94953 --- /dev/null +++ b/core/systems/mission/generic/ship-rescue.ts @@ -0,0 +1,190 @@ +import type { Mission, MissionCommon } from "@core/components/missions"; +import { filter, first, map, pipe, toArray } from "@fxts/core"; +import type { Sim } from "@core/sim"; +import { mustacheConversation, pickRandom } from "@core/utils/generators"; +import type { Sector } from "@core/archetypes/sector"; +import shipNames from "@core/world/data/shipNames.json"; +import { shipClasses } from "@core/world/ships"; +import type { Ship } from "@core/archetypes/ship"; +import { createShip, createShipName } from "@core/archetypes/ship"; +import { add, random } from "mathjs"; +import { fromPolar } from "@core/utils/misc"; +import { getSectorsInTeleportRange } from "@core/economy/utils"; +import { teleport } from "@core/utils/moving"; +import template from "../../../world/data/missions/generic/ship-rescue.yml"; +import type { MissionHandler } from "../types"; + +interface GenericShipRescueMission extends Mission { + shipId: number; + pirateIds: number[]; + type: "generic.ship-rescue"; +} + +export const genericShipRescueMission = ( + shipId: number, + pirateIds: number[], + common: MissionCommon +): GenericShipRescueMission => ({ + ...common, + shipId, + pirateIds, + type: "generic.ship-rescue", +}); + +export const isGenericShipRescueMission = ( + mission: Mission +): mission is GenericShipRescueMission => + mission.type === "generic.ship-rescue"; + +export const genericShipRescueMissionHandler: MissionHandler = { + generate: (sim) => { + const player = first(sim.queries.player.getIt())!; + // Teleport ship instead of creating new one to avoid accidental + // strenthening faction's fleet + const playerShip = pickRandom( + pipe( + sim.queries.ships.getIt(), + filter((ship) => ship.cp.owner.id === player.id), + toArray + ) + ); + const isMiner = Math.random() > 0.5; + const shipName = pickRandom(shipNames.ffw[isMiner ? "miner" : "freighter"]); + const sectorsInRange = pipe( + getSectorsInTeleportRange( + sim.getOrThrow(playerShip.cp.position.sector), + 2, + sim + ), + map((s) => s.id), + toArray + ); + const ffw = sim.queries.ai.get().find((f) => f.cp.name.slug === "FFW")!; + const ship = pickRandom( + pipe( + sim.queries.ships.getIt(), + filter( + (s) => + s.cp.owner.id === ffw.id && + s.tags.has(isMiner ? "role:mining" : "role:transport") && + s.cp.dockable.size === "medium" && + sectorsInRange.includes(s.cp.position.sector) + ), + toArray + ) + ); + if (!ship) return null; + + const sector = sim.getOrThrow(playerShip.cp.position.sector); + + const conversation = mustacheConversation(template, { + ship: shipName, + sector: sector.cp.name.value, + }); + + return { + conversation, + rewards: [], + type: "generic.ship-rescue", + immediate: false, + data: { + sector: sector.id, + playerShip: playerShip.id, + shipName, + shipId: ship.id, + isMiner, + }, + }; + }, + accept: (sim, offer) => { + const playerShip = sim.getOrThrow(offer.data!.playerShip); + const ship = sim.getOrThrow(offer.data!.shipId); + teleport( + ship, + add( + playerShip.cp.position.coord, + fromPolar(random(-Math.PI, Math.PI), 6) + ), + playerShip.cp.position.sector + ); + ship.cp.orders.value = []; + ship.cp.name.value = createShipName(ship, offer.data!.shipName); + const pirates = Array(3) + .fill(0) + .map(() => + createShip(sim, { + ...pickRandom(shipClasses.filter(({ slug }) => slug === "roach")), + angle: random(-Math.PI, Math.PI), + position: add( + ship.cp.position.coord, + fromPolar(random(-Math.PI, Math.PI), 3) + ), + owner: sim.queries.ai.get().find((f) => f.cp.name.slug === "PIR")!, + sector: sim.getOrThrow(ship.cp.position.sector), + }) + ); + pirates.forEach((p) => { + p.cp.orders.value.push({ + type: "attack", + targetId: ship.id, + actions: [], + followOutsideSector: true, + ordersForSector: ship.cp.position.sector, + origin: "mission:generic.ship-rescue", + }); + }); + + return genericShipRescueMission( + ship.id, + pirates.map((p) => p.id), + { + accepted: sim.getTime(), + cancellable: true, + description: `Captain of the ${ship.cp.name.value} is in distress, struggling to deal with pirate attacks. Rescue them before it's too late.`, + progress: { max: pirates.length, current: 0 }, + references: [ + { + id: ship.id, + name: ship.cp.name.value, + }, + ...pirates.map((p) => ({ + id: p.id, + name: p.cp.name.value, + })), + ], + rewards: [ + { + type: "money", + amount: random(20000, 35000), + }, + ], + title: `Rescue ${ship.cp.name.value}`, + } + ); + }, + isFailed: (mission, sim) => { + if (!isGenericShipRescueMission(mission)) + throw new Error("Mission is not a generic.ship-rescue mission"); + + return !sim.get(mission.shipId); + }, + isCompleted: (mission: Mission, sim) => { + if (!isGenericShipRescueMission(mission)) + throw new Error("Mission is not a generic.ship-rescue mission"); + + return ( + !!sim.getOrThrow(mission.shipId) && + mission.pirateIds.every((id) => !sim.get(id)) + ); + }, + update: (mission: Mission, sim: Sim) => { + if (!isGenericShipRescueMission(mission)) + throw new Error("Mission is not a generic.ship-rescue mission"); + + mission.progress.current = mission.pirateIds.filter( + (id) => !sim.get(id) + ).length; + }, + formatProgress: (mission: GenericShipRescueMission) => + `${mission.progress.current}/${mission.progress.max} pirates defeated`, +}; diff --git a/core/systems/mission/main/ffw/tutorial-autoorder.ts b/core/systems/mission/main/ffw/tutorial-autoorder.ts new file mode 100644 index 00000000..2699cf71 --- /dev/null +++ b/core/systems/mission/main/ffw/tutorial-autoorder.ts @@ -0,0 +1,79 @@ +import Mustache from "mustache"; +import type { Mission, MissionCommon } from "@core/components/missions"; +import { find, first } from "@fxts/core"; +import type { Sim } from "@core/sim"; +import type { Ship } from "@core/archetypes/ship"; +import type { MissionHandler } from "../../types"; +import conversation from "../../../../world/data/missions/main/ffw/tutorial-autoorder.yml"; + +Mustache.escape = (text) => text; + +interface MainFfwTutorialAutoorderMission extends Mission { + minerId: number; + type: "main.ffw.tutorial-autoorder"; +} + +export const mainFfwTutorialAutoorderMission = ( + minerId: number, + common: MissionCommon +): MainFfwTutorialAutoorderMission => ({ + ...common, + minerId, + type: "main.ffw.tutorial-autoorder", +}); + +export const isMainFfwTutorialAutoorderMission = ( + mission: Mission +): mission is MainFfwTutorialAutoorderMission => + mission.type === "main.ffw.tutorial-autoorder"; + +export const mainFfwTutorialAutoorderMissionHandler: MissionHandler = { + generate: (_sim) => ({ + conversation, + rewards: [], + type: "main.ffw.tutorial-autoorder", + immediate: true, + }), + accept: (sim, _offer) => { + const player = first(sim.queries.player.getIt())!; + const miner = find( + (s) => s.cp.owner.id === player.id && s.cp.mining, + sim.queries.ships.getIt() + )!; + + return mainFfwTutorialAutoorderMission(miner.id, { + accepted: sim.getTime(), + progress: { max: 0, current: 0 }, + cancellable: false, + description: + "This part of training requires you to set up an auto-order for your miner.", + references: [{ id: miner!.id, name: miner!.cp.name!.value }], + rewards: [ + { + type: "mission", + mission: "main.ffw.tutorial-escort", + }, + ], + title: "Tutorial: Auto-Order", + }); + }, + isFailed: (mission, sim) => { + if (!isMainFfwTutorialAutoorderMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-autoorder mission"); + + return !sim.get(mission.minerId); + }, + isCompleted: (mission: Mission, sim) => { + if (!isMainFfwTutorialAutoorderMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-autoorder mission"); + + return ( + sim.getOrThrow(mission.minerId).cp.autoOrder.default.type === "mine" + ); + }, + update: (mission: Mission, _sim: Sim) => { + if (!isMainFfwTutorialAutoorderMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-autoorder mission"); + }, + formatProgress: (_mission: MainFfwTutorialAutoorderMission) => "", +}; diff --git a/core/systems/mission/main/ffw/tutorial-escort.ts b/core/systems/mission/main/ffw/tutorial-escort.ts new file mode 100644 index 00000000..3a2bac34 --- /dev/null +++ b/core/systems/mission/main/ffw/tutorial-escort.ts @@ -0,0 +1,114 @@ +import { shipClasses } from "@core/world/ships"; +import Mustache from "mustache"; +import type { Mission, MissionCommon } from "@core/components/missions"; +import { find, first } from "@fxts/core"; +import type { Sim } from "@core/sim"; +import type { Ship } from "@core/archetypes/ship"; +import { createShip } from "@core/archetypes/ship"; +import type { Sector } from "@core/archetypes/sector"; +import { distance, random } from "mathjs"; +import type { FacilityModule } from "@core/archetypes/facilityModule"; +import conversation from "../../../../world/data/missions/main/ffw/tutorial-escort.yml"; +import type { MissionHandler } from "../../types"; + +Mustache.escape = (text) => text; + +interface MainFfwTutorialEscortMission extends Mission { + minerId: number; + fighterId: number; + type: "main.ffw.tutorial-escort"; +} + +export const mainFfwTutorialEscortMission = ( + minerId: number, + fighterId: number, + common: MissionCommon +): MainFfwTutorialEscortMission => ({ + ...common, + minerId, + fighterId, + type: "main.ffw.tutorial-escort", +}); + +export const isMainFfwTutorialEscortMission = ( + mission: Mission +): mission is MainFfwTutorialEscortMission => + mission.type === "main.ffw.tutorial-escort"; + +export const mainFfwTutorialEscortMissionHandler: MissionHandler = { + generate: (_sim) => ({ + conversation, + rewards: [], + type: "main.ffw.tutorial-escort", + immediate: true, + }), + accept: (sim, _offer) => { + const player = first(sim.queries.player.getIt())!; + const miner = find( + (s) => s.cp.owner.id === player.id && s.cp.mining, + sim.queries.ships.getIt() + )!; + const hub = find( + (f) => + f.cp.position.sector === miner.cp.position.sector && + f.cp.modules.ids.some((fm) => + sim.getOrThrow(fm).hasTags(["facilityModuleType:hub"]) + ), + sim.queries.facilities.getIt() + )!; + const escort = createShip(sim, { + ...shipClasses.find(({ slug }) => slug === "dart")!, + angle: 0, + position: [ + hub.cp.position.coord[0] + random(-0.1, 0.1), + hub.cp.position.coord[1] + random(-0.1, 0.1), + ], + owner: player, + sector: sim.getOrThrow(miner.cp.position.sector), + }); + + return mainFfwTutorialEscortMission(miner.id, escort.id, { + accepted: sim.getTime(), + cancellable: false, + description: "Use Dart fighter to escort your miner", + progress: { max: 0, current: 0 }, + references: [ + { id: miner!.id, name: miner!.cp.name!.value }, + { id: escort!.id, name: escort!.cp.name!.value }, + ], + rewards: [ + { + type: "mission", + mission: "main.ffw.tutorial-pirates", + }, + ], + title: "Tutorial: Escorting", + }); + }, + isFailed: (mission, sim) => { + if (!isMainFfwTutorialEscortMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-escort mission"); + + return !sim.get(mission.minerId) || !sim.get(mission.fighterId); + }, + isCompleted: (mission: Mission, sim) => { + if (!isMainFfwTutorialEscortMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-escort mission"); + const fighter = sim.getOrThrow(mission.fighterId); + const miner = sim.getOrThrow(mission.minerId); + + return ( + miner.cp.autoOrder.default.type === "mine" && + fighter.cp.orders.value[0]?.type === "escort" && + fighter.cp.orders.value[0].targetId === mission.minerId && + fighter.cp.position.sector === miner.cp.position.sector && + (distance(fighter.cp.position.coord, miner.cp.position.coord) as number) < + 2 + ); + }, + update: (mission: Mission, _sim: Sim) => { + if (!isMainFfwTutorialEscortMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-escort mission"); + }, + formatProgress: (_mission: MainFfwTutorialEscortMission) => "", +}; diff --git a/core/systems/mission/main/ffw/tutorial-miner.ts b/core/systems/mission/main/ffw/tutorial-miner.ts new file mode 100644 index 00000000..149531e0 --- /dev/null +++ b/core/systems/mission/main/ffw/tutorial-miner.ts @@ -0,0 +1,96 @@ +import Mustache from "mustache"; +import type { Mission, MissionCommon } from "@core/components/missions"; +import { random } from "mathjs"; +import { find, first } from "@fxts/core"; +import { createShip } from "@core/archetypes/ship"; +import { shipClasses } from "@core/world/ships"; +import type { Sim } from "@core/sim"; +import type { MissionHandler } from "../../types"; +import conversation from "../../../../world/data/missions/main/ffw/tutorial-miner.yml"; +import type { MissionReward } from "../../rewards"; + +Mustache.escape = (text) => text; + +interface MainFfwTutorialMinerMission extends Mission { + type: "main.ffw.tutorial-miner"; +} + +export const mainFfwTutorialMinerMission = ( + minerId: number, + common: MissionCommon +): MainFfwTutorialMinerMission => ({ + ...common, + minerId, + type: "main.ffw.tutorial-miner", +}); + +export const isMainFfwTutorialMinerMission = ( + mission: Mission +): mission is MainFfwTutorialMinerMission => + mission.type === "main.ffw.tutorial-miner"; + +export const mainFfwTutorialMinerMissionHandler: MissionHandler = { + generate: (_sim) => ({ + conversation, + rewards: [ + { + mission: "main.ffw.tutorial-trade", + type: "mission", + } as MissionReward, + ], + type: "main.ffw.tutorial-miner", + immediate: true, + }), + accept: (sim, offer) => { + const player = first(sim.queries.player.getIt())!; + player.addTag("mainQuestStarted"); + const sector = find( + (s) => s.cp.name.value === "Teegarden's Star II", + sim.queries.sectors.get() + )!; + + const miner = createShip(sim, { + ...shipClasses.find(({ slug }) => slug === "smallMinerA")!, + angle: random(-Math.PI, Math.PI), + position: [random(-1, 1), random(-1, 1)], + owner: player, + sector, + }); + miner.cp.autoOrder!.default = { type: "hold" }; + + return mainFfwTutorialMinerMission(miner.id, { + accepted: sim.getTime(), + title: "Tutorial: Mining", + description: + "Commander Russo has requested that you mine some ore as a part of your training.", + rewards: offer.rewards, + references: [{ id: miner.id, name: miner.cp.name.value }], + progress: { + current: 0, + max: 1, + }, + cancellable: false, + }); + }, + isFailed: (mission, sim) => { + if (!isMainFfwTutorialMinerMission(mission)) + throw new Error("Mission is not a mainFfwTutorialMiner mission"); + + return !sim.get(mission.minerId); + }, + isCompleted: (mission: Mission, sim) => { + if (!isMainFfwTutorialMinerMission(mission)) + throw new Error("Mission is not a mainFfwTutorialMiner mission"); + + const miner = sim + .getOrThrow(mission.minerId) + .requireComponents(["mining", "storage"]); + return miner.cp.storage.max === miner.cp.storage.stored.ore; + }, + update: (mission: Mission, _sim: Sim) => { + if (!isMainFfwTutorialMinerMission(mission)) + throw new Error("Mission is not a mainFfwTutorialMiner mission"); + }, + formatProgress: (mission: MainFfwTutorialMinerMission) => + `${mission.progress.current} / ${mission.progress.max} miners working`, +}; diff --git a/core/systems/mission/main/ffw/tutorial-pirates.ts b/core/systems/mission/main/ffw/tutorial-pirates.ts new file mode 100644 index 00000000..5d9960bb --- /dev/null +++ b/core/systems/mission/main/ffw/tutorial-pirates.ts @@ -0,0 +1,128 @@ +import { shipClasses } from "@core/world/ships"; +import Mustache from "mustache"; +import type { Mission, MissionCommon } from "@core/components/missions"; +import { find, first } from "@fxts/core"; +import type { Sim } from "@core/sim"; +import { createShip } from "@core/archetypes/ship"; +import type { Sector } from "@core/archetypes/sector"; +import { add } from "mathjs"; +import { fromPolar } from "@core/utils/misc"; +import conversation from "../../../../world/data/missions/main/ffw/tutorial-pirates.yml"; +import endConversation from "../../../../world/data/missions/main/ffw/tutorial-end.yml"; +import type { MissionHandler } from "../../types"; + +Mustache.escape = (text) => text; + +interface MainFfwTutorialPiratesMission extends Mission { + minerId: number; + pirateIds: number[]; + type: "main.ffw.tutorial-pirates"; +} + +export const mainFfwTutorialPiratesMission = ( + minerId: number, + pirateIds: number[], + common: MissionCommon +): MainFfwTutorialPiratesMission => ({ + ...common, + minerId, + pirateIds, + type: "main.ffw.tutorial-pirates", +}); + +export const isMainFfwTutorialPiratesMission = ( + mission: Mission +): mission is MainFfwTutorialPiratesMission => + mission.type === "main.ffw.tutorial-pirates"; + +export const mainFfwTutorialPiratesMissionHandler: MissionHandler = { + generate: (_sim) => ({ + conversation, + rewards: [], + type: "main.ffw.tutorial-pirates", + immediate: true, + }), + accept: (sim, _offer) => { + const player = first(sim.queries.player.getIt())!; + const miner = find( + (s) => s.cp.owner.id === player.id && s.cp.mining, + sim.queries.ships.getIt() + )!; + const pirateFaction = find( + (f) => f.cp.name.slug === "PIR", + sim.queries.ai.get() + )!; + const pirates = Array(2) + .fill(0) + .map(() => + createShip(sim, { + ...shipClasses.find(({ slug }) => slug === "roach")!, + angle: Math.random() * Math.PI * 2, + position: add( + miner.cp.position.coord, + fromPolar(Math.random() * Math.PI * 2, 10) + ), + owner: pirateFaction, + sector: sim.getOrThrow(miner.cp.position.sector), + }) + ); + for (const pirate of pirates) { + pirate.cp.orders!.value.push({ + origin: "manual", + type: "attack", + targetId: miner.id, + actions: [], + ordersForSector: 0, + followOutsideSector: true, + }); + } + + return mainFfwTutorialPiratesMission( + miner.id, + pirates.map((pirate) => pirate.id), + { + accepted: sim.getTime(), + progress: { max: 2, current: 0 }, + cancellable: false, + description: + "This part of training requires you to defend your miner from pirates.", + references: [ + { id: miner!.id, name: miner!.cp.name!.value }, + ...pirates.map((pirate) => ({ + id: pirate!.id, + name: pirate!.cp.name!.value, + })), + ], + rewards: [ + { + type: "conversation", + conversation: endConversation, + }, + ], + title: "Tutorial: Pirates", + } + ); + }, + isFailed: (mission, sim) => { + if (!isMainFfwTutorialPiratesMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-pirates mission"); + + return !sim.get(mission.minerId); + }, + isCompleted: (mission: Mission, sim) => { + if (!isMainFfwTutorialPiratesMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-pirates mission"); + + return !mission.pirateIds.some(sim.get); + }, + update: (mission: Mission, sim: Sim) => { + if (!isMainFfwTutorialPiratesMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-pirates mission"); + + mission.progress.current = mission.pirateIds.filter( + (id) => !sim.get(id) + ).length; + }, + formatProgress: (mission: MainFfwTutorialPiratesMission) => + `${mission.progress.current}/${mission.progress.max} pirates destroyed`, +}; diff --git a/core/systems/mission/main/ffw/tutorial-trade.ts b/core/systems/mission/main/ffw/tutorial-trade.ts new file mode 100644 index 00000000..b304e28e --- /dev/null +++ b/core/systems/mission/main/ffw/tutorial-trade.ts @@ -0,0 +1,108 @@ +import Mustache from "mustache"; +import type { Mission, MissionCommon } from "@core/components/missions"; +import { filter, find, first, pipe, sort } from "@fxts/core"; +import type { Sim } from "@core/sim"; +import { distance } from "mathjs"; +import type { Facility } from "@core/archetypes/facility"; +import type { MissionHandler } from "../../types"; +import conversation from "../../../../world/data/missions/main/ffw/tutorial-trade.yml"; + +Mustache.escape = (text) => text; + +interface MainFfwTutorialTradeMission extends Mission { + minerId: number; + facilityId: number; + type: "main.ffw.tutorial-trade"; +} + +export const mainFfwTutorialTradeMission = ( + minerId: number, + facilityId: number, + common: MissionCommon +): MainFfwTutorialTradeMission => ({ + ...common, + minerId, + facilityId, + type: "main.ffw.tutorial-trade", +}); + +export const isMainFfwTutorialTradeMission = ( + mission: Mission +): mission is MainFfwTutorialTradeMission => + mission.type === "main.ffw.tutorial-trade"; + +export const mainFfwTutorialTradeMissionHandler: MissionHandler = { + generate: (_sim) => ({ + conversation, + rewards: [], + type: "main.ffw.tutorial-trade", + immediate: true, + }), + accept: (sim, _offer) => { + const player = first(sim.queries.player.getIt())!; + const miner = find( + (s) => s.cp.owner.id === player.id && s.cp.mining, + sim.queries.ships.getIt() + )!; + const nearestFacility = pipe( + sim.queries.facilities.getIt(), + filter( + (f) => + f.cp.trade?.offers?.ore.active && + f.cp.trade.offers.ore.type === "buy" && + f.cp.position.sector === miner.cp.position.sector + ), + sort( + (a, b) => + distance(a.cp.position.coord, miner.cp.position.coord) > + distance(b.cp.position.coord, miner.cp.position.coord) + ), + first + ); + nearestFacility!.addTag("discovered"); + + return mainFfwTutorialTradeMission(miner.id, nearestFacility!.id, { + accepted: sim.getTime(), + cancellable: false, + description: + "Commander Russo ordered you to sell the mined resources to the facility. You can do this by selecting the ship and right-clicking on the station.", + progress: { current: 0, max: 0 }, + references: [ + { id: nearestFacility!.id, name: nearestFacility!.cp.name!.value }, + { id: miner!.id, name: miner!.cp.name!.value }, + ], + rewards: [ + { + type: "mission", + mission: "main.ffw.tutorial-autoorder", + }, + ], + title: "Tutorial: Trading", + }); + }, + isFailed: (mission, _sim) => { + if (!isMainFfwTutorialTradeMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-trade mission"); + + return false; + }, + isCompleted: (mission: Mission, sim) => { + if (!isMainFfwTutorialTradeMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-trade mission"); + + const facility = sim.getOrThrow(mission.facilityId); + return !!facility.cp.journal.entries.find( + (entry) => + entry.type === "trade" && + entry.action === "buy" && + entry.targetId === mission.minerId && + entry.commodity === "ore" && + entry.quantity > 0 + ); + }, + update: (mission: Mission, _sim: Sim) => { + if (!isMainFfwTutorialTradeMission(mission)) + throw new Error("Mission is not a main.ffw.tutorial-trade mission"); + }, + formatProgress: (_mission: MainFfwTutorialTradeMission) => "", +}; diff --git a/core/systems/mission/mapping.ts b/core/systems/mission/mapping.ts new file mode 100644 index 00000000..d76847a0 --- /dev/null +++ b/core/systems/mission/mapping.ts @@ -0,0 +1,29 @@ +import { genericShipRescueMissionHandler } from "./generic/ship-rescue"; +import { mainFfwTutorialAutoorderMissionHandler } from "./main/ffw/tutorial-autoorder"; +import { mainFfwTutorialEscortMissionHandler } from "./main/ffw/tutorial-escort"; +import { mainFfwTutorialMinerMissionHandler } from "./main/ffw/tutorial-miner"; +import { mainFfwTutorialPiratesMissionHandler } from "./main/ffw/tutorial-pirates"; +import { mainFfwTutorialTradeMissionHandler } from "./main/ffw/tutorial-trade"; +import { + conversationRewardHandler, + missionRewardHandler, + moneyRewardHandler, + relationRewardHandler, +} from "./rewards"; + +export const rewards = { + money: moneyRewardHandler, + relation: relationRewardHandler, + mission: missionRewardHandler, + conversation: conversationRewardHandler, +}; + +export const missions = { + "main.ffw.tutorial-miner": mainFfwTutorialMinerMissionHandler, + "main.ffw.tutorial-trade": mainFfwTutorialTradeMissionHandler, + "main.ffw.tutorial-autoorder": mainFfwTutorialAutoorderMissionHandler, + "main.ffw.tutorial-escort": mainFfwTutorialEscortMissionHandler, + "main.ffw.tutorial-pirates": mainFfwTutorialPiratesMissionHandler, + + "generic.ship-rescue": genericShipRescueMissionHandler, +}; diff --git a/core/systems/mission/mission.ts b/core/systems/mission/mission.ts index d2a141ca..1aa49000 100644 --- a/core/systems/mission/mission.ts +++ b/core/systems/mission/mission.ts @@ -4,6 +4,7 @@ import { pickRandom } from "@core/utils/generators"; import { first } from "@fxts/core"; import { System } from "../system"; import type { MissionHandler } from "./types"; +import { rewards, missions } from "./mapping"; type MissionHandlers = Record; @@ -13,15 +14,22 @@ export class MissionSystem extends System<"generate" | "track"> { rewards: Record void>; }; - constructor( - missionHandlers: MissionHandlers, - rewardHandlers: Record void> - ) { + constructor() { super(); this.handlers = { - mission: missionHandlers, - rewards: rewardHandlers, + mission: {}, + rewards: {}, }; + + // eslint-disable-next-line guard-for-in + for (const reward in rewards) { + this.registerReward(reward, rewards[reward]); + } + + // eslint-disable-next-line guard-for-in + for (const mission in missions) { + this.registerMission(mission, missions[mission]); + } } apply(sim: Sim): void { @@ -36,12 +44,25 @@ export class MissionSystem extends System<"generate" | "track"> { description: "Generate a new mission", category: "mission", type: "basic", - fn: () => this.generate(true), + fn: (_sim: Sim, template?: string) => { + this.generate(true, template); + }, }, this.constructor.name ); } + registerMission = (type: string, handler: MissionHandler) => { + this.handlers.mission[type] = handler; + }; + + registerReward = ( + type: string, + handler: (_reward: Reward, _sim: Sim) => void + ) => { + this.handlers.rewards[type] = handler; + }; + track = () => { if (!this.cooldowns.canUse("track")) return; this.cooldowns.use("track", 1 + Math.random()); @@ -57,6 +78,8 @@ export class MissionSystem extends System<"generate" | "track"> { player.cp.missions.value = player.cp.missions.value.filter( (m) => m !== mission ); + + return; } if (this.handlers.mission[mission.type].isCompleted(mission, this.sim)) { @@ -70,26 +93,46 @@ export class MissionSystem extends System<"generate" | "track"> { }); }; - generate = (force: boolean) => { + generate = (force: boolean, template?: string) => { if (!this.cooldowns.canUse("generate") && !force) return; this.cooldowns.use("generate", 1 + Math.random()); const player = this.sim.queries.player.get()[0]; if ( - ((player.cp.missions.value.length < 3 && - this.sim.getTime() - - Math.max( - ...player.cp.missions.value.map((m) => m.accepted), - player.cp.missions.declined - ) > - 5 * 60) || - force) && + !player.tags.has("mainQuestStarted") && player.cp.missions.offer === null ) { - player.cp.missions.offer = pickRandom( - Object.values(this.handlers.mission) - ).generate(this.sim); + player.cp.missions.offer = this.handlers.mission[ + "main.ffw.tutorial-miner" + ].generate(this.sim); + return; + } + + if ( + force || + (player.cp.missions.value.every((m) => !m.type.includes("tutorial")) && + ((player.cp.missions.value.length < 3 && + this.sim.getTime() - + Math.max( + ...player.cp.missions.value.map((m) => m.accepted), + player.cp.missions.declined + ) > + 5 * 60) || + force) && + player.cp.missions.offer === null) + ) { + if (template) { + player.cp.missions.offer = this.handlers.mission[template].generate( + this.sim + ); + } else { + player.cp.missions.offer = pickRandom( + Object.entries(this.handlers.mission) + .filter(([key]) => key.startsWith("generic.")) + .map(([, data]) => data) + ).generate(this.sim); + } } }; diff --git a/core/systems/mission/patrol.ts b/core/systems/mission/patrol.ts deleted file mode 100644 index 0dfafce1..00000000 --- a/core/systems/mission/patrol.ts +++ /dev/null @@ -1,137 +0,0 @@ -import Mustache from "mustache"; -import type { Mission, MissionCommon } from "@core/components/missions"; -import { relationThresholds } from "@core/components/relations"; -import type { Sim } from "@core/sim"; -import { pickRandom } from "@core/utils/generators"; -import { randomInt } from "mathjs"; -import { formatGameTime } from "@core/utils/format"; -import { filter, first, pipe, some, toArray } from "@fxts/core"; -import type { Sector } from "@core/archetypes/sector"; -import { gameDay } from "@core/utils/misc"; -import type { MissionHandler } from "./types"; -import missions from "../../world/data/missions.json"; -import { getRelationFactor } from "./utils"; - -Mustache.escape = (text) => text; - -interface PatrolMission extends Mission { - type: "patrol"; - sector: number; - faction: number; -} - -export const patrolMission = ( - sector: number, - time: number, - faction: number, - common: MissionCommon -): PatrolMission => ({ - ...common, - sector, - type: "patrol", - faction, -}); - -const isPatrolMission = (mission: Mission): mission is PatrolMission => - mission.type === "patrol"; - -export const patrolMissionHandler: MissionHandler = { - generate: (sim) => { - const player = first(sim.queries.player.getIt())!; - const faction = pipe( - sim.queries.ai.getIt(), - filter( - (f) => player.cp.relations.values[f.id] >= relationThresholds.mission - ), - toArray, - pickRandom - ); - if (!faction) return null; - - const sector = pickRandom( - sim.queries.sectors - .get() - .filter( - (s) => - s.cp.owner?.id === faction.id && - !player.cp.missions.value.some( - (mission) => mission.sectorId === s.id - ) - ) - ); - const weeks = randomInt(2, 4); - const time = weeks * 7 * gameDay; - const reward = Math.floor(weeks * getRelationFactor(faction) * 10000); - - const template = pickRandom(missions.patrol); - const transform = (text: string) => - Mustache.render(text, { - faction: faction.cp.name.value, - sector: sector.cp.name.value, - time: formatGameTime(time, "full"), - reward, - }); - - return { - title: transform(template.title), - prompt: transform(template.prompt), - actorName: "Local Police", - responses: template.responses.map((r) => ({ - next: transform(r.next), - text: transform(r.text), - actor: "player", - type: r.type as "accept" | "decline" | "neutral", - })), - data: patrolMission(sector.id, time, faction.id, { - accepted: sim.getTime(), - title: transform(template.title), - description: transform(template.description), - rewards: [ - { type: "money", amount: reward }, - // Add 1 relation point for every week of patrol - { - type: "relation", - amount: time / (10 * 7 * gameDay), - factionId: faction.id, - }, - ], - references: [{ id: sector.id, name: sector.cp.name.value }], - progress: { - current: 0, - max: time, - }, - }), - }; - }, - isFailed: (mission: Mission, sim: Sim) => { - if (!isPatrolMission(mission)) - throw new Error("Mission is not a patrol mission"); - - return ( - sim.getOrThrow(mission.sector).cp.owner?.id !== mission.faction - ); - }, - isCompleted: (mission: Mission) => { - if (!isPatrolMission(mission)) - throw new Error("Mission is not a patrol mission"); - - return mission.progress.current >= mission.progress.max; - }, - update: (mission: Mission, sim: Sim) => { - if (!isPatrolMission(mission)) - throw new Error("Mission is not a patrol mission"); - - const player = first(sim.queries.player.getIt())!; - - const isPatrolling = some( - (ship) => - ship.cp.owner?.id === player.id && - ship.cp.autoOrder?.default.type === "patrol" && - ship.cp.autoOrder.default.sectorId === mission.sector, - sim.queries.ships.getIt() - ); - if (isPatrolling) mission.progress.current += 1; - }, - formatProgress: (mission: Mission) => - `${formatGameTime(mission.progress.max - mission.progress.current)} left`, -}; diff --git a/core/systems/mission/rewards.ts b/core/systems/mission/rewards.ts index 9a50784d..8b34480c 100644 --- a/core/systems/mission/rewards.ts +++ b/core/systems/mission/rewards.ts @@ -1,9 +1,12 @@ import type { Faction } from "@core/archetypes/faction"; import { changeBudgetMoney } from "@core/components/budget"; -import type { Mission, Reward } from "@core/components/missions"; +import type { Reward } from "@core/components/missions"; import { changeRelations } from "@core/components/relations"; import type { Sim } from "@core/sim"; import { first } from "@fxts/core"; +import { gameDialog } from "@ui/atoms"; +import { MissionSystem } from "./mission"; +import type { MissionConversation } from "./types"; export interface MoneyReward { type: "money"; @@ -14,7 +17,7 @@ export function isMoneyReward(reward: Reward): reward is MoneyReward { return reward.type === "money"; } -export function moneyRewardHandler(reward: Mission, sim: Sim): void { +export function moneyRewardHandler(reward: Reward, sim: Sim): void { if (!isMoneyReward(reward)) throw new Error("Reward is not a money reward"); changeBudgetMoney( @@ -33,7 +36,7 @@ export function isRelationReward(reward: Reward): reward is RelationReward { return reward.type === "relation"; } -export function relationRewardHandler(reward: Mission, sim: Sim): void { +export function relationRewardHandler(reward: Reward, sim: Sim): void { if (!isRelationReward(reward)) throw new Error("Reward is not a relation reward"); @@ -43,3 +46,43 @@ export function relationRewardHandler(reward: Mission, sim: Sim): void { reward.amount ); } + +export interface MissionReward { + type: "mission"; + mission: string; +} + +export function isMissionReward(reward: Reward): reward is MissionReward { + return reward.type === "mission"; +} + +export function missionRewardHandler(reward: Reward, sim: Sim): void { + if (!isMissionReward(reward)) + throw new Error("Reward is not a mission reward"); + + const missionSystem = sim.systems.find( + (s) => s instanceof MissionSystem + ) as MissionSystem; + missionSystem.generate(true, reward.mission); +} + +export interface ConversationReward { + type: "conversation"; + conversation: MissionConversation; +} + +export function isConversationReward( + reward: Reward +): reward is ConversationReward { + return reward.type === "conversation"; +} + +export function conversationRewardHandler(reward: Reward, _sim: Sim): void { + if (!isConversationReward(reward)) + throw new Error("Reward is not a conversation reward"); + + gameDialog.notify({ + type: "conversation", + conversation: reward.conversation, + }); +} diff --git a/core/systems/mission/types.ts b/core/systems/mission/types.ts index c968a65e..8c577c38 100644 --- a/core/systems/mission/types.ts +++ b/core/systems/mission/types.ts @@ -1,11 +1,29 @@ -import type { Mission } from "@core/components/missions"; +import type { Mission, MissionOffer } from "@core/components/missions"; import type { Sim } from "@core/sim"; -import type { MissionOffer } from "@ui/components/MissionDialog"; export interface MissionHandler { isCompleted: (_mission: Mission, _sim: Sim) => boolean; isFailed: (_mission: Mission, _sim: Sim) => boolean; generate: (_sim: Sim) => MissionOffer | null; + accept: (_sim: Sim, _mission: MissionOffer) => Mission; update: (_mission: Mission, _sim: Sim) => void; formatProgress: (_mission: Mission) => string; } + +export interface ConversationLine { + text: string; + next?: string[]; + action?: string; + set?: Record; +} + +export interface MissionConversation { + Start: string; + Actors: Record< + string, + { + name?: string; + lines: Record; + } + >; +} diff --git a/core/systems/orderExecuting/misc.ts b/core/systems/orderExecuting/misc.ts index c4751de6..2e857aca 100644 --- a/core/systems/orderExecuting/misc.ts +++ b/core/systems/orderExecuting/misc.ts @@ -1,3 +1,4 @@ +import { teleport } from "@core/utils/moving"; import { waypoint } from "../../archetypes/waypoint"; import { clearTarget, @@ -7,7 +8,6 @@ import { } from "../../components/drive"; import type { MoveAction, TeleportAction } from "../../components/orders"; import type { RequireComponent } from "../../tsHelpers"; -import { SectorIndex } from "../utils/sectorIndex"; import { undockShip } from "./dock"; export function moveActionCleanup( @@ -54,31 +54,12 @@ export function teleportAction( order: TeleportAction ): boolean { const destination = waypoint(entity.sim.getOrThrow(order.targetId)); - const prevSector = entity.cp.position.sector; - entity.cp.position = { - name: "position", - angle: entity.cp.position.angle, - coord: [...destination.cp.position.coord], - sector: destination.cp.position.sector, - moved: true, - }; - - entity.cp.docks?.docked.forEach((dockedId) => { - const docked = - entity.sim.getOrThrow>(dockedId); - - docked.cp.position = { - name: "position", - angle: entity.cp.position.angle, - coord: [...destination.cp.position.coord], - sector: destination.cp.position.sector, - moved: true, - }; - SectorIndex.notify(prevSector, destination.cp.position.sector, docked); - }); - - SectorIndex.notify(prevSector, destination.cp.position.sector, entity); + teleport( + entity, + destination.cp.position.coord, + destination.cp.position.sector + ); return true; } diff --git a/core/systems/orderExecuting/patrol.ts b/core/systems/orderExecuting/patrol.ts index 710b075f..3e38021b 100644 --- a/core/systems/orderExecuting/patrol.ts +++ b/core/systems/orderExecuting/patrol.ts @@ -2,8 +2,9 @@ import { createWaypoint } from "@core/archetypes/waypoint"; import { sectorSize } from "@core/archetypes/sector"; import type { Sector } from "@core/archetypes/sector"; import { random } from "lodash"; -import { multiply, randomInt } from "mathjs"; +import { randomInt } from "mathjs"; import type { Position2D } from "@core/components/position"; +import { fromPolar } from "@core/utils/misc"; import type { PatrolOrder } from "../../components/orders"; import type { RequireComponent } from "../../tsHelpers"; import { moveToActions } from "../../utils/moving"; @@ -23,10 +24,10 @@ export function patrolOrder( const angleOffset = (Math.PI / randomInt(4, 8)) * (order.clockwise ? 1 : -1); - waypointPosition = multiply( - [Math.cos(angle + angleOffset), Math.sin(angle + angleOffset)], + waypointPosition = fromPolar( + angle + angleOffset, random(sectorSize / 30, sectorSize / 15) - ) as Position2D; + ); } else { waypointPosition = [ random(-sectorSize / 20, sectorSize / 20), diff --git a/core/systems/pirateSpawning.ts b/core/systems/pirateSpawning.ts index 72459723..ebe7f7b7 100644 --- a/core/systems/pirateSpawning.ts +++ b/core/systems/pirateSpawning.ts @@ -12,6 +12,7 @@ import { moveToActions } from "@core/utils/moving"; import { shipClasses } from "@core/world/ships"; import { filter, find, map, pipe, toArray } from "@fxts/core"; import { distance, random, randomInt } from "mathjs"; +import { fromPolar } from "@core/utils/misc"; import { System } from "./system"; import { Index } from "./utils/entityIndex"; @@ -75,10 +76,7 @@ function spawnFlagship(sim: Sim, faction: Faction, flagships: Ship[]) { owner: faction, sector, angle: Math.random() * 2 * Math.PI, - position: [ - Math.cos(angle) * flagshipDistanceFromSectorCenter, - Math.sin(angle) * flagshipDistanceFromSectorCenter, - ], + position: fromPolar(angle, flagshipDistanceFromSectorCenter), }); } @@ -174,10 +172,7 @@ export class PirateSpawningSystem extends System< shipToMove, createWaypoint(this.sim, { sector: shipToMove.cp.position.sector, - value: [ - flagshipDistanceFromSectorCenter * Math.cos(angle + dAngle), - flagshipDistanceFromSectorCenter * Math.sin(angle + dAngle), - ], + value: fromPolar(angle + dAngle, flagshipDistanceFromSectorCenter), owner: shipToMove.id, }) ), diff --git a/core/systems/utils/entityIndex.ts b/core/systems/utils/entityIndex.ts index ebfda178..d050d923 100644 --- a/core/systems/utils/entityIndex.ts +++ b/core/systems/utils/entityIndex.ts @@ -21,8 +21,8 @@ export type IndexEntities = Array< export class BaseIndex { hooks: { - add: Observable<[RequireComponent]>; - remove: Observable<[number, Entity]>; + add: Observable>; + remove: Observable<{ id: number; entity: Entity }>; }; requiredComponents: readonly (keyof CoreComponents)[]; requiredComponentsMask: bigint; @@ -100,7 +100,7 @@ export class BaseIndex { }; remove = (entity: Entity) => { - this.hooks.remove.notify(entity.id, entity); + this.hooks.remove.notify({ id: entity.id, entity }); }; } @@ -129,7 +129,7 @@ export class Index extends BaseIndex { this.entities.add(entity); } }); - this.hooks.remove.subscribe("index", (_id, entity) => { + this.hooks.remove.subscribe("index", ({ entity }) => { if (this.entities) { this.entities.delete(entity as RequireComponent); } diff --git a/core/systems/utils/sectorIndex.ts b/core/systems/utils/sectorIndex.ts index d53b31d1..947643f5 100644 --- a/core/systems/utils/sectorIndex.ts +++ b/core/systems/utils/sectorIndex.ts @@ -7,10 +7,11 @@ import { flatMap, pipe } from "@fxts/core"; import type { IndexEntities } from "./entityIndex"; import { BaseIndex } from "./entityIndex"; -// Old sector, new sector and entity -const hook = new Observable<[number, number, RequireComponent<"position">]>( - "sectorIndex" -); +const hook = new Observable<{ + oldSectorId: number; + newSectorId: number; + entity: RequireComponent<"position">; +}>("sectorIndex"); export class SectorIndex { sectors: Map>; @@ -33,8 +34,8 @@ export class SectorIndex { this.index.hooks.add.subscribe(this.constructor.name, (entity) => { this.add(entity.cp.position.sector, entity); }); - this.index.hooks.remove.subscribe(this.constructor.name, (entityId) => { - this.remove(entityId); + this.index.hooks.remove.subscribe(this.constructor.name, ({ id }) => { + this.remove(id); }); this.index.collect(); } @@ -45,14 +46,18 @@ export class SectorIndex { flatMap((sector) => this.get(sector)) ); - changePosition = ( - oldSector: number, - newSector: number, - entity: RequireComponent - ) => { - if (oldSector !== newSector && this.index.canBeAdded(entity)) { - this.remove(entity.id, oldSector); - this.add(newSector, entity); + changePosition = ({ + entity, + newSectorId, + oldSectorId, + }: { + oldSectorId: number; + newSectorId: number; + entity: RequireComponent; + }) => { + if (oldSectorId !== newSectorId && this.index.canBeAdded(entity)) { + this.remove(entity.id, oldSectorId); + this.add(newSectorId, entity); } }; @@ -105,10 +110,10 @@ export class SectorIndex { }; static notify( - oldSector: number, - newSector: number, + oldSectorId: number, + newSectorId: number, entity: RequireComponent<"position"> ) { - hook.notify(oldSector, newSector, entity); + hook.notify({ oldSectorId, newSectorId, entity }); } } diff --git a/core/tags.ts b/core/tags.ts index 24aefd47..ceac3f9b 100644 --- a/core/tags.ts +++ b/core/tags.ts @@ -14,6 +14,7 @@ const tags = [ "virtual", "collectible", "discovered", + "mainQuestStarted", "ai:attack-force", "ai:spare", ...shipRoles.map<`role:${ShipRole}`>((role) => `role:${role}`), diff --git a/core/utils/generators.ts b/core/utils/generators.ts index 2a85689a..a9fa731a 100644 --- a/core/utils/generators.ts +++ b/core/utils/generators.ts @@ -1,3 +1,6 @@ +import type { MissionConversation } from "@core/systems/mission/types"; +import Mustache from "mustache"; + export function pickRandomWithIndex(arr: readonly T[]): [T, number] { const index = Math.floor(Math.random() * arr.length); return [arr[index], index]; @@ -6,3 +9,29 @@ export function pickRandomWithIndex(arr: readonly T[]): [T, number] { export function pickRandom(arr: readonly T[]): T { return pickRandomWithIndex(arr)[0]; } + +Mustache.escape = (text) => text; +export function mustacheConversation( + template: MissionConversation, + data: Record +): MissionConversation { + const conversation = structuredClone(template); + // eslint-disable-next-line guard-for-in + for (const actor in conversation.Actors) { + if (conversation.Actors[actor].name) { + conversation.Actors[actor].name = Mustache.render( + conversation.Actors[actor].name!, + data + ); + } + // eslint-disable-next-line guard-for-in + for (const line in conversation.Actors[actor].lines) { + conversation.Actors[actor].lines[line].text = Mustache.render( + conversation.Actors[actor].lines[line].text, + data + ); + } + } + + return conversation; +} diff --git a/core/utils/misc.ts b/core/utils/misc.ts index 6f562361..cc1d5365 100644 --- a/core/utils/misc.ts +++ b/core/utils/misc.ts @@ -54,3 +54,7 @@ export function getGameDate(timeOffset: number): string { 1 + (Math.floor(actual / gameMonth) % 12) }.${2519 + (Math.floor(actual / gameYear) % 12)}`; } + +export function fromPolar(angle: number, distance: number): Position2D { + return [distance * Math.cos(angle), distance * Math.sin(angle)]; +} diff --git a/core/utils/moving.ts b/core/utils/moving.ts index e5dd5980..8b191a09 100644 --- a/core/utils/moving.ts +++ b/core/utils/moving.ts @@ -1,4 +1,7 @@ import { find } from "@fxts/core"; +import type { Position2D } from "@core/components/position"; +import type { RequireComponent } from "@core/tsHelpers"; +import { SectorIndex } from "@core/systems/utils/sectorIndex"; import type { Waypoint } from "../archetypes/waypoint"; import type { Action } from "../components/orders"; import { findInAncestors } from "./findInAncestors"; @@ -23,7 +26,7 @@ export function moveToActions( let s = origin.cp.position.sector.toString(); while (s !== targetSector) { - const teleport = find( + const teleportFacility = find( (t) => findInAncestors(t, "position").cp.position.sector.toString() === s && findInAncestors( @@ -33,13 +36,13 @@ export function moveToActions( origin.sim.queries.teleports.getIt() ); - if (!teleport) { + if (!teleportFacility) { return actions; } - const t1 = findInAncestors(teleport, "position"); + const t1 = findInAncestors(teleportFacility, "position"); const t2 = findInAncestors( - origin.sim.getOrThrow(teleport?.cp.teleport.destinationId!), + origin.sim.getOrThrow(teleportFacility?.cp.teleport.destinationId!), "position" ); @@ -71,3 +74,35 @@ export function moveToActions( return actions; } + +export function teleport( + entity: RequireComponent<"position">, + position: Position2D, + sector: number +) { + const prevSector = entity.cp.position.sector; + + entity.cp.position = { + name: "position", + angle: entity.cp.position.angle, + coord: position, + sector, + moved: true, + }; + + entity.cp.docks?.docked.forEach((dockedId) => { + const docked = + entity.sim.getOrThrow>(dockedId); + + docked.cp.position = { + name: "position", + angle: entity.cp.position.angle, + coord: position, + sector, + moved: true, + }; + SectorIndex.notify(prevSector, sector, docked); + }); + + SectorIndex.notify(prevSector, sector, entity); +} diff --git a/core/utils/observer.ts b/core/utils/observer.ts index 6dd0a6fc..dc0d2b55 100644 --- a/core/utils/observer.ts +++ b/core/utils/observer.ts @@ -1,17 +1,18 @@ -type ObserverFn = (..._data: T) => void; +type ObserverFn = (_value: T) => void; -type Observer = { +type Observer = { fn: ObserverFn; origin: string; }; -export class Observable { +export class Observable { /** * If true, the observer will add a error boundary to the observer calls */ boundary: boolean; name: string; observers: Observer[]; + value: T; constructor(name: string, boundary = true) { this.name = name; @@ -24,17 +25,19 @@ export class Observable { fn, origin, }); + if (this.value) fn(this.value); }; unsubscribe = (f: ObserverFn) => { this.observers = this.observers.filter((subscriber) => subscriber.fn !== f); }; - notify: ObserverFn = (...data) => { + notify: ObserverFn = (data) => { + this.value = data; this.observers.forEach((observer) => { if (this.boundary) { try { - observer.fn(...data); + observer.fn(data); } catch (err) { // eslint-disable-next-line no-console console.error( @@ -43,7 +46,7 @@ export class Observable { throw err; } } else { - observer.fn(...data); + observer.fn(data); } }); }; diff --git a/core/utils/trading.ts b/core/utils/trading.ts index f69f9ce8..30529ee1 100644 --- a/core/utils/trading.ts +++ b/core/utils/trading.ts @@ -144,6 +144,7 @@ export function acceptTrade( quantity: input.quantity, price: input.price, target: initiator.cp.name.value, + targetId: initiator.id, time: entityWithOffer.sim.getTime(), }); initiator.cp.journal.entries.push({ @@ -153,6 +154,7 @@ export function acceptTrade( quantity: input.quantity, price: input.price, target: entityWithOffer.requireComponents(["name"]).cp.name.value, + targetId: entityWithOffer.id, time: entityWithOffer.sim.getTime(), }); @@ -403,7 +405,7 @@ export function resellCommodity( ) ); - if (quantity === 0) { + if (quantity <= 0) { return false; } diff --git a/core/world/asteroids.ts b/core/world/asteroids.ts index 16babbc1..c1e5c8bf 100644 --- a/core/world/asteroids.ts +++ b/core/world/asteroids.ts @@ -1,5 +1,5 @@ import { random } from "mathjs"; -import type { Position2D } from "@core/components/position"; +import { fromPolar } from "@core/utils/misc"; import type { MineableCommodity } from "../economy/commodity"; import { createAsteroidField } from "../archetypes/asteroidField"; import type { Sim } from "../sim"; @@ -29,15 +29,10 @@ export function spawnAsteroidField( sector: Sector ) { const maxR = (sectorSize / 20) * Math.sqrt(3); - - const polarPosition = { - r: random(0, maxR - size - 0.5), - a: random(-Math.PI, Math.PI), - }; - const position: Position2D = [ - polarPosition.r * Math.cos(polarPosition.a), - polarPosition.r * Math.sin(polarPosition.a), - ]; + const position = fromPolar( + random(-Math.PI, Math.PI), + random(0, maxR - size - 0.5) + ); createAsteroidField(sim, position, sector, { asteroidResources: { diff --git a/core/world/data/base.json b/core/world/data/base.json index 152ddd99..9bf62e43 100644 --- a/core/world/data/base.json +++ b/core/world/data/base.json @@ -1,5 +1,5 @@ { - "entityIdCounter": 24937, + "entityIdCounter": 7912, "timeOffset": 3600, "entities": [ { @@ -25,7 +25,7 @@ "camera": { "name": "camera", "zoom": 1, - "position": [0, 0], + "position": [3750, 1299.0381056766578], "mask": "BigInt:64" } }, @@ -50,10 +50,11 @@ "availableResources": { "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [ - 0, 0, 0, 5745.236330737546, 5745.236330737546, 11490.472661475093, - 11490.472661475093, 17235.70899221264, 17235.70899221264, - 22980.945322950185, 22980.945322950185, 28726.18165368773, - 28726.18165368773, 34471.41798442528 + 0, 6277.016334895017, 6277.016334895017, 12554.032669790035, + 12554.032669790035, 18831.049004685054, 18831.049004685054, + 25108.06533958007, 25108.06533958007, 31385.081674475085, + 31385.081674475085, 37662.0980093701, 37662.0980093701, + 43939.114344265116 ], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -66,33 +67,33 @@ }, "drones": { "buy": [ - 924, 924, 924, 1099, 1099, 1099, 1099, 1312, 1312, 1312, 1312, - 1275, 1275, 1275 + 693, 693, 693, 829, 829, 829, 829, 995, 995, 995, 995, 1193, + 1193, 1193 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "electronics": { "buy": [ - 287, 287, 287, 338, 338, 338, 338, 408, 408, 408, 408, 363, 363, - 363 + 445, 445, 445, 294, 294, 294, 294, 278, 278, 278, 278, 333, 333, + 333 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "engineParts": { "buy": [ - 240, 240, 240, 294, 294, 294, 294, 355, 355, 355, 355, 422, 422, - 422 + 218, 218, 218, 255, 255, 255, 255, 306, 306, 306, 306, 306, 306, + 306 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [34, 34, 34, 9, 9, 9, 9, 16, 16, 16, 16, 18, 18, 18], + "buy": [15, 15, 15, 21, 21, 21, 21, 13, 13, 13, 13, 19, 19, 19], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { "buy": [ - 66.5, 66.5, 66.5, 57.5, 57.5, 57.5, 57.5, 50, 50, 50, 50, 57.5, - 57.5, 57.5 + 59.5, 59.5, 59.5, 63.5, 63.5, 63.5, 63.5, 51.5, 51.5, 51.5, + 51.5, 70, 70, 70 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -103,16 +104,16 @@ "gold": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 432, 432, 432, 580, 580, 580, 580, 536, 536, 536, 536, 496, 496, - 496 + 469, 469, 469, 751, 751, 751, 751, 678, 678, 678, 678, 625, 625, + 625 ] }, "goldOre": { - "buy": [69, 69, 69, 40, 40, 40, 40, 55, 55, 55, 55, 48, 48, 48], + "buy": [90, 90, 90, 74, 74, 74, 74, 74, 74, 74, 74, 62, 62, 62], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [53, 53, 53, 44, 44, 44, 44, 35, 35, 35, 35, 53, 53, 53], + "buy": [39, 39, 39, 46, 46, 46, 46, 58, 58, 58, 58, 45, 45, 45], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hydrogen": { @@ -148,7 +149,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [42, 42, 42, 33, 33, 33, 33, 42, 42, 42, 42, 31, 31, 31], + "buy": [34, 34, 34, 40, 40, 40, 40, 34, 34, 34, 34, 36, 36, 36], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, @@ -184,18 +185,18 @@ "availableResources": { "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [ - 167068.42624689866, 176258.9615442456, 176258.9615442456, - 183810.70594693912, 0, 9190.535297346956, 9190.535297346956, - 18381.070594693912, 18381.070594693912, 27571.60589204087, - 27571.60589204087, 36762.141189387825, 36762.141189387825, - 45952.67648673478 + 117593.27506936621, 123954.83146268407, 123954.83146268407, + 127231.12786635722, 127231.12786635722, 127231.12786635722, + 127231.12786635722, 127231.12786635722, 127231.12786635722, + 127231.12786635722, 127231.12786635722, 127231.12786635722, + 127231.12786635722, 127231.12786635722 ], "ice": [ - 0, 17590.051981100463, 17590.051981100463, 35180.10396220093, - 35180.10396220093, 52770.15594330139, 52770.15594330139, - 70360.20792440185, 70360.20792440185, 87950.25990550232, - 87950.25990550232, 105540.31188660278, 105540.31188660278, - 123130.36386770324 + 633216.4532523387, 32325.59276375284, 32325.59276375284, + 64651.18552750568, 64651.18552750568, 96976.77829125852, + 96976.77829125852, 129302.37105501136, 129302.37105501136, + 161627.9638187642, 161627.9638187642, 193953.55658251705, 0, + 32325.59276375284 ], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] @@ -218,17 +219,17 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [13, 13, 13, 13, 13, 13, 13, 20, 20, 20, 20, 14, 14, 14], + "buy": [21, 21, 21, 20, 20, 20, 20, 11, 11, 11, 11, 18, 18, 18], "sell": [ - 22.5, 22.5, 22.5, 19.5, 19.5, 19.5, 19.5, 17, 17, 17, 17, 15, - 15, 15 + 13, 13, 13, 16, 16, 16, 16, 14.666666666666666, + 14.666666666666666, 14.666666666666666, 14.666666666666666, 16, + 16, 16 ] }, "fuel": { "buy": [ - 57.333333333333336, 57.333333333333336, 57.333333333333336, 56, - 56, 56, 56, 57.666666666666664, 57.666666666666664, - 57.666666666666664, 57.666666666666664, 67, 67, 67 + 60.5, 60.5, 60.5, 50, 50, 50, 50, 46, 46, 46, 46, 54.25, 54.25, + 54.25 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -239,28 +240,31 @@ "gold": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 538, 538, 538, 487, 487, 487, 487, 451, 451, 451, 451, 404, 404, - 404 + 694, 694, 694, 641, 641, 641, 641, 598, 598, 598, 598, 549, 549, + 549 ] }, "goldOre": { - "buy": [48, 48, 48, 47, 47, 47, 47, 34, 34, 34, 34, 50, 50, 50], + "buy": [39, 39, 39, 52, 52, 52, 52, 46, 46, 46, 46, 48, 48, 48], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [56, 56, 56, 47, 47, 47, 47, 50, 50, 50, 50, 49, 49, 49] + "sell": [68, 68, 68, 58, 58, 58, 58, 55, 55, 55, 55, 50, 50, 50] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [29, 29, 29, 21, 21, 21, 21, 23, 23, 23, 23, 19, 19, 19], + "buy": [ + 27, 27, 27, 25, 25, 25, 25, 24.5, 24.5, 24.5, 24.5, 25.5, 25.5, + 25.5 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [74, 74, 74, 70, 70, 70, 70, 81, 81, 81, 81, 81, 81, 81], + "buy": [88, 88, 88, 84, 84, 84, 84, 80, 80, 80, 80, 78, 78, 78], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -285,12 +289,13 @@ }, "water": { "buy": [ - 40, 40, 40, 31.333333333333332, 31.333333333333332, - 31.333333333333332, 31.333333333333332, 34.666666666666664, - 34.666666666666664, 34.666666666666664, 34.666666666666664, - 34.333333333333336, 34.333333333333336, 34.333333333333336 + 29, 29, 29, 35, 35, 35, 35, 31.333333333333332, + 31.333333333333332, 31.333333333333332, 31.333333333333332, 40, + 40, 40 ], - "sell": [32, 32, 32, 32, 32, 32, 32, 31, 31, 31, 31, 33, 33, 33] + "sell": [ + 34, 34, 34, 36.5, 36.5, 36.5, 36.5, 36, 36, 36, 36, 36, 36, 36 + ] } }, "mask": "BigInt:1073741824" @@ -327,17 +332,18 @@ "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [ - 0, 75992.36577413816, 75992.36577413816, 75992.36577413816, - 75992.36577413816, 151984.73154827632, 151984.73154827632, - 227977.09732241448, 227977.09732241448, 303969.46309655264, - 303969.46309655264, 379961.8288706908, 379961.8288706908, - 455954.1946448289 + 1270073.8278659042, 1347479.3644952788, 1347479.3644952788, + 1424884.9011246534, 1424884.9011246534, 1502290.437754028, + 1502290.437754028, 1548110.7325874916, 1548110.7325874916, + 1548110.7325874916, 1548110.7325874916, 1548110.7325874916, + 1548110.7325874916, 1548110.7325874916 ], "silica": [ - 0, 0, 0, 16185.466094364994, 16185.466094364994, - 32370.93218872999, 32370.93218872999, 48556.39828309498, - 48556.39828309498, 64741.86437745998, 64741.86437745998, - 80927.33047182497, 80927.33047182497, 97112.79656618997 + 282508.2746068845, 298931.77844633406, 298931.77844633406, + 315355.2822857836, 315355.2822857836, 328470.07678899076, + 328470.07678899076, 328470.07678899076, 328470.07678899076, + 328470.07678899076, 328470.07678899076, 328470.07678899076, + 328470.07678899076, 328470.07678899076 ] }, "prices": { @@ -358,7 +364,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [18, 18, 18, 21, 21, 21, 21, 18, 18, 18, 18, 15, 15, 15], + "buy": [18, 18, 18, 20, 20, 20, 20, 14, 14, 14, 14, 17, 17, 17], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { @@ -391,19 +397,19 @@ }, "metals": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [68, 68, 68, 64, 64, 64, 64, 75, 75, 75, 75, 71, 71, 71] + "sell": [45, 45, 45, 56, 56, 56, 56, 62, 62, 62, 62, 68, 68, 68] }, "ore": { - "buy": [27, 27, 27, 37, 37, 37, 37, 33, 33, 33, 33, 29, 29, 29], + "buy": [28, 28, 28, 31, 31, 31, 31, 34, 34, 34, 34, 40, 40, 40], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { - "buy": [27, 27, 27, 33, 33, 33, 33, 34, 34, 34, 34, 31, 31, 31], + "buy": [19, 19, 19, 29, 29, 29, 29, 33, 33, 33, 33, 29, 29, 29], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [17, 17, 17, 21, 21, 21, 21, 22, 22, 22, 22, 20, 20, 20] + "sell": [32, 32, 32, 31, 31, 31, 31, 29, 29, 29, 29, 22, 22, 22] }, "superconductors": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -414,7 +420,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [21, 21, 21, 20, 20, 20, 20, 27, 27, 27, 27, 33, 33, 33], + "buy": [27, 27, 27, 31, 31, 31, 31, 37, 37, 37, 37, 37, 37, 37], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, @@ -449,18 +455,18 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 0, 24828.609037077473, 24828.609037077473, 49657.218074154945, - 49657.218074154945, 74485.82711123241, 74485.82711123241, - 99314.43614830989, 99314.43614830989, 124143.04518538737, - 124143.04518538737, 148971.65422246483, 148971.65422246483, - 173800.2632595423 + 703920.2413046471, 741146.2615003304, 741146.2615003304, + 744520.4039136674, 744520.4039136674, 744520.4039136674, + 744520.4039136674, 744520.4039136674, 744520.4039136674, + 744520.4039136674, 744520.4039136674, 744520.4039136674, + 744520.4039136674, 744520.4039136674 ], "goldOre": [ - 118827.92573803339, 121120.52176501568, 0, 6056.026088250785, - 6056.026088250785, 12112.05217650157, 12112.05217650157, - 18168.078264752352, 18168.078264752352, 24224.10435300314, - 24224.10435300314, 30280.130441253925, 30280.130441253925, - 36336.15652950471 + 102920.0364490679, 106154.07960955077, 106154.07960955077, + 106154.07960955077, 106154.07960955077, 106154.07960955077, + 106154.07960955077, 106154.07960955077, 106154.07960955077, + 106154.07960955077, 106154.07960955077, 106154.07960955077, + 106154.07960955077, 106154.07960955077 ], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -484,31 +490,36 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [26, 26, 26, 15, 15, 15, 15, 13, 13, 13, 13, 16, 16, 16], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [24, 24, 24, 16, 16, 16, 16, 14, 14, 14, 14, 20, 20, 20], + "sell": [ + 24.5, 24.5, 24.5, 19, 19, 19, 19, 17, 17, 17, 17, 17, 17, 17 + ] }, "fuel": { - "buy": [66, 66, 66, 67, 67, 67, 67, 44, 44, 44, 44, 49, 49, 49], - "sell": [28, 28, 28, 48, 48, 48, 48, 50, 50, 50, 50, 49, 49, 49] + "buy": [ + 52.666666666666664, 52.666666666666664, 52.666666666666664, 49, + 49, 49, 49, 48, 48, 48, 48, 56, 56, 56 + ], + "sell": [71, 71, 71, 54, 54, 54, 54, 48, 48, 48, 48, 60, 60, 60] }, "fuelium": { - "buy": [54, 54, 54, 58, 58, 58, 58, 57, 57, 57, 57, 61, 61, 61], + "buy": [59, 59, 59, 50, 50, 50, 50, 70, 70, 70, 70, 59, 59, 59], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 707, 707, 707, 618, 618, 618, 618, 552, 552, 552, 552, 515, 515, - 515 + 758, 758, 758, 671, 671, 671, 671, 599, 599, 599, 599, 584, 584, + 584 ] }, "goldOre": { - "buy": [40, 40, 40, 44, 44, 44, 44, 61, 61, 61, 61, 53, 53, 53], + "buy": [72, 72, 72, 59, 59, 59, 59, 69, 69, 69, 69, 65, 65, 65], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [47, 47, 47, 47, 47, 47, 47, 42, 42, 42, 42, 48, 48, 48] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -519,7 +530,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [86, 86, 86, 66, 66, 66, 66, 84, 84, 84, 84, 64, 64, 64], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -543,7 +554,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [25, 25, 25, 41, 41, 41, 41, 33, 33, 33, 33, 34, 34, 34], + "buy": [ + 31, 31, 31, 31.333333333333332, 31.333333333333332, + 31.333333333333332, 31.333333333333332, 33, 33, 33, 33, + 31.333333333333332, 31.333333333333332, 31.333333333333332 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, @@ -581,18 +596,17 @@ "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [ - 2602924.2613532436, 2753884.0458483626, 2753884.0458483626, - 2904843.8303434816, 2904843.8303434816, 150959.78449511912, - 150959.78449511912, 301919.56899023824, 301919.56899023824, - 452879.35348535737, 452879.35348535737, 603839.1379804765, - 603839.1379804765, 754798.9224755956 + 0, 0, 0, 64392.737515699526, 64392.737515699526, + 128785.47503139905, 128785.47503139905, 193178.21254709858, + 193178.21254709858, 257570.9500627981, 257570.9500627981, + 321963.68757849763, 321963.68757849763, 386356.42509419715 ], "silica": [ - 272644.15021648974, 288558.7754279196, 0, 15914.625211429839, - 15914.625211429839, 31829.250422859677, 31829.250422859677, - 47743.875634289514, 47743.875634289514, 63658.500845719354, - 63658.500845719354, 79573.12605714919, 79573.12605714919, - 95487.75126857903 + 439897.78360621777, 463873.9143319188, 463873.9143319188, + 479522.61451402097, 479522.61451402097, 479522.61451402097, + 479522.61451402097, 479522.61451402097, 479522.61451402097, + 479522.61451402097, 479522.61451402097, 479522.61451402097, + 479522.61451402097, 479522.61451402097 ] }, "prices": { @@ -602,33 +616,45 @@ }, "drones": { "buy": [ - 1414, 1414, 1414, 1090, 1090, 1090, 1090, 1299, 1299, 1299, - 1299, 1246, 1246, 1246 + 1643, 1643, 1643, 922, 922, 922, 922, 1105, 1105, 1105, 1105, + 1062, 1062, 1062 ], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [ + 1030, 1030, 1030, 1193.5, 1193.5, 1193.5, 1193.5, 1191.5, + 1191.5, 1191.5, 1191.5, 1079, 1079, 1079 + ] }, "electronics": { "buy": [ - 258, 258, 258, 313, 313, 313, 313, 363, 363, 363, 363, 450, 450, - 450 + 330, 330, 330, 314, 314, 314, 314, 288.6666666666667, + 288.6666666666667, 288.6666666666667, 288.6666666666667, + 347.6666666666667, 347.6666666666667, 347.6666666666667 ], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [ + 282, 282, 282, 305, 305, 305, 305, 308, 308, 308, 308, 325, 325, + 325 + ] }, "engineParts": { "buy": [ - 473, 473, 473, 377, 377, 377, 377, 363, 363, 363, 363, 432, 432, - 432 + 313, 313, 313, 284, 284, 284, 284, 339, 339, 339, 339, 322, 322, + 322 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [14, 14, 14, 15, 15, 15, 15, 18, 18, 18, 18, 16, 16, 16], - "sell": [22, 22, 22, 21, 21, 21, 21, 19, 19, 19, 19, 17, 17, 17] + "buy": [15, 15, 15, 18, 18, 18, 18, 16, 16, 16, 16, 21, 21, 21], + "sell": [ + 21.666666666666668, 21.666666666666668, 21.666666666666668, 18, + 18, 18, 18, 17.333333333333332, 17.333333333333332, + 17.333333333333332, 17.333333333333332, 16.666666666666668, + 16.666666666666668, 16.666666666666668 + ] }, "fuel": { "buy": [ - 59.5, 59.5, 59.5, 47, 47, 47, 47, 59, 59, 59, 59, 54.5, 54.5, - 54.5 + 61, 61, 61, 57.5, 57.5, 57.5, 57.5, 54.25, 54.25, 54.25, 54.25, + 64, 64, 64 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -637,7 +663,10 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 783, 783, 783, 778, 778, 778, 778, 784, 784, 784, 784, 788, 788, + 788 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "goldOre": { @@ -645,8 +674,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [44, 44, 44, 44, 44, 44, 44, 42, 42, 42, 42, 45, 45, 45], - "sell": [38, 38, 38, 34, 34, 34, 34, 34, 34, 34, 34, 37, 37, 37] + "buy": [ + 31.5, 31.5, 31.5, 41.5, 41.5, 41.5, 41.5, 44.5, 44.5, 44.5, + 44.5, 51, 51, 51 + ], + "sell": [46, 46, 46, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44, 44] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -657,20 +689,23 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [45, 45, 45, 49, 49, 49, 49, 64, 64, 64, 64, 77, 77, 77], - "sell": [67, 67, 67, 79, 79, 79, 79, 82, 82, 82, 82, 78, 78, 78] + "buy": [ + 72, 72, 72, 57.5, 57.5, 57.5, 57.5, 61.5, 61.5, 61.5, 61.5, + 53.5, 53.5, 53.5 + ], + "sell": [42, 42, 42, 75, 75, 75, 75, 68, 68, 68, 68, 68, 68, 68] }, "ore": { - "buy": [39, 39, 39, 41, 41, 41, 41, 26, 26, 26, 26, 24, 24, 24], + "buy": [37, 37, 37, 34, 34, 34, 34, 34, 34, 34, 34, 40, 40, 40], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { - "buy": [49, 49, 49, 38, 38, 38, 38, 50, 50, 50, 50, 48, 48, 48], + "buy": [47, 47, 47, 29, 29, 29, 29, 39, 39, 39, 39, 39, 39, 39], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [40, 40, 40, 34, 34, 34, 34, 32, 32, 32, 32, 29, 29, 29] + "buy": [26, 26, 26, 24, 24, 24, 24, 32, 32, 32, 32, 28, 28, 28], + "sell": [29, 29, 29, 34, 34, 34, 34, 33, 33, 33, 33, 28, 28, 28] }, "superconductors": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -682,8 +717,8 @@ }, "water": { "buy": [ - 41, 41, 41, 37.5, 37.5, 37.5, 37.5, 30.5, 30.5, 30.5, 30.5, 41, - 41, 41 + 32.25, 32.25, 32.25, 32, 32, 32, 32, 37.25, 37.25, 37.25, 37.25, + 33, 33, 33 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } @@ -719,18 +754,19 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 608127.736339405, 32803.70252531909, 32803.70252531909, - 65607.40505063818, 65607.40505063818, 98411.10757595726, - 98411.10757595726, 131214.81010127635, 131214.81010127635, - 164018.51262659545, 164018.51262659545, 196822.21515191454, - 196822.21515191454, 229625.91767723364 + 0, 22638.482396911637, 22638.482396911637, 45276.964793823274, + 45276.964793823274, 67915.4471907349, 67915.4471907349, + 90553.92958764655, 90553.92958764655, 113192.41198455819, + 113192.41198455819, 135830.8943814698, 135830.8943814698, + 158469.37677838144 ], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [ - 0, 4595.240533782867, 0, 4595.240533782867, 4595.240533782867, - 9190.481067565734, 9190.481067565734, 13785.7216013486, - 13785.7216013486, 18380.962135131467, 18380.962135131467, - 22976.202668914335, 22976.202668914335, 27571.443202697203 + 142345.62341722674, 151155.98523819336, 151155.98523819336, + 159966.34705915998, 159966.34705915998, 168776.7088801266, + 168776.7088801266, 176207.2364193321, 176207.2364193321, + 176207.2364193321, 176207.2364193321, 176207.2364193321, + 176207.2364193321, 176207.2364193321 ], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] @@ -742,51 +778,52 @@ }, "drones": { "buy": [ - 944, 944, 944, 1140, 1140, 1140, 1140, 1372, 1372, 1372, 1372, - 1252, 1252, 1252 + 1340, 1340, 1340, 1047, 1047, 1047, 1047, 1258, 1258, 1258, + 1258, 1092, 1092, 1092 ], "sell": [ - 1364, 1364, 1364, 1238, 1238, 1238, 1238, 1129, 1129, 1129, - 1129, 1031, 1031, 1031 + 772, 772, 772, 858.5, 858.5, 858.5, 858.5, 970, 970, 970, 970, + 989.5, 989.5, 989.5 ] }, "electronics": { "buy": [ - 375, 375, 375, 352, 352, 352, 352, 423, 423, 423, 423, 351, 351, - 351 + 219, 219, 219, 259.6666666666667, 259.6666666666667, + 259.6666666666667, 259.6666666666667, 266.6666666666667, + 266.6666666666667, 266.6666666666667, 266.6666666666667, + 316.6666666666667, 316.6666666666667, 316.6666666666667 ], - "sell": [ - 384, 384, 384, 356, 356, 356, 356, 307, 307, 307, 307, 267, 267, - 267 - ] + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "engineParts": { "buy": [ - 348, 348, 348, 416, 416, 416, 416, 382, 382, 382, 382, 462, 462, - 462 + 347, 347, 347, 295, 295, 295, 295, 291, 291, 291, 291, 346, 346, + 346 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [9, 9, 9, 20, 20, 20, 20, 9, 9, 9, 9, 21, 21, 21], - "sell": [22, 22, 22, 21, 21, 21, 21, 15, 15, 15, 15, 13, 13, 13] + "buy": [14, 14, 14, 18, 18, 18, 18, 17, 17, 17, 17, 19, 19, 19], + "sell": [ + 17, 17, 17, 20.5, 20.5, 20.5, 20.5, 16.5, 16.5, 16.5, 16.5, 15, + 15, 15 + ] }, "fuel": { "buy": [ - 48.5, 48.5, 48.5, 45, 45, 45, 45, 50, 50, 50, 50, 51.5, 51.5, - 51.5 + 70.66666666666667, 70.66666666666667, 70.66666666666667, 58, 58, + 58, 58, 50.666666666666664, 50.666666666666664, + 50.666666666666664, 50.666666666666664, 55.666666666666664, + 55.666666666666664, 55.666666666666664 ], - "sell": [81, 81, 81, 76, 76, 76, 76, 65, 65, 65, 65, 62, 62, 62] + "sell": [38, 38, 38, 44, 44, 44, 44, 47, 47, 47, 47, 45, 45, 45] }, "fuelium": { - "buy": [74, 74, 74, 62, 62, 62, 62, 65, 65, 65, 65, 68, 68, 68], + "buy": [51, 51, 51, 54, 54, 54, 54, 52, 52, 52, 52, 64, 64, 64], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { - "buy": [ - 544, 544, 544, 657, 657, 657, 657, 592, 592, 592, 592, 705, 705, - 705 - ], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "goldOre": { @@ -795,7 +832,10 @@ }, "hullPlates": { "buy": [ - 49, 49, 49, 38.5, 38.5, 38.5, 38.5, 53, 53, 53, 53, 44, 44, 44 + 50, 50, 50, 48.666666666666664, 48.666666666666664, + 48.666666666666664, 48.666666666666664, 51.333333333333336, + 51.333333333333336, 51.333333333333336, 51.333333333333336, + 45.333333333333336, 45.333333333333336, 45.333333333333336 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -804,7 +844,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [14, 14, 14, 23, 23, 23, 23, 21, 21, 21, 21, 23, 23, 23], + "buy": [21, 21, 21, 26, 26, 26, 26, 28, 28, 28, 28, 28, 28, 28], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { @@ -820,7 +860,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [20, 20, 20, 27, 27, 27, 27, 35, 35, 35, 35, 27, 27, 27], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "superconductors": { @@ -833,10 +873,12 @@ }, "water": { "buy": [ - 25.5, 25.5, 25.5, 37.5, 37.5, 37.5, 37.5, 33, 33, 33, 33, 33.5, - 33.5, 33.5 + 36.666666666666664, 36.666666666666664, 36.666666666666664, + 28.666666666666668, 28.666666666666668, 28.666666666666668, + 28.666666666666668, 32, 32, 32, 32, 37.333333333333336, + 37.333333333333336, 37.333333333333336 ], - "sell": [23, 23, 23, 31, 31, 31, 31, 29, 29, 29, 29, 32, 32, 32] + "sell": [35, 35, 35, 36, 36, 36, 36, 39, 39, 39, 39, 38, 38, 38] } }, "mask": "BigInt:1073741824" @@ -873,18 +915,18 @@ "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [ - 298474.27144723514, 18483.568075202988, 18483.568075202988, - 36967.136150405975, 36967.136150405975, 55450.70422560896, - 55450.70422560896, 73934.27230081195, 73934.27230081195, - 92417.84037601494, 92417.84037601494, 110901.40845121793, - 110901.40845121793, 129384.97652642091 + 249828.97149577196, 264001.9559221555, 264001.9559221555, + 278174.9403485391, 278174.9403485391, 283459.6885276711, + 283459.6885276711, 283459.6885276711, 283459.6885276711, + 283459.6885276711, 283459.6885276711, 283459.6885276711, + 283459.6885276711, 283459.6885276711 ], "silica": [ - 0, 7583.205637944777, 7583.205637944777, 15166.411275889554, - 15166.411275889554, 22749.616913834332, 22749.616913834332, - 30332.822551779107, 30332.822551779107, 37916.02818972388, - 37916.02818972388, 45499.23382766866, 45499.23382766866, - 53082.43946561343 + 188647.36071458607, 195986.66222782532, 195986.66222782532, + 195986.66222782532, 195986.66222782532, 195986.66222782532, + 195986.66222782532, 195986.66222782532, 195986.66222782532, + 195986.66222782532, 195986.66222782532, 195986.66222782532, + 195986.66222782532, 195986.66222782532 ] }, "prices": { @@ -895,22 +937,18 @@ "drones": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 1440.7142857142858, 1440.7142857142858, 1440.7142857142858, - 1383.4285714285713, 1383.4285714285713, 1383.4285714285713, - 1383.4285714285713, 1316.7142857142858, 1316.7142857142858, - 1316.7142857142858, 1316.7142857142858, 1274.7142857142858, - 1274.7142857142858, 1274.7142857142858 + 1393.6, 1393.6, 1393.6, 1328.6, 1328.6, 1328.6, 1328.6, 1241.4, + 1241.4, 1241.4, 1241.4, 1180.6, 1180.6, 1180.6 ] }, "electronics": { "buy": [ - 350.6666666666667, 350.6666666666667, 350.6666666666667, 377, - 377, 377, 377, 367.8333333333333, 367.8333333333333, - 367.8333333333333, 367.8333333333333, 348, 348, 348 + 304.75, 304.75, 304.75, 276.75, 276.75, 276.75, 276.75, 298.5, + 298.5, 298.5, 298.5, 336.5, 336.5, 336.5 ], "sell": [ - 420, 420, 420, 386, 386, 386, 386, 348, 348, 348, 348, 335, 335, - 335 + 286, 286, 286, 258, 258, 258, 258, 291, 291, 291, 291, 286, 286, + 286 ] }, "engineParts": { @@ -918,20 +956,15 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [12, 12, 12, 17, 17, 17, 17, 21, 21, 21, 21, 13, 13, 13], + "buy": [24, 24, 24, 12, 12, 12, 12, 17, 17, 17, 17, 20, 20, 20], "sell": [ - 21, 21, 21, 17.333333333333332, 17.333333333333332, - 17.333333333333332, 17.333333333333332, 18.666666666666668, - 18.666666666666668, 18.666666666666668, 18.666666666666668, - 16.833333333333332, 16.833333333333332, 16.833333333333332 + 21, 21, 21, 18.5, 18.5, 18.5, 18.5, 18, 18, 18, 18, 15, 15, 15 ] }, "fuel": { "buy": [ - 55.333333333333336, 55.333333333333336, 55.333333333333336, - 46.666666666666664, 46.666666666666664, 46.666666666666664, - 46.666666666666664, 53, 53, 53, 53, 58.833333333333336, - 58.833333333333336, 58.833333333333336 + 63.8, 63.8, 63.8, 55.4, 55.4, 55.4, 55.4, 52.4, 52.4, 52.4, + 52.4, 55.8, 55.8, 55.8 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -941,8 +974,8 @@ }, "gold": { "buy": [ - 796, 796, 796, 579, 579, 579, 579, 695, 695, 695, 695, 628, 628, - 628 + 586, 586, 586, 705, 705, 705, 705, 848, 848, 848, 848, 734, 734, + 734 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -952,12 +985,10 @@ }, "hullPlates": { "buy": [ - 42.666666666666664, 42.666666666666664, 42.666666666666664, - 42.666666666666664, 42.666666666666664, 42.666666666666664, - 42.666666666666664, 46.666666666666664, 46.666666666666664, - 46.666666666666664, 46.666666666666664, 48.5, 48.5, 48.5 + 49.5, 49.5, 49.5, 43, 43, 43, 43, 51, 51, 51, 51, 47.75, 47.75, + 47.75 ], - "sell": [52, 52, 52, 57, 57, 57, 57, 52, 52, 52, 52, 51, 51, 51] + "sell": [55, 55, 55, 53, 53, 53, 53, 48, 48, 48, 48, 47, 47, 47] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -968,20 +999,20 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [67, 67, 67, 73, 73, 73, 73, 72, 72, 72, 72, 71, 71, 71], - "sell": [76, 76, 76, 82, 82, 82, 82, 80, 80, 80, 80, 74, 74, 74] + "buy": [68, 68, 68, 82, 82, 82, 82, 78, 78, 78, 78, 95, 95, 95], + "sell": [99, 99, 99, 97, 97, 97, 97, 85, 85, 85, 85, 81, 81, 81] }, "ore": { - "buy": [38, 38, 38, 37, 37, 37, 37, 27, 27, 27, 27, 26, 26, 26], + "buy": [18, 18, 18, 29, 29, 29, 29, 34, 34, 34, 34, 39, 39, 39], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { - "buy": [36, 36, 36, 45, 45, 45, 45, 46, 46, 46, 46, 43, 43, 43], + "buy": [41, 41, 41, 24, 24, 24, 24, 30, 30, 30, 30, 24, 24, 24], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [29, 29, 29, 28, 28, 28, 28, 34, 34, 34, 34, 24, 24, 24], - "sell": [30, 30, 30, 27, 27, 27, 27, 30, 30, 30, 30, 32, 32, 32] + "buy": [21, 21, 21, 30, 30, 30, 30, 21, 21, 21, 21, 25, 25, 25], + "sell": [17, 17, 17, 15, 15, 15, 15, 23, 23, 23, 23, 17, 17, 17] }, "superconductors": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -993,10 +1024,8 @@ }, "water": { "buy": [ - 34, 34, 34, 36.714285714285715, 36.714285714285715, - 36.714285714285715, 36.714285714285715, 34.142857142857146, - 34.142857142857146, 34.142857142857146, 34.142857142857146, 39, - 39, 39 + 33.8, 33.8, 33.8, 30.8, 30.8, 30.8, 30.8, 37.4, 37.4, 37.4, + 37.4, 32.4, 32.4, 32.4 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } @@ -1034,10 +1063,11 @@ "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [ - 0, 0, 0, 18338.617415685087, 18338.617415685087, - 36677.23483137017, 36677.23483137017, 55015.852247055256, - 55015.852247055256, 73354.46966274035, 73354.46966274035, - 91693.08707842544, 91693.08707842544, 110031.70449411053 + 275948.15922433574, 291242.9777714991, 291242.9777714991, + 305896.370943267, 305896.370943267, 305896.370943267, + 305896.370943267, 305896.370943267, 305896.370943267, + 305896.370943267, 305896.370943267, 305896.370943267, + 305896.370943267, 305896.370943267 ], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] @@ -1050,14 +1080,14 @@ "drones": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 986.5, 986.5, 986.5, 1153.5, 1153.5, 1153.5, 1153.5, 1206.5, - 1206.5, 1206.5, 1206.5, 1212, 1212, 1212 + 781.5, 781.5, 781.5, 1078.5, 1078.5, 1078.5, 1078.5, 987.5, + 987.5, 987.5, 987.5, 992, 992, 992 ] }, "electronics": { "buy": [ - 333.5, 333.5, 333.5, 389, 389, 389, 389, 374, 374, 374, 374, - 350.5, 350.5, 350.5 + 294, 294, 294, 240.5, 240.5, 240.5, 240.5, 255, 255, 255, 255, + 304, 304, 304 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -1066,19 +1096,15 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [26, 26, 26, 14, 14, 14, 14, 21, 21, 21, 21, 14, 14, 14], + "buy": [17, 17, 17, 16, 16, 16, 16, 20, 20, 20, 20, 18, 18, 18], "sell": [ - 20, 20, 20, 19, 19, 19, 19, 18.333333333333332, - 18.333333333333332, 18.333333333333332, 18.333333333333332, - 17.666666666666668, 17.666666666666668, 17.666666666666668 + 23.5, 23.5, 23.5, 19, 19, 19, 19, 16.5, 16.5, 16.5, 16.5, 16.5, + 16.5, 16.5 ] }, "fuel": { "buy": [ - 52, 52, 52, 48.666666666666664, 48.666666666666664, - 48.666666666666664, 48.666666666666664, 48.666666666666664, - 48.666666666666664, 48.666666666666664, 48.666666666666664, - 66.33333333333333, 66.33333333333333, 66.33333333333333 + 61, 61, 61, 54.5, 54.5, 54.5, 54.5, 59, 59, 59, 59, 59, 59, 59 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -1096,8 +1122,8 @@ }, "hullPlates": { "buy": [ - 28.5, 28.5, 28.5, 31.5, 31.5, 31.5, 31.5, 42, 42, 42, 42, 44.5, - 44.5, 44.5 + 45, 45, 45, 38.5, 38.5, 38.5, 38.5, 48, 48, 48, 48, 53.5, 53.5, + 53.5 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -1106,9 +1132,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [ - 28, 28, 28, 24.5, 24.5, 24.5, 24.5, 23, 23, 23, 23, 26, 26, 26 - ], + "buy": [19, 19, 19, 20, 20, 20, 20, 26, 26, 26, 26, 24, 24, 24], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { @@ -1137,13 +1161,11 @@ }, "water": { "buy": [ - 38, 38, 38, 35.333333333333336, 35.333333333333336, - 35.333333333333336, 35.333333333333336, 32, 32, 32, 32, - 38.333333333333336, 38.333333333333336, 38.333333333333336 + 31, 31, 31, 27, 27, 27, 27, 33.333333333333336, + 33.333333333333336, 33.333333333333336, 33.333333333333336, + 29.333333333333332, 29.333333333333332, 29.333333333333332 ], - "sell": [ - 33.5, 33.5, 33.5, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37, 37 - ] + "sell": [51, 51, 51, 38, 38, 38, 38, 37, 37, 37, 37, 33, 33, 33] } }, "mask": "BigInt:1073741824" @@ -1178,10 +1200,11 @@ "availableResources": { "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [ - 0, 0, 0, 9361.434474081838, 9361.434474081838, 18722.868948163676, - 18722.868948163676, 28084.303422245514, 28084.303422245514, - 37445.73789632735, 37445.73789632735, 46807.172370409186, - 46807.172370409186, 56168.60684449102 + 209514.62617726036, 222581.457012028, 222581.457012028, + 235648.28784679563, 235648.28784679563, 248715.11868156327, + 248715.11868156327, 261336.61669535277, 261336.61669535277, + 261336.61669535277, 261336.61669535277, 261336.61669535277, + 261336.61669535277, 261336.61669535277 ], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -1195,18 +1218,18 @@ "drones": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 1341, 1341, 1341, 1348.5, 1348.5, 1348.5, 1348.5, 1252, 1252, - 1252, 1252, 1176.5, 1176.5, 1176.5 + 1430, 1430, 1430, 1336, 1336, 1336, 1336, 1242, 1242, 1242, + 1242, 1159, 1159, 1159 ] }, "electronics": { "buy": [ - 414, 414, 414, 360, 360, 360, 360, 358, 358, 358, 358, 340, 340, - 340 + 368, 368, 368, 281, 281, 281, 281, 265, 265, 265, 265, 321, 321, + 321 ], "sell": [ - 384, 384, 384, 373, 373, 373, 373, 367, 367, 367, 367, 352, 352, - 352 + 306, 306, 306, 293, 293, 293, 293, 304, 304, 304, 304, 283, 283, + 283 ] }, "engineParts": { @@ -1214,19 +1237,18 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [8, 8, 8, 20, 20, 20, 20, 9, 9, 9, 9, 16, 16, 16], + "buy": [16, 16, 16, 20, 20, 20, 20, 18, 18, 18, 18, 15, 15, 15], "sell": [ - 18.5, 18.5, 18.5, 18.5, 18.5, 18.5, 18.5, 16.5, 16.5, 16.5, - 16.5, 16, 16, 16 + 18.666666666666668, 18.666666666666668, 18.666666666666668, 17, + 17, 17, 17, 16.333333333333332, 16.333333333333332, + 16.333333333333332, 16.333333333333332, 17.333333333333332, + 17.333333333333332, 17.333333333333332 ] }, "fuel": { "buy": [ - 57.666666666666664, 57.666666666666664, 57.666666666666664, - 45.333333333333336, 45.333333333333336, 45.333333333333336, - 45.333333333333336, 62.333333333333336, 62.333333333333336, - 62.333333333333336, 62.333333333333336, 51.333333333333336, - 51.333333333333336, 51.333333333333336 + 55, 55, 55, 54.75, 54.75, 54.75, 54.75, 55, 55, 55, 55, 51.5, + 51.5, 51.5 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -1236,38 +1258,32 @@ }, "gold": { "buy": [ - 397, 397, 397, 483, 483, 483, 483, 584, 584, 584, 584, 692, 692, - 692 + 711, 711, 711, 845, 845, 845, 845, 730, 730, 730, 730, 660, 660, + 660 ], "sell": [ - 693, 693, 693, 669, 669, 669, 669, 652, 652, 652, 652, 639, 639, - 639 + 631, 631, 631, 790, 790, 790, 790, 694, 694, 694, 694, 618, 618, + 618 ] }, "goldOre": { - "buy": [44, 44, 44, 39, 39, 39, 39, 48, 48, 48, 48, 58, 58, 58], + "buy": [96, 96, 96, 81, 81, 81, 81, 58, 58, 58, 58, 62, 62, 62], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [ - 39.5, 39.5, 39.5, 43, 43, 43, 43, 43.5, 43.5, 43.5, 43.5, 43.5, - 43.5, 43.5 - ] + "buy": [40, 40, 40, 43, 43, 43, 43, 55, 55, 55, 55, 55, 55, 55], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [17, 17, 17, 20, 20, 20, 20, 24, 24, 24, 24, 22, 22, 22], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [ - 70, 70, 70, 60, 60, 60, 60, 78.5, 78.5, 78.5, 78.5, 71.5, 71.5, - 71.5 - ], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -1279,7 +1295,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [21, 21, 21, 24, 24, 24, 24, 22, 22, 22, 22, 31, 31, 31], + "buy": [21, 21, 21, 27, 27, 27, 27, 19, 19, 19, 19, 35, 35, 35], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "superconductors": { @@ -1292,11 +1308,12 @@ }, "water": { "buy": [ - 30.666666666666668, 30.666666666666668, 30.666666666666668, - 31.666666666666668, 31.666666666666668, 31.666666666666668, - 31.666666666666668, 33, 33, 33, 33, 35, 35, 35 + 28.333333333333332, 28.333333333333332, 28.333333333333332, 28, + 28, 28, 28, 35.333333333333336, 35.333333333333336, + 35.333333333333336, 35.333333333333336, 35.666666666666664, + 35.666666666666664, 35.666666666666664 ], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [59, 59, 59, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42, 42] } }, "mask": "BigInt:1073741824" @@ -1353,11 +1370,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [16, 16, 16, 19, 19, 19, 19, 19, 19, 19, 19, 18, 18, 18], - "sell": [24, 24, 24, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21] + "buy": [18, 18, 18, 19, 19, 19, 19, 19, 19, 19, 19, 15, 15, 15], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { - "buy": [58, 58, 58, 51, 51, 51, 51, 62, 62, 62, 62, 60, 60, 60], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -1381,7 +1398,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [18, 18, 18, 17, 17, 17, 17, 17, 17, 17, 17, 26, 26, 26], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { @@ -1409,8 +1426,8 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [39, 39, 39, 31, 31, 31, 31, 37, 37, 37, 37, 30, 30, 30], - "sell": [27, 27, 27, 28, 28, 28, 28, 26, 26, 26, 26, 35, 35, 35] + "buy": [47, 47, 47, 28, 28, 28, 28, 42, 42, 42, 42, 30, 30, 30], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, "mask": "BigInt:1073741824" @@ -1447,11 +1464,11 @@ "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [ - 540117.1911241066, 570997.7428204617, 0, 30880.551696355065, - 30880.551696355065, 61761.10339271013, 61761.10339271013, - 92641.6550890652, 92641.6550890652, 123522.20678542026, - 123522.20678542026, 154402.75848177532, 154402.75848177532, - 185283.3101781304 + 225343.9735241755, 238676.9725628205, 238676.9725628205, + 252009.9716014655, 252009.9716014655, 265342.97064011055, + 265342.97064011055, 266659.98077290016, 266659.98077290016, + 266659.98077290016, 266659.98077290016, 266659.98077290016, + 266659.98077290016, 266659.98077290016 ], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -1473,16 +1490,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [12, 12, 12, 18, 18, 18, 18, 17, 17, 17, 17, 17, 17, 17], - "sell": [ - 21.5, 21.5, 21.5, 18.5, 18.5, 18.5, 18.5, 18, 18, 18, 18, 15, - 15, 15 - ] + "buy": [17, 17, 17, 21, 21, 21, 21, 16, 16, 16, 16, 20, 20, 20], + "sell": [21, 21, 21, 14, 14, 14, 14, 15, 15, 15, 15, 16, 16, 16] }, "fuel": { - "buy": [ - 53, 53, 53, 66, 66, 66, 66, 51.5, 51.5, 51.5, 51.5, 62, 62, 62 - ], + "buy": [34, 34, 34, 55, 55, 55, 55, 42, 42, 42, 42, 61, 61, 61], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -1511,10 +1523,10 @@ }, "metals": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [54, 54, 54, 45, 45, 45, 45, 48, 48, 48, 48, 52, 52, 52] + "sell": [67, 67, 67, 94, 94, 94, 94, 85, 85, 85, 85, 79, 79, 79] }, "ore": { - "buy": [16, 16, 16, 22, 22, 22, 22, 26, 26, 26, 26, 30, 30, 30], + "buy": [47, 47, 47, 37, 37, 37, 37, 36, 36, 36, 36, 38, 38, 38], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { @@ -1535,10 +1547,8 @@ }, "water": { "buy": [ - 36.333333333333336, 36.333333333333336, 36.333333333333336, - 33.666666666666664, 33.666666666666664, 33.666666666666664, - 33.666666666666664, 26.666666666666668, 26.666666666666668, - 26.666666666666668, 26.666666666666668, 35, 35, 35 + 30.5, 30.5, 30.5, 34, 34, 34, 34, 37.5, 37.5, 37.5, 37.5, 34, + 34, 34 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } @@ -1597,11 +1607,19 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [15, 15, 15, 17, 17, 17, 17, 17, 17, 17, 17, 20, 20, 20], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [11, 11, 11, 18, 18, 18, 18, 16, 16, 16, 16, 20, 20, 20], + "sell": [ + 27, 27, 27, 19.333333333333332, 19.333333333333332, + 19.333333333333332, 19.333333333333332, 18, 18, 18, 18, + 18.666666666666668, 18.666666666666668, 18.666666666666668 + ] }, "fuel": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 49, 49, 49, 57, 57, 57, 57, 54.333333333333336, + 54.333333333333336, 54.333333333333336, 54.333333333333336, + 51.666666666666664, 51.666666666666664, 51.666666666666664 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -1618,7 +1636,10 @@ }, "hullPlates": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [ + 49.5, 49.5, 49.5, 49.5, 49.5, 49.5, 49.5, 45.5, 45.5, 45.5, + 45.5, 45, 45, 45 + ] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -1629,7 +1650,9 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 69.5, 69.5, 69.5, 77, 77, 77, 77, 85, 85, 85, 85, 93, 93, 93 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -1653,7 +1676,9 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [36, 36, 36, 35, 35, 35, 35, 36, 36, 36, 36, 36, 36, 36], + "buy": [ + 42, 42, 42, 35, 35, 35, 35, 37.5, 37.5, 37.5, 37.5, 38, 38, 38 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, @@ -1690,10 +1715,11 @@ "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [ - 0, 0, 0, 48325.44998586378, 48325.44998586378, 96650.89997172756, - 96650.89997172756, 144976.34995759133, 144976.34995759133, - 193301.79994345512, 193301.79994345512, 241627.2499293189, - 241627.2499293189, 289952.69991518266 + 504465.2264167402, 532053.0535525692, 532053.0535525692, + 27587.827135829008, 27587.827135829008, 55175.654271658015, + 55175.654271658015, 82763.48140748702, 82763.48140748702, + 110351.30854331603, 110351.30854331603, 137939.13567914505, + 137939.13567914505, 165526.96281497407 ], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] @@ -1716,11 +1742,13 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [29, 29, 29, 13, 13, 13, 13, 19, 19, 19, 19, 13, 13, 13], - "sell": [21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21, 21] + "buy": [15, 15, 15, 20, 20, 20, 20, 12, 12, 12, 12, 12, 12, 12], + "sell": [19, 19, 19, 19, 19, 19, 19, 16, 16, 16, 16, 17, 17, 17] }, "fuel": { - "buy": [74, 74, 74, 73, 73, 73, 73, 67, 67, 67, 67, 71, 71, 71], + "buy": [ + 39, 39, 39, 47.5, 47.5, 47.5, 47.5, 63, 63, 63, 63, 55, 55, 55 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -1737,18 +1765,18 @@ }, "hullPlates": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [67, 67, 67, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63, 63] + "sell": [61, 61, 61, 64, 64, 64, 64, 49, 49, 49, 49, 52, 52, 52] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [17, 17, 17, 19, 19, 19, 19, 21, 21, 21, 21, 26, 26, 26], + "buy": [30, 30, 30, 20, 20, 20, 20, 24, 24, 24, 24, 25, 25, 25], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [57, 57, 57, 66, 66, 66, 66, 66, 66, 66, 66, 67, 67, 67], + "buy": [97, 97, 97, 80, 80, 80, 80, 73, 73, 73, 73, 89, 89, 89], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -1773,10 +1801,11 @@ }, "water": { "buy": [ - 26.5, 26.5, 26.5, 29, 29, 29, 29, 36.5, 36.5, 36.5, 36.5, 38, - 38, 38 + 43, 43, 43, 33.333333333333336, 33.333333333333336, + 33.333333333333336, 33.333333333333336, 38, 38, 38, 38, 38, 38, + 38 ], - "sell": [20, 20, 20, 27, 27, 27, 27, 28, 28, 28, 28, 35, 35, 35] + "sell": [29, 29, 29, 27, 27, 27, 27, 32, 32, 32, 32, 35, 35, 35] } }, "mask": "BigInt:1073741824" @@ -1810,27 +1839,26 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 0, 26712.55111715758, 26712.55111715758, 53425.10223431516, - 53425.10223431516, 80137.65335147275, 80137.65335147275, - 106850.20446863033, 106850.20446863033, 133562.7555857879, - 133562.7555857879, 160275.3067029455, 160275.3067029455, - 186987.8578201031 + 0, 45050.9440289323, 45050.9440289323, 90101.8880578646, + 90101.8880578646, 135152.8320867969, 135152.8320867969, + 180203.7761157292, 180203.7761157292, 225254.72014466152, + 225254.72014466152, 270305.6641735938, 270305.6641735938, + 315356.6082025261 ], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [ - 0, 38998.54277139605, 38998.54277139605, 77997.0855427921, - 77997.0855427921, 116995.62831418816, 116995.62831418816, - 155994.1710855842, 155994.1710855842, 194992.71385698026, - 194992.71385698026, 233991.25662837632, 233991.25662837632, - 272989.79939977237 + 0, 0, 0, 40203.496054242954, 40203.496054242954, + 80406.99210848591, 80406.99210848591, 120610.48816272887, + 120610.48816272887, 160813.98421697182, 160813.98421697182, + 201017.48027121476, 201017.48027121476, 241220.9763254577 ], "silica": [ - 0, 17087.749407243733, 17087.749407243733, 34175.498814487466, - 34175.498814487466, 51263.2482217312, 51263.2482217312, - 68350.99762897493, 68350.99762897493, 85438.74703621867, - 85438.74703621867, 102526.49644346241, 102526.49644346241, - 119614.24585070615 + 0, 12783.324577930754, 12783.324577930754, 25566.64915586151, + 25566.64915586151, 38349.97373379226, 38349.97373379226, + 51133.29831172302, 51133.29831172302, 63916.62288965377, + 63916.62288965377, 76699.94746758453, 76699.94746758453, + 89483.27204551527 ] }, "prices": { @@ -1840,43 +1868,41 @@ }, "drones": { "buy": [ - 1687, 1687, 1687, 1290, 1290, 1290, 1290, 1548, 1548, 1548, - 1548, 1261, 1261, 1261 + 658, 658, 658, 783, 783, 783, 783, 948, 948, 948, 948, 1136, + 1136, 1136 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "electronics": { "buy": [ - 349, 349, 349, 421, 421, 421, 421, 399, 399, 399, 399, 351, 351, - 351 + 446, 446, 446, 279, 279, 279, 279, 273, 273, 273, 273, 327, 327, + 327 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "engineParts": { "buy": [ - 465, 465, 465, 394, 394, 394, 394, 365, 365, 365, 365, 443, 443, - 443 + 192, 192, 192, 225, 225, 225, 225, 268, 268, 268, 268, 326, 326, + 326 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [39, 39, 39, 17, 17, 17, 17, 14, 14, 14, 14, 20, 20, 20], - "sell": [ - 22, 22, 22, 18.666666666666668, 18.666666666666668, - 18.666666666666668, 18.666666666666668, 17.333333333333332, - 17.333333333333332, 17.333333333333332, 17.333333333333332, 17, - 17, 17 - ] + "buy": [23, 23, 23, 15, 15, 15, 15, 15, 15, 15, 15, 19, 19, 19], + "sell": [12, 12, 12, 20, 20, 20, 20, 18, 18, 18, 18, 17, 17, 17] }, "fuel": { "buy": [ - 57, 57, 57, 53.75, 53.75, 53.75, 53.75, 55.25, 55.25, 55.25, - 55.25, 63.25, 63.25, 63.25 + 64.66666666666667, 64.66666666666667, 64.66666666666667, + 51.666666666666664, 51.666666666666664, 51.666666666666664, + 51.666666666666664, 51.666666666666664, 51.666666666666664, + 51.666666666666664, 51.666666666666664, 59.666666666666664, + 59.666666666666664, 59.666666666666664 ], - "sell": [28, 28, 28, 40, 40, 40, 40, 54, 54, 54, 54, 54, 54, 54] + "sell": [68, 68, 68, 66, 66, 66, 66, 62, 62, 62, 62, 54, 54, 54] }, "fuelium": { - "buy": [46, 46, 46, 61, 61, 61, 61, 51, 51, 51, 51, 58, 58, 58], + "buy": [57, 57, 57, 63, 63, 63, 63, 56, 56, 56, 56, 61, 61, 61], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { @@ -1888,39 +1914,32 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [27, 27, 27, 30, 30, 30, 30, 41, 41, 41, 41, 0, 0, 0], - "sell": [ - 53, 53, 53, 56, 56, 56, 56, 51.5, 51.5, 51.5, 51.5, 53, 53, 53 - ] + "buy": [24, 24, 24, 36, 36, 36, 36, 50, 50, 50, 50, 44, 44, 0], + "sell": [27, 27, 27, 48, 48, 48, 48, 44, 44, 44, 44, 45, 45, 45] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [17, 17, 17, 23, 23, 23, 23, 15, 15, 15, 15, 21, 21, 21], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [ - 84, 84, 84, 75, 75, 75, 75, 90.5, 90.5, 90.5, 90.5, 77.5, 77.5, - 77.5 - ], - "sell": [ - 56, 56, 56, 100, 100, 100, 100, 98, 98, 98, 98, 97, 97, 97 - ] + "buy": [95, 95, 95, 82, 82, 82, 82, 74, 74, 74, 74, 83, 83, 83], + "sell": [86, 86, 86, 80, 80, 80, 80, 68, 68, 68, 68, 82, 82, 82] }, "ore": { - "buy": [52, 52, 52, 33, 33, 33, 33, 41, 41, 41, 41, 38, 38, 38], + "buy": [36, 36, 36, 34, 34, 34, 34, 41, 41, 41, 41, 38, 38, 38], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { - "buy": [45, 45, 45, 46, 46, 46, 46, 31, 31, 31, 31, 35, 35, 35], + "buy": [55, 55, 55, 48, 48, 48, 48, 50, 50, 50, 50, 43, 43, 43], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [26, 26, 26, 29, 29, 29, 29, 27, 27, 27, 27, 23, 23, 23] + "sell": [45, 45, 45, 35, 35, 35, 35, 30, 30, 30, 30, 26, 26, 26] }, "superconductors": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -1932,12 +1951,10 @@ }, "water": { "buy": [ - 35.666666666666664, 35.666666666666664, 35.666666666666664, - 28.666666666666668, 28.666666666666668, 28.666666666666668, - 28.666666666666668, 35.666666666666664, 35.666666666666664, - 35.666666666666664, 35.666666666666664, 35, 35, 35 + 35, 35, 35, 34, 34, 34, 34, 30.5, 30.5, 30.5, 30.5, 40.5, 40.5, + 40.5 ], - "sell": [42, 42, 42, 41, 41, 41, 41, 38, 38, 38, 38, 37, 37, 37] + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, "mask": "BigInt:1073741824" @@ -1971,11 +1988,11 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 0, 17957.62647331458, 17957.62647331458, 35915.25294662916, - 35915.25294662916, 53872.87941994374, 53872.87941994374, - 71830.50589325832, 71830.50589325832, 89788.1323665729, - 89788.1323665729, 107745.75883988748, 107745.75883988748, - 125703.38531320206 + 0, 17251.827382343705, 17251.827382343705, 34503.65476468741, + 34503.65476468741, 51755.482147031114, 51755.482147031114, + 69007.30952937482, 69007.30952937482, 86259.13691171852, + 86259.13691171852, 103510.96429406223, 103510.96429406223, + 120762.79167640593 ], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -1989,37 +2006,37 @@ }, "drones": { "buy": [ - 894, 894, 894, 1080, 1080, 1080, 1080, 1296, 1296, 1296, 1296, - 1169, 1169, 1169 + 1444, 1444, 1444, 917, 917, 917, 917, 1104, 1104, 1104, 1104, + 1047, 1047, 1047 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "electronics": { "buy": [ - 377, 377, 377, 311, 311, 311, 311, 372, 372, 372, 372, 318, 318, - 318 + 335, 335, 335, 273, 273, 273, 273, 332, 332, 332, 332, 308, 308, + 308 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "engineParts": { "buy": [ - 370, 370, 370, 362, 362, 362, 362, 436, 436, 436, 436, 482, 482, - 482 + 423, 423, 423, 317, 317, 317, 317, 301, 301, 301, 301, 369, 369, + 369 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [13, 13, 13, 21, 21, 21, 21, 13, 13, 13, 13, 18, 18, 18], - "sell": [10, 10, 10, 18, 18, 18, 18, 18, 18, 18, 18, 19, 19, 19] + "buy": [18, 18, 18, 21, 21, 21, 21, 15, 15, 15, 15, 19, 19, 19], + "sell": [15, 15, 15, 18, 18, 18, 18, 19, 19, 19, 19, 18, 18, 18] }, "fuel": { "buy": [ - 70, 70, 70, 50, 50, 50, 50, 60, 60, 60, 60, 56.5, 56.5, 56.5 + 78.5, 78.5, 78.5, 58, 58, 58, 58, 61, 61, 61, 61, 73, 73, 73 ], - "sell": [46, 46, 46, 61, 61, 61, 61, 60, 60, 60, 60, 60, 60, 60] + "sell": [36, 36, 36, 65, 65, 65, 65, 63, 63, 63, 63, 62, 62, 62] }, "fuelium": { - "buy": [70, 70, 70, 69, 69, 69, 69, 59, 59, 59, 59, 59, 59, 59], + "buy": [74, 74, 74, 73, 73, 73, 73, 71, 71, 71, 71, 67, 67, 67], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { @@ -2031,7 +2048,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [30, 30, 30, 43, 43, 43, 43, 55, 55, 55, 55, 37, 37, 37], + "buy": [70, 70, 70, 48, 48, 48, 48, 55, 55, 55, 55, 45, 45, 45], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hydrogen": { @@ -2039,7 +2056,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [30, 30, 30, 24, 24, 24, 24, 24, 24, 24, 24, 26, 26, 26], + "buy": [30, 30, 30, 21, 21, 21, 21, 23, 23, 23, 23, 24, 24, 24], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { @@ -2067,8 +2084,8 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [19, 19, 19, 35, 35, 35, 35, 24, 24, 24, 24, 39, 39, 39], - "sell": [43, 43, 43, 42, 42, 42, 42, 35, 35, 35, 35, 37, 37, 37] + "buy": [37, 37, 37, 35, 35, 35, 35, 24, 24, 24, 24, 42, 42, 42], + "sell": [48, 48, 48, 41, 41, 41, 41, 38, 38, 38, 38, 41, 41, 41] } }, "mask": "BigInt:1073741824" @@ -2119,8 +2136,8 @@ "electronics": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 164, 164, 164, 224, 224, 224, 224, 251, 251, 251, 251, 294, 294, - 294 + 177, 177, 177, 352, 352, 352, 352, 353, 353, 353, 353, 354, 354, + 354 ] }, "engineParts": { @@ -2128,16 +2145,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [38, 38, 38, 7, 7, 7, 7, 13, 13, 13, 13, 15, 15, 15], - "sell": [ - 21, 21, 21, 17.5, 17.5, 17.5, 17.5, 15, 15, 15, 15, 15.5, 15.5, - 15.5 - ] + "buy": [19, 19, 19, 13, 13, 13, 13, 16, 16, 16, 16, 21, 21, 21], + "sell": [22, 22, 22, 16, 16, 16, 16, 14, 14, 14, 14, 17, 17, 17] }, "fuel": { - "buy": [ - 67, 67, 67, 53, 53, 53, 53, 65, 65, 65, 65, 66.5, 66.5, 66.5 - ], + "buy": [53, 53, 53, 54, 54, 54, 54, 57, 57, 57, 57, 58, 58, 58], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -2146,8 +2158,8 @@ }, "gold": { "buy": [ - 546, 546, 546, 652, 652, 652, 652, 594, 594, 594, 594, 540, 540, - 540 + 822, 822, 822, 823, 823, 823, 823, 825, 825, 825, 825, 817, 817, + 817 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -2180,7 +2192,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [19, 19, 19, 21, 21, 21, 21, 35, 35, 35, 35, 34, 34, 34], + "buy": [44, 44, 44, 35, 35, 35, 35, 34, 34, 34, 34, 33, 33, 33], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "superconductors": { @@ -2193,10 +2205,8 @@ }, "water": { "buy": [ - 25.666666666666668, 25.666666666666668, 25.666666666666668, - 35.333333333333336, 35.333333333333336, 35.333333333333336, - 35.333333333333336, 32.666666666666664, 32.666666666666664, - 32.666666666666664, 32.666666666666664, 27, 27, 27 + 24, 24, 24, 26, 26, 26, 26, 34.5, 34.5, 34.5, 34.5, 37.5, 37.5, + 37.5 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } @@ -2255,11 +2265,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [20, 20, 20, 20, 20, 20, 20, 17, 17, 17, 17, 21, 21, 21], - "sell": [20, 20, 20, 19, 19, 19, 19, 18, 18, 18, 18, 18, 18, 18] + "buy": [19, 19, 19, 22, 22, 22, 22, 17, 17, 17, 17, 17, 17, 17], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { - "buy": [54, 54, 54, 63, 63, 63, 63, 59, 59, 59, 59, 69, 69, 69], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -2311,9 +2321,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [ - 40, 40, 40, 23, 23, 23, 23, 34.5, 34.5, 34.5, 34.5, 34, 34, 34 - ], + "buy": [37, 37, 37, 40, 40, 40, 40, 32, 32, 32, 32, 42, 42, 42], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, @@ -2351,18 +2359,18 @@ "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [ - 424938.2399625236, 444567.49597071466, 0, 22228.374798535733, - 22228.374798535733, 44456.749597071466, 44456.749597071466, - 66685.1243956072, 66685.1243956072, 88913.49919414293, - 88913.49919414293, 111141.87399267867, 111141.87399267867, - 133370.2487912144 + 359401.80260816636, 379642.15395738784, 379642.15395738784, + 399882.5053066093, 399882.5053066093, 404807.02698442916, + 404807.02698442916, 404807.02698442916, 404807.02698442916, + 404807.02698442916, 404807.02698442916, 404807.02698442916, + 404807.02698442916, 404807.02698442916 ], "silica": [ - 29934.584073990503, 1688.4717486387235, 1688.4717486387235, - 3376.943497277447, 3376.943497277447, 5065.4152459161705, - 5065.4152459161705, 6753.886994554894, 6753.886994554894, - 8442.358743193618, 8442.358743193618, 10130.830491832341, - 10130.830491832341, 11819.302240471065 + 57288.48594066118, 60625.4998997456, 60625.4998997456, + 63962.51385883002, 63962.51385883002, 66740.27918168844, + 66740.27918168844, 66740.27918168844, 66740.27918168844, + 66740.27918168844, 66740.27918168844, 66740.27918168844, + 66740.27918168844, 66740.27918168844 ] }, "prices": { @@ -2383,11 +2391,17 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [33, 33, 33, 13, 13, 13, 13, 11, 11, 11, 11, 19, 19, 19], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [27, 27, 27, 17, 17, 17, 17, 12, 12, 12, 12, 18, 18, 18], + "sell": [ + 23, 23, 23, 16.5, 16.5, 16.5, 16.5, 17, 17, 17, 17, 18.5, 18.5, + 18.5 + ] }, "fuel": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 67.5, 67.5, 67.5, 64.5, 64.5, 64.5, 64.5, 71.5, 71.5, 71.5, + 71.5, 64, 64, 64 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -2404,31 +2418,31 @@ }, "hullPlates": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [59, 59, 59, 52, 52, 52, 52, 46, 46, 46, 46, 48, 48, 48] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [19, 19, 19, 24, 24, 24, 24, 24, 24, 24, 24, 25, 25, 25], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [69, 69, 69, 66, 66, 66, 66, 65, 65, 65, 65, 60, 60, 60] + "buy": [60, 60, 60, 68, 68, 68, 68, 86, 86, 86, 86, 78, 78, 78], + "sell": [76, 76, 76, 84, 84, 84, 84, 82, 82, 82, 82, 85, 85, 85] }, "ore": { - "buy": [21, 21, 21, 32, 32, 32, 32, 29, 29, 29, 29, 32, 32, 32], + "buy": [42, 42, 42, 41, 41, 41, 41, 42, 42, 42, 42, 42, 42, 42], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { - "buy": [35, 35, 35, 42, 42, 42, 42, 50, 50, 50, 50, 50, 50, 50], + "buy": [34, 34, 34, 38, 38, 38, 38, 47, 47, 47, 47, 49, 49, 49], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [19, 19, 19, 27, 27, 27, 27, 31, 31, 31, 31, 31, 31, 31] + "sell": [24, 24, 24, 26, 26, 26, 26, 30, 30, 30, 30, 31, 31, 31] }, "superconductors": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -2439,8 +2453,10 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [25, 25, 25, 31, 31, 31, 31, 39, 39, 39, 39, 36, 36, 36], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [ + 27, 27, 27, 34, 34, 34, 34, 30, 30, 30, 30, 37.5, 37.5, 37.5 + ], + "sell": [29, 29, 29, 34, 34, 34, 34, 32, 32, 32, 32, 36, 36, 36] } }, "mask": "BigInt:1073741824" @@ -2474,20 +2490,20 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 470760.4485033565, 495541.69879917474, 495541.69879917474, - 495625.0059163648, 495625.0059163648, 495625.0059163648, - 495625.0059163648, 495625.0059163648, 495625.0059163648, - 495625.0059163648, 495625.0059163648, 495625.0059163648, - 495625.0059163648, 495625.0059163648 + 0, 27116.23107808712, 27116.23107808712, 54232.46215617424, + 54232.46215617424, 81348.69323426136, 81348.69323426136, + 108464.92431234848, 108464.92431234848, 135581.1553904356, + 135581.1553904356, 162697.38646852272, 162697.38646852272, + 189813.61754660984 ], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [ - 712780.2433216131, 39903.83112505962, 39903.83112505962, - 79807.66225011925, 79807.66225011925, 119711.49337517886, - 119711.49337517886, 159615.3245002385, 159615.3245002385, - 199519.15562529812, 199519.15562529812, 239422.98675035776, - 239422.98675035776, 279326.81787541736 + 1004367.1551001256, 1059349.3939093696, 1059349.3939093696, + 1099644.7761848778, 1099644.7761848778, 1099644.7761848778, + 1099644.7761848778, 1099644.7761848778, 1099644.7761848778, + 1099644.7761848778, 1099644.7761848778, 1099644.7761848778, + 1099644.7761848778, 1099644.7761848778 ], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -2509,27 +2525,19 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [22, 22, 22, 20, 20, 20, 20, 14, 14, 14, 14, 21, 21, 21], - "sell": [25, 25, 25, 21, 21, 21, 21, 21, 21, 21, 21, 20, 20, 20] + "buy": [33, 33, 33, 16, 16, 16, 16, 11, 11, 11, 11, 17, 17, 17], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { - "buy": [ - 56.666666666666664, 56.666666666666664, 56.666666666666664, 51, - 51, 51, 51, 59.333333333333336, 59.333333333333336, - 59.333333333333336, 59.333333333333336, 57.666666666666664, - 57.666666666666664, 57.666666666666664 - ], - "sell": [70, 70, 70, 73, 73, 73, 73, 64, 64, 64, 64, 56, 56, 56] + "buy": [35, 35, 35, 35, 35, 35, 35, 42, 42, 42, 42, 60, 60, 60], + "sell": [68, 68, 68, 65, 65, 65, 65, 61, 61, 61, 61, 57, 57, 57] }, "fuelium": { - "buy": [83, 83, 83, 55, 55, 55, 55, 54, 54, 54, 54, 59, 59, 59], + "buy": [64, 64, 64, 51, 51, 51, 51, 64, 64, 64, 64, 65, 65, 65], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { - "buy": [ - 571, 571, 571, 621.5, 621.5, 621.5, 621.5, 628.5, 628.5, 628.5, - 628.5, 643, 643, 643 - ], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "goldOre": { @@ -2542,25 +2550,18 @@ }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [ - 40, 40, 40, 66, 66, 66, 66, 65, 65, 65, 65, 68.5, 68.5, 68.5 - ] + "sell": [69, 69, 69, 63, 63, 63, 63, 56, 56, 56, 56, 73, 73, 73] }, "ice": { - "buy": [29, 29, 29, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27, 27], + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [ - 72.5, 72.5, 72.5, 89, 89, 89, 89, 73.5, 73.5, 73.5, 73.5, 88.5, - 88.5, 88.5 - ], - "sell": [ - 101, 101, 101, 90, 90, 90, 90, 88, 88, 88, 88, 82, 82, 82 - ] + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [80, 80, 80, 74, 74, 74, 74, 77, 77, 77, 77, 71, 71, 71] }, "ore": { - "buy": [29, 29, 29, 30, 30, 30, 30, 37, 37, 37, 37, 37, 37, 37], + "buy": [37, 37, 37, 38, 38, 38, 38, 35, 35, 35, 35, 36, 36, 36], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { @@ -2577,19 +2578,14 @@ }, "tauMetal": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [ - 431, 431, 431, 427.5, 427.5, 427.5, 427.5, 428, 428, 428, 428, - 401.5, 401.5, 401.5 - ] + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { "buy": [ - 39.666666666666664, 39.666666666666664, 39.666666666666664, - 26.666666666666668, 26.666666666666668, 26.666666666666668, - 26.666666666666668, 35, 35, 35, 35, 39.333333333333336, - 39.333333333333336, 39.333333333333336 + 45.5, 45.5, 45.5, 30, 30, 30, 30, 35.5, 35.5, 35.5, 35.5, 36, + 36, 36 ], - "sell": [19, 19, 19, 36, 36, 36, 36, 36, 36, 36, 36, 37, 37, 37] + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, "mask": "BigInt:1073741824" @@ -2624,17 +2620,18 @@ "availableResources": { "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [ - 262590.957754218, 277228.7180356801, 0, 14637.76028146209, - 14637.76028146209, 29275.52056292418, 29275.52056292418, - 43913.28084438627, 43913.28084438627, 58551.04112584836, - 58551.04112584836, 73188.80140731044, 73188.80140731044, - 87826.56168877253 + 332657.7767924289, 333210.95564062893, 333210.95564062893, + 333210.95564062893, 333210.95564062893, 333210.95564062893, + 333210.95564062893, 333210.95564062893, 333210.95564062893, + 333210.95564062893, 333210.95564062893, 333210.95564062893, + 333210.95564062893, 333210.95564062893 ], "ice": [ - 95732.13353954189, 101431.6423119053, 0, 5699.508772363421, 0, - 5699.508772363421, 5699.508772363421, 11399.017544726841, - 11399.017544726841, 17098.52631709026, 17098.52631709026, - 22798.035089453682, 22798.035089453682, 28497.543861817103 + 117179.47360907514, 123974.5412501432, 123974.5412501432, + 130769.60889121126, 130769.60889121126, 135901.35282136133, + 135901.35282136133, 135901.35282136133, 135901.35282136133, + 135901.35282136133, 135901.35282136133, 135901.35282136133, + 135901.35282136133, 135901.35282136133 ], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] @@ -2657,11 +2654,14 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [14, 14, 14, 20, 20, 20, 20, 15, 15, 15, 15, 18, 18, 18], + "buy": [25, 25, 25, 15, 15, 15, 15, 20, 20, 20, 20, 18, 18, 18], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { - "buy": [51, 51, 51, 63, 63, 63, 63, 52, 52, 52, 52, 68, 68, 68], + "buy": [ + 57, 57, 57, 69.5, 69.5, 69.5, 69.5, 58.5, 58.5, 58.5, 58.5, 60, + 60, 60 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -2671,12 +2671,12 @@ "gold": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 836, 836, 836, 781, 781, 781, 781, 782, 782, 782, 782, 774, 774, - 774 + 476, 476, 476, 766, 766, 766, 766, 695, 695, 695, 695, 649, 649, + 649 ] }, "goldOre": { - "buy": [47, 47, 47, 38, 38, 38, 38, 53, 53, 53, 53, 59, 59, 59], + "buy": [92, 92, 92, 85, 85, 85, 85, 80, 80, 80, 80, 71, 71, 71], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { @@ -2685,10 +2685,10 @@ }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [46, 46, 46, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83, 83] }, "ice": { - "buy": [18, 18, 18, 26, 26, 26, 26, 25, 25, 25, 25, 23, 23, 23], + "buy": [21, 21, 21, 22, 22, 22, 22, 23, 23, 23, 23, 25, 25, 25], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { @@ -2716,8 +2716,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [38, 38, 38, 29, 29, 29, 29, 32, 32, 32, 32, 35, 35, 35], - "sell": [44, 44, 44, 39, 39, 39, 39, 35, 35, 35, 35, 32, 32, 32] + "buy": [ + 43, 43, 43, 37.5, 37.5, 37.5, 37.5, 36.5, 36.5, 36.5, 36.5, 38, + 38, 38 + ], + "sell": [44, 44, 44, 32, 32, 32, 32, 36, 36, 36, 36, 34, 34, 34] } }, "mask": "BigInt:1073741824" @@ -2751,39 +2754,38 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 161773.10485767372, 9934.009418113656, 0, 9934.009418113656, - 9934.009418113656, 19868.01883622731, 19868.01883622731, - 29802.028254340967, 29802.028254340967, 39736.03767245462, - 39736.03767245462, 49670.047090568274, 49670.047090568274, - 59604.056508681926 + 276212.33881741296, 281352.6950949047, 281352.6950949047, + 281352.6950949047, 281352.6950949047, 281352.6950949047, + 281352.6950949047, 281352.6950949047, 281352.6950949047, + 281352.6950949047, 281352.6950949047, 281352.6950949047, + 281352.6950949047, 281352.6950949047 ], "goldOre": [ - 148934.18505870327, 9200.375357166728, 9200.375357166728, - 18400.750714333455, 18400.750714333455, 27601.126071500184, - 27601.126071500184, 36801.50142866691, 36801.50142866691, - 46001.876785833636, 46001.876785833636, 55202.25214300036, - 55202.25214300036, 64402.62750016709 + 140844.34897861336, 148201.34768497935, 148201.34768497935, + 148201.34768497935, 148201.34768497935, 148201.34768497935, + 148201.34768497935, 148201.34768497935, 148201.34768497935, + 148201.34768497935, 148201.34768497935, 148201.34768497935, + 148201.34768497935, 148201.34768497935 ], "ice": [ - 28695.24807123067, 30474.600660200034, 0, 1779.3525889693638, - 1779.3525889693638, 3558.7051779387275, 3558.7051779387275, - 5338.057766908091, 5338.057766908091, 7117.410355877455, - 7117.410355877455, 8896.762944846818, 8896.762944846818, - 10676.11553381618 + 0, 0, 0, 1609.6862653227918, 1609.6862653227918, + 3219.3725306455835, 3219.3725306455835, 4829.058795968375, + 4829.058795968375, 6438.745061291167, 6438.745061291167, + 8048.431326613959, 8048.431326613959, 9658.11759193675 ], "ore": [ - 1000096.8881735789, 53158.3145512603, 53158.3145512603, - 106316.6291025206, 106316.6291025206, 159474.9436537809, - 159474.9436537809, 212633.2582050412, 212633.2582050412, - 265791.5727563015, 265791.5727563015, 318949.8873075618, - 318949.8873075618, 372108.20185882214 + 0, 22478.60583150201, 22478.60583150201, 44957.21166300402, + 44957.21166300402, 67435.81749450603, 67435.81749450603, + 89914.42332600804, 89914.42332600804, 112393.02915751004, + 112393.02915751004, 134871.63498901206, 134871.63498901206, + 157350.24082051407 ], "silica": [ - 134271.42923438328, 142353.0024006213, 142353.0024006213, - 150434.57556685933, 150434.57556685933, 158516.14873309736, - 158516.14873309736, 161631.46332476067, 161631.46332476067, - 161631.46332476067, 161631.46332476067, 161631.46332476067, - 161631.46332476067, 161631.46332476067 + 85751.66601734883, 90285.65346642156, 90285.65346642156, + 90679.7489814544, 90679.7489814544, 90679.7489814544, + 90679.7489814544, 90679.7489814544, 90679.7489814544, + 90679.7489814544, 90679.7489814544, 90679.7489814544, + 90679.7489814544, 90679.7489814544 ] }, "prices": { @@ -2804,29 +2806,35 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [17, 17, 17, 17, 17, 17, 17, 15, 15, 15, 15, 21, 21, 21], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [10, 10, 10, 17, 17, 17, 17, 18, 18, 18, 18, 21, 21, 21], + "sell": [23, 23, 23, 20, 20, 20, 20, 16, 16, 16, 16, 21, 21, 21] }, "fuel": { "buy": [ - 55, 55, 55, 53, 53, 53, 53, 48, 48, 48, 48, 51.666666666666664, - 51.666666666666664, 51.666666666666664 + 47.42857142857143, 47.42857142857143, 47.42857142857143, + 48.42857142857143, 48.42857142857143, 48.42857142857143, + 48.42857142857143, 55.285714285714285, 55.285714285714285, + 55.285714285714285, 55.285714285714285, 58.857142857142854, + 58.857142857142854, 58.857142857142854 ], - "sell": [38, 38, 38, 46, 46, 46, 46, 42, 42, 42, 42, 41, 41, 41] + "sell": [33, 33, 33, 41, 41, 41, 41, 61, 61, 61, 61, 60, 60, 60] }, "fuelium": { - "buy": [37, 37, 37, 43, 43, 43, 43, 45, 45, 45, 45, 42, 42, 42], + "buy": [46, 46, 46, 69, 69, 69, 69, 56, 56, 56, 56, 64, 64, 64], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 415, 415, 415, 497.5, 497.5, 497.5, 497.5, 598, 598, 598, 598, + 717, 717, 717 + ], "sell": [ - 361, 361, 361, 347, 347, 347, 347, 410, 410, 410, 410, 532, 532, - 532 + 522, 522, 522, 723, 723, 723, 723, 758, 758, 758, 758, 769, 769, + 769 ] }, "goldOre": { - "buy": [38, 38, 38, 49, 49, 49, 49, 63, 63, 63, 63, 53, 53, 53], + "buy": [89, 89, 89, 93, 93, 93, 93, 76, 76, 76, 76, 89, 89, 89], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { @@ -2834,21 +2842,27 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hydrogen": { - "buy": [46, 46, 46, 48, 48, 48, 48, 44, 44, 44, 44, 59, 59, 59], - "sell": [57, 57, 57, 71, 71, 71, 71, 71, 71, 71, 71, 76, 76, 76] + "buy": [51, 51, 51, 61, 61, 61, 61, 69, 69, 69, 69, 84, 84, 84], + "sell": [ + 87, 87, 87, 79, 79, 79, 79, 78.25, 78.25, 78.25, 78.25, 72.5, + 72.5, 72.5 + ] }, "ice": { - "buy": [19, 19, 19, 24, 24, 24, 24, 28, 28, 28, 28, 25, 25, 25], + "buy": [ + 20, 20, 20, 22, 22, 22, 22, 24.5, 24.5, 24.5, 24.5, 23.5, 23.5, + 23.5 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [ - 103, 103, 103, 97, 97, 97, 97, 83, 83, 83, 83, 83, 83, 83 - ] + "buy": [ + 67, 67, 67, 61, 61, 61, 61, 70, 70, 70, 70, 80.5, 80.5, 80.5 + ], + "sell": [47, 47, 47, 89, 89, 89, 89, 81, 81, 81, 81, 73, 73, 73] }, "ore": { - "buy": [34, 34, 34, 24, 24, 24, 24, 31, 31, 31, 31, 33, 33, 33], + "buy": [44, 44, 44, 36, 36, 36, 36, 35, 35, 35, 35, 39, 39, 39], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { @@ -2865,17 +2879,23 @@ }, "tauMetal": { "buy": [ - 245, 245, 245, 287, 287, 287, 287, 349, 349, 349, 349, 420, 420, - 420 + 419, 419, 419, 505, 505, 505, 505, 420, 420, 420, 420, 389, 389, + 389 ], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [ + 461.5, 461.5, 461.5, 405, 405, 405, 405, 372.5, 372.5, 372.5, + 372.5, 422, 422, 422 + ] }, "water": { "buy": [ - 40.5, 40.5, 40.5, 31, 31, 31, 31, 40.5, 40.5, 40.5, 40.5, 38.5, - 38.5, 38.5 + 31.6, 31.6, 31.6, 33.6, 33.6, 33.6, 33.6, 35.8, 35.8, 35.8, + 35.8, 35.2, 35.2, 35.2 ], - "sell": [47, 47, 47, 32, 32, 32, 32, 38, 38, 38, 38, 35, 35, 35] + "sell": [ + 39, 39, 39, 36, 36, 36, 36, 36.5, 36.5, 36.5, 36.5, 33.5, 33.5, + 33.5 + ] } }, "mask": "BigInt:1073741824" @@ -2932,121 +2952,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [19, 19, 19, 21, 21, 21, 21, 17, 17, 17, 17, 21, 21, 21], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "fuel": { - "buy": [82, 82, 82, 44, 44, 44, 44, 53, 53, 53, 53, 69, 69, 69], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "fuelium": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "gold": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "goldOre": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "hullPlates": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [39, 39, 39, 35, 35, 35, 35, 39, 39, 39, 39, 48, 48, 48] - }, - "hydrogen": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "ice": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "metals": { - "buy": [59, 59, 59, 64, 64, 64, 64, 77, 77, 77, 77, 93, 93, 93], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "ore": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "silica": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "silicon": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "superconductors": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "tauMetal": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "water": { - "buy": [32, 32, 32, 41, 41, 41, 41, 34, 34, 34, 34, 38, 38, 38], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - } - }, - "mask": "BigInt:1073741824" - }, - "renderGraphics": { - "draw": "sector", - "redraw": false, - "realTime": false, - "name": "renderGraphics", - "mask": "BigInt:536870912" - }, - "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" } - }, - "cooldowns": { "timers": {} }, - "id": 22, - "tags": ["sector", "selection"] - }, - { - "components": { - "hecsPosition": { - "name": "hecsPosition", - "value": [6, -4, -2], - "mask": "BigInt:524288" - }, - "name": { - "name": "name", - "value": "GJ 1002 II", - "mask": "BigInt:137438953472" - }, - "sectorStats": { - "name": "sectorStats", - "availableResources": { - "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "prices": { - "coolant": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "drones": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "electronics": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "engineParts": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] - }, - "food": { - "buy": [21, 21, 21, 19, 19, 19, 19, 19, 19, 19, 19, 20, 20, 20], + "buy": [20, 20, 20, 21, 21, 21, 21, 13, 13, 13, 13, 17, 17, 17], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { @@ -3102,7 +3008,121 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [33, 33, 33, 42, 42, 42, 42, 31, 31, 31, 31, 41, 41, 41], + "buy": [42, 42, 42, 42, 42, 42, 42, 34, 34, 34, 34, 36, 36, 36], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + } + }, + "mask": "BigInt:1073741824" + }, + "renderGraphics": { + "draw": "sector", + "redraw": false, + "realTime": false, + "name": "renderGraphics", + "mask": "BigInt:536870912" + }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" } + }, + "cooldowns": { "timers": {} }, + "id": 22, + "tags": ["sector", "selection"] + }, + { + "components": { + "hecsPosition": { + "name": "hecsPosition", + "value": [6, -4, -2], + "mask": "BigInt:524288" + }, + "name": { + "name": "name", + "value": "GJ 1002 II", + "mask": "BigInt:137438953472" + }, + "sectorStats": { + "name": "sectorStats", + "availableResources": { + "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "prices": { + "coolant": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "drones": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "electronics": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "engineParts": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "food": { + "buy": [22, 22, 22, 14, 14, 14, 14, 18, 18, 18, 18, 18, 18, 18], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "fuel": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "fuelium": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "gold": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "goldOre": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "hullPlates": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "hydrogen": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "ice": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "metals": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "ore": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "silica": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "silicon": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "superconductors": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "tauMetal": { + "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + }, + "water": { + "buy": [39, 39, 39, 30, 30, 30, 30, 40, 40, 40, 40, 37, 37, 37], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, @@ -3137,18 +3157,18 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 684934.7860724853, 715097.0915284476, 0, 35754.85457642238, - 35754.85457642238, 71509.70915284476, 71509.70915284476, - 107264.56372926715, 107264.56372926715, 143019.41830568953, - 143019.41830568953, 178774.2728821119, 178774.2728821119, - 214529.12745853426 + 856215.1604036124, 904945.1118366093, 904945.1118366093, + 953675.0632696062, 953675.0632696062, 974599.0286599373, + 974599.0286599373, 974599.0286599373, 974599.0286599373, + 974599.0286599373, 974599.0286599373, 974599.0286599373, + 974599.0286599373, 974599.0286599373 ], "goldOre": [ - 903992.5657932985, 905714.8320642952, 905714.8320642952, - 905714.8320642952, 905714.8320642952, 45285.74160321476, - 45285.74160321476, 90571.48320642952, 90571.48320642952, - 135857.22480964428, 135857.22480964428, 181142.96641285904, - 181142.96641285904, 226428.7080160738 + 545112.1529750244, 548638.3202001292, 548638.3202001292, + 548638.3202001292, 548638.3202001292, 548638.3202001292, + 548638.3202001292, 548638.3202001292, 548638.3202001292, + 548638.3202001292, 548638.3202001292, 548638.3202001292, + 548638.3202001292, 548638.3202001292 ], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -3172,54 +3192,50 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [13, 13, 13, 16, 16, 16, 16, 17, 17, 17, 17, 21, 21, 21], + "buy": [27, 27, 27, 17, 17, 17, 17, 16, 16, 16, 16, 14, 14, 14], "sell": [ - 27, 27, 27, 20, 20, 20, 20, 19, 19, 19, 19, 18.5, 18.5, 18.5 + 14, 14, 14, 12.5, 12.5, 12.5, 12.5, 17, 17, 17, 17, 17, 17, 17 ] }, "fuel": { "buy": [ - 54, 54, 54, 50.666666666666664, 50.666666666666664, - 50.666666666666664, 50.666666666666664, 50, 50, 50, 50, - 55.333333333333336, 55.333333333333336, 55.333333333333336 + 61.666666666666664, 61.666666666666664, 61.666666666666664, + 53.333333333333336, 53.333333333333336, 53.333333333333336, + 53.333333333333336, 62.666666666666664, 62.666666666666664, + 62.666666666666664, 62.666666666666664, 60.666666666666664, + 60.666666666666664, 60.666666666666664 ], - "sell": [40, 40, 40, 51, 51, 51, 51, 53, 53, 53, 53, 52, 52, 52] + "sell": [79, 79, 79, 72, 72, 72, 72, 60, 60, 60, 60, 63, 63, 63] }, "fuelium": { - "buy": [59, 59, 59, 61, 61, 61, 61, 55, 55, 55, 55, 51, 51, 51], + "buy": [60, 60, 60, 56, 56, 56, 56, 67, 67, 67, 67, 62, 62, 62], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 331, 331, 331, 755, 755, 755, 755, 693, 693, 693, 693, 653, 653, - 653 + 861, 861, 861, 800, 800, 800, 800, 746, 746, 746, 746, 691, 691, + 691 ] }, "goldOre": { - "buy": [92, 92, 92, 61, 61, 61, 61, 78, 78, 78, 78, 80, 80, 80], + "buy": [59, 59, 59, 68, 68, 68, 68, 80, 80, 80, 80, 78, 78, 78], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [ - 44.5, 44.5, 44.5, 48, 48, 48, 48, 46.5, 46.5, 46.5, 46.5, 45, - 45, 45 - ] + "sell": [66, 66, 66, 56, 56, 56, 56, 49, 49, 49, 49, 49, 49, 49] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [16, 16, 16, 15, 15, 15, 15, 23, 23, 23, 23, 20, 20, 20], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [ - 94.5, 94.5, 94.5, 79.5, 79.5, 79.5, 79.5, 85.5, 85.5, 85.5, - 85.5, 83.5, 83.5, 83.5 - ], + "buy": [91, 91, 91, 73, 73, 73, 73, 79, 79, 79, 79, 63, 63, 63], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -3244,12 +3260,10 @@ }, "water": { "buy": [ - 37, 37, 37, 36.333333333333336, 36.333333333333336, - 36.333333333333336, 36.333333333333336, 34.666666666666664, - 34.666666666666664, 34.666666666666664, 34.666666666666664, - 33.333333333333336, 33.333333333333336, 33.333333333333336 + 33, 33, 33, 36.5, 36.5, 36.5, 36.5, 26.5, 26.5, 26.5, 26.5, 37, + 37, 37 ], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [48, 48, 48, 35, 35, 35, 35, 37, 37, 37, 37, 39, 39, 39] } }, "mask": "BigInt:1073741824" @@ -3283,11 +3297,11 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 391568.9550816715, 21390.48911469645, 21390.48911469645, - 42780.9782293929, 42780.9782293929, 64171.46734408935, - 64171.46734408935, 85561.9564587858, 85561.9564587858, - 106952.44557348225, 106952.44557348225, 128342.9346881787, - 128342.9346881787, 149733.42380287516 + 317378.7184498743, 335877.3346828032, 335877.3346828032, + 354375.9509157321, 354375.9509157321, 369972.32465857745, + 369972.32465857745, 369972.32465857745, 369972.32465857745, + 369972.32465857745, 369972.32465857745, 369972.32465857745, + 369972.32465857745, 369972.32465857745 ], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -3302,15 +3316,18 @@ "drones": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 1244, 1244, 1244, 1137, 1137, 1137, 1137, 1126.75, 1126.75, - 1126.75, 1126.75, 1085, 1085, 1085 + 894, 894, 894, 1046.5, 1046.5, 1046.5, 1046.5, 1028.5, 1028.5, + 1028.5, 1028.5, 1071, 1071, 1071 ] }, "electronics": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 335, 335, 335, 278, 278, 278, 278, 336, 336, 336, 336, 321, 321, + 321 + ], "sell": [ - 313, 313, 313, 329.25, 329.25, 329.25, 329.25, 328, 328, 328, - 328, 324.5, 324.5, 324.5 + 288, 288, 288, 293, 293, 293, 293, 283, 283, 283, 283, 305, 305, + 305 ] }, "engineParts": { @@ -3318,27 +3335,30 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [28, 28, 28, 18, 18, 18, 18, 9, 9, 9, 9, 21, 21, 21], + "buy": [13, 13, 13, 17, 17, 17, 17, 17, 17, 17, 17, 21, 21, 21], "sell": [ - 18.5, 18.5, 18.5, 17.5, 17.5, 17.5, 17.5, 16.5, 16.5, 16.5, - 16.5, 16.5, 16.5, 16.5 + 26.333333333333332, 26.333333333333332, 26.333333333333332, + 20.333333333333332, 20.333333333333332, 20.333333333333332, + 20.333333333333332, 18, 18, 18, 18, 16.666666666666668, + 16.666666666666668, 16.666666666666668 ] }, "fuel": { "buy": [ - 53, 53, 53, 53.8, 53.8, 53.8, 53.8, 55, 55, 55, 55, 58.2, 58.2, - 58.2 + 55.666666666666664, 55.666666666666664, 55.666666666666664, 45, + 45, 45, 45, 55.333333333333336, 55.333333333333336, + 55.333333333333336, 55.333333333333336, 53, 53, 53 ], - "sell": [60, 60, 60, 56, 56, 56, 56, 56, 56, 56, 56, 54, 54, 54] + "sell": [38, 38, 38, 59, 59, 59, 59, 52, 52, 52, 52, 52, 52, 52] }, "fuelium": { - "buy": [61, 61, 61, 63, 63, 63, 63, 60, 60, 60, 60, 59, 59, 59], + "buy": [67, 67, 67, 53, 53, 53, 53, 59, 59, 59, 59, 60, 60, 60], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { "buy": [ - 588.75, 588.75, 588.75, 627.5, 627.5, 627.5, 627.5, 653.5, - 653.5, 653.5, 653.5, 684, 684, 684 + 694, 694, 694, 833, 833, 833, 833, 762, 762, 762, 762, 744, 744, + 744 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -3347,11 +3367,8 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [ - 58.75, 58.75, 58.75, 46.75, 46.75, 46.75, 46.75, 47.75, 47.75, - 47.75, 47.75, 40.25, 40.25, 40.25 - ], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [45, 45, 45, 62, 62, 62, 62, 41, 41, 41, 41, 54, 54, 54], + "sell": [55, 55, 55, 51, 51, 51, 51, 46, 46, 46, 46, 49, 49, 49] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -3362,7 +3379,9 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 91, 91, 91, 88, 88, 88, 88, 100, 100, 100, 100, 86, 86, 86 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -3374,10 +3393,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [ - 26.25, 26.25, 26.25, 29.25, 29.25, 29.25, 29.25, 26.75, 26.75, - 26.75, 26.75, 31.5, 31.5, 31.5 - ], + "buy": [25, 25, 25, 21, 21, 21, 21, 30, 30, 30, 30, 29, 29, 29], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "superconductors": { @@ -3390,8 +3406,8 @@ }, "water": { "buy": [ - 38.8, 38.8, 38.8, 35, 35, 35, 35, 36.8, 36.8, 36.8, 36.8, 33.4, - 33.4, 33.4 + 34.25, 34.25, 34.25, 30.5, 30.5, 30.5, 30.5, 29.5, 29.5, 29.5, + 29.5, 34.25, 34.25, 34.25 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } @@ -3439,22 +3455,36 @@ }, "drones": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [ + 991.25, 991.25, 991.25, 1039.5, 1039.5, 1039.5, 1039.5, 1034.5, + 1034.5, 1034.5, 1034.5, 1142, 1142, 1142 + ] }, "electronics": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [ + 263, 263, 263, 266.3333333333333, 266.3333333333333, + 266.3333333333333, 266.3333333333333, 325.6666666666667, + 325.6666666666667, 325.6666666666667, 325.6666666666667, + 332.6666666666667, 332.6666666666667, 332.6666666666667 + ], + "sell": [ + 365, 365, 365, 334.5, 334.5, 334.5, 334.5, 303, 303, 303, 303, + 323, 323, 323 + ] }, "engineParts": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [19, 19, 19, 20, 20, 20, 20, 18, 18, 18, 18, 11, 11, 11], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [13, 13, 13, 14, 14, 14, 14, 15, 15, 15, 15, 20, 20, 20], + "sell": [20, 20, 20, 15, 15, 15, 15, 17, 17, 17, 17, 16, 16, 16] }, "fuel": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 46, 46, 46, 51.5, 51.5, 51.5, 51.5, 58.5, 58.5, 58.5, 58.5, 59, + 59, 59 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -3462,7 +3492,10 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 863.5, 863.5, 863.5, 684, 684, 684, 684, 830.5, 830.5, 830.5, + 830.5, 771.5, 771.5, 771.5 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "goldOre": { @@ -3470,8 +3503,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "buy": [ + 51.75, 51.75, 51.75, 42.25, 42.25, 42.25, 42.25, 49.25, 49.25, + 49.25, 49.25, 47, 47, 47 + ], + "sell": [38, 38, 38, 46, 46, 46, 46, 44, 44, 44, 44, 55, 55, 55] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -3482,7 +3518,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [87, 87, 87, 84, 84, 84, 84, 99, 99, 99, 99, 88, 88, 88], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ore": { @@ -3494,7 +3530,10 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 30.5, 30.5, 30.5, 19.5, 19.5, 19.5, 19.5, 31.5, 31.5, 31.5, + 31.5, 26.5, 26.5, 26.5 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "superconductors": { @@ -3506,7 +3545,10 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [31, 31, 31, 36, 36, 36, 36, 39, 39, 39, 39, 32, 32, 32], + "buy": [ + 30, 30, 30, 36, 36, 36, 36, 24, 24, 24, 24, 31.666666666666668, + 31.666666666666668, 31.666666666666668 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] } }, @@ -3543,18 +3585,18 @@ "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [ - 694293.7161000236, 734130.4193851687, 0, 39836.703285145166, - 39836.703285145166, 79673.40657029033, 79673.40657029033, - 119510.1098554355, 119510.1098554355, 159346.81314058066, - 159346.81314058066, 199183.51642572583, 199183.51642572583, - 239020.219710871 + 0, 21288.76010515297, 21288.76010515297, 42577.52021030594, + 42577.52021030594, 63866.28031545891, 63866.28031545891, + 85155.04042061188, 85155.04042061188, 106443.80052576485, + 106443.80052576485, 127732.56063091781, 127732.56063091781, + 149021.32073607077 ], "ore": [ - 555273.1415956117, 585395.970431946, 585395.970431946, - 602456.5767266846, 602456.5767266846, 602456.5767266846, - 602456.5767266846, 602456.5767266846, 602456.5767266846, - 602456.5767266846, 602456.5767266846, 602456.5767266846, - 602456.5767266846, 602456.5767266846 + 740564.5475521615, 781714.3734630657, 781714.3734630657, + 822864.1993739699, 822864.1993739699, 822996.5182180834, + 822996.5182180834, 822996.5182180834, 822996.5182180834, + 822996.5182180834, 822996.5182180834, 822996.5182180834, + 822996.5182180834, 822996.5182180834 ], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, @@ -3779,25 +3821,27 @@ "name": "sectorStats", "availableResources": { "fuelium": [ - 206634.032216254, 0, 0, 11062.247591637752, 11062.247591637752, - 22124.495183275503, 22124.495183275503, 33186.742774913255, - 33186.742774913255, 44248.99036655101, 44248.99036655101, - 55311.23795818876, 55311.23795818876, 66373.48554982651 + 368004.85355229635, 381258.4917818726, 381258.4917818726, + 381258.4917818726, 381258.4917818726, 381258.4917818726, + 381258.4917818726, 381258.4917818726, 381258.4917818726, + 381258.4917818726, 381258.4917818726, 381258.4917818726, + 381258.4917818726, 381258.4917818726 ], "goldOre": [ - 0, 6838.096798732731, 6838.096798732731, 13676.193597465463, - 13676.193597465463, 20514.290396198194, 20514.290396198194, - 27352.387194930925, 27352.387194930925, 34190.483993663656, - 34190.483993663656, 41028.58079239639, 41028.58079239639, - 47866.67759112912 + 90989.75377588905, 96104.03786682933, 96104.03786682933, + 101218.3219577696, 101218.3219577696, 102285.6818188055, + 102285.6818188055, 102285.6818188055, 102285.6818188055, + 102285.6818188055, 102285.6818188055, 102285.6818188055, + 102285.6818188055, 102285.6818188055 ], "ice": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [ - 0, 0, 0, 7709.1175846566375, 7709.1175846566375, - 15418.235169313275, 15418.235169313275, 23127.352753969913, - 23127.352753969913, 30836.47033862655, 30836.47033862655, - 38545.58792328319, 38545.58792328319, 46254.70550793983 + 114309.40697356318, 120566.2280937685, 120566.2280937685, + 125136.42240410637, 125136.42240410637, 125136.42240410637, + 125136.42240410637, 125136.42240410637, 125136.42240410637, + 125136.42240410637, 125136.42240410637, 125136.42240410637, + 125136.42240410637, 125136.42240410637 ] }, "prices": { @@ -3812,9 +3856,8 @@ "electronics": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [ - 429, 429, 429, 401.6666666666667, 401.6666666666667, - 401.6666666666667, 401.6666666666667, 375, 375, 375, 375, - 357.3333333333333, 357.3333333333333, 357.3333333333333 + 378, 378, 378, 349, 349, 349, 349, 317, 317, 317, 317, 302.5, + 302.5, 302.5 ] }, "engineParts": { @@ -3822,37 +3865,35 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [12, 12, 12, 16, 16, 16, 16, 19, 19, 19, 19, 17, 17, 17], + "buy": [17, 17, 17, 19, 19, 19, 19, 17, 17, 17, 17, 18, 18, 18], "sell": [ - 22.2, 22.2, 22.2, 19, 19, 19, 19, 17, 17, 17, 17, 17.4, 17.4, - 17.4 + 18.5, 18.5, 18.5, 16.75, 16.75, 16.75, 16.75, 16.75, 16.75, + 16.75, 16.75, 16, 16, 16 ] }, "fuel": { "buy": [ - 49, 49, 49, 48.42857142857143, 48.42857142857143, - 48.42857142857143, 48.42857142857143, 54.42857142857143, - 54.42857142857143, 54.42857142857143, 54.42857142857143, - 61.714285714285715, 61.714285714285715, 61.714285714285715 + 44.2, 44.2, 44.2, 46.6, 46.6, 46.6, 46.6, 50.8, 50.8, 50.8, + 50.8, 53.6, 53.6, 53.6 ], - "sell": [45, 45, 45, 46, 46, 46, 46, 39, 39, 39, 39, 48, 48, 48] + "sell": [83, 83, 83, 64, 64, 64, 64, 56, 56, 56, 56, 57, 57, 57] }, "fuelium": { - "buy": [39, 39, 39, 43, 43, 43, 43, 48, 48, 48, 48, 46, 46, 46], + "buy": [50, 50, 50, 60, 60, 60, 60, 60, 60, 60, 60, 64, 64, 64], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { "buy": [ - 620.6666666666666, 620.6666666666666, 620.6666666666666, 558, - 558, 558, 558, 637, 637, 637, 637, 589, 589, 589 + 737, 737, 737, 684, 684, 684, 684, 821.5, 821.5, 821.5, 821.5, + 760, 760, 760 ], "sell": [ - 692, 692, 692, 693, 693, 693, 693, 796, 796, 796, 796, 786, 786, - 786 + 610, 610, 610, 736, 736, 736, 736, 789, 789, 789, 789, 784, 784, + 784 ] }, "goldOre": { - "buy": [80, 80, 80, 97, 97, 97, 97, 96, 96, 96, 96, 96, 96, 96], + "buy": [90, 90, 90, 97, 97, 97, 97, 96, 96, 96, 96, 96, 96, 96], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { @@ -3864,7 +3905,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [27, 27, 27, 22, 22, 22, 22, 23, 23, 23, 23, 26, 26, 26], + "buy": [30, 30, 30, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28, 28], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { @@ -3876,18 +3917,15 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { - "buy": [54, 54, 54, 47, 47, 47, 47, 49, 49, 49, 49, 47, 47, 47], + "buy": [33, 33, 33, 30, 30, 30, 30, 34, 34, 34, 34, 40, 40, 40], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { "buy": [ - 37.666666666666664, 37.666666666666664, 37.666666666666664, - 31.666666666666668, 31.666666666666668, 31.666666666666668, - 31.666666666666668, 30.333333333333332, 30.333333333333332, - 30.333333333333332, 30.333333333333332, 30.666666666666668, - 30.666666666666668, 30.666666666666668 + 24.5, 24.5, 24.5, 26.5, 26.5, 26.5, 26.5, 28, 28, 28, 28, 29, + 29, 29 ], - "sell": [39, 39, 39, 34, 34, 34, 34, 32, 32, 32, 32, 31, 31, 31] + "sell": [21, 21, 21, 19, 19, 19, 19, 21, 21, 21, 21, 24, 24, 24] }, "superconductors": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -3899,10 +3937,10 @@ }, "water": { "buy": [ - 31.6, 31.6, 31.6, 34, 34, 34, 34, 35.8, 35.8, 35.8, 35.8, 34, - 34, 34 + 28.25, 28.25, 28.25, 29.25, 29.25, 29.25, 29.25, 33, 33, 33, 33, + 29.5, 29.5, 29.5 ], - "sell": [43, 43, 43, 42, 42, 42, 42, 42, 42, 42, 42, 41, 41, 41] + "sell": [41, 41, 41, 42, 42, 42, 42, 39, 39, 39, 39, 41, 41, 41] } }, "mask": "BigInt:1073741824" @@ -3938,11 +3976,11 @@ "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [ - 0, 1842.3356304111346, 1842.3356304111346, 3684.6712608222692, - 3684.6712608222692, 5527.006891233404, 5527.006891233404, - 7369.3425216445385, 7369.3425216445385, 9211.678152055672, - 9211.678152055672, 11054.013782466807, 11054.013782466807, - 12896.349412877942 + 17808.89622025404, 18908.79048316052, 18908.79048316052, + 20008.684746067, 20008.684746067, 21108.57900897348, + 21108.57900897348, 21997.885258129638, 21997.885258129638, + 21997.885258129638, 21997.885258129638, 21997.885258129638, + 21997.885258129638, 21997.885258129638 ], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] @@ -4057,24 +4095,25 @@ "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [ - 28685.025362986762, 30417.638685679598, 0, 1732.6133226928364, 0, - 1732.6133226928364, 1732.6133226928364, 3465.226645385673, - 3465.226645385673, 5197.83996807851, 5197.83996807851, - 6930.453290771346, 6930.453290771346, 1732.6133226928364 + 15776.228359929397, 16273.280975448479, 16273.280975448479, + 16273.280975448479, 16273.280975448479, 16273.280975448479, + 16273.280975448479, 16273.280975448479, 16273.280975448479, + 16273.280975448479, 16273.280975448479, 16273.280975448479, + 16273.280975448479, 16273.280975448479 ], "ore": [ - 482515.30280885124, 508456.48454338004, 0, 25941.18173452878, - 25941.18173452878, 51882.36346905756, 51882.36346905756, - 77823.54520358634, 77823.54520358634, 103764.72693811513, - 103764.72693811513, 129705.90867264391, 129705.90867264391, - 155647.09040717268 + 454239.31587268045, 479330.2956598046, 479330.2956598046, + 501819.59574248345, 501819.59574248345, 501819.59574248345, + 501819.59574248345, 501819.59574248345, 501819.59574248345, + 501819.59574248345, 501819.59574248345, 501819.59574248345, + 501819.59574248345, 501819.59574248345 ], "silica": [ - 107189.51812371309, 5910.975542509339, 5910.975542509339, - 11821.951085018678, 11821.951085018678, 17732.926627528017, - 17732.926627528017, 23643.902170037356, 23643.902170037356, - 29554.877712546695, 29554.877712546695, 35465.853255056034, - 35465.853255056034, 41376.82879756537 + 124402.13378842518, 131722.12634234942, 131722.12634234942, + 139042.11889627366, 139042.11889627366, 146362.1114501979, + 146362.1114501979, 146399.85107848456, 146399.85107848456, + 146399.85107848456, 146399.85107848456, 146399.85107848456, + 146399.85107848456, 146399.85107848456 ] }, "prices": { @@ -4084,10 +4123,16 @@ }, "drones": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [ + 837, 837, 837, 784, 784, 784, 784, 808, 808, 808, 808, 920, 920, + 920 + ] }, "electronics": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 174, 174, 174, 212, 212, 212, 212, 254, 254, 254, 254, 313, 313, + 313 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "engineParts": { @@ -4095,16 +4140,11 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [12, 12, 12, 16, 16, 16, 16, 18, 18, 18, 18, 20, 20, 20], - "sell": [ - 20.5, 20.5, 20.5, 21, 21, 21, 21, 18.5, 18.5, 18.5, 18.5, 19, - 19, 19 - ] + "buy": [13, 13, 13, 15, 15, 15, 15, 15, 15, 15, 15, 17, 17, 17], + "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuel": { - "buy": [ - 39, 39, 39, 40.5, 40.5, 40.5, 40.5, 52, 52, 52, 52, 54, 54, 54 - ], + "buy": [57, 57, 57, 59, 59, 59, 59, 50, 50, 50, 50, 62, 62, 62], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -4120,37 +4160,34 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [57, 57, 57, 51, 51, 51, 51, 44, 44, 44, 44, 44, 44, 44] + "buy": [66, 66, 66, 49, 49, 49, 49, 50, 50, 50, 50, 45, 45, 45], + "sell": [52, 52, 52, 52, 52, 52, 52, 48, 48, 48, 48, 43, 43, 43] }, "hydrogen": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [ - 19, 19, 19, 23, 23, 23, 23, 18.5, 18.5, 18.5, 18.5, 21.5, 21.5, - 21.5 - ], + "buy": [22, 22, 22, 26, 26, 26, 26, 25, 25, 25, 25, 25, 25, 25], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { - "buy": [58, 58, 58, 68, 68, 68, 68, 80, 80, 80, 80, 79, 79, 79], - "sell": [ - 103, 103, 103, 94, 94, 94, 94, 92, 92, 92, 92, 95, 95, 95 - ] + "buy": [ + 100, 100, 100, 76, 76, 76, 76, 67, 67, 67, 67, 82, 82, 82 + ], + "sell": [34, 34, 34, 61, 61, 61, 61, 64, 64, 64, 64, 76, 76, 76] }, "ore": { - "buy": [19, 19, 19, 22, 22, 22, 22, 21, 21, 21, 21, 28, 28, 28], + "buy": [30, 30, 30, 32, 32, 32, 32, 38, 38, 38, 38, 43, 43, 43], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silica": { - "buy": [42, 42, 42, 52, 52, 52, 52, 44, 44, 44, 44, 44, 44, 44], + "buy": [30, 30, 30, 35, 35, 35, 35, 36, 36, 36, 36, 24, 24, 24], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], - "sell": [28, 28, 28, 32, 32, 32, 32, 29, 29, 29, 29, 27, 27, 27] + "sell": [37, 37, 37, 32, 32, 32, 32, 24, 24, 24, 24, 23, 23, 23] }, "superconductors": { "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], @@ -4161,14 +4198,8 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "water": { - "buy": [ - 29.5, 29.5, 29.5, 34.5, 34.5, 34.5, 34.5, 35, 35, 35, 35, 41.5, - 41.5, 41.5 - ], - "sell": [ - 34.5, 34.5, 34.5, 36.5, 36.5, 36.5, 36.5, 38, 38, 38, 38, 35.5, - 35.5, 35.5 - ] + "buy": [17, 17, 17, 19, 19, 19, 19, 28, 28, 28, 28, 34, 34, 34], + "sell": [30, 30, 30, 35, 35, 35, 35, 34, 34, 34, 34, 35, 35, 35] } }, "mask": "BigInt:1073741824" @@ -4204,11 +4235,11 @@ "fuelium": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "goldOre": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "ice": [ - 11551.954573958545, 663.7974385873928, 663.7974385873928, - 1327.5948771747856, 1327.5948771747856, 663.7974385873928, - 663.7974385873928, 1327.5948771747856, 1327.5948771747856, - 1991.3923157621784, 1991.3923157621784, 2655.189754349571, - 2655.189754349571, 3318.9871929369638 + 0, 713.9821301998304, 713.9821301998304, 1427.9642603996608, + 1427.9642603996608, 2141.946390599491, 2141.946390599491, + 2855.9285207993216, 2855.9285207993216, 3569.910650999152, + 3569.910650999152, 4283.892781198982, 4283.892781198982, + 4997.874911398812 ], "ore": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], "silica": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] @@ -4220,34 +4251,39 @@ }, "drones": { "buy": [ - 1564, 1564, 1564, 1146, 1146, 1146, 1146, 1373, 1373, 1373, - 1373, 1251, 1251, 1251 + 1672, 1672, 1672, 942, 942, 942, 942, 1125, 1125, 1125, 1125, + 994, 994, 994 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "electronics": { "buy": [ - 397, 397, 397, 396, 396, 396, 396, 456, 456, 456, 456, 381, 381, - 381 + 381, 381, 381, 319, 319, 319, 319, 295, 295, 295, 295, 351, 351, + 351 ], - "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] + "sell": [ + 418, 418, 418, 391, 391, 391, 391, 362, 362, 362, 362, 338, 338, + 338 + ] }, "engineParts": { "buy": [ - 473, 473, 473, 486, 486, 486, 486, 488, 488, 488, 488, 487, 487, - 487 + 172, 172, 172, 209, 209, 209, 209, 251, 251, 251, 251, 284, 284, + 284 ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "food": { - "buy": [22, 22, 22, 8, 8, 8, 8, 10, 10, 10, 10, 18, 18, 18], - "sell": [ - 19.5, 19.5, 19.5, 20.5, 20.5, 20.5, 20.5, 16.5, 16.5, 16.5, - 16.5, 14.5, 14.5, 14.5 - ] + "buy": [14, 14, 14, 16, 16, 16, 16, 20, 20, 20, 20, 17, 17, 17], + "sell": [15, 15, 15, 13, 13, 13, 13, 17, 17, 17, 17, 15, 15, 15] }, "fuel": { - "buy": [60, 60, 60, 55, 55, 55, 55, 45, 45, 45, 45, 56, 56, 56], + "buy": [ + 51, 51, 51, 54.666666666666664, 54.666666666666664, + 54.666666666666664, 54.666666666666664, 57.333333333333336, + 57.333333333333336, 57.333333333333336, 57.333333333333336, 56, + 56, 56 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "fuelium": { @@ -4255,7 +4291,10 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "gold": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [ + 416, 416, 416, 504, 504, 504, 504, 607, 607, 607, 607, 729, 729, + 729 + ], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "goldOre": { @@ -4263,7 +4302,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hullPlates": { - "buy": [54, 54, 54, 44, 44, 44, 44, 29, 29, 29, 29, 42, 42, 42], + "buy": [29, 29, 29, 46, 46, 46, 46, 40, 40, 40, 40, 53, 53, 53], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "hydrogen": { @@ -4271,7 +4310,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "ice": { - "buy": [25, 25, 25, 26, 26, 26, 26, 18, 18, 18, 18, 22, 22, 22], + "buy": [25, 25, 25, 21, 21, 21, 21, 25, 25, 25, 25, 27, 27, 27], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "metals": { @@ -4287,7 +4326,7 @@ "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "silicon": { - "buy": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0], + "buy": [31, 31, 31, 24, 24, 24, 24, 27, 27, 27, 27, 19, 19, 19], "sell": [0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0] }, "superconductors": { @@ -4300,13 +4339,10 @@ }, "water": { "buy": [ - 30.666666666666668, 30.666666666666668, 30.666666666666668, - 36.333333333333336, 36.333333333333336, 36.333333333333336, - 36.333333333333336, 32.333333333333336, 32.333333333333336, - 32.333333333333336, 32.333333333333336, 40.333333333333336, - 40.333333333333336, 40.333333333333336 + 44.5, 44.5, 44.5, 24.5, 24.5, 24.5, 24.5, 27.5, 27.5, 27.5, + 27.5, 28.5, 28.5, 28.5 ], - "sell": [41, 41, 41, 39, 39, 39, 39, 34, 34, 34, 34, 36, 36, 36] + "sell": [31, 31, 31, 28, 28, 28, 28, 35, 35, 35, 35, 36, 36, 36] } }, "mask": "BigInt:1073741824" @@ -4354,7 +4390,7 @@ "position": { "name": "position", "angle": 0, - "coord": [23.986657915164805, -2.1441542576358916], + "coord": [22.244229412038155, -14.569074772409925], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -4443,25 +4479,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [69.27710933671597, 77.79491717654689], - "drones": [604.7271218805362, 614.5357950968807], - "electronics": [151.22776994425638, 160.41577804336399], - "engineParts": [239.92185788102438, 251.01321278230478], - "food": [18.458080041340825, 24.86826544112956], - "fuel": [61.42674012140173, 80.0040556416957], - "fuelium": [43.99917321332954, 59.391145087824384], - "gold": [387.6548023928764, 405.007246620376], - "goldOre": [41.96746800489551, 61.698575085351735], - "hullPlates": [56.3601848001381, 64.73060586284384], - "hydrogen": [80.97995221374401, 96.05314522440256], - "ice": [21.664573791314535, 40.82839124930561], - "metals": [42.44316454393456, 61.54814794936145], - "ore": [35.75607930854915, 51.6700371508107], - "silica": [34.942221275954346, 50.4516447985003], - "silicon": [32.02471195272248, 42.51676619897445], - "superconductors": [568.8091515462993, 579.702481194027], - "tauMetal": [252.82407335697076, 266.68227384420345], - "water": [38.81824071327482, 54.616304950486196] + "coolant": [123.63127508074, 142.17263240969385], + "drones": [1205.9436192794806, 1219.5280513874789], + "electronics": [210.83358599554754, 228.21661686383788], + "engineParts": [476.3332507649701, 485.17026098050394], + "food": [19.668560805591987, 27.995890412894774], + "fuel": [64.52421480673151, 71.80057075149013], + "fuelium": [45.73847530939345, 63.490608141957665], + "gold": [778.7825033232448, 795.6966213368505], + "goldOre": [43.52395212864018, 48.592713604547505], + "hullPlates": [62.08277533112758, 71.17978998560457], + "hydrogen": [43.264937672661915, 58.05994666906984], + "ice": [22.799619004386862, 36.24079567704523], + "metals": [62.50342503476428, 76.31703893763333], + "ore": [18.895417021478593, 27.746142320970165], + "silica": [49.86534124739939, 67.55624471622579], + "silicon": [34.200610548372495, 51.693308091950655], + "superconductors": [552.8363172112563, 558.6066379254503], + "tauMetal": [628.5717281655403, 643.5990567777899], + "water": [39.56688531931658, 52.73522094130112] }, "lastPriceAdjust": { "time": 0, @@ -4490,115 +4526,115 @@ "offers": { "coolant": { "active": false, - "price": 75, + "price": 126, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 611, + "price": 1207, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 154, + "price": 216, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 240, + "price": 483, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 23, + "price": 21, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 76, + "price": 65, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 54, + "price": 60, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 404, + "price": 786, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 47, + "price": 44, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 61, + "price": 70, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 95, + "price": 54, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 27, + "price": 35, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 43, + "price": 75, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 40, + "price": 19, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 45, + "price": 67, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 39, + "price": 46, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 569, + "price": 556, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 255, + "price": 635, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 51, + "price": 45, "quantity": 0, "type": "sell" } @@ -4691,7 +4727,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-28.660016726144576, 5.380386246412329], + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": false, "mask": "BigInt:2199023255552" @@ -4780,25 +4816,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [65.65859008475668, 82.86732411136525], - "drones": [924.656837084638, 944.1103927986804], - "electronics": [298.0658857093056, 311.1291773781442], - "engineParts": [209.64436722812366, 222.7893821448875], - "food": [15.127440770948628, 27.788226222262885], - "fuel": [65.59003175814968, 72.91427653929381], - "fuelium": [46.605071677211356, 57.82927454986019], - "gold": [466.37380564772525, 485.228991268073], - "goldOre": [64.48086153288163, 77.07698362285777], - "hullPlates": [42.139935509909115, 55.00988276329951], - "hydrogen": [91.23165777664137, 100.46494962853487], - "ice": [20.155445619193124, 27.8411389767795], - "metals": [86.62305133220934, 102.0337454666082], - "ore": [16.509192286180614, 30.304040832411246], - "silica": [43.92043457359251, 53.97480585692607], - "silicon": [19.27761046526105, 31.929670786664595], - "superconductors": [559.9777601557435, 579.3530656968534], - "tauMetal": [360.2678834833067, 375.24116032656735], - "water": [25.052969016395405, 36.34052840719981] + "coolant": [142.0658215525082, 161.59354400249168], + "drones": [1102.1958351968324, 1109.2383625760845], + "electronics": [189.13590261526008, 197.96905492638825], + "engineParts": [329.95178981246073, 337.9642392544866], + "food": [12.103333215820902, 31.697393232580666], + "fuel": [71.0158118556439, 86.63882361967421], + "fuelium": [72.246569002911, 84.87159391387604], + "gold": [531.5091591368863, 546.2395464811369], + "goldOre": [81.63733947274525, 95.10012289264381], + "hullPlates": [30.377034482455038, 49.122361767913034], + "hydrogen": [41.48787681246082, 51.02861146914425], + "ice": [17.1976839651726, 37.030132520424814], + "metals": [70.85063598665394, 85.0758742560358], + "ore": [15.129068614636624, 34.55494351314944], + "silica": [32.53681249225197, 47.94130099629189], + "silicon": [22.13561349030158, 28.281647053852286], + "superconductors": [514.1081608410884, 523.0730483234413], + "tauMetal": [297.9005912618985, 313.5148256569331], + "water": [29.206646325906767, 45.46657743317641] }, "lastPriceAdjust": { "time": 0, @@ -4827,25 +4863,25 @@ "offers": { "coolant": { "active": false, - "price": 72, + "price": 148, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 940, + "price": 1103, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 308, + "price": 191, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 220, + "price": 337, "quantity": 0, "type": "sell" }, @@ -4857,49 +4893,49 @@ }, "fuel": { "active": false, - "price": 71, + "price": 81, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 50, + "price": 83, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 481, + "price": 540, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 65, + "price": 91, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 43, + "price": 45, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 91, + "price": 44, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 23, + "price": 20, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 101, + "price": 70, "quantity": 0, "type": "sell" }, @@ -4911,31 +4947,31 @@ }, "silica": { "active": false, - "price": 52, + "price": 42, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 27, + "price": 23, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 562, + "price": 516, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 373, + "price": 301, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 26, + "price": 40, "quantity": 0, "type": "sell" } @@ -5021,7 +5057,7 @@ "position": { "name": "position", "angle": 0, - "coord": [13.003023279186994, -29.728928274831084], + "coord": [8.446043303707734, -21.903277343128167], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -5110,25 +5146,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [62.592005932386, 78.69548076883551], - "drones": [779.9448340791902, 794.4104379608741], - "electronics": [174.38874451158486, 184.6354168910131], - "engineParts": [362.72660183526887, 368.5605779263247], - "food": [16.602220867763442, 22.163687351223324], - "fuel": [39.5906400129618, 53.310571764109255], - "fuelium": [48.4901802540418, 57.188729131236485], - "gold": [390.25648445268473, 398.8862845716435], - "goldOre": [49.981256986119426, 67.66651768209104], - "hullPlates": [32.92680113965099, 51.5708617320378], - "hydrogen": [75.71029803599887, 84.85981740438693], - "ice": [19.75102844802496, 38.38582024895443], - "metals": [73.48711410284312, 88.86374588436195], - "ore": [14.522768429022555, 26.93459061537515], - "silica": [27.58394708320282, 47.56684299231145], - "silicon": [23.734912999216785, 32.812344758931644], - "superconductors": [200.65150160217632, 211.7425512247147], - "tauMetal": [433.53592653209483, 438.8866007964688], - "water": [37.35261017396792, 49.40720647439552] + "coolant": [136.22723452081348, 150.45442425098602], + "drones": [999.4729015254902, 1016.6153318386673], + "electronics": [272.2231372435702, 283.6519636669901], + "engineParts": [411.79946399881453, 421.79094238629415], + "food": [7.377666621495646, 18.240739313933346], + "fuel": [45.549995241074164, 62.23848443050239], + "fuelium": [32.68210170502248, 51.44692845613972], + "gold": [762.2452050380401, 769.0012368513958], + "goldOre": [78.69223620062196, 96.98917879643466], + "hullPlates": [44.821185246346175, 62.73851640319117], + "hydrogen": [84.30972494863951, 100.71453247666867], + "ice": [9.693578773333314, 21.80459466217946], + "metals": [34.144128154384994, 52.33855317628554], + "ore": [28.324393605853796, 37.464764473754485], + "silica": [30.24711121213101, 43.78613999558574], + "silicon": [35.35063493227257, 51.89850041750413], + "superconductors": [434.3975828059365, 442.4113623969129], + "tauMetal": [248.0259480932805, 256.0238551705684], + "water": [21.629197312568454, 40.76104673421588] }, "lastPriceAdjust": { "time": 0, @@ -5157,115 +5193,115 @@ "offers": { "coolant": { "active": false, - "price": 65, + "price": 144, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 791, + "price": 1009, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 176, + "price": 276, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 364, + "price": 417, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 21, + "price": 15, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 46, + "price": 57, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 49, + "price": 40, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 398, + "price": 768, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 62, + "price": 80, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 51, + "price": 60, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 79, + "price": 93, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 28, + "price": 14, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 81, + "price": 35, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 18, + "price": 35, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 30, + "price": 38, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 24, + "price": 45, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 210, + "price": 441, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 438, + "price": 253, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 37, + "price": 28, "quantity": 0, "type": "sell" } @@ -5359,7 +5395,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-16.097698748022115, 30.75742575467078], + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": false, "mask": "BigInt:2199023255552" @@ -5448,25 +5484,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [98.76487384573429, 116.23420586188517], - "drones": [1557.203016595566, 1564.50605535575], - "electronics": [420.8977592881649, 440.04528969018435], - "engineParts": [392.1568325718379, 405.46593317494444], - "food": [20.317751075056943, 29.72457139684893], - "fuel": [69.70927977097952, 76.16331428897499], - "fuelium": [74.44538839216548, 86.55826576662946], - "gold": [781.0916693025927, 789.5970284955062], - "goldOre": [35.52217015480528, 51.72329793339116], - "hullPlates": [31.15544584747073, 37.292993568763755], - "hydrogen": [62.56971049356726, 70.83162319003875], - "ice": [10.66555846581624, 16.84798582402899], - "metals": [96.54269777401763, 102.18673048157328], - "ore": [19.810616643235964, 32.7185932525858], - "silica": [48.62847260659884, 63.360876334013966], - "silicon": [15.89587450335844, 24.07724699274074], - "superconductors": [512.8339976257515, 529.0942950946447], - "tauMetal": [383.0919648148373, 392.8837273860958], - "water": [31.809436352606777, 44.59364220953866] + "coolant": [144.89914919842954, 160.19817557104602], + "drones": [936.535061816991, 949.4260725529297], + "electronics": [291.24631534487753, 296.50242940133177], + "engineParts": [246.82012752012022, 259.70631400617486], + "food": [10.838417142298457, 26.611817338820877], + "fuel": [76.94596156821794, 86.36944842115035], + "fuelium": [34.77460706219041, 42.99134288482501], + "gold": [569.0383511992754, 579.7873190832378], + "goldOre": [69.0029980845722, 88.62905650369534], + "hullPlates": [50.82618963712642, 58.71074645437561], + "hydrogen": [46.61572628505965, 62.694208273324186], + "ice": [10.910475897239712, 16.68022360458638], + "metals": [76.01977131709842, 85.77124744316541], + "ore": [28.091678643871166, 35.98633676696597], + "silica": [44.40750873635393, 59.425870120734636], + "silicon": [27.800985494493123, 38.79806312186134], + "superconductors": [238.9591139440501, 255.68478788485987], + "tauMetal": [227.6762393351093, 234.95324401144964], + "water": [37.67156244530489, 55.33543353518019] }, "lastPriceAdjust": { "time": 0, @@ -5495,115 +5531,115 @@ "offers": { "coolant": { "active": false, - "price": 106, + "price": 155, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1559, + "price": 942, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 424, + "price": 292, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 397, + "price": 252, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 24, + "price": 16, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 74, + "price": 80, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 83, + "price": 37, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 787, + "price": 569, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 45, + "price": 77, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 37, + "price": 55, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 63, + "price": 58, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 11, + "price": 16, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 97, + "price": 83, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 29, + "price": 35, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 53, + "price": 56, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 20, + "price": 35, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 522, + "price": 251, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 391, + "price": 227, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 36, + "price": 53, "quantity": 0, "type": "sell" } @@ -5690,7 +5726,7 @@ "position": { "name": "position", "angle": 0, - "coord": [15.514344188987147, -23.408204626530626], + "coord": [25.526575373488495, -0.721827877829121], "sector": 3, "moved": false, "mask": "BigInt:2199023255552" @@ -5779,25 +5815,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [69.74336510295682, 76.2254533959147], - "drones": [1294.348702569083, 1304.7098088005162], - "electronics": [372.91957863518894, 386.26349582470255], - "engineParts": [267.8928726518852, 275.3251718879157], - "food": [18.726067289512983, 25.76392983878587], - "fuel": [43.40254973521692, 59.086139937838105], - "fuelium": [62.59411831776912, 76.66423483120462], - "gold": [609.7224662588142, 629.5217957396785], - "goldOre": [58.66200918502406, 72.71092549514474], - "hullPlates": [30.85782847510302, 39.77963135790509], - "hydrogen": [72.74053981886078, 78.56423496088478], - "ice": [10.629690882127129, 22.081545504626146], - "metals": [94.25731122937607, 112.13590846999499], - "ore": [33.67089574364266, 42.984997946655824], - "silica": [42.54790552440623, 60.17599100287099], - "silicon": [23.44106827351355, 29.755546070884353], - "superconductors": [446.2771250819866, 465.8975660472402], - "tauMetal": [294.2991772263616, 306.80243152365335], - "water": [15.920736077496558, 25.979478293992763] + "coolant": [56.463806503208325, 66.77045576404308], + "drones": [1376.929678006484, 1395.440277933426], + "electronics": [236.8165244317172, 247.64903394588285], + "engineParts": [354.57904167107597, 373.98924015143785], + "food": [14.2609148425984, 32.18659390210248], + "fuel": [65.13281507897014, 73.71539757688105], + "fuelium": [58.021278952536, 69.2241811296817], + "gold": [642.2428432396925, 649.0818823836422], + "goldOre": [70.2390888850802, 81.1244017209413], + "hullPlates": [55.432359789539014, 62.92090298881587], + "hydrogen": [46.22668168708968, 59.02718461679301], + "ice": [25.86296175401175, 39.1770529235666], + "metals": [37.441821059988115, 47.11469146796397], + "ore": [25.22210468133993, 37.66338690038354], + "silica": [36.462232256672124, 52.64100473274548], + "silicon": [32.18138079446315, 48.11006387430277], + "superconductors": [572.247604113013, 591.4958446587384], + "tauMetal": [519.891129237093, 536.5882980202148], + "water": [39.83465199399441, 55.33977667518174] }, "lastPriceAdjust": { "time": 0, @@ -5826,115 +5862,115 @@ "offers": { "coolant": { "active": false, - "price": 72, + "price": 60, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1297, + "price": 1392, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 382, + "price": 240, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 270, + "price": 370, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 24, + "price": 14, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 53, + "price": 73, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 68, + "price": 66, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 619, + "price": 646, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 72, + "price": 73, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 35, + "price": 57, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 78, + "price": 58, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 20, + "price": 36, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 96, + "price": 43, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 35, + "price": 36, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 47, + "price": 51, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 24, + "price": 37, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 464, + "price": 577, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 299, + "price": 531, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 18, + "price": 52, "quantity": 0, "type": "sell" } @@ -6027,7 +6063,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-19.071851049979816, 9.536015379538405], + "coord": [-21.004351489614013, 12.178654906174483], "sector": 4, "moved": false, "mask": "BigInt:2199023255552" @@ -6116,25 +6152,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [120.62085850718823, 131.95442782449163], - "drones": [1144.5347587278247, 1154.8080112508892], - "electronics": [149.20673205097714, 156.355164234283], - "engineParts": [284.8349889678743, 304.192902548593], - "food": [17.517138757029038, 31.6462061697269], - "fuel": [45.96899417836952, 52.12853800100769], - "fuelium": [38.48223377215068, 47.27005451243036], - "gold": [411.1777987070858, 427.98924775023147], - "goldOre": [91.91814914233771, 111.3280247393617], - "hullPlates": [49.74688748365034, 64.2354327523961], - "hydrogen": [47.63135409854539, 55.16582712286429], - "ice": [12.059254495950995, 23.11811953479621], - "metals": [73.55522898441228, 85.60594730926357], - "ore": [24.746013017138786, 42.96334416204248], - "silica": [34.22379161857607, 45.95738331826297], - "silicon": [21.356492102579363, 39.25235737358827], - "superconductors": [202.56845053011804, 209.45385775819997], - "tauMetal": [662.7249561472752, 669.7467526876924], - "water": [34.329917650210916, 53.058349647948575] + "coolant": [143.44358234690952, 162.95091523546162], + "drones": [610.0869928696158, 623.2201444663613], + "electronics": [230.00683911666883, 243.43610565430913], + "engineParts": [400.6114234311178, 419.52801301085356], + "food": [19.198376445379694, 36.80983145741887], + "fuel": [61.87320934253869, 70.60128406760154], + "fuelium": [31.919719465348813, 43.07922266728008], + "gold": [855.2093931244228, 862.4267725475174], + "goldOre": [55.03729363125265, 64.16332799342986], + "hullPlates": [64.94922004387158, 83.61749406549097], + "hydrogen": [42.96424083232621, 58.560135253718386], + "ice": [15.407241226233236, 32.58185576572728], + "metals": [35.05807307705147, 54.58716902576565], + "ore": [35.77028056323856, 45.037702414638176], + "silica": [23.152093285080962, 39.687804156644745], + "silicon": [13.906994677828669, 19.949755248750705], + "superconductors": [431.2291013171658, 448.2067858065227], + "tauMetal": [449.48814271107864, 459.93155745119145], + "water": [40.506828133432336, 52.27760212476938] }, "lastPriceAdjust": { "time": 0, @@ -6163,115 +6199,115 @@ "offers": { "coolant": { "active": false, - "price": 129, + "price": 156, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1145, + "price": 615, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 151, + "price": 234, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 286, + "price": 409, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 24, + "price": 30, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 47, + "price": 64, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 43, + "price": 39, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 412, + "price": 860, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 97, + "price": 60, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 60, + "price": 65, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 48, + "price": 50, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 15, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 84, + "price": 42, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 37, + "price": 41, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 45, + "price": 38, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 35, + "price": 18, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 205, + "price": 432, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 667, + "price": 454, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 51, + "price": 52, "quantity": 0, "type": "sell" } @@ -6357,7 +6393,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-10.428649844239816, -20.071197095158478], + "coord": [-8.784016674101622, -22.352244916400373], "sector": 4, "moved": false, "mask": "BigInt:2199023255552" @@ -6446,25 +6482,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [96.3604965969533, 115.38060661430413], - "drones": [1259.5200408399487, 1265.1806803947923], - "electronics": [155.0910250794833, 171.20051868520204], - "engineParts": [380.65731640707463, 392.25854653333505], - "food": [18.226043758168622, 33.680784214546165], - "fuel": [48.11921964401425, 61.078761131603464], - "fuelium": [56.75841644565169, 66.36713593893803], - "gold": [894.0811203178293, 902.7224795171813], - "goldOre": [78.51263499139353, 88.35204551418256], - "hullPlates": [57.945456252744464, 65.20071709456114], - "hydrogen": [97.74328534725441, 115.27247286864231], - "ice": [22.878076482166914, 40.28809644937024], - "metals": [39.73756401935492, 59.22836443311984], - "ore": [34.43479313129498, 50.54948364781668], - "silica": [48.86717828218871, 64.20296750501313], - "silicon": [12.702781271564687, 29.691554231522503], - "superconductors": [388.57622229238615, 394.3357609270544], - "tauMetal": [397.8156128710814, 412.66732307505254], - "water": [22.650296563117585, 27.918449804410848] + "coolant": [72.78606172754262, 84.45287346280125], + "drones": [960.2869412972022, 972.077405162202], + "electronics": [305.0912542023964, 323.8609013841958], + "engineParts": [296.6213920958869, 313.19989886242973], + "food": [11.415107051461433, 21.496136229267066], + "fuel": [48.786336114775864, 59.39378069051777], + "fuelium": [29.74462957442438, 40.456407511577936], + "gold": [650.0389569129616, 656.076491431166], + "goldOre": [35.277337913993954, 52.29643762356782], + "hullPlates": [43.014921419699775, 61.365359412117286], + "hydrogen": [38.245428742606414, 56.05912130074963], + "ice": [20.740137858063093, 34.002427977935795], + "metals": [96.34775190689845, 104.25262885423237], + "ore": [23.074488848705613, 34.750627975234735], + "silica": [27.70199939223336, 35.49503263033529], + "silicon": [33.11680060774196, 39.466134214156575], + "superconductors": [276.4998695280133, 288.54333771316817], + "tauMetal": [593.6578500559799, 608.3600734227416], + "water": [39.20607739460341, 58.56080949440543] }, "lastPriceAdjust": { "time": 0, @@ -6493,55 +6529,55 @@ "offers": { "coolant": { "active": false, - "price": 101, + "price": 76, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1261, + "price": 961, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 166, + "price": 313, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 388, + "price": 299, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 20, + "price": 15, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 57, + "price": 53, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 66, + "price": 37, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 896, + "price": 652, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 84, + "price": 43, "quantity": 0, "type": "sell" }, @@ -6553,55 +6589,55 @@ }, "hydrogen": { "active": false, - "price": 107, + "price": 40, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 30, + "price": 32, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 44, + "price": 100, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 41, + "price": 26, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 50, + "price": 31, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 16, + "price": 33, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 390, + "price": 281, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 409, + "price": 604, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 23, + "price": 45, "quantity": 0, "type": "sell" } @@ -6694,7 +6730,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-4.075614417809401, 20.240608355507117], + "coord": [-5.305162526889385, 26.695287655687288], "sector": 5, "moved": false, "mask": "BigInt:2199023255552" @@ -6783,25 +6819,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [120.91824521824103, 137.95438174898644], - "drones": [1664.9304214413548, 1676.3273287485526], - "electronics": [282.63639979578625, 294.33827989340415], - "engineParts": [251.59849925280128, 260.550213879005], - "food": [13.892305016613488, 27.272683703347035], - "fuel": [32.96256870842405, 46.979749919989274], - "fuelium": [42.59755928683832, 62.058497893482674], - "gold": [632.6527722744379, 651.7736341074152], - "goldOre": [87.91623371853078, 93.08014448547591], - "hullPlates": [24.01010252443961, 31.370585120076687], - "hydrogen": [64.3980593028288, 69.64084415388477], - "ice": [15.625905014822159, 25.76731513565731], - "metals": [56.557265466243805, 68.1693967758739], - "ore": [35.317363962027905, 50.65679989835145], - "silica": [27.33787324892015, 40.14153104768165], - "silicon": [12.120730544654696, 28.23948084894424], - "superconductors": [362.7082793067058, 372.0400110932268], - "tauMetal": [381.13979287687965, 391.00049742901405], - "water": [34.59162052095087, 52.484820834609714] + "coolant": [92.10823332092812, 107.36122091586822], + "drones": [642.8762682400945, 647.8952004138354], + "electronics": [298.1312123290104, 314.10517582790624], + "engineParts": [392.28501437716596, 401.1029056832601], + "food": [21.123806570405726, 33.020996721455234], + "fuel": [68.80107586153613, 75.2204825274755], + "fuelium": [72.36745687367693, 86.42093910798174], + "gold": [876.8801341259508, 885.7437984640106], + "goldOre": [56.45797964555244, 68.5047834989294], + "hullPlates": [28.349152915095413, 47.138490510551435], + "hydrogen": [64.63894208221221, 78.32810702544863], + "ice": [26.037440441664536, 39.39619075345957], + "metals": [46.808917053413936, 64.50220881116078], + "ore": [32.39030392816996, 48.724197238500494], + "silica": [19.614231590271604, 29.374952817684864], + "silicon": [31.487867043238232, 44.96701602805615], + "superconductors": [235.07034717222314, 252.26327835876344], + "tauMetal": [559.015754377145, 570.0628080309098], + "water": [41.27159159410294, 56.48086089756083] }, "lastPriceAdjust": { "time": 0, @@ -6830,115 +6866,115 @@ "offers": { "coolant": { "active": false, - "price": 127, + "price": 104, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1665, + "price": 647, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 285, + "price": 308, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 258, + "price": 397, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 24, + "price": 29, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 45, + "price": 74, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 44, + "price": 73, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 643, + "price": 882, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 88, + "price": 64, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 26, + "price": 36, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 69, + "price": 66, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 25, + "price": 30, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 56, + "price": 63, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 43, + "price": 37, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 37, + "price": 29, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 15, + "price": 43, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 366, + "price": 248, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 390, + "price": 563, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 39, + "price": 55, "quantity": 0, "type": "sell" } @@ -7024,7 +7060,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-24.883973580266105, 3.33464784803246], + "coord": [-20.78579986693877, 27.574442067650427], "sector": 6, "moved": false, "mask": "BigInt:2199023255552" @@ -7113,25 +7149,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [86.06033066570994, 104.8407623764333], - "drones": [1603.4642621353903, 1616.4886555032692], - "electronics": [224.54722708865611, 238.8295452805224], - "engineParts": [284.7219565992822, 304.19655771825984], - "food": [14.021638670806588, 26.0175179397126], - "fuel": [69.71990213474156, 85.60393547579662], - "fuelium": [44.35480250592762, 51.8607729551567], - "gold": [534.3870582400878, 550.46901507135], - "goldOre": [81.4251354368431, 92.84448221408458], - "hullPlates": [46.28676317971343, 58.62336475114337], - "hydrogen": [72.07023689861319, 85.74307888232374], - "ice": [10.858177886337403, 22.147786608248538], - "metals": [44.424961766284014, 54.01763665283306], - "ore": [35.52985644938531, 48.44106639885795], - "silica": [46.475566652693914, 61.77720942971235], - "silicon": [15.120743964009687, 29.30951110103685], - "superconductors": [573.2899289091271, 592.3486282406892], - "tauMetal": [331.73648821185304, 340.67866616052464], - "water": [29.574520194652237, 39.446269444422796] + "coolant": [62.92325419951139, 78.57878737234017], + "drones": [1288.1055816013932, 1299.636578882766], + "electronics": [290.17036949274654, 304.20188997050724], + "engineParts": [248.54960344921471, 262.7449347880946], + "food": [19.728360021785697, 25.214243502864967], + "fuel": [59.35045994395899, 71.38957935118934], + "fuelium": [30.828989193858007, 49.685301027352395], + "gold": [855.135555243779, 865.7147669661638], + "goldOre": [60.71916779054713, 70.07790665176402], + "hullPlates": [60.68620327283299, 72.7676171332085], + "hydrogen": [62.17701172182225, 74.49052382959586], + "ice": [23.828798568781018, 34.85350791702537], + "metals": [89.01714163170338, 94.16115488973641], + "ore": [23.486197899732286, 35.385958937476495], + "silica": [30.361917641842176, 48.90645918025165], + "silicon": [18.68642787309269, 24.18965940294307], + "superconductors": [415.0243130112799, 425.5871272882032], + "tauMetal": [261.89575656079023, 269.4397053424315], + "water": [35.63692795463182, 48.38348820723067] }, "lastPriceAdjust": { "time": 0, @@ -7160,115 +7196,115 @@ "offers": { "coolant": { "active": false, - "price": 86, + "price": 72, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1606, + "price": 1292, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 237, + "price": 300, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 296, + "price": 252, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 25, + "price": 19, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 81, + "price": 66, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 49, + "price": 46, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 547, + "price": 857, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 85, + "price": 62, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 49, + "price": 65, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 77, + "price": 65, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 13, + "price": 24, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 46, + "price": 90, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 41, + "price": 26, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 50, + "price": 36, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 21, + "price": 23, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 575, + "price": 419, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 334, + "price": 262, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 38, + "price": 43, "quantity": 0, "type": "sell" } @@ -7361,7 +7397,7 @@ "position": { "name": "position", "angle": 0, - "coord": [18.445747698046215, -11.024854706857091], + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -7450,25 +7486,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [73.76541692169076, 83.93190795197165], - "drones": [971.0751272124598, 980.2757679594401], - "electronics": [166.9105022957024, 178.9024270961949], - "engineParts": [167.54451543315284, 183.9126729000335], - "food": [20.511611353696793, 29.969197312532508], - "fuel": [54.85178543552258, 70.5418672842112], - "fuelium": [28.871763459200576, 43.1511261698556], - "gold": [547.1722684139023, 566.8159443096889], - "goldOre": [78.83068869684834, 90.77745861082815], - "hullPlates": [46.45922061385772, 61.39048699410769], - "hydrogen": [66.93591545796296, 86.86207068179782], - "ice": [14.774805218959514, 33.097968733047466], - "metals": [56.92083018566771, 73.9221174287082], - "ore": [40.83632831124449, 45.91243079592023], - "silica": [20.529677684022104, 40.01028311510557], - "silicon": [32.60638525918349, 43.089124341256266], - "superconductors": [197.30028726545757, 210.804145333754], - "tauMetal": [492.8838792414869, 506.6357497866538], - "water": [38.31721906649916, 45.67346402061377] + "coolant": [120.79693753168566, 139.71836919159188], + "drones": [1561.697850459016, 1570.4409723632937], + "electronics": [250.4681974511061, 262.9120580336272], + "engineParts": [303.0684198208228, 321.84961375843824], + "food": [8.079047610262933, 25.328778877525025], + "fuel": [57.271924993008064, 68.57056800753293], + "fuelium": [25.015351448975238, 33.23758612162183], + "gold": [511.6893072092589, 520.8103356760155], + "goldOre": [90.68089342651555, 102.7350705868761], + "hullPlates": [50.81715405122725, 59.30452949834346], + "hydrogen": [70.82537646103114, 78.8893377848788], + "ice": [23.688614752543117, 43.68049269490268], + "metals": [88.1819250640602, 106.03063699457448], + "ore": [36.92642428036967, 42.039050609790024], + "silica": [35.02394790301142, 52.02650653716131], + "silicon": [14.522960518420373, 34.1276237839066], + "superconductors": [412.1242330673989, 423.39952756333713], + "tauMetal": [614.9900142824439, 626.3469375562707], + "water": [33.003912611513215, 45.666683716737026] }, "lastPriceAdjust": { "time": 0, @@ -7497,115 +7533,115 @@ "offers": { "coolant": { "active": false, - "price": 82, + "price": 123, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 975, + "price": 1568, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 167, + "price": 254, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 168, + "price": 319, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 29, + "price": 22, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 66, + "price": 61, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 42, + "price": 27, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 552, + "price": 512, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 84, + "price": 95, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 56, + "price": 57, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 70, + "price": 76, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 24, + "price": 25, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 57, + "price": 93, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 44, + "price": 37, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 26, + "price": 43, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 34, + "price": 25, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 207, + "price": 419, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 493, + "price": 616, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 39, + "price": 36, "quantity": 0, "type": "sell" } @@ -7691,7 +7727,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-8.142088148403522, -24.52571909633942], + "coord": [-0.9678245384664319, -22.81988937774265], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -7780,25 +7816,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [90.11144870861746, 109.16925374972521], - "drones": [1422.0619433973884, 1439.1467024370738], - "electronics": [265.03234863660094, 284.6969778740252], - "engineParts": [451.84440164639125, 461.8546387989742], - "food": [17.252187269578933, 31.384715420708098], - "fuel": [38.85748002772621, 55.4304258623787], - "fuelium": [48.0743321762562, 56.47300026621598], - "gold": [899.2840315503877, 919.1035981288202], - "goldOre": [57.479025892533635, 76.36918586598279], - "hullPlates": [39.974940711423244, 53.68731118381114], - "hydrogen": [38.112462929213784, 48.43833831109943], - "ice": [25.697036616974103, 31.125510002076105], - "metals": [53.99534974221211, 71.3820149100986], - "ore": [26.702999984947336, 44.95477954090984], - "silica": [42.89489061898752, 55.03719601090232], - "silicon": [23.595080333525004, 31.636715437153434], - "superconductors": [486.3544500282969, 504.07415931525736], - "tauMetal": [609.8053442535011, 628.4337133143865], - "water": [31.855883985049868, 51.20308490578341] + "coolant": [105.81096638930694, 116.82718184938548], + "drones": [1267.7661702616842, 1273.5110537049607], + "electronics": [436.93909318908334, 454.29359606144027], + "engineParts": [423.66817230385635, 443.39739642082077], + "food": [17.15754910126659, 29.919394023830257], + "fuel": [60.910836249469384, 74.6553952373289], + "fuelium": [35.22929252923427, 40.333295941917264], + "gold": [502.2054882228465, 517.3021985738652], + "goldOre": [67.78018736449113, 75.48289719757045], + "hullPlates": [62.74514252696672, 71.83605773878361], + "hydrogen": [62.819905156144955, 72.7456454047612], + "ice": [18.418308818164544, 33.19153485914096], + "metals": [69.05082559288829, 84.2675158929581], + "ore": [31.21520126287317, 38.12265598993545], + "silica": [33.431977852873615, 50.4304431736846], + "silicon": [17.877249810572106, 34.71181495884228], + "superconductors": [546.5526331287833, 554.4215460318368], + "tauMetal": [662.1159764055849, 679.9335422213567], + "water": [39.56254824757596, 48.760939329683154] }, "lastPriceAdjust": { "time": 0, @@ -7827,115 +7863,115 @@ "offers": { "coolant": { "active": false, - "price": 92, + "price": 108, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1436, + "price": 1270, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 267, + "price": 441, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 460, + "price": 423, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 30, + "price": 23, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 44, + "price": 63, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 48, + "price": 37, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 914, + "price": 517, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 61, + "price": 75, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 45, + "price": 70, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 42, + "price": 69, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 30, + "price": 31, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 56, + "price": 71, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 32, + "price": 34, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 54, + "price": 47, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 27, + "price": 31, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 490, + "price": 552, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 624, + "price": 663, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 32, + "price": 45, "quantity": 0, "type": "sell" } @@ -8028,7 +8064,7 @@ "position": { "name": "position", "angle": 0, - "coord": [1.0022255902322499, 26.511317290108128], + "coord": [-3.616682428760183, 30.91461227155352], "sector": 8, "moved": false, "mask": "BigInt:2199023255552" @@ -8117,25 +8153,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [56.6355657903751, 66.60141415838575], - "drones": [1326.0272512932697, 1334.5596093597117], - "electronics": [188.65271581660096, 206.16440018631607], - "engineParts": [371.3115035817092, 389.1776571758247], - "food": [15.772166563154888, 27.40089478464538], - "fuel": [71.1595609255127, 80.86384405552332], - "fuelium": [27.12439363294848, 43.72726604852406], - "gold": [351.6726584587966, 369.6568551460369], - "goldOre": [74.37700908048929, 87.57324650525435], - "hullPlates": [65.41385264604307, 71.32624964049454], - "hydrogen": [82.54340260498441, 87.91306449046255], - "ice": [24.241524813085448, 36.30403943468737], - "metals": [35.90093121343146, 51.07270861285858], - "ore": [14.658819330100549, 34.03026546430584], - "silica": [27.73350524142471, 36.85858762693033], - "silicon": [14.24006126316483, 23.083636948531883], - "superconductors": [349.0891436903123, 359.69074975488996], - "tauMetal": [339.0319758046643, 354.6878796581772], - "water": [21.55908933273482, 36.99590317077133] + "coolant": [131.19079271519914, 150.97017803005195], + "drones": [769.391652777759, 782.03116037321], + "electronics": [267.91204113044284, 274.58446913477553], + "engineParts": [442.1331577686011, 458.88987397052074], + "food": [16.39618500365234, 35.06742032451762], + "fuel": [71.7783130107315, 81.44898008598093], + "fuelium": [61.82029683672395, 67.94259124685045], + "gold": [766.5226796056966, 776.9644131960788], + "goldOre": [89.63227355536358, 98.24535371952975], + "hullPlates": [36.34445083537149, 45.022101343095684], + "hydrogen": [64.95095630313735, 77.76210824038638], + "ice": [21.259785395750527, 26.557136033271007], + "metals": [54.80934020813538, 73.39294337492589], + "ore": [22.756597893806042, 28.50407622081869], + "silica": [25.37512042053934, 38.33735227318252], + "silicon": [32.927269900019425, 44.623997943560305], + "superconductors": [329.53889254697833, 344.5970335580747], + "tauMetal": [496.85801682572605, 508.1634875154427], + "water": [41.85285578725942, 50.84392143385448] }, "lastPriceAdjust": { "time": 0, @@ -8164,115 +8200,115 @@ "offers": { "coolant": { "active": false, - "price": 65, + "price": 146, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1331, + "price": 769, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 193, + "price": 270, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 373, + "price": 451, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 18, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 73, + "price": 78, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 30, + "price": 62, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 365, + "price": 773, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 77, + "price": 90, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 68, + "price": 41, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 84, + "price": 66, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 25, + "price": 24, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 36, + "price": 55, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 21, + "price": 25, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 30, + "price": 37, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 15, + "price": 39, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 353, + "price": 334, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 348, + "price": 498, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 24, + "price": 50, "quantity": 0, "type": "sell" } @@ -8358,7 +8394,7 @@ "position": { "name": "position", "angle": 0, - "coord": [26.842314794043833, 11.337611028516571], + "coord": [20.2147866477083, 3.2646563317229895], "sector": 10, "moved": false, "mask": "BigInt:2199023255552" @@ -8447,25 +8483,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [145.65919494830032, 155.9496498457926], - "drones": [1434.7923018108327, 1442.292232806172], - "electronics": [362.145991986586, 367.6365872276507], - "engineParts": [196.26173401063744, 208.80836937652916], - "food": [18.3417298652272, 26.807808610179425], - "fuel": [32.72648915024999, 40.57893196732511], - "fuelium": [55.64219305565288, 73.14076158667906], - "gold": [774.3717814627983, 779.3946596815845], - "goldOre": [51.25408364110805, 60.539597918952985], - "hullPlates": [48.60644244826861, 65.98854588035185], - "hydrogen": [63.49501866062453, 75.97064432074727], - "ice": [11.648480121063157, 21.845884366557836], - "metals": [94.51574861285306, 104.2622203438578], - "ore": [31.536598144929897, 46.02424377824449], - "silica": [20.093735683665397, 31.903695646794915], - "silicon": [23.11632406554917, 34.10935600739529], - "superconductors": [460.1932916665708, 479.24402893331546], - "tauMetal": [443.490334974447, 454.30220661228515], - "water": [22.422511582995604, 36.021397600691294] + "coolant": [80.36226201629881, 98.93211228172302], + "drones": [1167.3941975408607, 1183.8217033900607], + "electronics": [271.474818180179, 289.6075670938557], + "engineParts": [226.67528603806585, 239.93131605922983], + "food": [16.985752572487122, 28.036267945454966], + "fuel": [50.706394621145634, 65.92081926909015], + "fuelium": [48.426923842734325, 66.19459873248266], + "gold": [384.2816420743459, 403.3013195000737], + "goldOre": [49.64624937635036, 58.06619759130726], + "hullPlates": [61.395666626671584, 69.86239516207105], + "hydrogen": [66.81923175169942, 81.46849139372738], + "ice": [12.686205355943464, 20.15535721018227], + "metals": [91.73294470047892, 97.16396500779041], + "ore": [28.793934684057273, 37.75909366305359], + "silica": [47.193049160239994, 66.3199519798086], + "silicon": [19.776273722061475, 38.964647311705164], + "superconductors": [313.81332481000095, 329.88050007973675], + "tauMetal": [239.3931339130735, 254.0905781681656], + "water": [32.322781137575745, 49.96780045010919] }, "lastPriceAdjust": { "time": 0, @@ -8494,115 +8530,115 @@ "offers": { "coolant": { "active": false, - "price": 149, + "price": 88, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1441, + "price": 1175, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 364, + "price": 284, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 203, + "price": 231, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 18, + "price": 19, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 37, + "price": 62, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 58, + "price": 49, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 775, + "price": 401, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 60, + "price": 57, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 63, + "price": 62, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 72, + "price": 77, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 19, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 100, + "price": 94, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 31, + "price": 33, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 23, + "price": 57, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 31, + "price": 23, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 461, + "price": 314, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 450, + "price": 253, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 23, + "price": 36, "quantity": 0, "type": "sell" } @@ -8695,7 +8731,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-24.47261165284516, -19.21406748366221], + "coord": [-0.4765044490324213, -16.399521320225322], "sector": 11, "moved": false, "mask": "BigInt:2199023255552" @@ -8784,25 +8820,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [110.2853608651667, 127.58573279996743], - "drones": [1679.4008366218125, 1697.367159732688], - "electronics": [331.8755801655371, 346.5963061613471], - "engineParts": [437.9503283572726, 447.5935829129318], - "food": [8.665857637140485, 19.213595435979066], - "fuel": [47.085652066783204, 59.197271435582955], - "fuelium": [68.21600675883732, 82.74857643737141], - "gold": [794.6701228766276, 800.1980782947859], - "goldOre": [44.52210108814253, 50.324237349907875], - "hullPlates": [27.772929952331587, 34.90344375066232], - "hydrogen": [57.61748639156686, 71.18954833716278], - "ice": [26.8202449882504, 42.69163696055639], - "metals": [93.95002007283087, 113.72576938782112], - "ore": [29.223816765031568, 39.0255598506384], - "silica": [47.142390226146, 64.50571306971801], - "silicon": [12.211788958554244, 31.661046958978574], - "superconductors": [240.501430592594, 250.7813300070614], - "tauMetal": [611.0828668445997, 626.508964947398], - "water": [35.72456540309515, 44.56656176770596] + "coolant": [96.34548447549119, 107.02208926070152], + "drones": [1403.066749513393, 1419.7833748749777], + "electronics": [398.9263706792166, 416.12260231706307], + "engineParts": [165.7318410622934, 183.05598895123893], + "food": [20.11650344732998, 36.383060425111296], + "fuel": [46.38964666236759, 57.02669723797533], + "fuelium": [73.43504731326732, 89.50298788918855], + "gold": [812.8873074937591, 826.545637852578], + "goldOre": [34.173834716968024, 47.36310866692344], + "hullPlates": [27.10050233560067, 46.714657390767954], + "hydrogen": [78.12809109810169, 87.36987783836018], + "ice": [16.277023511096175, 22.525080304624645], + "metals": [95.89164860691456, 111.00490838964625], + "ore": [28.000139742245686, 47.79172510029737], + "silica": [46.904890507442595, 56.96005440451222], + "silicon": [25.02563140296551, 36.26139024961913], + "superconductors": [213.93861523982818, 224.43844890172218], + "tauMetal": [449.01963797294627, 458.8823781765936], + "water": [27.35521238926873, 39.63528602362724] }, "lastPriceAdjust": { "time": 0, @@ -8831,73 +8867,73 @@ "offers": { "coolant": { "active": false, - "price": 127, + "price": 96, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1680, + "price": 1405, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 339, + "price": 404, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 438, + "price": 172, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 9, + "price": 28, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 53, + "price": 46, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 77, + "price": 75, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 796, + "price": 814, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 44, + "price": 42, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 30, + "price": 46, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 58, + "price": 86, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 39, + "price": 18, "quantity": 0, "type": "sell" }, @@ -8909,31 +8945,31 @@ }, "ore": { "active": false, - "price": 36, + "price": 39, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 54, + "price": 55, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 24, + "price": 26, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 246, + "price": 223, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 612, + "price": 455, "quantity": 0, "type": "sell" }, @@ -9025,7 +9061,7 @@ "position": { "name": "position", "angle": 0, - "coord": [15.786159102292272, 23.98940990175686], + "coord": [11.94208738628957, -3.572148538968922], "sector": 12, "moved": false, "mask": "BigInt:2199023255552" @@ -9114,25 +9150,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [98.29517058090514, 107.30397896176245], - "drones": [1321.06069799969, 1341.0520691971635], - "electronics": [299.54578320723783, 319.3023789602188], - "engineParts": [254.35154177474794, 265.3490333200744], - "food": [17.38105770442418, 36.372295920689545], - "fuel": [58.99681613972967, 67.12862435942816], - "fuelium": [34.79140395406434, 50.89165940287853], - "gold": [835.8225834466691, 848.3027725651474], - "goldOre": [41.08278616569066, 50.72828054332586], - "hullPlates": [34.149874357999806, 49.05718235953768], - "hydrogen": [56.234337850580566, 66.89973644961405], - "ice": [11.846638663285939, 30.615741525911133], - "metals": [41.84550222456692, 55.771972762532876], - "ore": [24.492681596829524, 35.76954190251405], - "silica": [48.06425478514111, 57.7402748672251], - "silicon": [30.455887535687143, 40.11051942293488], - "superconductors": [224.8372340538728, 232.5188300059597], - "tauMetal": [489.78327280722283, 509.45392699970057], - "water": [34.22007613852006, 43.81430318448351] + "coolant": [112.58954733883972, 128.92588054696427], + "drones": [1118.0280116949823, 1123.950178204682], + "electronics": [331.30634696686275, 347.5198833818667], + "engineParts": [383.3480546230592, 395.4373288111816], + "food": [7.222744158324719, 22.301504337677407], + "fuel": [64.39824029299339, 80.13947736015808], + "fuelium": [40.620936568969334, 58.328164652946455], + "gold": [906.1851134240519, 915.7924575764405], + "goldOre": [70.79651607643716, 84.42272925460814], + "hullPlates": [28.368986909182553, 41.08675217795389], + "hydrogen": [53.239009802567736, 67.31279992035496], + "ice": [22.3084639177006, 35.860523805891184], + "metals": [88.94837490819836, 101.15559288711393], + "ore": [29.92986156321221, 39.89850580803139], + "silica": [20.768728743103335, 35.23642734402115], + "silicon": [21.09748521194992, 33.54414025036507], + "superconductors": [385.54973938625693, 399.8515560684268], + "tauMetal": [655.993541590869, 671.3251486755032], + "water": [41.68551515501047, 48.654091084785975] }, "lastPriceAdjust": { "time": 0, @@ -9161,79 +9197,79 @@ "offers": { "coolant": { "active": false, - "price": 99, + "price": 123, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1322, + "price": 1121, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 311, + "price": 334, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 256, + "price": 389, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 23, + "price": 20, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 64, + "price": 66, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 37, + "price": 45, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 846, + "price": 914, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 41, + "price": 79, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 38, + "price": 32, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 58, + "price": 57, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 28, + "price": 30, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 44, + "price": 96, "quantity": 0, "type": "sell" }, @@ -9245,31 +9281,31 @@ }, "silica": { "active": false, - "price": 55, + "price": 22, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 30, + "price": 21, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 227, + "price": 386, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 497, + "price": 666, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 41, + "price": 46, "quantity": 0, "type": "sell" } @@ -9362,7 +9398,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-24.972867486465294, -14.800569022619301], + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": false, "mask": "BigInt:2199023255552" @@ -9451,25 +9487,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [108.84972900706867, 116.45509232776487], - "drones": [1501.607227070203, 1519.2970700698047], - "electronics": [200.14312325962402, 207.9597306831917], - "engineParts": [311.50839217359334, 323.08216739210854], - "food": [14.914585164954165, 21.694634551009802], - "fuel": [34.27641038882323, 53.81600348586734], - "fuelium": [55.16262749026652, 64.37639118576391], - "gold": [786.9181648662592, 803.4580481001371], - "goldOre": [71.59327667934633, 78.56134124153448], - "hullPlates": [24.254073382802417, 31.767040396817926], - "hydrogen": [59.046072766279586, 66.70316395538072], - "ice": [17.68999796101731, 36.267037008014356], - "metals": [44.249425376613274, 51.58005527823504], - "ore": [19.36776689957134, 29.443192331562685], - "silica": [40.73576148385196, 55.3513886403663], - "silicon": [16.102791490615182, 35.08798801635033], - "superconductors": [201.866349159489, 215.36705970817818], - "tauMetal": [483.0481900910046, 490.83491193529676], - "water": [36.02153607208756, 49.784955504228364] + "coolant": [92.43493084290435, 107.01905177199136], + "drones": [1756.3713321757834, 1771.4097432292708], + "electronics": [180.88231958748636, 196.71226121074997], + "engineParts": [171.9434013677873, 190.0990719033695], + "food": [17.431464289173903, 30.410127684138928], + "fuel": [68.523897038032, 84.00466114847463], + "fuelium": [34.81005867611825, 40.81561478064098], + "gold": [365.0077763868577, 377.96437265679083], + "goldOre": [60.72472983589999, 78.86681881209157], + "hullPlates": [61.20141421222599, 74.70129844167735], + "hydrogen": [88.82713027521208, 106.09778025050642], + "ice": [21.93213110313863, 41.80526526226024], + "metals": [43.377060251617046, 61.30585786172533], + "ore": [38.70433315399945, 45.18114786762232], + "silica": [28.874383706955186, 45.07969869719412], + "silicon": [19.03313358479352, 27.601048095157523], + "superconductors": [298.9940981388487, 317.0645328067316], + "tauMetal": [650.9721139879168, 661.2130001671284], + "water": [26.775901998431046, 35.18053945177895] }, "lastPriceAdjust": { "time": 0, @@ -9498,115 +9534,115 @@ "offers": { "coolant": { "active": false, - "price": 113, + "price": 95, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1504, + "price": 1759, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 207, + "price": 189, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 316, + "price": 188, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 15, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 50, + "price": 80, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 58, + "price": 36, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 801, + "price": 367, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 78, + "price": 65, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 28, + "price": 67, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 64, + "price": 89, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 38, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 50, + "price": 51, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 27, + "price": 44, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 54, + "price": 38, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 20, + "price": 27, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 203, + "price": 314, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 483, + "price": 656, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 44, + "price": 34, "quantity": 0, "type": "sell" } @@ -9692,7 +9728,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-7.858627390442292, 24.193653598090616], + "coord": [-6.371202136808827, -6.253355113467377], "sector": 12, "moved": false, "mask": "BigInt:2199023255552" @@ -9781,25 +9817,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [54.557415548947105, 70.89597077454583], - "drones": [1500.3302565407787, 1514.2458290354796], - "electronics": [239.07743419995728, 256.60048550638965], - "engineParts": [306.7856568196288, 326.6019453015548], - "food": [9.53109367771657, 17.05986136669522], - "fuel": [25.652794136698486, 40.14193521420259], - "fuelium": [48.71685797854289, 55.23050480542425], - "gold": [591.243342503682, 609.2040484755001], - "goldOre": [94.61908369854396, 102.14514472321744], - "hullPlates": [59.98924846265311, 71.14942114956776], - "hydrogen": [67.7361844177084, 77.05138998016105], - "ice": [19.81323123691044, 29.60773076449661], - "metals": [92.92488793890148, 109.7183316254649], - "ore": [20.54158022333569, 30.741831058190435], - "silica": [23.735245894341773, 33.269617850809], - "silicon": [24.626295987619727, 37.865130954149116], - "superconductors": [522.9772233396806, 540.9441197474497], - "tauMetal": [558.6983030491637, 577.4669290149138], - "water": [40.824445040067, 49.59684487089974] + "coolant": [56.84392251661952, 73.90748625718274], + "drones": [629.886493934412, 647.8289049372866], + "electronics": [260.88234678388346, 275.49012841285816], + "engineParts": [225.23708938555797, 235.39352297778197], + "food": [15.497733767137632, 21.07701659270566], + "fuel": [48.92400830374224, 56.04093562960013], + "fuelium": [35.55748564648364, 52.52767967388373], + "gold": [560.9350455167107, 570.8627622847322], + "goldOre": [78.77990860364996, 84.55113603448117], + "hullPlates": [65.62435617300608, 79.33965201231236], + "hydrogen": [56.328939830760056, 71.61158013945051], + "ice": [15.140510429615562, 27.051528589677538], + "metals": [35.54091927184744, 44.58890808816722], + "ore": [31.03491736406865, 48.601546166328475], + "silica": [50.613280972617574, 65.26433461907568], + "silicon": [18.081308807157775, 34.24199636852904], + "superconductors": [375.8885480579928, 384.57202140333914], + "tauMetal": [232.05400640862177, 248.8000936035961], + "water": [39.84626015256154, 57.80673821868854] }, "lastPriceAdjust": { "time": 0, @@ -9828,109 +9864,109 @@ "offers": { "coolant": { "active": false, - "price": 57, + "price": 73, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1507, + "price": 632, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 239, + "price": 262, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 320, + "price": 233, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 12, + "price": 16, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 31, + "price": 52, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 51, + "price": 38, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 600, + "price": 566, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 95, + "price": 83, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 70, + "price": 73, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 68, + "price": 58, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 27, + "price": 19, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 102, + "price": 43, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 30, + "price": 35, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 28, + "price": 64, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 27, + "price": 22, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 532, + "price": 380, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 575, + "price": 241, "quantity": 0, "type": "sell" }, @@ -10029,7 +10065,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-3.490295193599862, -22.889869060497272], + "coord": [-0.6937769730834487, -24.484537458787987], "sector": 14, "moved": false, "mask": "BigInt:2199023255552" @@ -10118,25 +10154,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [71.60227750698814, 79.53731451954637], - "drones": [1331.111900161853, 1348.4015971879487], - "electronics": [242.9853127145201, 256.4732915909689], - "engineParts": [192.7857179860042, 198.1098681370143], - "food": [17.45051876989674, 26.203724312523704], - "fuel": [58.230266480470675, 63.60187827616646], - "fuelium": [43.65753147290051, 58.566180681556695], - "gold": [526.7818712360172, 537.0282900337482], - "goldOre": [54.69291976432791, 61.982076896984154], - "hullPlates": [34.752643943943106, 48.21228135189119], - "hydrogen": [75.68835308254657, 82.02220751264569], - "ice": [16.52222584812569, 30.266293420047667], - "metals": [78.86377643787924, 90.23977216639767], - "ore": [26.86090936787102, 44.067057944712815], - "silica": [18.244311868101992, 31.35533924771111], - "silicon": [14.25532321954292, 27.41881841339021], - "superconductors": [277.9232081719348, 296.20011146511], - "tauMetal": [386.9140580688121, 400.5351899806292], - "water": [14.396199946703167, 20.89774105012416] + "coolant": [59.73986141140422, 73.5724009606783], + "drones": [1397.4486465618563, 1413.8855336109407], + "electronics": [261.02225351206323, 266.6128349814533], + "engineParts": [289.02433042960837, 296.0061119919395], + "food": [9.695503127634483, 22.998539666657102], + "fuel": [74.62105561376963, 83.26010253193641], + "fuelium": [72.3582297265369, 88.26086939218747], + "gold": [624.2297016536404, 637.3037305184503], + "goldOre": [71.57062750554536, 79.9706278748489], + "hullPlates": [30.28712872185959, 46.68378325336008], + "hydrogen": [76.47305087839328, 84.47583022315341], + "ice": [16.02254935555086, 34.500708618961696], + "metals": [35.96671434933047, 46.88125707269482], + "ore": [18.380549592137957, 30.410056343453736], + "silica": [46.86460566237115, 53.993384789757854], + "silicon": [21.533469937172356, 32.69597296883632], + "superconductors": [438.93895667283414, 448.63573941851115], + "tauMetal": [313.840847579441, 318.99396272892767], + "water": [34.064880343866236, 46.48373449326172] }, "lastPriceAdjust": { "time": 0, @@ -10165,115 +10201,115 @@ "offers": { "coolant": { "active": false, - "price": 73, + "price": 66, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1336, + "price": 1403, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 246, + "price": 263, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 197, + "price": 294, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 23, + "price": 20, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 61, + "price": 77, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 46, + "price": 87, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 527, + "price": 636, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 59, + "price": 78, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 41, + "price": 42, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 78, + "price": 83, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 22, + "price": 23, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 83, + "price": 37, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 32, + "price": 20, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 18, + "price": 47, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 14, + "price": 30, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 287, + "price": 442, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 389, + "price": 318, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 20, + "price": 38, "quantity": 0, "type": "sell" } @@ -10359,7 +10395,7 @@ "position": { "name": "position", "angle": 0, - "coord": [7.863997763962141, 24.992344126803822], + "coord": [-7.358448537687202, 24.420538846586712], "sector": 15, "moved": false, "mask": "BigInt:2199023255552" @@ -10448,25 +10484,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [128.14198815307938, 136.2436781077709], - "drones": [1566.2904516634305, 1574.0258352534117], - "electronics": [188.54397971212288, 206.02102938943145], - "engineParts": [171.22787608416888, 181.30771188575454], - "food": [21.313242103018943, 37.78065116398471], - "fuel": [27.0450091814448, 38.615153251876414], - "fuelium": [30.213559794755984, 40.421193139063945], - "gold": [524.7447191768116, 538.1022345794986], - "goldOre": [93.42228256177437, 110.53575767347976], - "hullPlates": [59.686852942411264, 73.46940352497437], - "hydrogen": [55.80331145509218, 66.95689329119011], - "ice": [23.492984476493458, 38.63093684508898], - "metals": [35.67846281663818, 42.208594558033504], - "ore": [21.18047001878278, 32.712707323564025], - "silica": [29.906848399471755, 46.52943579546368], - "silicon": [35.60473078165024, 54.63660833007829], - "superconductors": [493.20484044388223, 500.8943642786527], - "tauMetal": [654.3148640947891, 666.1825466328163], - "water": [19.869470425971738, 31.985410626400732] + "coolant": [70.01059561318806, 87.41090319055763], + "drones": [1030.6403630034358, 1047.3659713992224], + "electronics": [336.40544412452783, 345.5029405497819], + "engineParts": [343.6748130936478, 352.3892330580183], + "food": [9.308210214751561, 21.15429799505204], + "fuel": [27.201262199763512, 36.841757881668045], + "fuelium": [35.08222230890616, 45.30134709432814], + "gold": [619.4596836454795, 639.2699083187423], + "goldOre": [81.46960367401229, 89.74150838526776], + "hullPlates": [54.940654895560456, 60.02867545264169], + "hydrogen": [60.818703126368824, 72.50963650856275], + "ice": [24.56540261209689, 36.820146217077266], + "metals": [60.903505233722775, 80.76331608945642], + "ore": [17.39003330897523, 23.72282800658264], + "silica": [22.396700994737678, 40.366063319019744], + "silicon": [26.768705706558123, 42.139881566828294], + "superconductors": [257.10251413647006, 265.00383832924655], + "tauMetal": [407.7023313892612, 417.6465106807452], + "water": [18.671038712993663, 33.52956695644571] }, "lastPriceAdjust": { "time": 0, @@ -10495,109 +10531,109 @@ "offers": { "coolant": { "active": false, - "price": 131, + "price": 73, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1566, + "price": 1044, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 204, + "price": 340, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 178, + "price": 348, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 22, + "price": 10, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 33, + "price": 32, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 36, + "price": 42, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 537, + "price": 628, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 105, + "price": 89, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 61, + "price": 58, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 64, + "price": 71, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 26, + "price": 36, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 41, + "price": 67, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 27, + "price": 23, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 41, + "price": 32, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 48, + "price": 41, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 495, + "price": 257, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 663, + "price": 411, "quantity": 0, "type": "sell" }, @@ -10696,7 +10732,7 @@ "position": { "name": "position", "angle": 0, - "coord": [9.36174869749113, -31.620193440634477], + "coord": [0.8109449840198731, -24.261312618090912], "sector": 16, "moved": false, "mask": "BigInt:2199023255552" @@ -10785,25 +10821,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [103.15219337474221, 113.9212031201528], - "drones": [1788.1508180384876, 1800.5821079102273], - "electronics": [416.1793169994606, 430.60042815570824], - "engineParts": [394.28411122354214, 405.6751555165282], - "food": [10.855822754989338, 16.92638083123814], - "fuel": [27.999066043509227, 42.87376586185671], - "fuelium": [34.86640602830039, 43.85062260521733], - "gold": [336.8441881071506, 344.5733391745771], - "goldOre": [54.98801363972312, 63.052567725480344], - "hullPlates": [35.479947482066066, 46.534016587439794], - "hydrogen": [39.04134061134961, 53.63902682028396], - "ice": [15.057397333015004, 32.34494073846433], - "metals": [72.0199894673848, 89.3232719635987], - "ore": [33.53547054400177, 43.318596265618396], - "silica": [33.98782733740356, 44.94243562617208], - "silicon": [23.9883051883104, 38.167660591144184], - "superconductors": [254.46077738261442, 266.66796787540954], - "tauMetal": [527.8411623671017, 540.1557907257212], - "water": [33.373244731239275, 45.857185050164745] + "coolant": [59.30175538690081, 67.22450248351936], + "drones": [1332.5099296443182, 1338.089940665486], + "electronics": [246.41922279751296, 253.86423711922683], + "engineParts": [256.3561566608693, 271.66019956459473], + "food": [20.757977932080664, 39.488362780118514], + "fuel": [64.07296921876309, 74.68331935107793], + "fuelium": [33.348118200444105, 42.12509802932622], + "gold": [573.9500746848506, 589.2155495810428], + "goldOre": [52.720462884170885, 66.22810874698095], + "hullPlates": [55.76691775006452, 63.31877964222578], + "hydrogen": [52.3853451087359, 60.6751919596119], + "ice": [21.581111286569552, 27.398110435919506], + "metals": [84.45012093117825, 99.60726989045972], + "ore": [41.29925090880854, 54.17692545555249], + "silica": [49.00027275890778, 57.630269070407174], + "silicon": [17.239461858867422, 23.6261351154054], + "superconductors": [257.4163610515834, 273.73065760167344], + "tauMetal": [630.3633683649372, 637.0334751038251], + "water": [29.985545056383828, 39.984855176996604] }, "lastPriceAdjust": { "time": 0, @@ -10832,115 +10868,115 @@ "offers": { "coolant": { "active": false, - "price": 111, + "price": 66, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1790, + "price": 1336, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 423, + "price": 247, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 403, + "price": 262, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 14, + "price": 39, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 34, + "price": 66, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 37, + "price": 34, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 337, + "price": 586, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 56, + "price": 60, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 39, + "price": 56, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 48, + "price": 56, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 29, + "price": 25, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 74, + "price": 86, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 43, + "price": 41, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 34, + "price": 50, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 29, + "price": 19, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 264, + "price": 269, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 535, + "price": 634, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 43, + "price": 36, "quantity": 0, "type": "sell" } @@ -11026,7 +11062,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-9.344249882493145, -24.103300357313714], + "coord": [2.5827068099102233, -23.61925288207946], "sector": 17, "moved": false, "mask": "BigInt:2199023255552" @@ -11115,25 +11151,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [142.68093306728787, 160.9496808218995], - "drones": [1472.464377609574, 1491.8802885446407], - "electronics": [351.9269713713179, 361.176999463381], - "engineParts": [275.01419215142005, 291.60902161022665], - "food": [9.938613161389371, 23.1836690276336], - "fuel": [71.52630714839528, 79.2754070042388], - "fuelium": [71.14317513514932, 84.20661941589523], - "gold": [949.3602733326926, 964.1173882368545], - "goldOre": [68.1194029155024, 81.10313319904625], - "hullPlates": [53.85877000665424, 64.17329467301603], - "hydrogen": [84.28277768889987, 96.39326784070597], - "ice": [12.81639076824574, 27.46610512741313], - "metals": [57.824602015732225, 75.88250555459204], - "ore": [38.32237167931774, 46.36485364241875], - "silica": [25.55452097474074, 32.10108271088359], - "silicon": [12.278678975873069, 20.134054675658817], - "superconductors": [386.2097523858089, 399.6661244878675], - "tauMetal": [232.82467863174057, 241.71926904569273], - "water": [40.31766241551618, 57.83224175079309] + "coolant": [117.4262927531682, 133.89191952642108], + "drones": [1191.2576920055349, 1198.0944430461284], + "electronics": [413.9958420003423, 433.33659075103685], + "engineParts": [472.465265490425, 489.56295790324515], + "food": [19.548532939802968, 34.04718987547916], + "fuel": [73.02367161481583, 88.84016094332911], + "fuelium": [72.00707433752659, 84.47980129357548], + "gold": [487.15653419661027, 496.81573263047216], + "goldOre": [72.53293441579765, 87.97617662890725], + "hullPlates": [46.96877209843905, 65.0461838636506], + "hydrogen": [69.26793746151722, 88.8703050780816], + "ice": [11.581672403319622, 29.5412449960383], + "metals": [76.21176781027994, 95.36738437654597], + "ore": [25.353950548531866, 39.23083740168576], + "silica": [30.502989568474668, 49.49483755141564], + "silicon": [30.4960771107352, 45.69568085380777], + "superconductors": [358.39778598026, 371.4687911122357], + "tauMetal": [528.119358405912, 537.5890612681058], + "water": [17.055215978301753, 37.02313209073898] }, "lastPriceAdjust": { "time": 0, @@ -11162,115 +11198,115 @@ "offers": { "coolant": { "active": false, - "price": 159, + "price": 132, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1474, + "price": 1192, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 353, + "price": 423, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 277, + "price": 487, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 18, + "price": 19, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 76, + "price": 77, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 72, + "price": 76, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 954, + "price": 496, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 76, + "price": 79, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 54, + "price": 60, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 95, + "price": 74, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 21, + "price": 14, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 63, + "price": 85, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 42, + "price": 33, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 26, + "price": 47, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 19, + "price": 35, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 391, + "price": 363, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 236, + "price": 529, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 57, + "price": 18, "quantity": 0, "type": "sell" } @@ -11363,7 +11399,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-4.161994741643162, 33.47107355619278], + "coord": [-7.1539946228073585, 27.460824719107237], "sector": 18, "moved": false, "mask": "BigInt:2199023255552" @@ -11452,25 +11488,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [119.88077992624757, 128.27288341957086], - "drones": [1777.8976973262863, 1782.9747295782372], - "electronics": [411.0828446272831, 423.0846895761598], - "engineParts": [271.0815752946841, 284.94581108005525], - "food": [21.408619700119296, 31.07856588101225], - "fuel": [50.16727678617927, 67.83620116784593], - "fuelium": [29.06298723268057, 37.77574283470427], - "gold": [536.7091785304663, 543.8437559738103], - "goldOre": [61.53826329805793, 70.86884390909219], - "hullPlates": [42.22393944938702, 58.44256330117119], - "hydrogen": [60.3416115294177, 67.56314419570705], - "ice": [16.994666448722768, 35.221793390018625], - "metals": [53.030277549561845, 59.546110762016966], - "ore": [17.108115934101257, 35.02578353429944], - "silica": [33.353555200195956, 47.386405882223706], - "silicon": [14.032376201606898, 29.16131359475392], - "superconductors": [427.0830652201769, 438.5402460502996], - "tauMetal": [430.5727394864449, 443.9678227779873], - "water": [23.29041056387974, 39.605942863682785] + "coolant": [89.08216112084122, 95.78925891730105], + "drones": [1341.709009032823, 1354.821378926297], + "electronics": [362.4282564676453, 376.1080228302064], + "engineParts": [419.0900617135105, 426.0823436469272], + "food": [8.372558045507308, 19.857253766392727], + "fuel": [51.028701612786776, 67.36125582437819], + "fuelium": [72.83077731737518, 92.36598956358009], + "gold": [347.13340672739645, 362.61448258055407], + "goldOre": [85.03953294628064, 99.97146218184504], + "hullPlates": [55.7343464952317, 66.40826661728862], + "hydrogen": [43.06578875799612, 55.54010771566792], + "ice": [18.076309041604844, 23.229519453943126], + "metals": [87.17877653004925, 100.7942958933037], + "ore": [26.38642174638037, 32.99813885789446], + "silica": [24.1463177848404, 43.08488418422709], + "silicon": [24.398097524385413, 34.790568005318704], + "superconductors": [433.1562263400733, 440.8464597068737], + "tauMetal": [486.1653602509673, 495.3455745728184], + "water": [17.220923352100385, 26.20010927941487] }, "lastPriceAdjust": { "time": 0, @@ -11499,79 +11535,79 @@ "offers": { "coolant": { "active": false, - "price": 127, + "price": 92, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1781, + "price": 1353, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 418, + "price": 366, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 279, + "price": 423, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 26, + "price": 8, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 55, + "price": 53, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 35, + "price": 87, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 543, + "price": 362, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 64, + "price": 89, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 44, + "price": 65, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 64, + "price": 45, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 19, + "price": 18, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 58, + "price": 90, "quantity": 0, "type": "sell" }, @@ -11583,31 +11619,31 @@ }, "silica": { "active": false, - "price": 46, + "price": 28, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 21, + "price": 26, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 432, + "price": 440, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 434, + "price": 489, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 26, + "price": 22, "quantity": 0, "type": "sell" } @@ -11693,7 +11729,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-13.36476938155852, -18.867625854573014], + "coord": [4.070030087117895, 20.212690378216095], "sector": 19, "moved": false, "mask": "BigInt:2199023255552" @@ -11782,25 +11818,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [129.87748240887402, 146.56525847511767], - "drones": [1793.0170450743508, 1800.4451755919977], - "electronics": [293.97323667866664, 309.7313449182684], - "engineParts": [198.6732611313526, 205.68457570896356], - "food": [9.86957226829372, 21.701745697407816], - "fuel": [48.23829130549581, 57.70271740601845], - "fuelium": [43.83361996890516, 52.763646793725755], - "gold": [384.5902723490597, 396.8313151439002], - "goldOre": [84.91040042849205, 91.88431578757847], - "hullPlates": [59.460629043293636, 68.25587667401781], - "hydrogen": [100.45453962537033, 113.93462784258759], - "ice": [15.765955093699365, 24.67248644388458], - "metals": [33.941299529568205, 39.245407453665614], - "ore": [22.98801933404488, 38.71409985661831], - "silica": [40.7169316568807, 51.112060247133826], - "silicon": [22.674737786960932, 33.20175407802912], - "superconductors": [503.4716920670793, 510.10555508737656], - "tauMetal": [250.16195783734517, 267.31579456788506], - "water": [36.06450045425015, 44.161245831466864] + "coolant": [122.89999373385696, 137.75214873788082], + "drones": [607.8798190548176, 625.6764686787488], + "electronics": [202.43589705374154, 216.56896082480512], + "engineParts": [334.19257590309127, 344.61352479093796], + "food": [19.463347894627844, 26.72749784000642], + "fuel": [53.76642291963871, 61.36719163962917], + "fuelium": [65.57942078837075, 78.2094583252553], + "gold": [389.25783238740365, 401.1871009825333], + "goldOre": [75.8595807942649, 84.0713661706952], + "hullPlates": [25.616081993047224, 37.610305181509595], + "hydrogen": [93.3586165897487, 110.0622604930689], + "ice": [18.03554073682396, 36.869279573470536], + "metals": [71.36635267394124, 80.70370716617052], + "ore": [24.479601832664443, 38.01037293739083], + "silica": [37.26410379853262, 51.34449575782966], + "silicon": [29.532193377439413, 39.64816356435771], + "superconductors": [369.5936915555073, 383.57825258688644], + "tauMetal": [447.73146330404086, 464.89011671699694], + "water": [21.574923723645757, 36.87403773979599] }, "lastPriceAdjust": { "time": 0, @@ -11829,115 +11865,115 @@ "offers": { "coolant": { "active": false, - "price": 142, + "price": 130, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1800, + "price": 616, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 301, + "price": 207, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 199, + "price": 336, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 17, + "price": 25, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 57, + "price": 54, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 45, + "price": 69, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 390, + "price": 396, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 88, + "price": 81, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 64, + "price": 27, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 108, + "price": 96, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 20, + "price": 23, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 35, + "price": 77, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 36, + "price": 29, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 44, + "price": 48, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 30, + "price": 37, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 505, + "price": 376, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 259, + "price": 448, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 42, + "price": 33, "quantity": 0, "type": "sell" } @@ -12030,7 +12066,7 @@ "position": { "name": "position", "angle": 0, - "coord": [17.903395957122395, 16.5477818957681], + "coord": [1.2549225493769898, -5.539111071543905], "sector": 20, "moved": false, "mask": "BigInt:2199023255552" @@ -12119,25 +12155,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [74.46637963741777, 89.43775675602579], - "drones": [1448.4646987029612, 1457.846527887608], - "electronics": [337.25871173238727, 356.142156287898], - "engineParts": [469.4714056348879, 475.54972524718244], - "food": [11.721657547527812, 19.69837874429827], - "fuel": [46.72240281314443, 52.15262228009079], - "fuelium": [53.327630575127614, 66.64849697119143], - "gold": [824.9802381094458, 837.2671483415047], - "goldOre": [78.19823591332593, 83.29971955787212], - "hullPlates": [33.675459386356934, 41.654075531756106], - "hydrogen": [73.3024966947402, 89.30126611693021], - "ice": [17.183824701416604, 32.47485106697521], - "metals": [46.96462816404768, 58.53762305653555], - "ore": [29.262647732617687, 39.06516252308472], - "silica": [32.91233829969924, 43.08324075451758], - "silicon": [24.106052850112782, 40.290628846202196], - "superconductors": [454.94509615669347, 463.90730726365615], - "tauMetal": [369.4282503663976, 382.08757139029734], - "water": [24.068078581060746, 41.7012950553034] + "coolant": [87.49301428410149, 101.04880417446472], + "drones": [832.2597881780349, 847.378433084112], + "electronics": [323.1900594257328, 338.55758244140054], + "engineParts": [412.8337598807848, 427.22536761229526], + "food": [19.26252796402037, 24.97982682782604], + "fuel": [53.63452207601634, 61.312361576621306], + "fuelium": [67.05969278149215, 86.63861350174786], + "gold": [718.6904883329926, 725.3362680750677], + "goldOre": [58.61008812474333, 69.92351404650678], + "hullPlates": [44.39999396237289, 56.3849867362173], + "hydrogen": [103.40276381697991, 112.42826120909731], + "ice": [14.435418620251633, 22.32569023346325], + "metals": [47.68256296503998, 56.35108309387317], + "ore": [24.154580836829552, 32.11369496215833], + "silica": [24.539130202197462, 35.47288989675956], + "silicon": [20.287564394221427, 37.23651206771589], + "superconductors": [494.61842912355604, 510.0097459519635], + "tauMetal": [252.21680376837708, 261.9763334310678], + "water": [17.697233544757253, 23.262444088966355] }, "lastPriceAdjust": { "time": 0, @@ -12166,115 +12202,115 @@ "offers": { "coolant": { "active": false, - "price": 83, + "price": 96, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1452, + "price": 838, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 346, + "price": 327, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 475, + "price": 426, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 12, + "price": 24, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 48, + "price": 57, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 64, + "price": 82, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 835, + "price": 719, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 81, + "price": 62, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 38, + "price": 49, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 82, + "price": 108, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 32, + "price": 14, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 53, + "price": 49, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 35, + "price": 27, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 39, + "price": 27, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 30, + "price": 25, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 455, + "price": 494, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 375, + "price": 255, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 36, + "price": 21, "quantity": 0, "type": "sell" } @@ -12360,7 +12396,7 @@ "position": { "name": "position", "angle": 0, - "coord": [27.251293228358268, -21.08265465549591], + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": false, "mask": "BigInt:2199023255552" @@ -12449,25 +12485,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [120.60153558103492, 127.08901697497362], - "drones": [1108.048631754237, 1121.1168945576148], - "electronics": [196.23688540148433, 215.57841709388055], - "engineParts": [411.560469594505, 429.3677577359413], - "food": [15.605502220307143, 25.78424396130169], - "fuel": [54.552944392253856, 62.6281557551162], - "fuelium": [50.59189225333832, 60.62978028620854], - "gold": [879.6838085125429, 886.7658555326749], - "goldOre": [77.53699896549494, 86.86716332534698], - "hullPlates": [56.14186653182616, 64.13104874305931], - "hydrogen": [78.40006500918864, 96.46964362794665], - "ice": [21.08255248343923, 37.894525608007925], - "metals": [90.35112901710681, 104.43731949372157], - "ore": [35.81589001488861, 42.339847392364305], - "silica": [34.419816543678024, 46.10960084119063], - "silicon": [20.187052686535264, 33.25306338352479], - "superconductors": [480.3427868360979, 497.8860874112605], - "tauMetal": [521.9890744332647, 536.5891541890765], - "water": [19.795566664412355, 26.81622092442725] + "coolant": [64.64039463001674, 79.012943095192], + "drones": [1492.6998605218455, 1505.538455219925], + "electronics": [300.41047630096347, 316.6288974487689], + "engineParts": [304.7020166797952, 310.88499429785423], + "food": [14.066664058397059, 30.790556798479113], + "fuel": [27.56806712379834, 33.02272978396266], + "fuelium": [69.06920190992287, 86.37071865514417], + "gold": [780.2586110035222, 798.4947605153617], + "goldOre": [93.35371399567754, 110.1481498556103], + "hullPlates": [56.50699964268435, 67.47795574022727], + "hydrogen": [88.66630486749813, 95.15501672382013], + "ice": [24.444361586294875, 35.62730530071512], + "metals": [83.24423610596581, 99.69612817204654], + "ore": [41.060362442612174, 52.214555017049776], + "silica": [36.37005428593736, 45.56034720419527], + "silicon": [24.635151272421886, 33.792703000325794], + "superconductors": [420.6929687909339, 432.52988007430224], + "tauMetal": [403.5288463007951, 415.97255893885523], + "water": [32.132457490959936, 39.70809294160992] }, "lastPriceAdjust": { "time": 0, @@ -12496,115 +12532,115 @@ "offers": { "coolant": { "active": false, - "price": 126, + "price": 72, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1120, + "price": 1502, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 206, + "price": 301, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 421, + "price": 308, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 22, + "price": 26, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 61, + "price": 27, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 53, + "price": 75, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 881, + "price": 791, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 81, + "price": 102, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 56, + "price": 59, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 78, + "price": 93, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 22, + "price": 26, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 104, + "price": 93, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 36, + "price": 50, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 34, + "price": 42, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 29, + "price": 28, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 487, + "price": 421, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 533, + "price": 411, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 19, + "price": 36, "quantity": 0, "type": "sell" } @@ -12697,7 +12733,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-20.565165754552375, 22.040293505949297], + "coord": [-20.97910330371487, 24.18420093373816], "sector": 21, "moved": false, "mask": "BigInt:2199023255552" @@ -12786,25 +12822,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [116.77964615993422, 126.3781714828068], - "drones": [1672.0685967928252, 1682.8891958875597], - "electronics": [310.7675568714991, 330.4419700611593], - "engineParts": [442.4779502646127, 448.66022915123546], - "food": [17.18836370097788, 28.64183893403435], - "fuel": [32.42430306587333, 48.1566830900685], - "fuelium": [51.609513727082295, 65.22999852761747], - "gold": [723.9483207701629, 739.5235879793665], - "goldOre": [75.35663257760407, 85.05440467975612], - "hullPlates": [50.9884115168806, 62.3797387511341], - "hydrogen": [101.74565250985182, 120.12744534955661], - "ice": [13.683463232337964, 18.69744218729828], - "metals": [73.9067604571754, 85.45538492040208], - "ore": [28.927459747800437, 44.06623433691099], - "silica": [37.70284482524279, 45.37671070806585], - "silicon": [31.896907853988147, 43.184863938916315], - "superconductors": [315.3378000212192, 331.4791658791623], - "tauMetal": [235.48762552114445, 251.5507703535453], - "water": [36.21498476208882, 47.738818412708284] + "coolant": [118.01668640757639, 129.9922313017173], + "drones": [769.4484925289087, 779.8121716971033], + "electronics": [294.001998364594, 301.8122786547079], + "engineParts": [218.19141378680376, 234.99529901995973], + "food": [8.572704886328133, 13.790124669398647], + "fuel": [52.93414920294591, 66.05911492756647], + "fuelium": [36.438575055974525, 46.963592305472076], + "gold": [813.3145837079913, 830.5875207971701], + "goldOre": [48.4012693511596, 54.600527739463104], + "hullPlates": [60.556403104358935, 73.17568133982229], + "hydrogen": [93.39817278167246, 102.77842771105384], + "ice": [22.035685379879613, 28.278793370445754], + "metals": [91.08999501503821, 110.44917538963838], + "ore": [29.923372799384225, 36.1396182830127], + "silica": [26.870661606166355, 38.57375906938187], + "silicon": [12.24853467023074, 25.09183652368308], + "superconductors": [385.2220718958246, 401.4566646745934], + "tauMetal": [473.2081019030305, 487.97631557606], + "water": [14.42955971663181, 22.13261839590472] }, "lastPriceAdjust": { "time": 0, @@ -12833,115 +12869,115 @@ "offers": { "coolant": { "active": false, - "price": 120, + "price": 122, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1675, + "price": 778, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 326, + "price": 294, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 445, + "price": 222, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 17, + "price": 12, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 36, + "price": 62, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 54, + "price": 41, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 737, + "price": 820, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 77, + "price": 54, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 54, + "price": 63, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 112, + "price": 98, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 16, + "price": 27, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 80, + "price": 109, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 42, + "price": 34, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 43, + "price": 34, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 39, + "price": 23, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 329, + "price": 397, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 247, + "price": 476, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 45, + "price": 17, "quantity": 0, "type": "sell" } @@ -13027,7 +13063,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-4.463978951164608, -28.450782461676017], + "coord": [1.530363015682289, -26.65212480327679], "sector": 22, "moved": false, "mask": "BigInt:2199023255552" @@ -13116,25 +13152,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [120.71151424885534, 138.90917028460714], - "drones": [1137.3573851348917, 1149.1294195154726], - "electronics": [346.34442452875805, 359.7770184503509], - "engineParts": [214.67243073770106, 221.5364990313929], - "food": [17.675640426650567, 27.36842196874847], - "fuel": [32.95851924454, 44.99235916952365], - "fuelium": [31.403215736639705, 51.0545172027671], - "gold": [747.8894530512058, 764.6572753054061], - "goldOre": [38.77756874368799, 47.20302328772442], - "hullPlates": [34.49035974027347, 53.56447278386728], - "hydrogen": [34.31820188902567, 52.93873223201386], - "ice": [18.693054028934064, 30.961115466593583], - "metals": [96.56878864282122, 116.09721497258062], - "ore": [20.741353521827666, 35.63634480685361], - "silica": [21.05722026345833, 35.31291548582779], - "silicon": [23.73983962740983, 40.425701000338435], - "superconductors": [236.86603007493147, 246.37977767982977], - "tauMetal": [616.5930654815011, 634.4409015980292], - "water": [39.559408847805216, 53.43408629066114] + "coolant": [106.76807974008409, 114.46192091567463], + "drones": [1386.1519310541212, 1405.1490422549462], + "electronics": [332.8210983242887, 342.75078015959883], + "engineParts": [384.02623544128096, 403.2175728218806], + "food": [7.057231349064923, 19.316924966577357], + "fuel": [66.8660407596997, 77.84170364385055], + "fuelium": [57.4748242916654, 62.99638692646619], + "gold": [548.2875266448825, 567.7157352407008], + "goldOre": [44.47923380399657, 59.21047171443695], + "hullPlates": [61.33860497267492, 79.32085072674195], + "hydrogen": [74.01030384490257, 79.46243431472394], + "ice": [21.6613181700987, 35.43276415471182], + "metals": [39.511260779819956, 57.23331058077853], + "ore": [37.91803739455918, 52.124420764741565], + "silica": [43.47149332762188, 60.39294696301381], + "silicon": [19.788729224570567, 33.32793283163916], + "superconductors": [246.41000345186268, 256.499101413702], + "tauMetal": [269.36550937158773, 287.74435511188733], + "water": [29.143168101330147, 45.55321163024187] }, "lastPriceAdjust": { "time": 0, @@ -13163,115 +13199,115 @@ "offers": { "coolant": { "active": false, - "price": 135, + "price": 111, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1140, + "price": 1404, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 352, + "price": 333, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 217, + "price": 401, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 25, + "price": 16, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 43, + "price": 75, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 34, + "price": 60, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 764, + "price": 567, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 40, + "price": 49, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 42, + "price": 76, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 35, + "price": 76, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 26, + "price": 30, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 100, + "price": 55, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 20, + "price": 41, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 22, + "price": 50, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 33, + "price": 23, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 237, + "price": 251, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 618, + "price": 275, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 45, + "price": 38, "quantity": 0, "type": "sell" } @@ -13364,7 +13400,7 @@ "position": { "name": "position", "angle": 0, - "coord": [11.986940752988849, 20.791305949824643], + "coord": [-8.36077479743469, 27.34295907467555], "sector": 23, "moved": false, "mask": "BigInt:2199023255552" @@ -13453,25 +13489,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [123.3941037725324, 134.74411564243945], - "drones": [940.9160506341175, 947.7974872210373], - "electronics": [379.1700316963728, 384.4496398462877], - "engineParts": [319.910191209643, 337.1516371676603], - "food": [19.9272674285802, 30.30062597625632], - "fuel": [32.83399735202898, 47.4363560579365], - "fuelium": [60.65138691259612, 67.60236109936781], - "gold": [863.0507673657092, 878.3093035391637], - "goldOre": [78.57074102704516, 87.60513096950768], - "hullPlates": [56.87322341500699, 64.09182858639147], - "hydrogen": [102.09255343585743, 109.4097906649702], - "ice": [25.799360728216932, 38.83440431696748], - "metals": [35.214221389753725, 53.34255489653778], - "ore": [41.762324786254226, 53.43889653745272], - "silica": [34.501736602592814, 43.36352661510025], - "silicon": [35.62783916221639, 46.720279748906464], - "superconductors": [432.78804241343573, 438.99344759423593], - "tauMetal": [417.01777444582063, 435.3891593649813], - "water": [42.68826043931596, 50.058333348800744] + "coolant": [86.4385820756414, 104.8547507420295], + "drones": [703.5882481022687, 709.4111573080611], + "electronics": [348.41748106683883, 363.43171189349005], + "engineParts": [280.72752037045734, 296.1398635123055], + "food": [11.331981904652682, 24.5025937791853], + "fuel": [51.547813853272665, 65.92051219004476], + "fuelium": [36.333872109561696, 56.246945546248874], + "gold": [504.41427698521517, 520.7478160510893], + "goldOre": [60.638888415932904, 80.12384590424381], + "hullPlates": [38.5139242694581, 56.991685466040565], + "hydrogen": [103.8805406014032, 119.19704959262477], + "ice": [11.100953405659897, 28.582617790878867], + "metals": [35.50733396244856, 48.36945733748978], + "ore": [38.77587997850921, 46.813478247957065], + "silica": [41.69116679506003, 59.043287405108416], + "silicon": [20.30832524645519, 26.02194187382642], + "superconductors": [382.08824461503514, 388.16330482852834], + "tauMetal": [278.70627354853616, 284.6663867332985], + "water": [41.95414843421779, 49.1670210755544] }, "lastPriceAdjust": { "time": 0, @@ -13500,109 +13536,109 @@ "offers": { "coolant": { "active": false, - "price": 134, + "price": 88, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 941, + "price": 706, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 384, + "price": 357, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 327, + "price": 291, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 22, + "price": 12, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 40, + "price": 64, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 64, + "price": 48, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 864, + "price": 514, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 84, + "price": 79, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 60, + "price": 47, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 107, + "price": 106, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 37, + "price": 19, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 43, + "price": 39, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 46, + "price": 41, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 35, + "price": 55, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 44, + "price": 21, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 434, + "price": 387, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 429, + "price": 281, "quantity": 0, "type": "sell" }, @@ -13694,7 +13730,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-3.1253299457255594, -31.71518467871182], + "coord": [-7.101669041892792, -19.396441727196017], "sector": 23, "moved": false, "mask": "BigInt:2199023255552" @@ -13783,25 +13819,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [60.037813967048145, 65.805539405675], - "drones": [614.7593026328898, 622.4837131760223], - "electronics": [404.0962914275312, 414.28765809982275], - "engineParts": [463.3235552898697, 472.5443491528608], - "food": [17.840303582342003, 37.477662611957896], - "fuel": [45.05319479296881, 63.58513372332614], - "fuelium": [35.96512587870518, 55.488007192546206], - "gold": [949.9291100476837, 968.6461705722778], - "goldOre": [90.76967287780215, 98.95898723756102], - "hullPlates": [31.9715173499592, 48.552103264023486], - "hydrogen": [85.12308737241494, 93.44876409399099], - "ice": [11.052725490963034, 30.929022173779973], - "metals": [89.44217478530825, 98.4588556746176], - "ore": [20.050659032168955, 30.95277377417292], - "silica": [35.44325295400061, 50.502443699911574], - "silicon": [23.56270384006756, 38.81189867496684], - "superconductors": [271.9950281982368, 288.85562508860625], - "tauMetal": [456.93876200075545, 475.41650802091056], - "water": [38.26164571996273, 52.88586458215219] + "coolant": [88.37206423409768, 105.64253997449273], + "drones": [1096.3629275633102, 1108.6027984240918], + "electronics": [248.58469701882925, 265.84863138740593], + "engineParts": [388.3621382711642, 407.7368868884308], + "food": [18.53509354462718, 38.40195390865931], + "fuel": [34.79382430410382, 41.145174272043], + "fuelium": [29.93425728471667, 43.62465485644779], + "gold": [471.5244038028545, 478.28949242983373], + "goldOre": [51.99517690886924, 61.33812889909979], + "hullPlates": [48.00626474376391, 67.33295553911165], + "hydrogen": [70.94455239275062, 88.66723091490296], + "ice": [12.846417375948153, 28.639634984842647], + "metals": [51.33259707396377, 68.1147934917086], + "ore": [25.511799518798433, 36.10966650703331], + "silica": [24.447831782679195, 41.66906059134452], + "silicon": [14.034459715098498, 30.014681696451312], + "superconductors": [386.53374643607816, 400.146485161435], + "tauMetal": [622.0989989047057, 638.772505731853], + "water": [30.249455741702125, 43.505038781754564] }, "lastPriceAdjust": { "time": 0, @@ -13830,115 +13866,115 @@ "offers": { "coolant": { "active": false, - "price": 61, + "price": 99, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 619, + "price": 1097, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 411, + "price": 259, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 469, + "price": 403, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 21, + "price": 36, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 50, + "price": 38, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 40, + "price": 42, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 954, + "price": 471, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 96, + "price": 60, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 46, + "price": 52, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 91, + "price": 72, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 29, + "price": 14, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 89, + "price": 65, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 20, + "price": 34, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 37, + "price": 36, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 29, + "price": 19, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 279, + "price": 392, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 460, + "price": 631, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 50, + "price": 38, "quantity": 0, "type": "sell" } @@ -14031,7 +14067,7 @@ "position": { "name": "position", "angle": 0, - "coord": [2.643774405540305, 30.71130703055644], + "coord": [-6.428225315271886, 29.09154271739986], "sector": 24, "moved": false, "mask": "BigInt:2199023255552" @@ -14120,25 +14156,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [115.47183282809956, 129.3677834368467], - "drones": [736.5799677094832, 748.7594135355183], - "electronics": [196.62306699597713, 202.4549344039294], - "engineParts": [283.56479388495416, 290.2997988399935], - "food": [9.060701878109, 22.27278978832323], - "fuel": [41.71239187165952, 46.78164720357097], - "fuelium": [30.29421814188896, 45.65827545438933], - "gold": [626.6975883806833, 646.298024885725], - "goldOre": [64.9317130420976, 74.5219686697134], - "hullPlates": [31.39163634913062, 50.75711113344426], - "hydrogen": [66.0757540746076, 84.71637156680617], - "ice": [12.156698190706734, 31.875008271491474], - "metals": [52.36196481525329, 70.76679705198899], - "ore": [28.04403328007092, 36.247738253452695], - "silica": [17.22188319869258, 31.645256680196617], - "silicon": [17.846039746084465, 34.70567590177923], - "superconductors": [473.5171076487641, 479.17983231047305], - "tauMetal": [437.5452849030313, 446.98372610935445], - "water": [29.091469786725245, 39.52677941759119] + "coolant": [64.88034872338658, 76.95096468151422], + "drones": [1516.1320520123918, 1521.6187228120662], + "electronics": [224.24987574705045, 231.99120583827508], + "engineParts": [225.53818983772425, 233.54264267832463], + "food": [8.38493172150351, 26.908783057046623], + "fuel": [32.62608852351996, 48.01678120359071], + "fuelium": [55.68724969235341, 64.27712982731953], + "gold": [590.9979815715337, 608.9735159154418], + "goldOre": [66.48362489962264, 74.04508853075932], + "hullPlates": [47.72925450467097, 62.41217086929766], + "hydrogen": [83.28704217729631, 98.2717381520662], + "ice": [10.599987752824397, 28.121815357993], + "metals": [80.31337733702406, 92.20835034906145], + "ore": [20.757822377413532, 29.854189330915567], + "silica": [28.45087092108752, 46.35946366921896], + "silicon": [28.63847926397009, 45.933539192886954], + "superconductors": [543.6716728567835, 554.622737897841], + "tauMetal": [607.68081541505, 619.8182156326544], + "water": [24.99905990617937, 37.6952150123098] }, "lastPriceAdjust": { "time": 0, @@ -14167,115 +14203,115 @@ "offers": { "coolant": { "active": false, - "price": 126, + "price": 71, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 744, + "price": 1520, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 199, + "price": 225, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 284, + "price": 230, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 10, + "price": 24, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 45, + "price": 35, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 35, + "price": 57, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 629, + "price": 605, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 73, + "price": 71, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 37, + "price": 60, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 75, + "price": 84, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 30, + "price": 24, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 59, + "price": 91, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 31, + "price": 27, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 24, + "price": 42, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 34, + "price": 42, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 477, + "price": 544, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 440, + "price": 618, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 33, + "price": 29, "quantity": 0, "type": "sell" } @@ -14361,7 +14397,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-22.585785281285105, -19.667117505906965], + "coord": [-1.258951771896632, -0.7093714441536972], "sector": 25, "moved": false, "mask": "BigInt:2199023255552" @@ -14450,25 +14486,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [108.83887947707413, 128.69270955748584], - "drones": [764.764579266766, 775.2272983330221], - "electronics": [441.39182216539064, 450.86614233917726], - "engineParts": [217.03503219645978, 230.91786186079136], - "food": [15.554873817823212, 23.62847636313674], - "fuel": [28.0967041694643, 46.411563714761485], - "fuelium": [29.064650873208087, 48.37781213369536], - "gold": [691.6683674862419, 706.2306916837462], - "goldOre": [94.87400129472843, 111.90326999896571], - "hullPlates": [40.92071151343647, 60.59934312180527], - "hydrogen": [39.163408226319774, 50.35084179457439], - "ice": [21.4363620650647, 38.00116385582345], - "metals": [42.58572492690989, 51.35587547057317], - "ore": [35.329433778640286, 42.61066172775796], - "silica": [37.771751400896974, 53.63975486879953], - "silicon": [16.83391740396898, 25.970993748386817], - "superconductors": [358.1454326881776, 370.6128988319232], - "tauMetal": [495.7590276683778, 505.8235929849869], - "water": [41.648880342706576, 58.171988028375154] + "coolant": [99.20575338795531, 116.88248587759496], + "drones": [1199.4450368888051, 1211.370469777907], + "electronics": [363.8936625688041, 380.88721152587135], + "engineParts": [235.27775545266343, 240.61575852547918], + "food": [18.45723234746061, 30.44542994035207], + "fuel": [25.910149510590124, 45.0376962165121], + "fuelium": [43.24413416967426, 57.06180500448877], + "gold": [417.1181964082763, 426.25335901678267], + "goldOre": [56.08222780341117, 65.8164128104805], + "hullPlates": [60.320431823111235, 72.08827770001793], + "hydrogen": [45.12865945365939, 61.33071548702495], + "ice": [17.13225445165449, 31.15019488457066], + "metals": [58.94868628222835, 76.8173378187071], + "ore": [36.98937977170634, 48.60941215136772], + "silica": [21.587950425600795, 29.658038637732602], + "silicon": [31.591353321286448, 49.54666445528186], + "superconductors": [436.5320686813269, 448.0864066698853], + "tauMetal": [429.6028000630664, 441.236675989358], + "water": [40.40916793763102, 49.818898529463105] }, "lastPriceAdjust": { "time": 0, @@ -14497,115 +14533,115 @@ "offers": { "coolant": { "active": false, - "price": 118, + "price": 112, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 768, + "price": 1209, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 446, + "price": 364, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 226, + "price": 237, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 19, + "price": 21, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 38, + "price": 44, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 38, + "price": 44, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 698, + "price": 418, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 102, + "price": 65, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 57, + "price": 65, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 44, + "price": 48, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 32, + "price": 22, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 44, + "price": 66, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 37, + "price": 44, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 43, + "price": 22, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 18, + "price": 32, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 360, + "price": 437, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 499, + "price": 433, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 45, + "price": 41, "quantity": 0, "type": "sell" } @@ -14698,7 +14734,7 @@ "position": { "name": "position", "angle": 0, - "coord": [24.014888375446223, 12.176972384555008], + "coord": [26.110368855124126, 3.9349984176944446], "sector": 26, "moved": false, "mask": "BigInt:2199023255552" @@ -14787,25 +14823,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [88.8219814730331, 97.67877521064068], - "drones": [774.3659099311603, 786.6489574108289], - "electronics": [161.19315012345294, 179.68182011941065], - "engineParts": [299.26617796427723, 309.7463335795129], - "food": [20.491389368625818, 40.00786287043795], - "fuel": [26.30547940930032, 45.57123572267278], - "fuelium": [31.67935929321149, 46.55981667082935], - "gold": [441.8420792898576, 461.5068278004964], - "goldOre": [72.06003600708914, 91.05177272138178], - "hullPlates": [66.43567413421667, 83.15789096836741], - "hydrogen": [45.202347839248695, 54.97559136056968], - "ice": [24.311638882970847, 32.108110804786676], - "metals": [74.03325778588453, 88.8478185244725], - "ore": [36.117120455645995, 43.06385173274524], - "silica": [40.13686433933229, 49.54198864164964], - "silicon": [28.14967281537352, 34.9059968206804], - "superconductors": [534.3745419289496, 548.8088425335258], - "tauMetal": [628.1656539048806, 645.9449453800062], - "water": [34.91446635941968, 43.57890598569362] + "coolant": [66.90845361652867, 83.3321400083675], + "drones": [1061.0147234684523, 1078.539680216265], + "electronics": [291.9977421313698, 311.1521070368671], + "engineParts": [413.1112637836119, 431.7656742697711], + "food": [8.708367712592082, 15.169073594761837], + "fuel": [69.33085741977223, 88.22262213275509], + "fuelium": [60.04386971492382, 74.52102593261931], + "gold": [944.0312403053293, 956.7279695201594], + "goldOre": [80.26521726491643, 85.89284701809095], + "hullPlates": [38.33514304333492, 57.99038361829245], + "hydrogen": [51.41336470827887, 65.95655356480815], + "ice": [23.71884643404657, 42.337549365860546], + "metals": [49.10976151003581, 61.32553554727007], + "ore": [28.829060079558257, 36.83962223511272], + "silica": [18.61387709005039, 28.296714526724013], + "silicon": [13.765095028179172, 24.13093095906817], + "superconductors": [528.0042998554093, 534.1910317425672], + "tauMetal": [339.1355744734115, 346.56457789752733], + "water": [37.65521144611861, 46.161260903327474] }, "lastPriceAdjust": { "time": 0, @@ -14834,115 +14870,115 @@ "offers": { "coolant": { "active": false, - "price": 89, + "price": 74, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 774, + "price": 1078, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 172, + "price": 292, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 309, + "price": 424, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 26, + "price": 14, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 29, + "price": 78, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 42, + "price": 70, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 444, + "price": 955, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 89, + "price": 83, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 75, + "price": 56, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 47, + "price": 55, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 27, + "price": 40, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 75, + "price": 54, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 39, + "price": 33, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 41, + "price": 25, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 33, + "price": 16, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 547, + "price": 533, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 633, + "price": 341, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 36, + "price": 41, "quantity": 0, "type": "sell" } @@ -15028,7 +15064,7 @@ "position": { "name": "position", "angle": 0, - "coord": [10.491028370227923, 23.046733416447545], + "coord": [26.170430745233766, 3.8961366920682035], "sector": 26, "moved": false, "mask": "BigInt:2199023255552" @@ -15117,25 +15153,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [123.30822328523097, 132.05838561393512], - "drones": [1554.7482969628122, 1574.059419657988], - "electronics": [400.1810617200168, 419.42098866177065], - "engineParts": [218.41628668606614, 227.8545778634846], - "food": [19.310377257577816, 25.129130606457764], - "fuel": [57.08944736017007, 68.0486119204995], - "fuelium": [50.1793378270291, 69.52431344068381], - "gold": [437.2866280018074, 443.6273714183592], - "goldOre": [53.43927718386196, 60.59355302415933], - "hullPlates": [40.056609794341654, 52.47486906726993], - "hydrogen": [43.49021678158176, 57.75777354663886], - "ice": [22.307237192107024, 38.440834478671334], - "metals": [62.52749341403133, 72.35631984426595], - "ore": [34.42260897713878, 50.32597241229678], - "silica": [26.436832789141008, 41.919574129318526], - "silicon": [34.51348870621057, 42.97769038168785], - "superconductors": [414.6155467638322, 425.58160603002534], - "tauMetal": [658.2224883061863, 667.1084152395998], - "water": [36.302699526728375, 55.241205332777156] + "coolant": [65.48640463415035, 79.83897907320879], + "drones": [787.1723298370905, 795.0485387574709], + "electronics": [321.84350441281674, 329.34643555526975], + "engineParts": [339.242266826179, 355.73907846553266], + "food": [21.593910272815275, 39.7062233465126], + "fuel": [65.81380669805839, 74.35236987241957], + "fuelium": [33.93525634242226, 51.16970799794127], + "gold": [372.48369289339007, 392.4349793585728], + "goldOre": [48.90697900280182, 64.06519782952427], + "hullPlates": [44.67650221634486, 56.3082610238743], + "hydrogen": [77.99194758405127, 94.61677042664732], + "ice": [25.450906535307706, 45.036531207973496], + "metals": [62.00469624946812, 70.98428622144132], + "ore": [35.83571939290323, 47.53305592504542], + "silica": [34.082141193281544, 46.64218511583776], + "silicon": [33.03357715262236, 51.12043299167398], + "superconductors": [523.5461366048105, 543.4228698017383], + "tauMetal": [651.6269916174012, 660.4823964827742], + "water": [19.334453612000683, 35.68838562686854] }, "lastPriceAdjust": { "time": 0, @@ -15164,115 +15200,115 @@ "offers": { "coolant": { "active": false, - "price": 125, + "price": 70, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1572, + "price": 793, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 407, + "price": 324, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 220, + "price": 351, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 23, + "price": 34, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 61, + "price": 71, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 62, + "price": 40, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 439, + "price": 375, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 59, + "price": 61, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 42, + "price": 53, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 48, + "price": 88, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 25, + "price": 40, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 67, + "price": 62, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 46, + "price": 42, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 32, + "price": 40, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 36, + "price": 44, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 425, + "price": 536, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 662, + "price": 656, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 37, + "price": 20, "quantity": 0, "type": "sell" } @@ -15365,7 +15401,7 @@ "position": { "name": "position", "angle": 0, - "coord": [3.8738102511800516, -33.58428017728454], + "coord": [1.7070614001197657, -6.845662332879222], "sector": 27, "moved": false, "mask": "BigInt:2199023255552" @@ -15454,25 +15490,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [69.84398690297479, 84.59776531184988], - "drones": [1644.8969794060672, 1650.5476977526469], - "electronics": [405.39646484930927, 417.7051567781857], - "engineParts": [387.58748662138714, 396.7811464656163], - "food": [13.858532361715689, 26.23453685376303], - "fuel": [70.55639846962715, 82.40642209922814], - "fuelium": [32.12885237292507, 41.23604793557248], - "gold": [359.2192425765213, 368.84584577299876], - "goldOre": [61.19014174711717, 79.93680678069572], - "hullPlates": [31.766229877667108, 47.63218297981511], - "hydrogen": [61.39315420931865, 74.61682892689937], - "ice": [9.036665711378543, 14.235468056821812], - "metals": [57.25199223966902, 74.43861951913746], - "ore": [19.531984734668686, 27.94406308697232], - "silica": [45.51819813020033, 51.1669743324784], - "silicon": [12.886580842827296, 19.441899408502415], - "superconductors": [493.6889603769377, 507.1441267606829], - "tauMetal": [300.4299829559991, 312.75754071426053], - "water": [40.77030347464134, 54.910309579877804] + "coolant": [82.06489521989621, 98.98049648025332], + "drones": [701.1837874958732, 719.9896224666521], + "electronics": [211.74228178784173, 221.37211488714067], + "engineParts": [352.83749593772916, 365.83941711923666], + "food": [19.03332039452176, 25.35788114646497], + "fuel": [35.55513825815424, 43.14156636096154], + "fuelium": [62.12826991804506, 70.28016943586766], + "gold": [514.1116201723473, 532.1617920192073], + "goldOre": [72.15718947976538, 91.86439349323226], + "hullPlates": [24.10872531146188, 42.17223020641413], + "hydrogen": [49.406985912354294, 68.48664776235958], + "ice": [10.753310251940846, 18.46479986576658], + "metals": [56.2451184407243, 69.55638013593294], + "ore": [23.389464791047676, 29.29614010496937], + "silica": [33.52865296530305, 44.276209829879605], + "silicon": [30.236542031110105, 48.95027845656992], + "superconductors": [409.85659404086687, 428.53401306202466], + "tauMetal": [289.94534819257785, 300.42446145796987], + "water": [24.435247648812357, 31.685971098202504] }, "lastPriceAdjust": { "time": 0, @@ -15501,115 +15537,115 @@ "offers": { "coolant": { "active": false, - "price": 72, + "price": 87, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1649, + "price": 717, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 405, + "price": 215, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 390, + "price": 363, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 25, + "price": 21, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 74, + "price": 38, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 38, + "price": 62, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 365, + "price": 531, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 76, + "price": 89, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 46, + "price": 31, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 62, + "price": 67, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 14, + "price": 13, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 69, + "price": 65, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 20, + "price": 27, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 46, + "price": 39, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 17, + "price": 48, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 494, + "price": 412, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 301, + "price": 289, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 51, + "price": 25, "quantity": 0, "type": "sell" } @@ -15695,7 +15731,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-8.885638360372408, -31.496413359429425], + "coord": [-1.0102436909954136, 21.49840475226432], "sector": 26, "moved": false, "mask": "BigInt:2199023255552" @@ -15784,25 +15820,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [74.36678694846768, 86.8612102663464], - "drones": [1142.0129396237626, 1159.9462312559833], - "electronics": [215.5347053637974, 228.50817333134162], - "engineParts": [160.27637913124278, 174.49865392342664], - "food": [10.577659394689444, 15.856733315526894], - "fuel": [60.31818855468721, 69.63237597861597], - "fuelium": [48.67913164234305, 57.955377461786895], - "gold": [489.79670354559437, 504.0084336324608], - "goldOre": [53.074026801147504, 68.39880681324586], - "hullPlates": [64.27914417343459, 78.42836647917707], - "hydrogen": [34.543743564875655, 54.331513915822924], - "ice": [17.36427744155094, 27.334426078590894], - "metals": [79.65086391508247, 87.68223710448503], - "ore": [22.42049869503168, 34.358507688237445], - "silica": [46.94822813995989, 60.43948465034063], - "silicon": [35.178935412835955, 52.45421897167523], - "superconductors": [244.8996468888667, 264.8692564130383], - "tauMetal": [401.3869751611785, 418.66281919560106], - "water": [21.578324190005613, 35.941806619614226] + "coolant": [85.34921292614915, 101.96150972368306], + "drones": [1819.7551461377468, 1830.8799924409739], + "electronics": [415.7448078251064, 431.44319903924463], + "engineParts": [276.45784686037615, 286.14682924214804], + "food": [16.463840277570554, 30.80864365780801], + "fuel": [51.136710297488506, 63.5014608932084], + "fuelium": [38.329149815547986, 56.90319762754238], + "gold": [596.9121453643838, 606.1961432152223], + "goldOre": [82.2966524465734, 99.14954246212426], + "hullPlates": [28.174024630032207, 33.92161229772861], + "hydrogen": [75.34762778632889, 93.95825670270048], + "ice": [24.16992594254277, 43.594914906483176], + "metals": [53.89522823625159, 66.22189907309692], + "ore": [16.274440885240516, 25.907847522252226], + "silica": [49.33388202662529, 67.91149142105522], + "silicon": [32.30996414427784, 49.04165345760195], + "superconductors": [245.9319156019783, 250.94991868470265], + "tauMetal": [411.5400290365866, 421.8811714448412], + "water": [20.879256910051552, 30.946857195798977] }, "lastPriceAdjust": { "time": 0, @@ -15831,37 +15867,37 @@ "offers": { "coolant": { "active": false, - "price": 79, + "price": 87, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1153, + "price": 1823, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 217, + "price": 416, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 160, + "price": 283, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 11, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 67, + "price": 57, "quantity": 0, "type": "sell" }, @@ -15873,67 +15909,67 @@ }, "gold": { "active": false, - "price": 497, + "price": 597, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 65, + "price": 91, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 74, + "price": 33, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 37, + "price": 83, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 23, + "price": 35, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 87, + "price": 64, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 32, + "price": 22, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 52, + "price": 65, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 51, + "price": 38, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 250, + "price": 249, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 417, + "price": 416, "quantity": 0, "type": "sell" }, @@ -16036,7 +16072,7 @@ "position": { "name": "position", "angle": 0, - "coord": [12.40134819057338, 22.769975134403495], + "coord": [-7.295787312422479, 21.291055177079013], "sector": 28, "moved": false, "mask": "BigInt:2199023255552" @@ -16125,25 +16161,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [78.80256613787535, 97.41332591410739], - "drones": [1544.417593964728, 1562.0434462991707], - "electronics": [437.71619363938544, 444.3889038172664], - "engineParts": [448.9439007547313, 458.72625874347966], - "food": [17.240737792651643, 23.819653694155544], - "fuel": [48.638729468258965, 62.99181099206183], - "fuelium": [28.99145908994239, 35.396455992086054], - "gold": [908.3145903625258, 927.3388054911601], - "goldOre": [67.06021587708459, 76.16424756692372], - "hullPlates": [54.54282101109904, 60.243209813737835], - "hydrogen": [79.90494928827468, 88.17029275843339], - "ice": [19.977678464699878, 30.108019924248495], - "metals": [59.674429722536416, 70.23968870905031], - "ore": [34.292240663078616, 50.30184788451814], - "silica": [19.033776726182776, 32.8707310463867], - "silicon": [34.42192723189872, 39.63552114151976], - "superconductors": [560.526831666639, 566.4240226707775], - "tauMetal": [638.9121852079427, 654.715634130758], - "water": [36.28085892658915, 46.93856400414096] + "coolant": [104.53992163777289, 113.32323558368358], + "drones": [1770.9159702788886, 1777.3512600226893], + "electronics": [169.465538484705, 179.76876975540608], + "engineParts": [460.12156773635667, 471.6681625016723], + "food": [7.829298374831118, 27.15893521141299], + "fuel": [28.294094954751046, 34.7284980939791], + "fuelium": [32.13654063419309, 51.0785318788239], + "gold": [762.1800231300366, 770.5607614279066], + "goldOre": [92.26831024256168, 110.10842518128878], + "hullPlates": [26.851847567195765, 41.95467924274757], + "hydrogen": [83.94881527218823, 89.5153624928836], + "ice": [14.019202330531968, 31.842925869968976], + "metals": [48.965649818817646, 60.82915467868787], + "ore": [21.49602977540263, 30.776858913594484], + "silica": [34.287295372598564, 44.35590583763811], + "silicon": [12.077961112453027, 26.845231144084693], + "superconductors": [323.255928180677, 330.5469489925485], + "tauMetal": [246.72062585173458, 259.467505130992], + "water": [24.534165937595006, 30.301447483754963] }, "lastPriceAdjust": { "time": 0, @@ -16172,61 +16208,61 @@ "offers": { "coolant": { "active": false, - "price": 85, + "price": 112, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1547, + "price": 1776, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 440, + "price": 178, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 456, + "price": 468, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 19, + "price": 9, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 51, + "price": 32, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 34, + "price": 44, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 912, + "price": 767, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 75, + "price": 104, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 54, + "price": 35, "quantity": 0, "type": "sell" }, @@ -16238,49 +16274,49 @@ }, "ice": { "active": false, - "price": 22, + "price": 20, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 60, + "price": 58, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 47, + "price": 27, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 23, + "price": 39, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 36, + "price": 17, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 565, + "price": 329, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 651, + "price": 249, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 43, + "price": 28, "quantity": 0, "type": "sell" } @@ -16370,7 +16406,7 @@ "position": { "name": "position", "angle": 0, - "coord": [28.02642658164944, -17.37929223513393], + "coord": [27.33462278274015, -4.8453896398742], "sector": 29, "moved": false, "mask": "BigInt:2199023255552" @@ -16459,25 +16495,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [141.0569295503991, 160.2243958731341], - "drones": [677.6799037175228, 684.6367071167276], - "electronics": [237.1472929543484, 247.03782943536882], - "engineParts": [384.52828248464596, 401.3437457534743], - "food": [9.285194930052633, 17.544815259397524], - "fuel": [75.2572970119787, 85.11577072978977], - "fuelium": [32.10506186616923, 38.3831273097957], - "gold": [401.62046198753774, 421.4622151352912], - "goldOre": [54.90452537463498, 74.03060771565082], - "hullPlates": [48.02740838632347, 64.02288147721185], - "hydrogen": [64.09688926146055, 78.04147504149516], - "ice": [10.131285651195673, 19.37655141074701], - "metals": [46.94923305701646, 53.319433713769435], - "ore": [37.81870189892746, 50.239668280125755], - "silica": [21.894406349508735, 32.00987239203518], - "silicon": [16.500368760331305, 29.431031564371413], - "superconductors": [380.17499637992296, 387.8576342133133], - "tauMetal": [346.2517426745818, 365.089313344131], - "water": [29.146311185535943, 35.76717218074137] + "coolant": [89.74590535864641, 105.23849622086038], + "drones": [638.2521849554303, 657.3186433974055], + "electronics": [426.488260889457, 441.0956561132374], + "engineParts": [468.593965781786, 480.26894250803304], + "food": [19.478346072765166, 28.790322055161425], + "fuel": [76.7462543581745, 94.95865761571922], + "fuelium": [39.07661582035723, 46.49504617714166], + "gold": [512.7096733261467, 519.7247474440212], + "goldOre": [59.26193857426348, 67.1040747711634], + "hullPlates": [29.186486006695205, 43.65844483996233], + "hydrogen": [53.483668247059214, 67.25772515559107], + "ice": [14.331167565474637, 25.469596537102277], + "metals": [85.3233353842144, 93.20263669132541], + "ore": [19.64343438492504, 26.83989655032185], + "silica": [19.759573246546626, 34.21716460714977], + "silicon": [34.921558625425014, 47.34352073175809], + "superconductors": [200.6854485379248, 214.68715935623717], + "tauMetal": [545.3564552785638, 552.4529521558658], + "water": [28.389341079145044, 34.320528214487524] }, "lastPriceAdjust": { "time": 0, @@ -16506,109 +16542,109 @@ "offers": { "coolant": { "active": false, - "price": 142, + "price": 101, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 679, + "price": 654, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 240, + "price": 430, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 390, + "price": 476, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 13, + "price": 21, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 77, + "price": 90, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 34, + "price": 44, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 410, + "price": 519, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 72, + "price": 63, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 57, + "price": 41, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 71, + "price": 59, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 22, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 47, + "price": 89, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 38, + "price": 22, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 28, + "price": 29, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 17, + "price": 40, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 380, + "price": 201, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 347, + "price": 550, "quantity": 0, "type": "sell" }, @@ -16711,7 +16747,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-26.60520803273483, 20.012843424584545], + "coord": [-25.772146803686084, 15.386880971111248], "sector": 30, "moved": false, "mask": "BigInt:2199023255552" @@ -16800,25 +16836,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [129.3969933404955, 147.78495928578644], - "drones": [1024.005415237516, 1038.2405989829226], - "electronics": [241.94396278182836, 258.2953604337997], - "engineParts": [312.4084677212702, 331.2168313879675], - "food": [19.656714563286876, 39.551804431326076], - "fuel": [41.18973608103114, 50.934800861662836], - "fuelium": [41.64920999470166, 52.279598167278586], - "gold": [369.77805041295807, 388.57350668513794], - "goldOre": [49.299396055405055, 55.25188974315249], - "hullPlates": [63.51178965453975, 79.17136951188887], - "hydrogen": [49.01334031222821, 55.014498114608415], - "ice": [15.842529398760519, 26.779931731167192], - "metals": [80.32270112639137, 94.33774719390834], - "ore": [33.04210984099087, 38.93853524315357], - "silica": [44.77729531515801, 61.739234066397664], - "silicon": [35.966574632431104, 47.24632068749504], - "superconductors": [355.8059038085889, 368.94306892012867], - "tauMetal": [324.15710715706297, 333.2187170994625], - "water": [29.676778875282217, 47.48310736744733] + "coolant": [59.018587651137594, 65.13659291617907], + "drones": [1015.9515816604112, 1030.9542721271764], + "electronics": [436.1416285430027, 452.66552401296707], + "engineParts": [233.9771244543175, 248.99424976455362], + "food": [18.88042009015357, 28.942658058282888], + "fuel": [36.511683206610975, 55.37421469705953], + "fuelium": [47.988050229174426, 66.88728332954867], + "gold": [933.0524795407027, 943.8812354491449], + "goldOre": [43.56849144290141, 52.09636165214442], + "hullPlates": [44.70529759054791, 51.51263845100041], + "hydrogen": [59.24304014936542, 74.9973700818744], + "ice": [12.857346990280364, 32.48743202915973], + "metals": [62.69623127515543, 69.69450590906192], + "ore": [41.90915678410178, 60.92637344384227], + "silica": [35.1566064310843, 46.91649546957045], + "silicon": [20.70838055534581, 32.66243577214522], + "superconductors": [482.91462202631953, 496.347827317205], + "tauMetal": [579.730690929242, 587.7275780792957], + "water": [38.5162723768638, 49.85029434480659] }, "lastPriceAdjust": { "time": 0, @@ -16847,115 +16883,115 @@ "offers": { "coolant": { "active": false, - "price": 130, + "price": 61, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1034, + "price": 1022, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 242, + "price": 440, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 323, + "price": 244, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 29, + "price": 21, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 44, + "price": 51, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 50, + "price": 64, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 385, + "price": 943, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 54, + "price": 46, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 68, + "price": 49, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 52, + "price": 74, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 26, + "price": 27, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 90, + "price": 64, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 33, + "price": 46, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 49, + "price": 43, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 40, + "price": 31, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 363, + "price": 493, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 330, + "price": 582, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 41, + "price": 42, "quantity": 0, "type": "sell" } @@ -17045,7 +17081,7 @@ "position": { "name": "position", "angle": 0, - "coord": [17.80479473668766, -29.477860862667665], + "coord": [16.27715759855875, -12.59634797356405], "sector": 30, "moved": false, "mask": "BigInt:2199023255552" @@ -17134,25 +17170,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [77.95106994738946, 84.28128398251027], - "drones": [922.4208191447061, 928.0639627758272], - "electronics": [207.23535533456774, 221.5640164665489], - "engineParts": [440.42804848452545, 452.3922207346883], - "food": [13.787790279919692, 27.82365053823419], - "fuel": [38.71919803981223, 46.77051977529588], - "fuelium": [56.266072811072874, 71.31745128988946], - "gold": [641.6950703322518, 659.2287844311571], - "goldOre": [57.54217261029923, 75.56305787756146], - "hullPlates": [27.084085527818626, 35.68525481167377], - "hydrogen": [50.65682108905797, 67.76490626118334], - "ice": [22.419665149507864, 36.786903050604444], - "metals": [89.41882968101689, 97.17522533141302], - "ore": [37.54431763520235, 46.1718224382187], - "silica": [24.578494441018776, 34.37975557390122], - "silicon": [31.087508563627342, 46.62356688823267], - "superconductors": [298.8848159778294, 312.941013406779], - "tauMetal": [264.23688628508046, 281.09317855149584], - "water": [25.841241489807373, 42.734636178682265] + "coolant": [73.32767283410841, 78.6956669011655], + "drones": [1571.5223998459414, 1582.4694663049181], + "electronics": [182.83889733482778, 190.72929332816554], + "engineParts": [452.69497609057345, 465.8587587032795], + "food": [13.017230945164613, 27.99990734797013], + "fuel": [28.873995217769963, 44.811491930443765], + "fuelium": [25.252993842097116, 42.815046519087545], + "gold": [743.8855723048857, 760.8665328255237], + "goldOre": [80.31277563581202, 90.09124280891344], + "hullPlates": [37.78897669969421, 50.49070857944923], + "hydrogen": [72.78714368967036, 88.36209125049247], + "ice": [11.775140820343147, 29.357781694139284], + "metals": [37.59800345003686, 49.27412029593235], + "ore": [37.31380146467684, 43.389853535101324], + "silica": [49.81186810455469, 58.87173732712307], + "silicon": [15.654400514872805, 33.12325273942322], + "superconductors": [413.7040697958696, 433.63792384521224], + "tauMetal": [357.0476805965971, 374.66682585995784], + "water": [28.58947391824328, 40.330219579574006] }, "lastPriceAdjust": { "time": 0, @@ -17181,115 +17217,115 @@ "offers": { "coolant": { "active": false, - "price": 80, + "price": 76, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 924, + "price": 1575, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 214, + "price": 187, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 452, + "price": 462, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 22, + "price": 16, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 45, + "price": 37, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 60, + "price": 35, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 655, + "price": 752, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 72, + "price": 86, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 28, + "price": 38, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 57, + "price": 80, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 30, + "price": 29, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 94, + "price": 39, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 43, + "price": 38, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 31, + "price": 52, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 43, + "price": 19, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 302, + "price": 419, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 267, + "price": 361, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 36, + "price": 35, "quantity": 0, "type": "sell" } @@ -17386,7 +17422,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-27.364290690756768, 4.765765562539594], + "coord": [-28.345387851758804, 18.538124626875597], "sector": 31, "moved": false, "mask": "BigInt:2199023255552" @@ -17475,25 +17511,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [113.86485593150765, 131.92520819270024], - "drones": [917.1885569325848, 932.9134786588253], - "electronics": [210.3602834663477, 226.7528825315214], - "engineParts": [480.14938659688465, 486.8206886255403], - "food": [13.511256289689399, 26.009139923822644], - "fuel": [66.74740290981616, 80.81628879250619], - "fuelium": [39.402776627523494, 48.099784821155836], - "gold": [862.5764733368982, 876.9349219716026], - "goldOre": [86.86108296682784, 95.62955910097266], - "hullPlates": [41.261810404662526, 56.17540966659393], - "hydrogen": [39.12185124485466, 48.23815187580436], - "ice": [20.835629518332965, 27.624542853975527], - "metals": [52.98048820778626, 69.06393760837952], - "ore": [41.80568878941778, 53.54849021900182], - "silica": [30.470863369255106, 37.32149550407621], - "silicon": [28.61558683181679, 38.701862425287544], - "superconductors": [520.2637839117092, 535.6800711872089], - "tauMetal": [421.2972511493107, 436.0983471999499], - "water": [17.57165438808601, 28.646075427442128] + "coolant": [107.0668510665987, 122.85387956694989], + "drones": [1035.407753803362, 1055.3620088821394], + "electronics": [228.01069071342135, 238.1655977180375], + "engineParts": [245.2782878768253, 256.7830755701573], + "food": [16.717034191939447, 23.571310953661374], + "fuel": [57.34459395159968, 71.17169367568953], + "fuelium": [61.812492059785285, 73.36001884278221], + "gold": [608.5455004294563, 623.7177582661243], + "goldOre": [46.6483449794717, 57.43550924391387], + "hullPlates": [58.15135955496596, 66.37061974804465], + "hydrogen": [92.23213414932698, 104.92309251288937], + "ice": [20.37190631444701, 32.2525603491238], + "metals": [34.646020542665255, 42.80461887737525], + "ore": [41.72659473450013, 52.32855690503919], + "silica": [21.182418343206653, 32.0096867548811], + "silicon": [35.171667990869175, 45.20580387659993], + "superconductors": [314.3014880306419, 321.43372886524355], + "tauMetal": [325.6716388924517, 330.6750045437873], + "water": [16.548137472716917, 34.33212322129655] }, "lastPriceAdjust": { "time": 0, @@ -17522,115 +17558,115 @@ "offers": { "coolant": { "active": false, - "price": 124, + "price": 108, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 920, + "price": 1041, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 224, + "price": 229, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 484, + "price": 251, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 17, + "price": 21, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 73, + "price": 60, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 44, + "price": 63, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 874, + "price": 622, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 91, + "price": 48, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 49, + "price": 64, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 39, + "price": 100, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 20, + "price": 21, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 61, + "price": 40, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 42, + "price": 47, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 31, + "price": 23, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 29, + "price": 42, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 530, + "price": 315, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 434, + "price": 326, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 17, + "price": 28, "quantity": 0, "type": "sell" } @@ -17720,7 +17756,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-20.13727010769146, 27.373876820157], + "coord": [-15.398383242881112, 19.76684425992413], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -17809,25 +17845,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [63.4342085376737, 83.40957614683558], - "drones": [1376.887967449064, 1385.491677325636], - "electronics": [389.6361202272441, 405.44847995845697], - "engineParts": [291.44874021029796, 299.399052797593], - "food": [18.23758006836014, 30.638902432997455], - "fuel": [31.212438164248912, 46.14997440934859], - "fuelium": [26.11390274335334, 34.13423897521889], - "gold": [338.8657584710018, 354.6864602435384], - "goldOre": [67.52866192274828, 86.71162987312752], - "hullPlates": [26.64815399789353, 39.052364294693106], - "hydrogen": [41.39081604608557, 57.17066653914756], - "ice": [25.14703989163595, 43.88806600137426], - "metals": [53.86744390722636, 63.163238608711964], - "ore": [22.129222002994005, 37.89367188028059], - "silica": [30.081554215898638, 49.61841744532393], - "silicon": [14.364019261953052, 30.460274045714783], - "superconductors": [377.59842668775224, 386.507828757013], - "tauMetal": [488.2964667324002, 495.0853085481158], - "water": [19.217502364270324, 35.51320281039676] + "coolant": [110.63561184313478, 117.29150111736166], + "drones": [1509.186097814926, 1518.0861562390714], + "electronics": [304.42859477419734, 312.7486120027273], + "engineParts": [168.353625655136, 180.0294999973253], + "food": [7.791678331337252, 19.647391411573647], + "fuel": [29.346543036392152, 34.956149526746835], + "fuelium": [52.17769359760105, 72.12454775739815], + "gold": [341.16067082732945, 360.265013229194], + "goldOre": [53.20251069376869, 60.98758431961679], + "hullPlates": [23.589444593322856, 31.242889301168375], + "hydrogen": [80.55098054531237, 91.61082395333358], + "ice": [10.080379895725992, 16.853706102014755], + "metals": [59.5169700597112, 76.0691576005113], + "ore": [34.374507301155916, 43.229225660108625], + "silica": [23.62502010565792, 30.163362126934167], + "silicon": [32.532091666183966, 51.94996948022809], + "superconductors": [216.30600597988405, 222.6660546242748], + "tauMetal": [241.05411691998677, 256.2927997059501], + "water": [19.50791172042742, 30.753630696214014] }, "lastPriceAdjust": { "time": 0, @@ -17856,115 +17892,115 @@ "offers": { "coolant": { "active": false, - "price": 63, + "price": 112, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1383, + "price": 1515, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 391, + "price": 308, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 293, + "price": 177, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 25, + "price": 18, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 38, + "price": 31, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 30, + "price": 53, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 350, + "price": 359, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 82, + "price": 60, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 27, + "price": 25, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 54, + "price": 91, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 39, + "price": 12, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 62, + "price": 68, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 31, + "price": 39, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 33, + "price": 27, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 30, + "price": 42, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 381, + "price": 217, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 491, + "price": 244, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 24, + "price": 20, "quantity": 0, "type": "sell" } @@ -18061,7 +18097,7 @@ "position": { "name": "position", "angle": 0, - "coord": [27.957172645650708, -20.2223889873001], + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": false, "mask": "BigInt:2199023255552" @@ -18150,25 +18186,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [109.99638124529054, 116.89242580943915], - "drones": [694.4330930788082, 709.9984164266826], - "electronics": [149.53363467620008, 161.81431998314565], - "engineParts": [250.17372355297329, 264.24609028996156], - "food": [16.044216879853888, 33.16831325548344], - "fuel": [28.34280249069421, 35.113994687514], - "fuelium": [33.38665067227002, 51.351038431723396], - "gold": [554.5993608554126, 572.0753409315646], - "goldOre": [81.87141649530562, 93.35060719332493], - "hullPlates": [33.77067864024771, 44.12791833522765], - "hydrogen": [47.93050999189904, 53.71298175648028], - "ice": [22.26412219364996, 40.161235414917996], - "metals": [73.96468808542637, 84.13906670636158], - "ore": [29.53437460702576, 34.6073211112263], - "silica": [49.31102555277486, 65.39101882829547], - "silicon": [33.70371788309978, 47.53010939081943], - "superconductors": [311.79921191690903, 321.1963362880816], - "tauMetal": [517.7505842432906, 526.60824563069], - "water": [41.422533665497006, 55.425305510770016] + "coolant": [136.66540588956977, 144.2075337544121], + "drones": [745.6352573135724, 756.4644015931383], + "electronics": [304.4861609754894, 317.9195706737745], + "engineParts": [182.90931571848878, 193.32967869313472], + "food": [13.981699857632421, 25.084295259318658], + "fuel": [66.72267012101489, 76.99721537082794], + "fuelium": [72.38972396591083, 91.27065554210861], + "gold": [795.3127423734613, 808.0157939508487], + "goldOre": [68.62051130229213, 85.01015966137155], + "hullPlates": [27.14971979451064, 40.59766538175145], + "hydrogen": [49.544668827003825, 62.88834218384163], + "ice": [14.146981196905413, 28.955011381299464], + "metals": [85.07212530559279, 100.33359006370624], + "ore": [27.746404595336823, 42.9424158967258], + "silica": [25.638727668341225, 40.88152832483522], + "silicon": [33.17311013403637, 49.74820160293938], + "superconductors": [249.75765526800677, 263.99892201722633], + "tauMetal": [455.02788133387907, 463.552784434655], + "water": [32.74281623836204, 44.83277201932635] }, "lastPriceAdjust": { "time": 0, @@ -18197,91 +18233,91 @@ "offers": { "coolant": { "active": false, - "price": 113, + "price": 137, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 696, + "price": 749, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 160, + "price": 316, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 254, + "price": 191, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 32, + "price": 15, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 30, + "price": 71, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 44, + "price": 80, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 571, + "price": 799, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 85, + "price": 74, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 38, + "price": 29, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 53, + "price": 57, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 32, + "price": 27, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 75, + "price": 90, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 31, + "price": 42, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 62, + "price": 32, "quantity": 0, "type": "sell" }, @@ -18293,19 +18329,19 @@ }, "superconductors": { "active": false, - "price": 313, + "price": 261, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 518, + "price": 455, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 41, + "price": 37, "quantity": 0, "type": "sell" } @@ -18395,7 +18431,7 @@ "position": { "name": "position", "angle": 0, - "coord": [6.812223961392824, 27.47027167263595], + "coord": [19.514632547388896, 3.1098262044222023], "sector": 10, "moved": false, "mask": "BigInt:2199023255552" @@ -18484,25 +18520,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [121.24974883995878, 130.8879698074473], - "drones": [1528.8379110320616, 1537.4450839266244], - "electronics": [223.50920702205485, 240.52733648135796], - "engineParts": [321.7192509424411, 333.758937483189], - "food": [21.015729412248902, 35.50160945881984], - "fuel": [29.268773934135503, 45.152394699929744], - "fuelium": [69.33363536460979, 81.0167702890795], - "gold": [838.3543247202279, 857.7666133915868], - "goldOre": [78.24556667223351, 84.33629691314184], - "hullPlates": [40.00481097274951, 50.62830815747965], - "hydrogen": [75.01174521055015, 93.46206529979384], - "ice": [11.5027514691897, 20.408949490332606], - "metals": [46.589598583543015, 66.09502408681199], - "ore": [26.395385776686982, 33.980164500304234], - "silica": [24.78886514546271, 34.88938117047197], - "silicon": [22.508780593473524, 32.84781858546901], - "superconductors": [189.36255206509716, 202.5294747341713], - "tauMetal": [442.13241299240667, 456.24565942670915], - "water": [38.822114598631586, 51.969115374426664] + "coolant": [122.07851995699984, 128.53037743125176], + "drones": [1731.9882938640933, 1744.4863444635562], + "electronics": [277.6894359216883, 285.9615593008762], + "engineParts": [269.18335501874276, 275.1338498809581], + "food": [12.989468509370479, 20.028637953335412], + "fuel": [51.27219743704022, 69.79446683751294], + "fuelium": [48.148365683805466, 63.11012367346376], + "gold": [328.2064452865234, 333.3727073863224], + "goldOre": [94.89551534869967, 104.84339309065064], + "hullPlates": [44.03653462599725, 58.22360365194453], + "hydrogen": [44.61232016366114, 61.21157014688824], + "ice": [21.3228664947643, 29.282370692063886], + "metals": [77.82019085475216, 89.78081986305436], + "ore": [16.36885948628563, 26.871897286201257], + "silica": [48.65025625819438, 59.406035114804865], + "silicon": [35.72245179585966, 45.733509816226686], + "superconductors": [570.4324625619472, 576.4345235829471], + "tauMetal": [310.50583661189563, 327.0548924679846], + "water": [17.855659986365986, 28.04141466589217] }, "lastPriceAdjust": { "time": 0, @@ -18531,115 +18567,115 @@ "offers": { "coolant": { "active": false, - "price": 126, + "price": 122, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1531, + "price": 1737, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 227, + "price": 278, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 331, + "price": 269, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 23, + "price": 15, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 31, + "price": 59, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 76, + "price": 49, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 854, + "price": 332, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 81, + "price": 102, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 49, + "price": 45, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 84, + "price": 50, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 19, + "price": 22, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 59, + "price": 85, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 26, + "price": 21, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 26, + "price": 55, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 26, + "price": 44, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 192, + "price": 573, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 450, + "price": 318, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 46, + "price": 27, "quantity": 0, "type": "sell" } @@ -18736,7 +18772,7 @@ "position": { "name": "position", "angle": 0, - "coord": [2.3548501405950497, -30.846372628118328], + "coord": [-7.061310677994533, 9.65462395201343], "sector": 15, "moved": false, "mask": "BigInt:2199023255552" @@ -18825,25 +18861,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [143.86949875236317, 158.24381883686306], - "drones": [1142.5120726010164, 1153.0124179519614], - "electronics": [212.1879765939069, 231.68522509917648], - "engineParts": [384.79294707248636, 399.2769912907903], - "food": [21.71138296405678, 26.83984246505837], - "fuel": [26.53347097463247, 44.337624702449546], - "fuelium": [51.980780097810566, 61.90626317909296], - "gold": [677.3405525909127, 685.3813133981812], - "goldOre": [58.4107004751268, 70.14866233076967], - "hullPlates": [38.955798204712835, 52.117064815133375], - "hydrogen": [59.080878087763686, 66.94845225220352], - "ice": [16.82388519462097, 22.96957898316913], - "metals": [42.757939831520275, 54.1229282673791], - "ore": [36.291068525002196, 43.037717087787776], - "silica": [19.914758079479384, 39.56697543373292], - "silicon": [30.14150787015103, 45.23809850552614], - "superconductors": [344.4198935672109, 362.42046350788894], - "tauMetal": [611.5870132023294, 628.0634910132437], - "water": [28.217736556073497, 37.778764971299125] + "coolant": [107.42185111543597, 117.6294318526707], + "drones": [1326.3024986035416, 1346.106736192071], + "electronics": [299.35990159119285, 317.10953711658664], + "engineParts": [413.903840308278, 421.73575552751197], + "food": [21.942839130020907, 38.35244873950186], + "fuel": [67.8067540228302, 83.97944301246632], + "fuelium": [39.541539706178575, 50.316392240993395], + "gold": [326.6112760431461, 340.9254214885757], + "goldOre": [35.472863876398065, 46.39167322521689], + "hullPlates": [36.863296683267244, 46.59860812895147], + "hydrogen": [48.37516578523075, 60.77016638849331], + "ice": [23.31382862694806, 38.693582013665846], + "metals": [74.87147499644665, 83.61107181665646], + "ore": [40.97515055999021, 55.448998568391275], + "silica": [28.55830420085349, 41.37238741793988], + "silicon": [17.338614932169136, 34.97673008941933], + "superconductors": [287.9180311113122, 299.4750161382262], + "tauMetal": [337.8912340634582, 357.3692032966483], + "water": [26.014815197945047, 41.976449204091935] }, "lastPriceAdjust": { "time": 0, @@ -18872,55 +18908,55 @@ "offers": { "coolant": { "active": false, - "price": 151, + "price": 109, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1146, + "price": 1337, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 212, + "price": 305, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 390, + "price": 419, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 24, + "price": 33, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 30, + "price": 80, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 52, + "price": 42, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 678, + "price": 332, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 61, + "price": 36, "quantity": 0, "type": "sell" }, @@ -18932,55 +18968,55 @@ }, "hydrogen": { "active": false, - "price": 60, + "price": 58, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 37, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 48, + "price": 74, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 41, + "price": 40, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 37, + "price": 30, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 41, + "price": 25, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 359, + "price": 288, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 624, + "price": 350, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 35, + "price": 41, "quantity": 0, "type": "sell" } @@ -19070,7 +19106,7 @@ "position": { "name": "position", "angle": 0, - "coord": [15.854965305698228, -28.455290536279694], + "coord": [13.261427952496534, -25.32343514151589], "sector": 6, "moved": false, "mask": "BigInt:2199023255552" @@ -19159,25 +19195,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [109.93869226801542, 122.25437655287777], - "drones": [731.0741850763416, 748.8209075364658], - "electronics": [364.54323374606264, 371.06855228129126], - "engineParts": [393.29019207864314, 402.7251461312579], - "food": [7.1803664501217, 18.325759214533104], - "fuel": [58.02374231220579, 68.12461098740076], - "fuelium": [60.586664431143355, 71.63426804074551], - "gold": [610.1494131816687, 624.3872787362158], - "goldOre": [95.25148429476357, 111.8250395817991], - "hullPlates": [41.94866151568641, 55.76927860662393], - "hydrogen": [95.26704203693582, 104.83607272245771], - "ice": [20.804101205506733, 31.71153971681701], - "metals": [56.357477201124894, 73.32912788796901], - "ore": [37.066446495307865, 44.1134509095165], - "silica": [24.56526607974699, 38.653346202228676], - "silicon": [25.735143474226685, 39.33936925679961], - "superconductors": [575.1686706713942, 584.8047291497643], - "tauMetal": [468.29451042948966, 483.3076481961076], - "water": [17.25708286469216, 32.70666948299086] + "coolant": [115.68181324640823, 124.342282009478], + "drones": [810.8374100419965, 822.5140428945152], + "electronics": [275.0050724605428, 287.7361457798397], + "engineParts": [306.42588994288855, 321.41213545389206], + "food": [17.061910502654605, 28.042304975661317], + "fuel": [63.32851298456044, 79.02494307137144], + "fuelium": [40.198579671143406, 58.50065189056744], + "gold": [326.29941147548425, 345.04419847549775], + "goldOre": [58.99261614842046, 78.08883650722635], + "hullPlates": [28.942766594655208, 48.59505456042349], + "hydrogen": [35.60753720424411, 53.713374927271616], + "ice": [24.362387132779716, 36.20165529576569], + "metals": [70.50830556472084, 78.35282677670857], + "ore": [24.235745852848087, 43.59067803046426], + "silica": [26.90702470531069, 37.401930098225826], + "silicon": [28.929186452609567, 46.34141636194968], + "superconductors": [485.08224378230886, 502.1423431418117], + "tauMetal": [618.685857059294, 624.6611247199249], + "water": [25.595780593342784, 37.426161644651756] }, "lastPriceAdjust": { "time": 0, @@ -19206,115 +19242,115 @@ "offers": { "coolant": { "active": false, - "price": 110, + "price": 123, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 738, + "price": 811, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 365, + "price": 287, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 393, + "price": 314, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 17, + "price": 26, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 65, + "price": 64, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 67, + "price": 41, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 610, + "price": 339, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 107, + "price": 59, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 53, + "price": 44, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 98, + "price": 43, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 29, + "price": 35, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 71, + "price": 77, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 38, + "price": 37, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 34, + "price": 31, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 25, + "price": 44, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 581, + "price": 488, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 472, + "price": 623, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 30, + "price": 34, "quantity": 0, "type": "sell" } @@ -19411,7 +19447,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-17.13468738356177, 15.751991556010013], + "coord": [-7.0021203099463225, 4.1715278599185295], "sector": 9, "moved": false, "mask": "BigInt:2199023255552" @@ -19500,25 +19536,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [137.3028038392677, 156.24564081002117], - "drones": [1598.0723491009844, 1611.9742235393044], - "electronics": [219.24154160455618, 235.98713409013328], - "engineParts": [360.5589913166392, 370.9465653542773], - "food": [16.436900116338656, 32.72690386424003], - "fuel": [70.69637813898305, 83.49571310405133], - "fuelium": [32.381096321210094, 38.08937159423584], - "gold": [454.2259609089966, 473.4476028740921], - "goldOre": [77.33764090168442, 88.8680421800067], - "hullPlates": [49.84204024981298, 60.943883072369374], - "hydrogen": [47.411769563183086, 54.09007585704758], - "ice": [13.437585810042894, 28.500915442869402], - "metals": [53.917259190277136, 60.17640133474414], - "ore": [15.146364786419307, 26.23057098524486], - "silica": [41.2645440094981, 49.331338492557336], - "silicon": [30.960807583070206, 41.92506496471473], - "superconductors": [433.1043291938573, 449.53124436048756], - "tauMetal": [648.448396895096, 653.8213732076281], - "water": [39.471187223143154, 51.92813629788843] + "coolant": [113.4731012383109, 129.66771958285224], + "drones": [912.4627653558539, 931.3710995495618], + "electronics": [230.08291843410623, 241.5838354162281], + "engineParts": [277.3802495739865, 294.9583167882495], + "food": [21.21451886852418, 36.6911487646337], + "fuel": [57.33180044671493, 67.50958099766022], + "fuelium": [35.67364288168236, 49.520008346862525], + "gold": [714.3920621932542, 721.6132523089882], + "goldOre": [60.90969297147096, 78.01637886731172], + "hullPlates": [41.12427531480307, 57.75668133281797], + "hydrogen": [55.818782691082966, 67.93640761507716], + "ice": [15.279808772632174, 24.588989900110413], + "metals": [79.13093616669912, 98.07120357310427], + "ore": [18.37873391672222, 25.11136067401831], + "silica": [42.938023429843, 50.92173005462935], + "silicon": [19.911685237529436, 37.290761496573765], + "superconductors": [268.29855194131414, 278.2906726810445], + "tauMetal": [454.2585706764712, 470.3652807319625], + "water": [19.178928498524613, 24.320513786621703] }, "lastPriceAdjust": { "time": 0, @@ -19547,85 +19583,85 @@ "offers": { "coolant": { "active": false, - "price": 149, + "price": 126, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1607, + "price": 917, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 220, + "price": 238, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 365, + "price": 291, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 21, + "price": 30, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 78, + "price": 66, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 35, + "price": 40, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 458, + "price": 717, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 84, + "price": 73, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 55, + "price": 44, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 51, + "price": 64, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 22, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 54, + "price": 93, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 18, + "price": 19, "quantity": 0, "type": "sell" }, @@ -19637,25 +19673,25 @@ }, "silicon": { "active": false, - "price": 36, + "price": 20, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 438, + "price": 277, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 653, + "price": 459, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 48, + "price": 22, "quantity": 0, "type": "sell" } @@ -19745,7 +19781,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-25.23942012681465, -7.581910632576134], + "coord": [-6.800961704313487, -5.1212559166913], "sector": 15, "moved": false, "mask": "BigInt:2199023255552" @@ -19834,25 +19870,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [108.5507993826245, 114.10258378530277], - "drones": [1404.2338869785792, 1420.6222338014265], - "electronics": [226.5087959360768, 245.98045153233886], - "engineParts": [398.00718110961054, 416.69155275922867], - "food": [7.009494939991635, 20.34904947290036], - "fuel": [56.29530292801061, 69.11757678875318], - "fuelium": [63.92011708126979, 70.51864445990418], - "gold": [455.2707849287765, 462.3083623208926], - "goldOre": [35.71297830310096, 52.8422492989146], - "hullPlates": [54.1138541210342, 60.854123015174785], - "hydrogen": [90.55712303338382, 108.67406420252647], - "ice": [23.76055794811778, 32.97176634721587], - "metals": [55.04480152145689, 70.11052748488414], - "ore": [29.23487777352917, 45.06466168226771], - "silica": [46.70974792155303, 53.163427234659736], - "silicon": [14.367654262729424, 32.6209802355785], - "superconductors": [306.6130299557118, 312.0660947337084], - "tauMetal": [518.9960094708077, 538.6261394456907], - "water": [27.24870502109558, 42.18333929098001] + "coolant": [52.14268354460613, 67.0409986873159], + "drones": [784.125415509088, 790.3367205330384], + "electronics": [245.12169626012218, 261.7559131419403], + "engineParts": [262.28222315760365, 269.2050446681656], + "food": [9.017220160436942, 25.22122144230279], + "fuel": [73.02807461626682, 85.77984218846058], + "fuelium": [49.98800776382789, 59.9902650955553], + "gold": [490.3320663908229, 498.4036057816004], + "goldOre": [59.13273022374034, 68.13564224893379], + "hullPlates": [25.50991899626079, 36.02944662376083], + "hydrogen": [49.86948653013848, 59.31859111315242], + "ice": [26.792035530347658, 44.983783256706374], + "metals": [77.54161184253655, 84.06797860188719], + "ore": [16.32639416325936, 30.36810914403037], + "silica": [28.357447536027315, 44.03659754501927], + "silicon": [28.47927977435519, 43.18044331465513], + "superconductors": [395.6826637851018, 406.8512233946367], + "tauMetal": [579.5201200047879, 588.3377486337093], + "water": [16.369877604020985, 22.168978313148255] }, "lastPriceAdjust": { "time": 0, @@ -19881,115 +19917,115 @@ "offers": { "coolant": { "active": false, - "price": 108, + "price": 60, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1414, + "price": 784, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 242, + "price": 257, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 404, + "price": 268, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 11, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 57, + "price": 77, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 67, + "price": 59, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 461, + "price": 498, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 49, + "price": 63, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 59, + "price": 26, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 97, + "price": 51, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 25, + "price": 41, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 55, + "price": 83, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 39, + "price": 19, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 47, + "price": 33, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 21, + "price": 28, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 309, + "price": 396, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 522, + "price": 581, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 41, + "price": 21, "quantity": 0, "type": "sell" } @@ -20086,7 +20122,7 @@ "position": { "name": "position", "angle": 0, - "coord": [19.54300638698873, 16.658889854479117], + "coord": [1.661714057300037, -6.762399969119337], "sector": 27, "moved": false, "mask": "BigInt:2199023255552" @@ -20175,25 +20211,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [81.56105754420994, 90.57802918484114], - "drones": [1215.0561191389688, 1230.3686374314477], - "electronics": [396.11292970304, 413.4629131291354], - "engineParts": [210.82941935673756, 222.23270091344972], - "food": [19.021419608737567, 32.20481196775761], - "fuel": [73.97955295075634, 86.24158845891358], - "fuelium": [33.28503427572864, 38.32125549583906], - "gold": [436.6793165891863, 454.84120737200095], - "goldOre": [43.67743315533911, 56.09441478004963], - "hullPlates": [50.52713822219753, 66.97002739967661], - "hydrogen": [35.66457190078853, 42.58800611362521], - "ice": [24.097171812046945, 33.01422977867301], - "metals": [79.65681019087289, 85.90159955855528], - "ore": [20.68044521731387, 27.798612709291604], - "silica": [25.755567079194574, 40.889928303128514], - "silicon": [25.12598969207145, 38.35834382992917], - "superconductors": [503.94418104207284, 519.7407298075528], - "tauMetal": [253.85916414777665, 261.6716797513351], - "water": [42.3518212596497, 52.574294978834175] + "coolant": [133.07272039312244, 138.62055662308083], + "drones": [1243.6768484730887, 1262.1053734963714], + "electronics": [303.7012433541382, 316.47929149659274], + "engineParts": [197.51698985374975, 205.7550568195298], + "food": [21.639731173973974, 37.826308030145455], + "fuel": [76.46031103627973, 92.19385969053421], + "fuelium": [62.91384228445208, 69.54383570818351], + "gold": [500.6722083852424, 509.6032402148447], + "goldOre": [90.17918595069811, 108.40432902366203], + "hullPlates": [53.33541308244507, 60.490970036049696], + "hydrogen": [97.38771256313726, 112.19154427392502], + "ice": [21.46518931446319, 26.95944882984209], + "metals": [93.02507274011094, 104.68884694502883], + "ore": [37.042780271099815, 46.67422313052143], + "silica": [30.453700678029726, 48.49625558589698], + "silicon": [26.284834187612965, 31.475474071021154], + "superconductors": [457.33520217973273, 464.0487285411599], + "tauMetal": [551.5457743260567, 558.6122911301057], + "water": [26.35514110060837, 40.969668975935136] }, "lastPriceAdjust": { "time": 0, @@ -20222,91 +20258,91 @@ "offers": { "coolant": { "active": false, - "price": 82, + "price": 133, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1216, + "price": 1247, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 401, + "price": 311, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 219, + "price": 198, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 32, + "price": 28, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 76, + "price": 78, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 34, + "price": 64, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 436, + "price": 508, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 45, + "price": 102, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 51, + "price": 54, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 39, + "price": 111, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 31, + "price": 23, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 79, + "price": 99, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 25, + "price": 41, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 33, + "price": 46, "quantity": 0, "type": "sell" }, @@ -20318,19 +20354,19 @@ }, "superconductors": { "active": false, - "price": 505, + "price": 460, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 254, + "price": 552, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 51, + "price": 31, "quantity": 0, "type": "sell" } @@ -20420,7 +20456,7 @@ "position": { "name": "position", "angle": 0, - "coord": [13.531193064855957, -23.085573293108606], + "coord": [16.170408981118825, -0.32666155165017985], "sector": 12, "moved": false, "mask": "BigInt:2199023255552" @@ -20509,25 +20545,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [116.21919997179712, 123.54191216786334], - "drones": [1081.7658823776505, 1097.1336350243325], - "electronics": [292.62163919448017, 302.2924985780094], - "engineParts": [314.7803877445724, 321.34758819554366], - "food": [11.289170480738825, 27.491301975558162], - "fuel": [33.74850314552813, 49.63976321581837], - "fuelium": [53.862393290945874, 61.495176093169086], - "gold": [933.5857696399779, 949.8201333536339], - "goldOre": [89.4141310106593, 104.82179263347379], - "hullPlates": [39.984016948006875, 47.71660878907145], - "hydrogen": [63.35490572386092, 77.08793920313795], - "ice": [14.586613786722143, 24.986827491047038], - "metals": [61.975347889292784, 75.50461813229825], - "ore": [14.719137535227786, 34.556227208098164], - "silica": [41.251931776867075, 47.53338199361815], - "silicon": [32.75324490048341, 47.35712057368097], - "superconductors": [252.30158294367945, 263.5039579360821], - "tauMetal": [585.5502654827206, 591.7432459113326], - "water": [29.177442132627903, 46.77349238856645] + "coolant": [121.75333558048351, 129.2279958624237], + "drones": [1320.7140662520133, 1334.3777813087645], + "electronics": [445.36197458636946, 451.6162337268114], + "engineParts": [337.1106759166029, 356.708005199474], + "food": [8.552408694328038, 25.251171328075912], + "fuel": [63.99879849888383, 76.65064184996032], + "fuelium": [32.45091083972117, 44.48116497226959], + "gold": [783.1226083503219, 797.0377641482266], + "goldOre": [45.88275770385815, 61.924345595815325], + "hullPlates": [31.351933239913336, 49.47059796372327], + "hydrogen": [75.84636504893766, 83.23455280681056], + "ice": [25.45297320804364, 42.209413138000826], + "metals": [66.34698780284174, 75.28969041435664], + "ore": [16.35433578521968, 34.34145359089898], + "silica": [26.957906901925593, 38.70545845831458], + "silicon": [25.890934908268434, 44.43234424625176], + "superconductors": [334.9983249026161, 348.0327981091742], + "tauMetal": [234.22216099857593, 252.20248353416787], + "water": [20.093185165268228, 30.991689499971525] }, "lastPriceAdjust": { "time": 0, @@ -20556,115 +20592,115 @@ "offers": { "coolant": { "active": false, - "price": 120, + "price": 126, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1093, + "price": 1325, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 295, + "price": 445, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 319, + "price": 348, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 26, + "price": 9, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 44, + "price": 73, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 58, + "price": 40, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 934, + "price": 785, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 90, + "price": 51, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 43, + "price": 40, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 67, + "price": 81, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 17, + "price": 30, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 69, + "price": 71, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 15, + "price": 16, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 41, + "price": 27, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 45, + "price": 31, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 254, + "price": 340, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 585, + "price": 251, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 34, + "price": 20, "quantity": 0, "type": "sell" } @@ -20761,7 +20797,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-22.068608626111033, 17.3448368333205], + "coord": [-17.55562741103472, 21.790424045038197], "sector": 19, "moved": false, "mask": "BigInt:2199023255552" @@ -20850,25 +20886,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [97.01396856155986, 113.82576851483232], - "drones": [1734.8364142400228, 1739.871782384251], - "electronics": [240.6584178926891, 259.2610059924467], - "engineParts": [379.61725124091333, 396.1919170780168], - "food": [19.274523328598363, 35.634170343258944], - "fuel": [46.00656994071875, 52.44597109917876], - "fuelium": [27.09461751077296, 46.943418935308074], - "gold": [843.8870076347667, 858.3978132853186], - "goldOre": [40.403424720149516, 60.33422710757215], - "hullPlates": [25.21201962871683, 37.60578974236706], - "hydrogen": [99.68012284614929, 106.44914434041931], - "ice": [12.033917502684602, 22.270025542777336], - "metals": [80.74174976588887, 96.48518553360854], - "ore": [21.073711590711344, 30.956680898743173], - "silica": [36.89856049242762, 45.0260800912868], - "silicon": [35.714784054862875, 45.04569586078392], - "superconductors": [418.29763605989626, 428.983523278122], - "tauMetal": [635.0504135408353, 649.7181329859901], - "water": [41.8549588228619, 58.46282576875574] + "coolant": [103.40867721389583, 118.07315450286178], + "drones": [1396.4897973087234, 1411.7172646257886], + "electronics": [322.8049764255071, 331.79547352986475], + "engineParts": [362.01310016979346, 378.7697970054682], + "food": [16.126936339956977, 29.169904203192154], + "fuel": [74.68482806773807, 81.16293099761967], + "fuelium": [37.79869238594563, 49.48541504254179], + "gold": [738.5637711061947, 745.8704442174886], + "goldOre": [72.24109364399352, 82.75306076456405], + "hullPlates": [58.75327015761327, 64.4899691500637], + "hydrogen": [85.22696182561032, 92.8026684826491], + "ice": [16.338911538436136, 32.36529726086323], + "metals": [79.71358829285666, 87.11221834201805], + "ore": [21.686608320416926, 32.0956364539505], + "silica": [38.16550755715097, 53.056694879457524], + "silicon": [25.424398318823897, 34.08054526784217], + "superconductors": [472.5326119721606, 489.2777109013388], + "tauMetal": [370.7728689102001, 378.53725988947366], + "water": [30.792616224952315, 39.932152467349354] }, "lastPriceAdjust": { "time": 0, @@ -20897,79 +20933,79 @@ "offers": { "coolant": { "active": false, - "price": 98, + "price": 117, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1738, + "price": 1409, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 244, + "price": 323, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 388, + "price": 367, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 24, + "price": 19, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 51, + "price": 80, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 42, + "price": 47, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 856, + "price": 743, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 41, + "price": 78, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 26, + "price": 60, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 104, + "price": 92, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 16, + "price": 25, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 88, + "price": 85, "quantity": 0, "type": "sell" }, @@ -20981,31 +21017,31 @@ }, "silica": { "active": false, - "price": 41, + "price": 47, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 38, + "price": 31, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 422, + "price": 477, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 645, + "price": 373, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 53, + "price": 38, "quantity": 0, "type": "sell" } @@ -21095,7 +21131,7 @@ "position": { "name": "position", "angle": 0, - "coord": [29.534917661865098, -13.96211785764262], + "coord": [15.804604081655718, -17.04261992443781], "sector": 13, "moved": false, "mask": "BigInt:2199023255552" @@ -21184,25 +21220,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [116.35776121644837, 135.48642438110423], - "drones": [916.2303351619776, 921.5479192466358], - "electronics": [368.0879519907985, 385.72230976710557], - "engineParts": [356.3634107407525, 362.10799922523324], - "food": [14.404798728739488, 23.505517210346895], - "fuel": [32.97783073829154, 48.19581163121357], - "fuelium": [34.758755626916184, 44.52466206936171], - "gold": [327.1624783680894, 338.72615931800186], - "goldOre": [88.97883227764456, 101.35677634012472], - "hullPlates": [37.032524126527065, 44.80551879868811], - "hydrogen": [73.05271811123363, 88.6410928279222], - "ice": [25.290028250952584, 33.45192143177763], - "metals": [91.40847450908603, 103.88061703294065], - "ore": [23.58931612008211, 43.06215588031878], - "silica": [37.268070496947765, 49.302562700167115], - "silicon": [22.78219263827102, 34.78778769151055], - "superconductors": [302.2772494908965, 319.8936494097072], - "tauMetal": [404.4009274927048, 413.76950871952414], - "water": [39.6397596516797, 56.498828281042414] + "coolant": [79.89167692106773, 98.94317318274545], + "drones": [1770.9398498200126, 1784.4468123488175], + "electronics": [300.4340732144605, 314.99062024611254], + "engineParts": [172.1866514530252, 182.79922737738787], + "food": [19.917293292763055, 34.417515343341854], + "fuel": [57.20324798176817, 70.8369145674188], + "fuelium": [63.826478111690975, 79.6228071646434], + "gold": [442.15574818059645, 454.05071259406594], + "goldOre": [84.7888760153175, 96.32118617283164], + "hullPlates": [54.462512093850656, 71.94697273663309], + "hydrogen": [45.51931217725683, 52.10074161175514], + "ice": [21.58969524425902, 39.473826162841206], + "metals": [47.292587548774, 60.762546985291976], + "ore": [30.440994698222465, 35.88679196208111], + "silica": [23.14360749597445, 33.667895093175574], + "silicon": [12.579634826435615, 31.38374939773319], + "superconductors": [236.94719043838657, 249.11006081043146], + "tauMetal": [536.96070821796, 543.5084089002571], + "water": [41.4263849635054, 58.20785862188595] }, "lastPriceAdjust": { "time": 0, @@ -21231,115 +21267,115 @@ "offers": { "coolant": { "active": false, - "price": 117, + "price": 80, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 916, + "price": 1778, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 383, + "price": 303, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 357, + "price": 173, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 21, + "price": 34, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 40, + "price": 68, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 35, + "price": 75, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 331, + "price": 443, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 99, + "price": 95, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 42, + "price": 60, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 86, + "price": 46, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 27, + "price": 25, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 100, + "price": 49, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 41, + "price": 35, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 45, + "price": 25, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 24, + "price": 18, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 317, + "price": 240, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 404, + "price": 543, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 52, + "price": 53, "quantity": 0, "type": "sell" } @@ -21436,7 +21472,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-30.46764460349272, 10.424017784470475], + "coord": [-13.003366886545823, 22.477380210546713], "sector": 22, "moved": false, "mask": "BigInt:2199023255552" @@ -21525,25 +21561,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [131.42907930466583, 146.97705906771904], - "drones": [741.4215376713908, 747.367852307035], - "electronics": [430.9106683232666, 436.1101870037946], - "engineParts": [447.7724604925547, 466.6953231178269], - "food": [17.84993678255219, 24.170896804366834], - "fuel": [72.73179766573463, 79.77276835943938], - "fuelium": [26.176327905879564, 31.4541087749948], - "gold": [521.5005166617938, 540.2586739191775], - "goldOre": [50.26474540521184, 69.64110924824372], - "hullPlates": [52.935175886804906, 69.56773436738192], - "hydrogen": [60.27547046356396, 71.74189553104353], - "ice": [15.273133184192236, 26.236840837905355], - "metals": [97.31017850964007, 110.17956831146742], - "ore": [20.16248426027929, 39.24572060646966], - "silica": [47.879801459647275, 65.1066171280848], - "silicon": [19.75918395673545, 36.993834843302636], - "superconductors": [435.4999275618948, 443.40442378848206], - "tauMetal": [330.5056525914673, 350.08916464168027], - "water": [42.33129184143809, 58.36610877145939] + "coolant": [94.4485058985277, 105.55695579477268], + "drones": [1709.6723548144064, 1722.4492492015318], + "electronics": [392.4135784930882, 400.4513746704339], + "engineParts": [179.09553593859107, 192.16372844370824], + "food": [19.703201998888893, 27.870328011217886], + "fuel": [47.500956281937434, 67.21054376850142], + "fuelium": [35.40374934249602, 40.80996792020079], + "gold": [747.7875603388027, 759.8987540776129], + "goldOre": [90.75010140623048, 109.71230012281922], + "hullPlates": [45.21724317774005, 56.64295697454584], + "hydrogen": [69.54517551194735, 78.4518046398565], + "ice": [21.460439237002717, 36.675513502872306], + "metals": [58.73346348191632, 65.0097104671839], + "ore": [33.32545199885621, 41.3173083229626], + "silica": [33.98246688439387, 49.54452448492919], + "silicon": [13.356441985254722, 22.192478870625852], + "superconductors": [569.0245776550289, 583.4855638918065], + "tauMetal": [448.921857914361, 467.2266595136867], + "water": [42.55428153217349, 58.91155213516283] }, "lastPriceAdjust": { "time": 0, @@ -21572,115 +21608,115 @@ "offers": { "coolant": { "active": false, - "price": 145, + "price": 100, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 742, + "price": 1721, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 433, + "price": 397, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 464, + "price": 182, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 19, + "price": 25, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 76, + "price": 48, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 29, + "price": 36, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 537, + "price": 755, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 60, + "price": 97, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 63, + "price": 53, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 66, + "price": 70, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 26, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 103, + "price": 63, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 30, + "price": 35, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 48, + "price": 45, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 33, + "price": 21, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 440, + "price": 570, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 331, + "price": 457, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 53, + "price": 51, "quantity": 0, "type": "sell" } @@ -21770,7 +21806,7 @@ "position": { "name": "position", "angle": 0, - "coord": [15.322892379139187, 25.3729746771923], + "coord": [23.271700721567694, 2.2893026817475906], "sector": 13, "moved": false, "mask": "BigInt:2199023255552" @@ -21859,25 +21895,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [85.01662945358547, 96.97850319241849], - "drones": [1684.5645167924895, 1694.147508952944], - "electronics": [361.118091480196, 380.1925478687538], - "engineParts": [433.0367465654243, 444.16425641028144], - "food": [21.56252518992537, 34.06550511853755], - "fuel": [43.82082591012137, 50.260452073311775], - "fuelium": [35.679716252899716, 52.27451885221189], - "gold": [671.6165507135215, 684.9206846756732], - "goldOre": [48.05783455660978, 57.460755218680006], - "hullPlates": [36.493050954233894, 47.787464208648615], - "hydrogen": [73.7780263756346, 88.00589550007473], - "ice": [22.116535865598966, 29.172236092240247], - "metals": [38.13040722824519, 51.629373032110145], - "ore": [30.989273544307387, 44.16686922878343], - "silica": [48.52774680655901, 59.35307431312883], - "silicon": [27.53570716368495, 45.002546907306126], - "superconductors": [273.874753230124, 288.5664019737163], - "tauMetal": [557.232939938841, 564.9930041757231], - "water": [42.35272174960269, 61.674527368550365] + "coolant": [114.04826757977908, 123.05921789856444], + "drones": [1524.5245005757365, 1540.7119308183126], + "electronics": [357.4455230083878, 372.96305306223184], + "engineParts": [432.77902626439624, 452.21986556214983], + "food": [14.66528377551068, 19.89931438577961], + "fuel": [36.96839974184355, 56.503949447302475], + "fuelium": [69.95626722362343, 87.19145261345805], + "gold": [708.9488069308779, 720.8777096886221], + "goldOre": [36.403582911642154, 51.73279160409564], + "hullPlates": [32.341482499391645, 45.785161908431164], + "hydrogen": [83.30427527348147, 101.15235921622872], + "ice": [24.7075688636951, 42.17140257336926], + "metals": [50.089624135978255, 55.301940373907286], + "ore": [18.747967177151626, 25.936097831096546], + "silica": [20.50004019787805, 31.427869635860027], + "silicon": [35.09936047268764, 53.059895672910855], + "superconductors": [415.71774826735464, 424.67718624872293], + "tauMetal": [250.64913233185263, 263.5938988392959], + "water": [35.39934215120564, 53.37304428615006] }, "lastPriceAdjust": { "time": 0, @@ -21906,115 +21942,115 @@ "offers": { "coolant": { "active": false, - "price": 87, + "price": 122, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1688, + "price": 1535, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 362, + "price": 372, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 438, + "price": 450, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 22, + "price": 14, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 46, + "price": 37, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 43, + "price": 76, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 678, + "price": 712, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 48, + "price": 50, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 38, + "price": 43, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 76, + "price": 100, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 27, + "price": 35, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 46, + "price": 50, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 37, + "price": 24, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 51, + "price": 26, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 28, + "price": 42, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 283, + "price": 419, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 561, + "price": 252, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 57, + "price": 37, "quantity": 0, "type": "sell" } @@ -22111,7 +22147,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-16.941004495539868, -27.016839830892984], + "coord": [-18.972086199632024, -7.071043748134661], "sector": 17, "moved": false, "mask": "BigInt:2199023255552" @@ -22200,25 +22236,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [54.3620501051818, 70.05331671349826], - "drones": [1073.6579811486833, 1085.0058971998271], - "electronics": [433.9394297953717, 440.28883722929737], - "engineParts": [285.8482250207691, 292.92046528201865], - "food": [13.86814066696661, 19.681692177524276], - "fuel": [50.79735208862502, 59.59593395603221], - "fuelium": [55.81064631276111, 71.63792474614206], - "gold": [766.1497825771268, 774.6728984258896], - "goldOre": [38.11365146042023, 46.34900886522685], - "hullPlates": [65.13010733655508, 83.64097379223368], - "hydrogen": [101.98876909555685, 116.00782565793482], - "ice": [23.1007107239194, 37.34861957333175], - "metals": [80.24911892003468, 98.15356098777795], - "ore": [36.95781253392038, 44.03773607931423], - "silica": [34.59434095778622, 48.17696215025569], - "silicon": [18.25997283559105, 32.351974764098244], - "superconductors": [303.4935186474919, 318.2426013840188], - "tauMetal": [486.8832144814595, 495.87134343961867], - "water": [27.611130157191013, 37.25260402364809] + "coolant": [99.26389886588801, 110.12165713654684], + "drones": [1050.2259156496114, 1059.839271937788], + "electronics": [348.77627471126516, 364.28216842195627], + "engineParts": [235.29723083978502, 253.63790640842814], + "food": [18.684683683979216, 35.94556088172635], + "fuel": [38.400354017278374, 49.075696236632105], + "fuelium": [70.88480234915622, 87.81630242697653], + "gold": [869.7401396111253, 886.194674793834], + "goldOre": [85.85866948151144, 105.06354980305558], + "hullPlates": [55.41241468222724, 73.97280620030563], + "hydrogen": [39.133535363391225, 58.71633216697286], + "ice": [24.85881277918302, 31.723377464434723], + "metals": [89.7875695331785, 99.95966178165575], + "ore": [20.521795931820943, 26.816389957484855], + "silica": [42.79896353849908, 56.048959225935945], + "silicon": [18.539293054241277, 27.800319910456782], + "superconductors": [430.6220657640065, 446.53860227385934], + "tauMetal": [452.27305313326735, 468.17964279010846], + "water": [22.38896031807497, 33.35158503011425] }, "lastPriceAdjust": { "time": 0, @@ -22247,109 +22283,109 @@ "offers": { "coolant": { "active": false, - "price": 64, + "price": 108, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1080, + "price": 1055, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 437, + "price": 351, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 288, + "price": 251, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 19, + "price": 32, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 55, + "price": 45, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 60, + "price": 79, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 773, + "price": 875, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 41, + "price": 96, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 72, + "price": 61, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 112, + "price": 43, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 35, + "price": 29, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 80, + "price": 96, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 42, + "price": 26, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 47, + "price": 51, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 19, + "price": 26, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 315, + "price": 443, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 488, + "price": 463, "quantity": 0, "type": "sell" }, @@ -22445,7 +22481,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-12.91181986352949, -31.48536989330432], + "coord": [-6.511325465804838, -26.971072322055807], "sector": 8, "moved": false, "mask": "BigInt:2199023255552" @@ -22534,25 +22570,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [130.27342227885043, 148.4328842006185], - "drones": [1296.0697029341886, 1309.8631196793617], - "electronics": [254.52283082694933, 270.15719418567664], - "engineParts": [224.85615763261245, 233.85943458722147], - "food": [9.71843812089643, 15.076758330240967], - "fuel": [76.17216078163959, 95.36515122860881], - "fuelium": [60.37020915327038, 65.59151933953414], - "gold": [613.4729082173658, 620.7341950209078], - "goldOre": [67.5784617867362, 86.91905720823367], - "hullPlates": [23.438928598183608, 39.52422163130147], - "hydrogen": [56.3077723118549, 76.08215505634048], - "ice": [17.241284318017556, 31.003418511277015], - "metals": [93.35350501390084, 108.9336262004504], - "ore": [17.25972359030257, 28.771879856532703], - "silica": [44.22166211531909, 60.35125993336202], - "silicon": [17.817314193607043, 34.53099969792005], - "superconductors": [510.4344795332602, 522.6459934887662], - "tauMetal": [253.02671847153727, 266.0680831304358], - "water": [32.95617542661863, 42.93931908435379] + "coolant": [142.1031627547648, 161.57457366181188], + "drones": [1171.607202633561, 1178.502790407548], + "electronics": [217.9446116966235, 233.78735556893966], + "engineParts": [199.77424231565516, 213.459949342945], + "food": [12.80177606385684, 23.63066006496542], + "fuel": [47.28104613755097, 57.85814375680053], + "fuelium": [50.30148453070189, 67.2553369661421], + "gold": [886.7210151562755, 901.6974496010183], + "goldOre": [84.5491312333729, 101.40272346180811], + "hullPlates": [62.393309089497144, 75.2050462407805], + "hydrogen": [99.08113646621129, 109.19516929439862], + "ice": [21.527067202199653, 36.34370071213748], + "metals": [83.92486360328601, 92.66466117363268], + "ore": [29.65468532834305, 38.37412863414451], + "silica": [42.294052704131616, 52.01296882999692], + "silicon": [31.387122684824202, 40.30035714662722], + "superconductors": [356.15768145563936, 375.39797059240186], + "tauMetal": [360.44133439399775, 366.0488757664157], + "water": [34.24354802819518, 39.507749037668376] }, "lastPriceAdjust": { "time": 0, @@ -22587,19 +22623,19 @@ }, "drones": { "active": false, - "price": 1306, + "price": 1173, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 257, + "price": 221, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 232, + "price": 207, "quantity": 0, "type": "sell" }, @@ -22611,85 +22647,85 @@ }, "fuel": { "active": false, - "price": 85, + "price": 57, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 63, + "price": 62, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 619, + "price": 900, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 70, + "price": 85, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 36, + "price": 62, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 75, + "price": 101, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 35, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 100, + "price": 90, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 21, + "price": 34, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 50, + "price": 47, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 28, + "price": 33, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 512, + "price": 360, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 254, + "price": 365, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 41, + "price": 38, "quantity": 0, "type": "sell" } @@ -22786,7 +22822,7 @@ "position": { "name": "position", "angle": 0, - "coord": [9.87435431648361, 29.852225784957], + "coord": [3.552372935405581, 31.51531885372863], "sector": 30, "moved": false, "mask": "BigInt:2199023255552" @@ -22875,25 +22911,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [54.52717719799467, 63.62521681366513], - "drones": [1581.3688090516605, 1599.7242635047378], - "electronics": [449.6206824560824, 455.3595696805162], - "engineParts": [232.38988194308217, 250.21893973443957], - "food": [7.98600063112766, 20.085107289328555], - "fuel": [53.6562186507462, 60.44067638599731], - "fuelium": [73.13130149217747, 87.3783638591386], - "gold": [469.9541956837535, 475.456325318493], - "goldOre": [59.65913363548563, 71.54469724549769], - "hullPlates": [48.3005010207266, 62.911160162997135], - "hydrogen": [54.341257317095206, 68.26021226972453], - "ice": [12.120297076538822, 30.878488657933385], - "metals": [93.35594796314022, 105.10809008938296], - "ore": [25.702597730216254, 45.27012819292338], - "silica": [26.56972466657836, 45.03125638199412], - "silicon": [32.30143222549769, 41.53384190994927], - "superconductors": [226.9198014592212, 241.0180580053949], - "tauMetal": [477.8254428525543, 489.38980867812285], - "water": [15.075490246935258, 27.178828024483778] + "coolant": [87.33663764617359, 94.99034759431561], + "drones": [750.9586960598824, 757.9197906524494], + "electronics": [278.64862066127705, 292.39640497058065], + "engineParts": [378.85506377002275, 387.8665356696079], + "food": [9.999352410227626, 18.414727463750644], + "fuel": [38.511532077356705, 57.08186250204443], + "fuelium": [50.20729709303029, 61.114208561935264], + "gold": [778.8216619406584, 789.3552945384002], + "goldOre": [92.84355852954377, 105.00401205352624], + "hullPlates": [30.777995225538945, 35.84264012069413], + "hydrogen": [72.8254856691817, 79.30904061484982], + "ice": [9.937645066961533, 24.402483028967886], + "metals": [93.01032502904741, 103.15515343029179], + "ore": [36.23265297649048, 47.530514249026886], + "silica": [42.80829730594665, 59.100206219397386], + "silicon": [33.73417325446091, 43.38616190942399], + "superconductors": [361.0197519455445, 379.12339245160086], + "tauMetal": [650.2293741333074, 669.0070866006291], + "water": [16.946835184374667, 32.10761829172649] }, "lastPriceAdjust": { "time": 0, @@ -22922,115 +22958,115 @@ "offers": { "coolant": { "active": false, - "price": 61, + "price": 90, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1583, + "price": 753, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 452, + "price": 290, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 233, + "price": 387, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 8, + "price": 12, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 53, + "price": 51, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 83, + "price": 52, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 472, + "price": 787, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 68, + "price": 101, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 51, + "price": 33, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 61, + "price": 78, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 25, + "price": 20, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 94, + "price": 101, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 44, + "price": 38, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 34, + "price": 53, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 36, + "price": 38, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 239, + "price": 361, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 488, + "price": 661, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 17, + "price": 28, "quantity": 0, "type": "sell" } @@ -23120,7 +23156,7 @@ "position": { "name": "position", "angle": 0, - "coord": [14.188332449186857, -26.16033049429204], + "coord": [11.758170982675301, -18.362177009531692], "sector": 18, "moved": false, "mask": "BigInt:2199023255552" @@ -23209,25 +23245,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [87.35532298614015, 96.82713937109405], - "drones": [1579.9873485288792, 1587.3569792748513], - "electronics": [413.09885205696287, 423.44760086963123], - "engineParts": [354.4978357128925, 369.4145502793783], - "food": [20.700703787386665, 27.673207721997777], - "fuel": [27.29845109581116, 34.023319895731696], - "fuelium": [69.81827102958174, 77.0225171982721], - "gold": [685.445419332658, 692.7401182804109], - "goldOre": [63.478271483266255, 70.38112151594527], - "hullPlates": [51.7827270620044, 63.63006994566041], - "hydrogen": [49.834565778157184, 65.20075017666008], - "ice": [12.75034297221539, 18.53379074157253], - "metals": [38.42294834017773, 51.390204278678326], - "ore": [19.03730743562437, 24.137199542131263], - "silica": [18.66599304116506, 34.28482172490162], - "silicon": [14.771238942157293, 26.735012327945014], - "superconductors": [331.51261687332385, 337.3765160266069], - "tauMetal": [426.9117787988944, 444.04891867254133], - "water": [33.34235503320398, 38.836194951775894] + "coolant": [125.85974072704123, 144.94966820095394], + "drones": [1442.0225715135182, 1450.6147158782496], + "electronics": [272.332555245977, 285.0088408571177], + "engineParts": [332.99999977754305, 350.3115873699714], + "food": [18.365911781747428, 36.17667071905465], + "fuel": [51.73371518182404, 66.20559250444613], + "fuelium": [29.584967462982164, 38.30336244277942], + "gold": [738.0972247908717, 749.9292789792188], + "goldOre": [42.83577986704964, 59.35127643555214], + "hullPlates": [54.63291476300055, 60.402717840368425], + "hydrogen": [96.90006202079086, 112.70407585254364], + "ice": [19.552151442021195, 25.81040056005783], + "metals": [97.71276747900549, 111.6190041142763], + "ore": [27.44397105661092, 37.47344543225872], + "silica": [47.05567259550979, 64.42886780436565], + "silicon": [23.360644248185476, 29.565951709051895], + "superconductors": [347.12128780817136, 363.72351582617335], + "tauMetal": [492.2534717771374, 497.3577747696251], + "water": [26.942044991884657, 44.818592231399684] }, "lastPriceAdjust": { "time": 0, @@ -23256,115 +23292,115 @@ "offers": { "coolant": { "active": false, - "price": 87, + "price": 134, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1583, + "price": 1446, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 420, + "price": 282, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 359, + "price": 346, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 25, + "price": 32, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 27, + "price": 56, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 76, + "price": 30, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 685, + "price": 744, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 65, + "price": 46, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 59, + "price": 57, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 61, + "price": 105, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 16, + "price": 23, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 42, + "price": 103, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 23, + "price": 35, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 25, + "price": 60, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 25, + "price": 23, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 333, + "price": 351, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 440, + "price": 494, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 36, + "price": 30, "quantity": 0, "type": "sell" } @@ -23461,7 +23497,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-10.151116320668667, 18.006290774858172], + "coord": [-17.095190806758705, 22.604443391837663], "sector": 22, "moved": false, "mask": "BigInt:2199023255552" @@ -23550,25 +23586,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [64.52377590661523, 71.68487876296275], - "drones": [1825.4622021234227, 1839.4379188762566], - "electronics": [153.3169677421064, 164.18867160981824], - "engineParts": [350.7183185464196, 356.63829146471306], - "food": [15.729419546290115, 30.404944130267083], - "fuel": [41.46487603635937, 53.1981042005815], - "fuelium": [54.131448119784984, 70.22949540209402], - "gold": [516.5982333468021, 534.651588886767], - "goldOre": [47.48753638940205, 64.02257577888186], - "hullPlates": [61.163821166577016, 68.75389766680073], - "hydrogen": [47.00430605561811, 61.00937136427468], - "ice": [24.062606223080877, 35.76105906649488], - "metals": [72.8868348747273, 91.14669155817211], - "ore": [25.394990275622337, 36.92769867629805], - "silica": [41.40063228899645, 50.08583623875154], - "silicon": [30.16477018056881, 46.79648081054525], - "superconductors": [532.3767609293516, 538.545967794089], - "tauMetal": [332.14527473950375, 350.62845624466365], - "water": [16.446076180267298, 29.948094999824054] + "coolant": [78.04785765705715, 91.26282315835363], + "drones": [1690.9033287943842, 1703.1129666524994], + "electronics": [343.27366315256677, 358.021457931438], + "engineParts": [323.95091872404294, 340.648725144405], + "food": [10.60386231499458, 27.381213430426662], + "fuel": [62.86208553269108, 75.9999273950601], + "fuelium": [36.78630601499953, 46.93220734668348], + "gold": [409.1598450679779, 426.84927273075465], + "goldOre": [79.54640242451711, 91.33204030771566], + "hullPlates": [47.71098098511569, 66.1085486170395], + "hydrogen": [37.929452241721506, 51.283581594217495], + "ice": [22.902568137714518, 31.30531106745824], + "metals": [71.51840789528784, 88.27122560802545], + "ore": [39.71175358994746, 45.45726244738138], + "silica": [50.56196759374593, 67.05765181786484], + "silicon": [27.02730675869754, 33.09042842806126], + "superconductors": [240.3435630184652, 245.41618125745418], + "tauMetal": [229.45038180840976, 248.39851907001147], + "water": [32.73151383569818, 49.27444867065465] }, "lastPriceAdjust": { "time": 0, @@ -23597,91 +23633,91 @@ "offers": { "coolant": { "active": false, - "price": 68, + "price": 86, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1829, + "price": 1699, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 153, + "price": 345, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 352, + "price": 329, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 27, + "price": 21, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 44, + "price": 62, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 64, + "price": 40, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 530, + "price": 414, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 51, + "price": 82, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 66, + "price": 60, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 54, + "price": 43, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 32, + "price": 23, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 76, + "price": 84, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 35, + "price": 41, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 45, + "price": 50, "quantity": 0, "type": "sell" }, @@ -23693,19 +23729,19 @@ }, "superconductors": { "active": false, - "price": 535, + "price": 241, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 349, + "price": 238, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 20, + "price": 34, "quantity": 0, "type": "sell" } @@ -23795,7 +23831,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-20.86744577476068, 21.595665874457506], + "coord": [22.248154288896426, -14.622008574131568], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -23884,25 +23920,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [96.44948587077434, 110.06960768194301], - "drones": [1794.9925700877827, 1810.4228081066697], - "electronics": [344.0463929868333, 352.2056240374884], - "engineParts": [365.66354156705796, 372.0251188415844], - "food": [9.708339027865977, 18.80300855246891], - "fuel": [54.99102527662218, 73.28919600582145], - "fuelium": [38.27112459412622, 50.752156551689744], - "gold": [920.2244931262171, 926.6927742878821], - "goldOre": [60.66041601740807, 80.33052060464178], - "hullPlates": [36.65086294050112, 51.68843056350741], - "hydrogen": [49.322131686306314, 67.80619853146848], - "ice": [20.264454635127066, 37.89196452296226], - "metals": [64.35791107585845, 77.64432621413845], - "ore": [30.72779701661643, 37.91405891895926], - "silica": [48.870573005874526, 68.57498823818985], - "silicon": [31.748791894761307, 37.432167447709716], - "superconductors": [270.189809072741, 278.52989809169014], - "tauMetal": [268.7099789313633, 286.9895880996253], - "water": [22.579559841717128, 36.96234576309506] + "coolant": [68.36278155926254, 74.468758045101], + "drones": [1005.2367370332149, 1020.4084573543772], + "electronics": [262.8593794490407, 278.05190476343347], + "engineParts": [436.51800649923166, 447.19236153172693], + "food": [10.587366848861452, 21.432737144805117], + "fuel": [71.43981451289656, 87.14896093972142], + "fuelium": [30.9512407819072, 36.582925933395316], + "gold": [501.3255970696602, 513.783147694264], + "goldOre": [54.33436870358, 68.28772593953252], + "hullPlates": [61.051516846143194, 68.62522091565134], + "hydrogen": [102.60982107459839, 112.3363091161493], + "ice": [15.677517603420835, 25.9826757324292], + "metals": [87.00182248569857, 103.98650035060362], + "ore": [26.382991210852015, 36.67382056576493], + "silica": [40.49938811596245, 46.509284276064434], + "silicon": [27.15109611073988, 35.25429087623219], + "superconductors": [441.784239163852, 453.8442939007286], + "tauMetal": [488.1485379321695, 501.9467299797206], + "water": [24.807354204472574, 41.79959753916063] }, "lastPriceAdjust": { "time": 0, @@ -23931,115 +23967,115 @@ "offers": { "coolant": { "active": false, - "price": 108, + "price": 69, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1798, + "price": 1017, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 350, + "price": 278, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 371, + "price": 446, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 13, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 57, + "price": 79, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 43, + "price": 34, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 920, + "price": 501, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 67, + "price": 63, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 45, + "price": 62, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 50, + "price": 109, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 22, + "price": 16, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 67, + "price": 87, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 35, + "price": 27, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 66, + "price": 41, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 34, + "price": 31, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 272, + "price": 452, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 284, + "price": 490, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 26, + "price": 33, "quantity": 0, "type": "sell" } @@ -24136,7 +24172,7 @@ "position": { "name": "position", "angle": 0, - "coord": [25.768879528786744, -23.3459312555327], + "coord": [5.495220247229675, 0.6632942659718459], "sector": 10, "moved": false, "mask": "BigInt:2199023255552" @@ -24225,25 +24261,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [61.290795288638705, 74.32337161384903], - "drones": [1281.4148153961733, 1290.3483310165545], - "electronics": [268.2993251071831, 278.728777822722], - "engineParts": [399.5841739940614, 408.06333329000444], - "food": [17.67778668248525, 24.90589714265586], - "fuel": [29.89596682608563, 46.891442925219415], - "fuelium": [32.95494353398005, 48.439663676200844], - "gold": [558.6172896840706, 572.4320828015246], - "goldOre": [88.96605074644751, 102.42412145970172], - "hullPlates": [66.34021420313789, 85.14969812536178], - "hydrogen": [82.87619232266567, 102.7760951570861], - "ice": [25.927463717488568, 37.388976286742576], - "metals": [43.45391710841069, 50.811789645834814], - "ore": [35.6287311734161, 48.01052904497208], - "silica": [28.883927595768622, 48.260796932054134], - "silicon": [14.596733973481042, 31.06919852096963], - "superconductors": [420.5063434275679, 431.46240260130503], - "tauMetal": [397.87996789937546, 408.50270824925474], - "water": [39.079530892115386, 47.947076608393445] + "coolant": [72.91355111313449, 89.10208340657124], + "drones": [1177.6287091956078, 1189.0569542157482], + "electronics": [256.918482855154, 263.02609120447363], + "engineParts": [281.1501567703789, 294.61829944072906], + "food": [12.636831374203574, 28.751903750398952], + "fuel": [71.26071838525377, 85.83378307871443], + "fuelium": [47.809939467083936, 53.2545478193456], + "gold": [804.2205075281213, 809.4444370710047], + "goldOre": [88.2790220847009, 106.46497085753725], + "hullPlates": [23.638536283683255, 40.0962435063648], + "hydrogen": [46.172267617502634, 64.22717202698874], + "ice": [9.0859803978158, 27.01395707625464], + "metals": [41.40079268968431, 52.377906886719174], + "ore": [33.986418487353134, 51.82679522989244], + "silica": [47.55078988680991, 57.52359383858755], + "silicon": [33.67121724106792, 47.42907505424434], + "superconductors": [310.01177245870974, 325.01745999794247], + "tauMetal": [595.7884236659498, 615.2060206905408], + "water": [14.870634962690694, 31.962497039375968] }, "lastPriceAdjust": { "time": 0, @@ -24272,115 +24308,115 @@ "offers": { "coolant": { "active": false, - "price": 61, + "price": 81, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1287, + "price": 1187, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 275, + "price": 259, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 401, + "price": 283, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 24, + "price": 20, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 32, + "price": 76, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 43, + "price": 52, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 564, + "price": 808, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 101, + "price": 97, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 82, + "price": 37, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 89, + "price": 62, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 29, + "price": 24, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 48, + "price": 50, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 44, + "price": 47, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 41, + "price": 56, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 27, + "price": 33, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 420, + "price": 322, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 401, + "price": 605, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 46, + "price": 22, "quantity": 0, "type": "sell" } @@ -24470,7 +24506,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-2.673476465472143, -34.82888369341907], + "coord": [22.283073788489656, -14.604254785254598], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -24559,25 +24595,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [90.66816448658746, 109.23670846344726], - "drones": [1408.6456025846342, 1426.3429395767157], - "electronics": [401.6690277128422, 407.9996159952354], - "engineParts": [159.0039046733818, 170.04673989518062], - "food": [7.2359252182924285, 15.174869289950031], - "fuel": [55.22332905405335, 65.66865212666698], - "fuelium": [41.76568443530071, 54.31568019046981], - "gold": [576.3407107499902, 583.0531669851043], - "goldOre": [57.94152613047912, 63.873023666435174], - "hullPlates": [31.400979367418884, 39.59261647928773], - "hydrogen": [88.79704497805335, 100.35015808383227], - "ice": [10.707215623821767, 16.206575689895793], - "metals": [55.46120199447833, 67.07923409779828], - "ore": [27.76829121404007, 45.27150618493175], - "silica": [49.95118154067867, 61.546332134448875], - "silicon": [13.37328070585584, 23.22332649494567], - "superconductors": [328.2371522739504, 342.83407695718057], - "tauMetal": [566.0280001524011, 574.0872673956205], - "water": [36.90761735296562, 44.63662487162709] + "coolant": [121.94411095902252, 132.9687310471761], + "drones": [1752.2354675627137, 1765.0035564697887], + "electronics": [188.00228299986514, 194.795012994041], + "engineParts": [361.2609256977016, 380.5096729488373], + "food": [7.797910955597152, 15.380556361265917], + "fuel": [56.809801861342656, 72.65376247752998], + "fuelium": [70.78856829984502, 78.73924327095854], + "gold": [440.67732817210975, 451.97104849446384], + "goldOre": [75.74234763505615, 86.536871023544], + "hullPlates": [33.93401606073141, 46.84691299186004], + "hydrogen": [101.07700837492, 120.60279691101793], + "ice": [26.744759744786553, 42.31745814163383], + "metals": [76.19131290065114, 83.64428344450856], + "ore": [19.760467729054024, 37.037483180456206], + "silica": [40.66029158910495, 53.62888976677124], + "silicon": [35.2915242432228, 41.96598979668869], + "superconductors": [493.2548756931928, 513.0063370790795], + "tauMetal": [282.54701275993165, 292.2824828117787], + "water": [27.413731117060145, 43.023152392278185] }, "lastPriceAdjust": { "time": 0, @@ -24606,25 +24642,25 @@ "offers": { "coolant": { "active": false, - "price": 104, + "price": 124, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1425, + "price": 1753, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 404, + "price": 188, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 159, + "price": 370, "quantity": 0, "type": "sell" }, @@ -24636,25 +24672,25 @@ }, "fuel": { "active": false, - "price": 57, + "price": 58, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 46, + "price": 73, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 582, + "price": 450, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 58, + "price": 83, "quantity": 0, "type": "sell" }, @@ -24666,55 +24702,55 @@ }, "hydrogen": { "active": false, - "price": 89, + "price": 117, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 15, + "price": 28, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 62, + "price": 76, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 29, + "price": 36, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 52, + "price": 53, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 22, + "price": 36, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 342, + "price": 493, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 567, + "price": 286, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 44, + "price": 39, "quantity": 0, "type": "sell" } @@ -24811,7 +24847,7 @@ "position": { "name": "position", "angle": 0, - "coord": [10.353414024643593, 25.042335981496333], + "coord": [-20.774309252313472, 27.569435480550283], "sector": 6, "moved": false, "mask": "BigInt:2199023255552" @@ -24900,25 +24936,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [131.29227243149018, 139.7475496951082], - "drones": [1058.9074334523598, 1074.2883284154473], - "electronics": [232.57145087258044, 249.97113344622534], - "engineParts": [450.8476789924596, 465.3972519832107], - "food": [15.266595332169697, 30.301633659907026], - "fuel": [55.575236121476166, 65.27957961196492], - "fuelium": [49.64546734924362, 65.04669449839457], - "gold": [366.57978456587915, 376.8707660117382], - "goldOre": [55.34823445888432, 66.31998924623244], - "hullPlates": [56.370147875502745, 62.049492232723026], - "hydrogen": [57.22717404284714, 74.07927771295846], - "ice": [15.609815508772844, 34.90405853275574], - "metals": [51.557302239414895, 64.06609699953188], - "ore": [33.77688986641539, 52.28248844934552], - "silica": [36.052422704165465, 48.24474510563782], - "silicon": [34.32037406457273, 50.57341297028965], - "superconductors": [281.5250486864444, 290.50092957783477], - "tauMetal": [457.69254131863715, 464.13580179605805], - "water": [34.94004123148743, 51.419135575335766] + "coolant": [67.41278851696785, 78.21337898907295], + "drones": [955.5192204134621, 962.9372542296679], + "electronics": [388.63211809792574, 395.64527843124654], + "engineParts": [265.17274850751767, 285.0086920503236], + "food": [15.505905123462302, 34.86760329947188], + "fuel": [36.34890758718058, 52.9877750787454], + "fuelium": [65.00553864799383, 70.85802452340003], + "gold": [326.3855246114455, 333.9700777513202], + "goldOre": [62.94397391721883, 77.65311913075257], + "hullPlates": [24.77830014690777, 42.13852526900564], + "hydrogen": [96.95209518883831, 109.43970663088837], + "ice": [12.674938903192515, 24.413230102869562], + "metals": [59.211497263609175, 66.71579733629646], + "ore": [22.049265815972397, 36.95430930004395], + "silica": [32.49398372685248, 43.47643693501083], + "silicon": [34.97813615011348, 48.60923432449923], + "superconductors": [418.7388525208438, 436.35522954619034], + "tauMetal": [581.9497331374332, 599.0731326091664], + "water": [25.43271976677047, 31.56037513915638] }, "lastPriceAdjust": { "time": 0, @@ -24947,115 +24983,115 @@ "offers": { "coolant": { "active": false, - "price": 134, + "price": 70, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1066, + "price": 956, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 244, + "price": 389, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 451, + "price": 266, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 20, + "price": 26, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 55, + "price": 40, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 55, + "price": 69, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 375, + "price": 327, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 64, + "price": 63, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 58, + "price": 40, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 68, + "price": 103, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 26, + "price": 12, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 60, + "price": 59, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 37, + "price": 29, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 39, + "price": 42, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 40, + "price": 44, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 283, + "price": 425, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 460, + "price": 598, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 47, + "price": 27, "quantity": 0, "type": "sell" } @@ -25145,7 +25181,7 @@ "position": { "name": "position", "angle": 0, - "coord": [13.598010896406917, 23.369075314499412], + "coord": [22.247736020354154, -14.631555273693063], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -25234,25 +25270,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [56.32825454208631, 74.13655746549188], - "drones": [1287.6064695826244, 1306.2696431726447], - "electronics": [347.6502765936308, 353.70206064882126], - "engineParts": [319.4458307724473, 324.4823068885392], - "food": [16.030278257722248, 27.38099592840675], - "fuel": [60.51049174562476, 67.70781145472901], - "fuelium": [37.95924294151748, 42.992831309548], - "gold": [745.5323256918155, 752.7923372509701], - "goldOre": [95.60159242179103, 113.60061069748099], - "hullPlates": [22.767180153355277, 40.739372137116824], - "hydrogen": [38.408816389574675, 49.331797647006766], - "ice": [21.190920439317345, 35.25680986381316], - "metals": [97.80192220016056, 109.96007879768213], - "ore": [37.27488144025719, 49.772609990361474], - "silica": [39.17482459758134, 58.21156828160559], - "silicon": [23.419532234814525, 32.9003277527776], - "superconductors": [257.45069938512694, 263.5048388758944], - "tauMetal": [342.9361995114516, 355.59562153251], - "water": [27.980346864501037, 36.645818216766884] + "coolant": [144.283316287128, 162.55390198682034], + "drones": [1797.776604055458, 1806.2712232887047], + "electronics": [408.6632987927933, 415.9249490007648], + "engineParts": [426.8133116423674, 436.4356179175251], + "food": [17.32562823735129, 31.759054927634256], + "fuel": [44.16635695390489, 60.74427330827418], + "fuelium": [55.404681756629586, 64.85940951761796], + "gold": [466.64488623974444, 485.97595643713106], + "goldOre": [59.125511056237485, 78.63676470566806], + "hullPlates": [42.60905687757878, 56.84638984105989], + "hydrogen": [34.77333088736904, 52.91032048329538], + "ice": [15.661035499644864, 34.65639360400748], + "metals": [58.747407790459384, 72.81393797615306], + "ore": [38.19893135048572, 45.435935273093676], + "silica": [46.68871758008574, 64.30032232592299], + "silicon": [27.435779357923344, 34.79957535163631], + "superconductors": [531.7627860613636, 547.8285532894613], + "tauMetal": [600.3776670815985, 616.4962833728218], + "water": [39.30242803206919, 52.54474456836785] }, "lastPriceAdjust": { "time": 0, @@ -25281,115 +25317,115 @@ "offers": { "coolant": { "active": false, - "price": 65, + "price": 149, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1304, + "price": 1799, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 348, + "price": 411, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 323, + "price": 429, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 23, + "price": 30, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 66, + "price": 45, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 42, + "price": 60, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 745, + "price": 472, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 100, + "price": 77, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 35, + "price": 51, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 46, + "price": 45, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 21, + "price": 27, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 105, + "price": 60, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 39, + "price": 38, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 40, + "price": 54, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 29, + "price": 30, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 261, + "price": 536, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 350, + "price": 604, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 33, + "price": 44, "quantity": 0, "type": "sell" } @@ -25486,7 +25522,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-20.124911255220994, -8.874607679994808], + "coord": [18.254311949602315, -2.8432713299937036], "sector": 12, "moved": false, "mask": "BigInt:2199023255552" @@ -25575,25 +25611,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [80.53689328742068, 87.7166600248787], - "drones": [882.3010556000265, 899.2652611115341], - "electronics": [152.69282259898281, 162.81228916044702], - "engineParts": [377.4638673736721, 386.8441468930871], - "food": [18.796012338992455, 25.297245806469398], - "fuel": [68.91414224557599, 77.68064958585171], - "fuelium": [26.14649998533446, 45.93206948239606], - "gold": [478.59952221412425, 493.5446914478648], - "goldOre": [33.51062742209294, 48.354314861181436], - "hullPlates": [63.898215944265644, 73.82430193974325], - "hydrogen": [80.20502056776635, 96.58080010712497], - "ice": [16.700851387524434, 27.89952259851413], - "metals": [64.45972124570606, 83.39079154888694], - "ore": [41.531577551918424, 55.46425490927629], - "silica": [42.42217129083686, 53.88003357472157], - "silicon": [19.889896280698526, 39.112760532770444], - "superconductors": [531.7434877210194, 544.4195288635283], - "tauMetal": [284.0350258604908, 289.8931915235871], - "water": [17.157292511896216, 24.097909861905553] + "coolant": [100.90472513752076, 108.95060922382983], + "drones": [1060.6139392541245, 1074.5908418496585], + "electronics": [358.96314020292414, 378.4210181492533], + "engineParts": [392.25306192896176, 408.2845181711639], + "food": [18.48644106531191, 36.96479951067839], + "fuel": [76.86492824274563, 89.31088140098078], + "fuelium": [71.23951173303459, 77.81692301724675], + "gold": [673.742407558487, 689.6064207714952], + "goldOre": [73.19034296942075, 80.16443188405091], + "hullPlates": [32.60096172282479, 39.323788053315], + "hydrogen": [39.98899116637399, 54.011582678970996], + "ice": [17.060807122764494, 32.24366731227676], + "metals": [48.34319815067174, 61.89661750965594], + "ore": [35.937601013853644, 46.55431681873531], + "silica": [25.95168983166722, 35.03302835533082], + "silicon": [17.914366838489734, 28.885578684782242], + "superconductors": [288.5748863416238, 296.43005702389485], + "tauMetal": [493.54959928182313, 511.8997696182885], + "water": [16.658857298140205, 28.584450146873557] }, "lastPriceAdjust": { "time": 0, @@ -25622,115 +25658,115 @@ "offers": { "coolant": { "active": false, - "price": 86, + "price": 102, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 891, + "price": 1069, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 160, + "price": 368, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 384, + "price": 401, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 22, + "price": 28, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 70, + "price": 79, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 35, + "price": 74, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 482, + "price": 684, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 40, + "price": 75, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 68, + "price": 33, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 89, + "price": 51, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 20, + "price": 28, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 67, + "price": 59, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 45, + "price": 40, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 51, + "price": 29, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 24, + "price": 27, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 538, + "price": 295, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 285, + "price": 497, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 22, + "price": 24, "quantity": 0, "type": "sell" } @@ -25820,7 +25856,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-21.80325078251447, -23.2324218868593], + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": false, "mask": "BigInt:2199023255552" @@ -25909,25 +25945,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [108.92084218751886, 120.68887499054996], - "drones": [829.8620941291999, 835.73046751436], - "electronics": [201.1479450103937, 210.31643894294965], - "engineParts": [236.08735940970655, 249.5652653137254], - "food": [8.277477274048191, 15.763376287311484], - "fuel": [52.41865601896132, 63.78181355105882], - "fuelium": [26.611681321717693, 33.58651638972872], - "gold": [504.9776986026309, 517.3271062290737], - "goldOre": [43.12067980071829, 55.629153799442186], - "hullPlates": [55.144412372608635, 67.79008998721552], - "hydrogen": [63.70438598915581, 80.69906387382566], - "ice": [11.728374955816147, 17.442939902216047], - "metals": [90.09466918049364, 104.9034898070278], - "ore": [29.396258896453055, 38.73158066742917], - "silica": [30.743752941188006, 43.17087050153752], - "silicon": [14.168007154975435, 32.02796396728187], - "superconductors": [374.5869880998471, 386.9241838577464], - "tauMetal": [366.50617002717826, 374.32705654907943], - "water": [15.60231053359469, 33.11151777603692] + "coolant": [136.35150646065853, 155.73386617913962], + "drones": [1446.2547582920238, 1459.2075558671445], + "electronics": [386.57686058125955, 399.20342645755295], + "engineParts": [172.81920386053727, 190.0330499058088], + "food": [18.264356810210735, 23.90360378039903], + "fuel": [43.54116360036406, 52.610151565018235], + "fuelium": [65.99838758970702, 76.2044671794973], + "gold": [331.2053960630082, 342.2421492726142], + "goldOre": [68.55392996091177, 82.67114179600983], + "hullPlates": [37.72289799676729, 49.862198517037385], + "hydrogen": [60.0434811577252, 77.56861193420212], + "ice": [25.588675926792167, 31.734715452339657], + "metals": [97.91880477862634, 105.9510542527844], + "ore": [25.78987614089788, 44.158573193259556], + "silica": [48.79031428683211, 62.01829272947142], + "silicon": [26.642533556183835, 36.958013637121134], + "superconductors": [460.89890449062875, 478.9493867039086], + "tauMetal": [256.5424087140081, 270.60588243123334], + "water": [42.130842366976154, 49.80813335376628] }, "lastPriceAdjust": { "time": 0, @@ -25956,115 +25992,115 @@ "offers": { "coolant": { "active": false, - "price": 118, + "price": 142, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 833, + "price": 1448, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 205, + "price": 389, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 236, + "price": 175, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 10, + "price": 18, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 54, + "price": 47, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 32, + "price": 71, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 506, + "price": 334, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 55, + "price": 77, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 57, + "price": 45, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 73, + "price": 65, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 15, + "price": 28, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 99, + "price": 103, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 32, + "price": 40, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 30, + "price": 48, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 20, + "price": 36, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 380, + "price": 461, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 368, + "price": 263, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 25, + "price": 48, "quantity": 0, "type": "sell" } @@ -26161,7 +26197,7 @@ "position": { "name": "position", "angle": 0, - "coord": [4.609206934140848, 30.78764014669051], + "coord": [5.4659497627172655, 26.572931024808376], "sector": 32, "moved": false, "mask": "BigInt:2199023255552" @@ -26250,25 +26286,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [105.76739563414571, 119.75280914473366], - "drones": [1047.6008450384172, 1063.4037165187235], - "electronics": [383.07417595659757, 396.9069260627412], - "engineParts": [387.4808328719978, 393.7948620971523], - "food": [19.21729498805532, 24.45571955600896], - "fuel": [62.80338219564027, 80.21768776553677], - "fuelium": [60.42379370151976, 75.0713013058617], - "gold": [513.4759264140662, 522.9168510690228], - "goldOre": [93.2921466528579, 112.8647558779661], - "hullPlates": [61.83794815591398, 81.17734731919789], - "hydrogen": [39.971775254010936, 55.0717417888095], - "ice": [26.626544933654014, 41.539080158196086], - "metals": [49.83187966463254, 60.71053517037852], - "ore": [36.62131843963739, 51.56084269007337], - "silica": [48.807679587861344, 64.11068191552607], - "silicon": [30.9164885740272, 46.462868186184814], - "superconductors": [397.9581824165281, 417.6927677104086], - "tauMetal": [241.06965097882275, 247.26257856479285], - "water": [34.0511776052664, 49.62382485385001] + "coolant": [122.95046433298677, 140.09192303966967], + "drones": [1468.956038530947, 1482.3522588309781], + "electronics": [275.9942751153312, 291.82953427915055], + "engineParts": [191.23491656543368, 205.04695227849163], + "food": [8.01372646885426, 18.75565487736764], + "fuel": [31.96849543680109, 51.61626354128525], + "fuelium": [55.21584209981499, 64.40274146100246], + "gold": [495.2512015592562, 511.9133463168453], + "goldOre": [93.84766709078863, 102.75304868032967], + "hullPlates": [35.80274844046164, 46.273445659653255], + "hydrogen": [75.43346150543275, 93.88877516756602], + "ice": [9.622703515903886, 24.293714283080718], + "metals": [39.07822523848198, 54.480002428823056], + "ore": [37.903288745581094, 52.94181925723845], + "silica": [24.836653854075312, 30.678416433790233], + "silicon": [35.18336780760748, 51.66094513179212], + "superconductors": [382.7100987382199, 397.8193288763605], + "tauMetal": [498.8047899248152, 506.8921276221147], + "water": [24.58627256819284, 44.484800765212285] }, "lastPriceAdjust": { "time": 0, @@ -26297,115 +26333,115 @@ "offers": { "coolant": { "active": false, - "price": 119, + "price": 134, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1052, + "price": 1478, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 387, + "price": 284, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 389, + "price": 199, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 21, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 78, + "price": 44, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 73, + "price": 55, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 520, + "price": 503, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 110, + "price": 94, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 79, + "price": 43, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 40, + "price": 86, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 33, + "price": 11, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 54, + "price": 47, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 46, + "price": 39, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 62, + "price": 25, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 32, + "price": 46, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 416, + "price": 394, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 245, + "price": 503, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 40, + "price": 26, "quantity": 0, "type": "sell" } @@ -26495,7 +26531,7 @@ "position": { "name": "position", "angle": 0, - "coord": [22.785361301054813, 12.786252214810535], + "coord": [-22.30665763730968, 2.418522133968003], "sector": 5, "moved": false, "mask": "BigInt:2199023255552" @@ -26584,25 +26620,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [73.52053916066122, 85.86517384828963], - "drones": [631.0343903556906, 648.8939001606448], - "electronics": [303.26263132609586, 315.37786596675414], - "engineParts": [452.70634715633685, 459.01345571829563], - "food": [14.633494304605492, 33.72735862603774], - "fuel": [50.97252969738094, 60.44276048828888], - "fuelium": [73.49247740993928, 89.49561266030541], - "gold": [350.59960295948537, 363.0737545822649], - "goldOre": [45.702881806519095, 51.56878688297205], - "hullPlates": [46.413363250084245, 57.62192272455895], - "hydrogen": [100.97168118031281, 106.80911183583791], - "ice": [15.31021730460881, 29.380340721008707], - "metals": [85.62173754968518, 99.47747519143127], - "ore": [23.654420212335456, 31.617288389314076], - "silica": [18.269741914615313, 36.41377368272992], - "silicon": [22.217361186664462, 32.967949096504626], - "superconductors": [466.4145753639473, 475.59012902274264], - "tauMetal": [478.59825523748077, 494.4083149684019], - "water": [29.22924788241214, 39.65360322157653] + "coolant": [143.8623355024634, 151.98167825092676], + "drones": [1680.246434699162, 1685.897575565245], + "electronics": [161.50828372425565, 173.6357848929783], + "engineParts": [178.89309842190892, 188.13399209126905], + "food": [10.447851948265832, 17.231254681379447], + "fuel": [28.824932114936104, 33.92561739049724], + "fuelium": [73.78251001109851, 80.72191494827813], + "gold": [466.08540876243427, 483.19342002519534], + "goldOre": [61.741909798189965, 72.70738613334757], + "hullPlates": [51.89268031357959, 59.961599662084126], + "hydrogen": [99.07861027248346, 118.90014456503387], + "ice": [11.2041116230365, 18.857486136840446], + "metals": [49.019601461727646, 54.18578685045166], + "ore": [27.98165710229346, 36.92292483857099], + "silica": [36.48332302084792, 53.49367041107492], + "silicon": [33.243297977682836, 51.19239844710039], + "superconductors": [517.8542811226632, 536.6728186542571], + "tauMetal": [549.6965622189356, 567.3118083110903], + "water": [29.4974348119541, 42.355359466102655] }, "lastPriceAdjust": { "time": 0, @@ -26631,115 +26667,115 @@ "offers": { "coolant": { "active": false, - "price": 77, + "price": 148, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 646, + "price": 1684, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 306, + "price": 172, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 458, + "price": 182, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 18, + "price": 16, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 53, + "price": 33, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 83, + "price": 75, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 353, + "price": 469, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 49, + "price": 69, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 54, + "price": 53, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 103, + "price": 116, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 20, + "price": 14, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 94, + "price": 53, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 29, + "price": 36, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 24, + "price": 36, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 27, + "price": 47, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 475, + "price": 524, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 487, + "price": 563, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 35, + "price": 32, "quantity": 0, "type": "sell" } @@ -26836,7 +26872,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-23.68885454549083, -14.487893318821692], + "coord": [-2.4475210126103355, -4.203240681332327], "sector": 24, "moved": false, "mask": "BigInt:2199023255552" @@ -26925,25 +26961,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [111.8878145577381, 119.6978084288267], - "drones": [1549.6346090575175, 1568.5395830688808], - "electronics": [412.1443816551814, 430.9928495167508], - "engineParts": [171.3764055735726, 176.65422972929045], - "food": [20.75309246042291, 40.407630020740996], - "fuel": [48.283381535803066, 63.63186264470701], - "fuelium": [51.725710139651184, 62.42596187367762], - "gold": [792.4148001477381, 808.00675866561], - "goldOre": [57.68781158669016, 72.06116701968314], - "hullPlates": [28.462703083720996, 45.946613803097506], - "hydrogen": [82.67476754597575, 101.0891718325398], - "ice": [17.087969251628373, 34.213816687985414], - "metals": [70.72990058926757, 80.59183552793223], - "ore": [31.184602967427868, 48.04609000544326], - "silica": [37.47742047170061, 49.63930214612925], - "silicon": [32.66728547205395, 41.92662076175283], - "superconductors": [513.5688800056198, 518.970915437199], - "tauMetal": [370.4135261517662, 381.65487162748383], - "water": [17.929592677607072, 36.079525387953154] + "coolant": [53.55580253149326, 59.34389965539246], + "drones": [1601.1602151760449, 1611.4914924572124], + "electronics": [378.63120937776836, 384.40343156278493], + "engineParts": [269.31869951164066, 288.8858249896041], + "food": [20.07299743313996, 27.02747586021899], + "fuel": [29.451745931049224, 41.31637821689514], + "fuelium": [58.951878175665065, 72.6083578830254], + "gold": [518.6457295917186, 536.130890487864], + "goldOre": [93.48792562273428, 103.55709516521804], + "hullPlates": [62.370026223764036, 82.27242737849076], + "hydrogen": [77.48839395905097, 95.11438272703055], + "ice": [25.966140260281797, 33.72654804695502], + "metals": [50.39034553641158, 57.20883367713903], + "ore": [25.723868324208688, 33.66609427192086], + "silica": [35.009503749099125, 53.47772294080559], + "silicon": [30.75733886551255, 41.75267635262085], + "superconductors": [204.18214934005425, 217.37772518733283], + "tauMetal": [361.87459230880256, 367.5374901983458], + "water": [26.751165816212588, 42.118798372687095] }, "lastPriceAdjust": { "time": 0, @@ -26972,115 +27008,115 @@ "offers": { "coolant": { "active": false, - "price": 118, + "price": 53, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1562, + "price": 1607, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 422, + "price": 379, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 173, + "price": 270, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 21, + "price": 22, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 59, + "price": 41, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 58, + "price": 70, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 793, + "price": 522, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 69, + "price": 95, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 32, + "price": 79, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 87, + "price": 83, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 18, + "price": 25, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 79, + "price": 50, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 40, + "price": 27, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 45, + "price": 37, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 34, + "price": 40, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 515, + "price": 204, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 370, + "price": 365, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 18, + "price": 36, "quantity": 0, "type": "sell" } @@ -27170,7 +27206,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-21.656234216013573, 2.808235548053046], + "coord": [-22.36585360975435, 2.3793892288483787], "sector": 5, "moved": false, "mask": "BigInt:2199023255552" @@ -27259,25 +27295,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [137.77328275067867, 149.07692664827718], - "drones": [635.9656581150979, 646.8289351714558], - "electronics": [450.99199738572236, 461.72642069694894], - "engineParts": [229.87160903199708, 237.15060157946732], - "food": [20.857584025832498, 31.9391187234622], - "fuel": [44.155479036936, 55.63201584036162], - "fuelium": [31.0976600798419, 44.36904116176774], - "gold": [490.20951533978706, 509.44274148250184], - "goldOre": [49.33549696800879, 68.92904791040243], - "hullPlates": [63.346609803618726, 73.68807773048435], - "hydrogen": [94.30985152867723, 99.92544325814583], - "ice": [15.818601073352616, 21.458602690594002], - "metals": [40.79959954516447, 52.27994170557984], - "ore": [14.536886799381765, 23.29538774698477], - "silica": [36.85757432194248, 54.279134728407655], - "silicon": [34.91305755849635, 41.50326536281027], - "superconductors": [375.5490135044013, 382.7386032121524], - "tauMetal": [331.19948263008774, 342.1120990552901], - "water": [17.386886180754658, 29.858083242023582] + "coolant": [80.99776787885418, 97.66069149986906], + "drones": [1060.5980656153954, 1067.7831275635126], + "electronics": [353.5935368881878, 368.03580603086624], + "engineParts": [463.7590417998204, 479.8043405985675], + "food": [17.86440869435553, 32.24355176130045], + "fuel": [57.81513092872885, 64.1124266207423], + "fuelium": [50.91759975142592, 60.318329129706186], + "gold": [483.36415095421216, 491.63112606484975], + "goldOre": [55.06868585737432, 66.46594162226503], + "hullPlates": [42.205969937815965, 58.579133315932594], + "hydrogen": [47.3800831102178, 62.92349056893409], + "ice": [15.726642911632965, 35.2514462335455], + "metals": [36.94385987952142, 48.308773278848015], + "ore": [34.65200888103409, 39.702584218538156], + "silica": [33.02476091573652, 40.06660074696201], + "silicon": [34.12954797532043, 51.15027685992696], + "superconductors": [286.1011945740016, 305.4663783970052], + "tauMetal": [376.361913979572, 382.0495288667158], + "water": [23.854711234443215, 43.71811781853903] }, "lastPriceAdjust": { "time": 0, @@ -27306,115 +27342,115 @@ "offers": { "coolant": { "active": false, - "price": 148, + "price": 93, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 637, + "price": 1063, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 457, + "price": 366, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 233, + "price": 469, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 27, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 52, + "price": 61, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 44, + "price": 51, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 493, + "price": 491, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 68, + "price": 61, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 70, + "price": 46, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 94, + "price": 52, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 15, + "price": 19, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 51, + "price": 41, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 18, + "price": 37, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 46, + "price": 38, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 36, + "price": 38, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 381, + "price": 290, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 334, + "price": 381, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 24, + "price": 31, "quantity": 0, "type": "sell" } @@ -27512,7 +27548,7 @@ "position": { "name": "position", "angle": 0, - "coord": [18.74476500783307, 8.339100949890883], + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": false, "mask": "BigInt:2199023255552" @@ -27601,25 +27637,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [66.34044567441421, 75.91270073073255], - "drones": [742.793539341016, 748.6391409041105], - "electronics": [434.28351841122515, 452.1375829709164], - "engineParts": [245.86032165169496, 263.45009150756965], - "food": [8.275282736569107, 17.292147324512545], - "fuel": [30.38746421405697, 45.97286830679377], - "fuelium": [43.74066233501883, 54.27894770077552], - "gold": [918.6886654087527, 926.4780759186535], - "goldOre": [94.88810941274933, 114.09680706008692], - "hullPlates": [49.72473834344515, 67.33778194583779], - "hydrogen": [37.705349747557264, 45.85155352521345], - "ice": [14.780760180890729, 26.091206644751132], - "metals": [47.03093783738184, 58.30600970150488], - "ore": [16.18824300402076, 23.98445824831301], - "silica": [23.489732885270296, 33.40577621546342], - "silicon": [21.462633743163682, 26.927041725232115], - "superconductors": [400.89976311019234, 408.23294902940097], - "tauMetal": [460.7864509847886, 473.8804638781609], - "water": [30.044228301045177, 37.6871620649246] + "coolant": [100.01162757718402, 110.4600258917807], + "drones": [1564.8812663412223, 1579.413916665887], + "electronics": [435.4862718117714, 452.5905629860324], + "engineParts": [205.6359720496101, 213.21348091604656], + "food": [11.829089530165245, 29.677824701982953], + "fuel": [75.4389661234863, 93.19896620781218], + "fuelium": [61.223368048069574, 71.62913104572738], + "gold": [623.4862194773416, 629.0347848999061], + "goldOre": [68.26560585767515, 80.69006393590942], + "hullPlates": [66.0278006115945, 81.10424444912657], + "hydrogen": [67.85712935313235, 74.42310879326477], + "ice": [20.07248937654841, 27.058158837153208], + "metals": [66.00953434894971, 76.84654843099317], + "ore": [30.839642739385624, 41.628002611951906], + "silica": [32.09296568678244, 45.444221594063336], + "silicon": [26.102417991523282, 40.143421481808474], + "superconductors": [197.6887337774013, 206.16791624979294], + "tauMetal": [542.0694299296658, 553.0344769876125], + "water": [33.68315607960416, 47.69824444873461] }, "lastPriceAdjust": { "time": 0, @@ -27648,115 +27684,115 @@ "offers": { "coolant": { "active": false, - "price": 74, + "price": 102, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 747, + "price": 1570, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 439, + "price": 451, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 262, + "price": 212, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 11, + "price": 23, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 41, + "price": 78, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 52, + "price": 68, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 922, + "price": 627, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 111, + "price": 76, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 53, + "price": 78, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 44, + "price": 72, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 24, + "price": 25, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 58, + "price": 74, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 17, + "price": 40, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 28, + "price": 35, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 26, + "price": 32, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 402, + "price": 200, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 468, + "price": 545, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 30, + "price": 41, "quantity": 0, "type": "sell" } @@ -27847,7 +27883,7 @@ "position": { "name": "position", "angle": 0, - "coord": [10.62462720544086, -31.004330462505408], + "coord": [-7.295537432925317, 21.286743592460056], "sector": 28, "moved": false, "mask": "BigInt:2199023255552" @@ -27936,25 +27972,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [64.23883143767304, 69.49174853145522], - "drones": [870.9013241661582, 876.8549994435434], - "electronics": [193.6027981531663, 208.716461040726], - "engineParts": [305.1552127441877, 324.21962016799495], - "food": [15.029773636622473, 30.553084453995886], - "fuel": [51.11922454213372, 58.29986506813399], - "fuelium": [47.659403586611745, 65.64836110806262], - "gold": [529.0840654681615, 536.1475083072688], - "goldOre": [86.51641591949632, 100.43841579593146], - "hullPlates": [57.20272694318291, 71.35152207238042], - "hydrogen": [82.30861876072751, 97.42121003623441], - "ice": [9.52409193279192, 26.147061396188846], - "metals": [43.695533700572376, 58.18093206881345], - "ore": [40.66644823326251, 58.55492680406135], - "silica": [35.164728976214164, 52.3083550821328], - "silicon": [30.77293722260797, 46.06900295169374], - "superconductors": [248.1039699579391, 258.1587134644059], - "tauMetal": [451.3037104842399, 461.28506330375893], - "water": [35.30586584858891, 46.19852031232844] + "coolant": [104.17026905834635, 114.32625849436181], + "drones": [1278.1373061247882, 1293.6880602129354], + "electronics": [358.4298982910725, 367.3569105259945], + "engineParts": [396.9788942681799, 412.3581075704926], + "food": [11.603993347684185, 27.76069009958091], + "fuel": [40.427771164603314, 59.29591575985138], + "fuelium": [53.0200262311961, 59.59483414635752], + "gold": [704.0277647831874, 718.5334066538655], + "goldOre": [42.13843863800088, 51.960076686700724], + "hullPlates": [58.21875148483192, 65.79081725250941], + "hydrogen": [103.80834094841622, 114.2384849203973], + "ice": [20.233518787855473, 32.04758185189135], + "metals": [47.74668152616044, 60.090798214309046], + "ore": [23.18298055758187, 41.94430117570521], + "silica": [47.83943361099298, 66.34571058007012], + "silicon": [34.80544281081069, 51.5443780344819], + "superconductors": [514.5624886130911, 534.0369812391054], + "tauMetal": [363.6466547285979, 374.32642971151904], + "water": [28.292475221321368, 36.21431155049953] }, "lastPriceAdjust": { "time": 0, @@ -27983,115 +28019,115 @@ "offers": { "coolant": { "active": false, - "price": 67, + "price": 107, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 871, + "price": 1282, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 208, + "price": 359, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 318, + "price": 403, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 29, + "price": 14, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 58, + "price": 41, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 65, + "price": 59, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 535, + "price": 704, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 92, + "price": 49, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 66, + "price": 59, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 90, + "price": 108, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 11, + "price": 23, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 51, + "price": 57, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 52, + "price": 38, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 45, + "price": 53, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 41, + "price": 51, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 253, + "price": 533, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 455, + "price": 371, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 41, + "price": 36, "quantity": 0, "type": "sell" } @@ -28188,7 +28224,7 @@ "position": { "name": "position", "angle": 0, - "coord": [9.782995730035882, 19.723922175234165], + "coord": [2.096728698445146, 5.576009665449173], "sector": 29, "moved": false, "mask": "BigInt:2199023255552" @@ -28277,25 +28313,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [99.8407057619641, 109.45180968123907], - "drones": [1073.5448113488776, 1080.4555243074403], - "electronics": [314.0177702057448, 323.89912244399716], - "engineParts": [300.10875063373345, 312.5735512944589], - "food": [7.347783981703729, 19.255358419190564], - "fuel": [29.480626588913324, 44.24709064761578], - "fuelium": [58.429168660951746, 74.99920433602477], - "gold": [756.9134513138556, 767.1412629647164], - "goldOre": [67.17966470862044, 79.0439351907865], - "hullPlates": [39.42745030472425, 56.8990714724361], - "hydrogen": [47.50815938729462, 63.49220992789126], - "ice": [17.577977485216998, 32.567720452443425], - "metals": [67.21407122151587, 77.02020098695401], - "ore": [34.12689953303996, 46.54994259370988], - "silica": [50.41504780410167, 70.25162027066762], - "silicon": [24.773563209317267, 43.29079618879568], - "superconductors": [276.30283720192926, 287.2121268533324], - "tauMetal": [569.2185559967685, 585.272496088455], - "water": [21.699052788353516, 28.856262650623147] + "coolant": [129.5969987243829, 148.23519993584713], + "drones": [931.1654770287209, 943.4321957173917], + "electronics": [204.9897336242867, 216.21311256031714], + "engineParts": [467.3232386740693, 480.91030536949694], + "food": [11.321381894019808, 26.173433811528948], + "fuel": [25.222179145642382, 32.68517495442123], + "fuelium": [36.18235679811418, 53.08555086851241], + "gold": [454.54074509001464, 465.2696010362104], + "goldOre": [94.58525568509779, 100.8333928170554], + "hullPlates": [50.811015641227854, 65.59933799342674], + "hydrogen": [54.72611838442611, 66.85000267807922], + "ice": [18.658724536241454, 30.58883857764613], + "metals": [67.67151395555155, 74.49499644575336], + "ore": [38.93996797624558, 56.0769906395234], + "silica": [41.18190052500483, 49.93733715569213], + "silicon": [18.709054189382968, 28.719426827398934], + "superconductors": [556.7006927872804, 570.8062556861504], + "tauMetal": [226.80801567422276, 236.2986643805153], + "water": [16.578655893806808, 33.21063478030973] }, "lastPriceAdjust": { "time": 0, @@ -28324,115 +28360,115 @@ "offers": { "coolant": { "active": false, - "price": 105, + "price": 131, "quantity": 0, "type": "sell" }, "drones": { "active": false, - "price": 1075, + "price": 931, "quantity": 0, "type": "sell" }, "electronics": { "active": false, - "price": 316, + "price": 209, "quantity": 0, "type": "sell" }, "engineParts": { "active": false, - "price": 301, + "price": 474, "quantity": 0, "type": "sell" }, "food": { "active": false, - "price": 13, + "price": 17, "quantity": 0, "type": "sell" }, "fuel": { "active": false, - "price": 41, + "price": 25, "quantity": 0, "type": "sell" }, "fuelium": { "active": false, - "price": 72, + "price": 44, "quantity": 0, "type": "sell" }, "gold": { "active": false, - "price": 760, + "price": 457, "quantity": 0, "type": "sell" }, "goldOre": { "active": false, - "price": 74, + "price": 96, "quantity": 0, "type": "sell" }, "hullPlates": { "active": false, - "price": 45, + "price": 65, "quantity": 0, "type": "sell" }, "hydrogen": { "active": false, - "price": 61, + "price": 62, "quantity": 0, "type": "sell" }, "ice": { "active": false, - "price": 17, + "price": 26, "quantity": 0, "type": "sell" }, "metals": { "active": false, - "price": 72, + "price": 74, "quantity": 0, "type": "sell" }, "ore": { "active": false, - "price": 46, + "price": 40, "quantity": 0, "type": "sell" }, "silica": { "active": false, - "price": 59, + "price": 42, "quantity": 0, "type": "sell" }, "silicon": { "active": false, - "price": 28, + "price": 18, "quantity": 0, "type": "sell" }, "superconductors": { "active": false, - "price": 276, + "price": 564, "quantity": 0, "type": "sell" }, "tauMetal": { "active": false, - "price": 582, + "price": 227, "quantity": 0, "type": "sell" }, "water": { "active": false, - "price": 27, + "price": 18, "quantity": 0, "type": "sell" } @@ -28497,20 +28533,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 3191.7979615208587, + "density": 3487.2312971638985, "size": 6, "type": "goldOre", - "amount": 34471.41798442528, + "amount": 43939.114344265116, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3160, 3160, 6473, 6473], + "entities": [2752, 2752], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [9.56675321200909, 12.850197737254176], + "coord": [5.093192179712489, 25.741534072304283], "angle": 0, "sector": 1, "moved": false, @@ -28533,20 +28569,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 3751.238896876309, + "density": 2596.5536299256573, "size": 7, "type": "goldOre", - "amount": 45952.67648673478, + "amount": 127231.12786635722, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [10091, 10091], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [18.742756733429818, -14.473050470247681], + "coord": [2.5043946162120028, 3.0924466206471566], "angle": 0, "sector": 2, "moved": false, @@ -28569,20 +28605,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 1217.3046353702744, + "density": 2237.0652431662866, "size": 17, "type": "ice", - "amount": 123130.36386770324, + "amount": 32325.59276375284, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3804, 3804], + "entities": [3802, 3802, 7043, 7043], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [4.199018179233415, 19.170265137197493], + "coord": [-9.174929418258492, -2.4904129720597505], "angle": 0, "sector": 2, "moved": false, @@ -28605,20 +28641,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 6754.87695770117, + "density": 6880.492144833296, "size": 15, "type": "ore", - "amount": 455954.1946448289, + "amount": 1548110.7325874916, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3493, 3493, 7866, 7866], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-2.8729478955440477, 8.948969050997778], + "coord": [1.6988722424161984, 5.6393206961089115], "angle": 0, "sector": 3, "moved": false, @@ -28641,20 +28677,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 1915.4397744810644, + "density": 1943.6099218283475, "size": 13, "type": "silica", - "amount": 97112.79656618997, + "amount": 328470.07678899076, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3111, 3111, 6458, 6458], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-18.501200388934627, 20.826152580410838], + "coord": [-2.4181187423575725, -1.4882280964760066], "angle": 0, "sector": 3, "moved": false, @@ -28677,20 +28713,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 2533.5315343956604, + "density": 3798.5734893554463, "size": 14, "type": "fuelium", - "amount": 173800.2632595423, + "amount": 744520.4039136674, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3968, 3968], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-11.310669933284203, 1.2186380401342456], + "coord": [26.257344758557622, 9.091566144097028], "angle": 0, "sector": 4, "moved": false, @@ -28713,20 +28749,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 4844.820870600627, + "density": 4246.1631843820305, "size": 5, "type": "goldOre", - "amount": 36336.15652950471, + "amount": 106154.07960955077, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6865, 6865], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [20.46409020378747, 10.79419909964736], + "coord": [2.9492895714896528, 15.239820082115934], "angle": 0, "sector": 4, "moved": false, @@ -28749,20 +28785,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 7547.9892247559565, + "density": 3219.6368757849764, "size": 20, "type": "ore", - "amount": 754798.9224755956, + "amount": 386356.42509419715, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [10455, 10455], + "entities": [2371, 2371, 3847, 3847], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-3.7174905962828646, -9.354089788834631], + "coord": [0.8543176927169597, -0.2798190309968654], "angle": 0, "sector": 5, "moved": false, @@ -28785,20 +28821,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 1883.3875989857797, + "density": 2837.4119202013076, "size": 13, "type": "silica", - "amount": 95487.75126857903, + "amount": 479522.61451402097, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6903, 6903], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [25.507749837797597, 12.654129300215304], + "coord": [-2.8736617661998394, 7.196703621297441], "angle": 0, "sector": 5, "moved": false, @@ -28821,20 +28857,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 3347.3165842162334, + "density": 2310.0492241746565, "size": 14, "type": "fuelium", - "amount": 229625.91767723364, + "amount": 158469.37677838144, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [5825, 5825], + "entities": [2498, 2498], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-0.47089743400682355, 8.684280216693631], + "coord": [-0.7678960630407703, -7.90112149595988], "angle": 0, "sector": 6, "moved": false, @@ -28857,20 +28893,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 1436.0126668071457, + "density": 2753.238069052064, "size": 8, "type": "ice", - "amount": 27571.443202697203, + "amount": 176207.2364193321, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [4154, 4154, 6722, 6722], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-24.736197581631487, -2.858304070550822], + "coord": [9.126430771257002, -27.333827264052072], "angle": 0, "sector": 6, "moved": false, @@ -28893,20 +28929,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 3696.7136150405977, + "density": 2834.596885276711, "size": 10, "type": "ore", - "amount": 129384.97652642091, + "amount": 283459.6885276711, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [4725, 4725], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [16.200368079149115, -20.177068737704808], + "coord": [2.5801279015159566, -16.450081016474282], "angle": 0, "sector": 7, "moved": false, @@ -28929,20 +28965,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 1516.6411275889552, + "density": 1959.866622278253, "size": 10, "type": "silica", - "amount": 53082.43946561343, + "amount": 195986.66222782532, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [4337, 4337], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-1.652002143527193, -2.9452639191163272], + "coord": [-0.5422194781257453, -0.4079841805568673], "angle": 0, "sector": 7, "moved": false, @@ -28965,20 +29001,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 1132.0134207213016, + "density": 944.1246016767501, "size": 18, "type": "ice", - "amount": 110031.70449411053, + "amount": 305896.370943267, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3340, 3340, 6463, 6463], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [7.940500603779756, 5.267858557200282], + "coord": [4.984554564994351, 3.118262586372488], "angle": 0, "sector": 8, "moved": false, @@ -29001,20 +29037,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 2925.448273150574, + "density": 4083.384635864887, "size": 8, "type": "goldOre", - "amount": 56168.60684449102, + "amount": 261336.61669535277, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [2870, 2870, 6459, 6459], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [3.712318366687085, -9.522176926065857], + "coord": [8.634267109358658, 5.740043588221862], "angle": 0, "sector": 9, "moved": false, @@ -29037,20 +29073,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 6176.110339271013, + "density": 2666.5998077290014, "size": 10, "type": "ore", - "amount": 185283.3101781304, + "amount": 266659.98077290016, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [7277, 7277], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-6.3482825320760154, -4.653044440262827], + "coord": [-4.037004483641172, -1.7753746189169377], "angle": 0, "sector": 11, "moved": false, @@ -29073,20 +29109,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 2983.052468263196, + "density": 1702.9522923351237, "size": 18, "type": "ice", - "amount": 289952.69991518266, + "amount": 165526.96281497407, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3067, 3067, 6468, 6468], + "entities": [4172, 4172], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [10.55449029507625, -11.322968024306059], + "coord": [6.140834249480141, 7.9106213541828945], "angle": 0, "sector": 13, "moved": false, @@ -29109,20 +29145,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 2725.7705221589367, + "density": 4597.035104993091, "size": 14, "type": "fuelium", - "amount": 186987.8578201031, + "amount": 315356.6082025261, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3802, 3802], + "entities": [2786, 2786], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [11.201396222139216, -15.796225428058268], + "coord": [22.400213180429432, 14.606199184553581], "angle": 0, "sector": 14, "moved": false, @@ -29145,20 +29181,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 3046.7611540153166, + "density": 3140.8981292377307, "size": 16, "type": "ore", - "amount": 272989.79939977237, + "amount": 241220.9763254577, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3718, 3718], + "entities": [2912, 2912, 3846, 3846], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [10.539232145206341, -9.93835331523541], + "coord": [6.830444607888187, 20.172016099856418], "angle": 0, "sector": 14, "moved": false, @@ -29181,20 +29217,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 2373.2985287838515, + "density": 1775.4617469348268, "size": 12, "type": "silica", - "amount": 119614.24585070615, + "amount": 89483.27204551527, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [4612, 4612], + "entities": [2453, 2453], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [22.873821973875252, 18.264484705936255], + "coord": [-1.565690431829751, -2.753957272469673], "angle": 0, "sector": 14, "moved": false, @@ -29217,20 +29253,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 5611.758272910806, + "density": 5391.196056982408, "size": 8, "type": "fuelium", - "amount": 125703.38531320206, + "amount": 120762.79167640593, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [4429, 4429], + "entities": [2750, 2750], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [12.31363267373987, 9.929147935849219], + "coord": [-10.99540572930155, -1.5561091758200236], "angle": 0, "sector": 15, "moved": false, @@ -29253,20 +29289,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 3087.2742775744073, + "density": 2811.1599096140912, "size": 12, "type": "ore", - "amount": 133370.2487912144, + "amount": 404807.02698442916, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6712, 6712], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [4.035758906065901, 29.06296142555955], + "coord": [27.448748387076343, -0.6837127480261261], "angle": 0, "sector": 18, "moved": false, @@ -29289,20 +29325,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 1350.7773989109787, + "density": 2669.6111672675374, "size": 5, "type": "silica", - "amount": 11819.302240471065, + "amount": 66740.27918168844, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6174, 6174], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [13.203905139355358, 21.733098927391328], + "coord": [-1.7324496765245279, 1.130807330069779], "angle": 0, "sector": 18, "moved": false, @@ -29325,20 +29361,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 3441.8403188636444, + "density": 3766.1432052898776, "size": 12, "type": "fuelium", - "amount": 495625.0059163648, + "amount": 189813.61754660984, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [], + "entities": [2913, 2913], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [4.329485292472805, 1.5898968055691276], + "coord": [-5.586859651642911, 21.381184585749185], "angle": 0, "sector": 19, "moved": false, @@ -29361,20 +29397,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 4071.819502557104, + "density": 5610.4325315555, "size": 14, "type": "ore", - "amount": 279326.81787541736, + "amount": 1099644.7761848778, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6041, 6041], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-11.296590307959052, 12.5199683932871], + "coord": [-7.022480886099142, 14.351158421815315], "angle": 0, "sector": 19, "moved": false, @@ -29397,20 +29433,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 4574.300087956903, + "density": 5206.421181884827, "size": 8, "type": "goldOre", - "amount": 87826.56168877253, + "amount": 333210.95564062893, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [7073, 7073], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-12.182365911474553, 28.03043468113161], + "coord": [-18.950041550231237, 11.354966796848501], "angle": 0, "sector": 20, "moved": false, @@ -29433,20 +29469,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 1781.0964913635687, + "density": 2123.458637833771, "size": 8, "type": "ice", - "amount": 28497.543861817103, + "amount": 135901.35282136133, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [7403, 7403, 9297, 9297], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-3.7026899442589913, 4.49581140167212], + "coord": [18.989484607314076, -7.5954028658859025], "angle": 0, "sector": 20, "moved": false, @@ -29469,20 +29505,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 1986.801883622731, + "density": 2813.5269509490467, "size": 10, "type": "fuelium", - "amount": 59604.056508681926, + "amount": 281352.6950949047, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6319, 6319, 7298, 7298], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [2.0061946497181773, -7.865171022328515], + "coord": [-1.2502802078626976, 19.550199710153056], "angle": 0, "sector": 21, "moved": false, @@ -29505,20 +29541,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 3755.255247823154, + "density": 3024.517299693456, "size": 7, "type": "goldOre", - "amount": 64402.62750016709, + "amount": 148201.34768497935, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6378, 6378], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-17.824310377439218, 29.248086647801436], + "coord": [10.868199415567775, -28.24320700110048], "angle": 0, "sector": 21, "moved": false, @@ -29541,20 +29577,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 2224.1907362117045, + "density": 2012.1078316534897, "size": 4, "type": "ice", - "amount": 10676.11553381618, + "amount": 9658.11759193675, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6885, 6885], + "entities": [2370, 2370], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [24.29995553601685, -13.77991655657901], + "coord": [-16.198882154226098, -5.698642426649271], "angle": 0, "sector": 21, "moved": false, @@ -29577,20 +29613,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 7383.0992432305975, + "density": 3122.028587708612, "size": 12, "type": "ore", - "amount": 372108.20185882214, + "amount": 157350.24082051407, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6020, 6020], + "entities": [2753, 2753], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [1.7027197960788156, -9.808477943049645], + "coord": [0.4262014240081722, -2.5619141590035195], "angle": 0, "sector": 21, "moved": false, @@ -29613,10 +29649,10 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 2525.4916144493855, + "density": 1416.871077835225, "size": 8, "type": "silica", - "amount": 161631.46332476067, + "amount": 90679.7489814544, "mask": "BigInt:2" }, "children": { @@ -29626,7 +29662,7 @@ }, "position": { "name": "position", - "coord": [-12.633927968902485, -30.328925991376558], + "coord": [27.466818421004934, 10.151279961430104], "angle": 0, "sector": 21, "moved": false, @@ -29649,20 +29685,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 4231.343736854719, + "density": 5766.858157751109, "size": 13, "type": "fuelium", - "amount": 214529.12745853426, + "amount": 974599.0286599373, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6970, 6970], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-3.9783640697856444, -26.9719209388113], + "coord": [18.752314038239508, 8.815914419403104], "angle": 0, "sector": 24, "moved": false, @@ -29685,20 +29721,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 4620.994041144363, + "density": 2799.1751030618834, "size": 14, "type": "goldOre", - "amount": 226428.7080160738, + "amount": 548638.3202001292, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [11138, 11138], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-18.412198951232927, 2.3687154246211977], + "coord": [-1.9645872581655954, -3.343978139741763], "angle": 0, "sector": 24, "moved": false, @@ -29721,20 +29757,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 4278.09782293929, + "density": 3699.723246585774, "size": 10, "type": "fuelium", - "amount": 149733.42380287516, + "amount": 369972.32465857745, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6102, 6102], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-4.363009337855597, 3.2088704000381743], + "coord": [-3.661854710875599, -0.8430859988773173], "angle": 0, "sector": 25, "moved": false, @@ -29757,20 +29793,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 2459.0557583422938, + "density": 1314.120994145245, "size": 18, "type": "ice", - "amount": 239020.219710871, + "amount": 149021.32073607077, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [7337, 7337], + "entities": [3005, 3005], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [10.081970034051722, -11.512156145273869], + "coord": [10.571565496507368, -12.094688880558632], "angle": 0, "sector": 27, "moved": false, @@ -29793,10 +29829,10 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 3073.758044523901, + "density": 4198.961827643283, "size": 14, "type": "ore", - "amount": 602456.5767266846, + "amount": 822996.5182180834, "mask": "BigInt:2" }, "children": { @@ -29806,7 +29842,7 @@ }, "position": { "name": "position", - "coord": [12.233188586205483, -12.715102482060432], + "coord": [-7.933292423453671, -10.800566701933008], "angle": 0, "sector": 27, "moved": false, @@ -29829,20 +29865,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 400, "min": 200 }, - "density": 1536.423276616354, + "density": 2647.628415151893, "size": 12, "type": "fuelium", - "amount": 66373.48554982651, + "amount": 381258.4917818726, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6451, 6451], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-4.538012364484249, -8.9468238224987], + "coord": [-24.548411126408844, -0.7043714345348477], "angle": 0, "sector": 29, "moved": false, @@ -29865,20 +29901,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 110, "min": 50 }, - "density": 3798.942665962629, + "density": 2841.268939411264, "size": 6, "type": "goldOre", - "amount": 47866.67759112912, + "amount": 102285.6818188055, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [4111, 4111], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [0.8830635129202096, 0.35686748572353577], + "coord": [4.643603350722846, 34.098050211935245], "angle": 0, "sector": 29, "moved": false, @@ -29901,20 +29937,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 1903.4858233720092, + "density": 1544.8941037543996, "size": 9, "type": "silica", - "amount": 46254.70550793983, + "amount": 125136.42240410637, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [3561, 3561, 6474, 6474], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-14.065442877029279, -26.717592722019766], + "coord": [21.79571269319984, -9.874859430033483], "angle": 0, "sector": 29, "moved": false, @@ -29937,20 +29973,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 2302.919538013918, + "density": 1374.8678286331024, "size": 4, "type": "ice", - "amount": 12896.349412877942, + "amount": 21997.885258129638, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [4614, 4614], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [-0.5321695388793543, -2.978301075721411], + "coord": [22.071564132319974, 0.6076046252647821], "angle": 0, "sector": 30, "moved": false, @@ -29973,20 +30009,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 2165.7666533660454, + "density": 1017.0800609655299, "size": 4, "type": "ice", - "amount": 1732.6133226928364, + "amount": 16273.280975448479, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6483, 6483, 22608, 22608], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [3.617835376066644, -11.385311712305464], + "coord": [8.410333094020862, 9.927023208253505], "angle": 0, "sector": 31, "moved": false, @@ -30009,20 +30045,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 900, "min": 300 }, - "density": 6405.23005790834, + "density": 6195.303651141771, "size": 9, "type": "ore", - "amount": 155647.09040717268, + "amount": 501819.59574248345, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [6482, 6482], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [30.450119230105514, 11.846333632539823], + "coord": [16.03403593619828, 26.229156783392153], "angle": 0, "sector": 31, "moved": false, @@ -30045,20 +30081,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 200, "min": 70 }, - "density": 1847.1798570341684, + "density": 2287.497673101321, "size": 8, "type": "silica", - "amount": 41376.82879756537, + "amount": 146399.85107848456, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [5958, 5958], + "entities": [], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [7.367781218991774, 5.749319635211229], + "coord": [0.3163352927731177, 1.652831659818919], "angle": 0, "sector": 31, "moved": false, @@ -30081,20 +30117,20 @@ "asteroidSpawn": { "name": "asteroidSpawn", "asteroidResources": { "max": 270, "min": 55 }, - "density": 1475.105419083095, + "density": 1586.6269559996229, "size": 3, "type": "ice", - "amount": 3318.9871929369638, + "amount": 4997.874911398812, "mask": "BigInt:2" }, "children": { "name": "children", - "entities": [5892, 5892, 11591, 11591], + "entities": [2749, 2749], "mask": "BigInt:128" }, "position": { "name": "position", - "coord": [10.948805209053269, -4.673530103534136], + "coord": [1.7873828744044808, -2.1387930782782685], "angle": 0, "sector": 32, "moved": false, @@ -30118,8 +30154,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 9946780678, - "money": 9946780678, + "available": 9941410463, + "money": 9941410463, "name": "budget", "mask": "BigInt:16" }, @@ -30318,15 +30354,15 @@ "range": 2, "mining": 0, "role": "military", - "cruise": 1.9, + "cruise": 3.8, "maneuver": 0.6, "rotary": 142, "ttc": 0.8, - "name": "Fighter", + "name": "Dart", "size": "small", "storage": 10, "texture": "sMil", - "slug": "fighter", + "slug": "dart", "hitpoints": { "hp": { "value": 110, "regen": 0.2 }, "shield": { "value": 35, "regen": 3 } @@ -30719,16 +30755,16 @@ "262": 20, "272": -25, "282": 10, - "295": 0, - "296": -40 + "299": 0, + "300": -40 }, "mask": "BigInt:268435456" }, "ai": { "name": "ai", "type": "territorial", - "stockpiling": 1.4493021055515505, - "priceModifier": 0.21323838144726912, + "stockpiling": 1.2456149862628647, + "priceModifier": 0.11551561541609995, "patrols": { "formation": { "fighters": 3 }, "perSector": 4 }, "restrictions": { "mining": false }, "home": 1, @@ -30742,10 +30778,29 @@ { "components": { "budget": { - "allocationIdCounter": 38, - "allocations": [], - "available": 32740392, - "money": 32740392, + "allocationIdCounter": 4, + "allocations": [ + { + "amount": 12220, + "issued": 27, + "meta": { "tradeId": "454:1658:buy:27" }, + "id": 1 + }, + { + "amount": 12220, + "issued": 27, + "meta": { "tradeId": "454:1659:buy:27" }, + "id": 2 + }, + { + "amount": 17680, + "issued": 27, + "meta": { "tradeId": "485:1660:buy:27" }, + "id": 3 + } + ], + "available": 32611167, + "money": 32653287, "name": "budget", "mask": "BigInt:16" }, @@ -30769,7 +30824,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-3.7377951702413412, -18.41132530638664], + "coord": [-9.775851872436576, -13.42134977815412], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -30785,7 +30840,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 38, + "allocationIdCounter": 4, "allocations": [ { "amount": { @@ -30794,11 +30849,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, @@ -30809,10 +30864,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3168, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "223:1564:sell:3168" }, - "id": 33 + "meta": { "tradeId": "223:1658:sell:27" }, + "id": 1 }, { "amount": { @@ -30836,10 +30891,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3354, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "223:1565:sell:3354" }, - "id": 35 + "meta": { "tradeId": "223:1659:sell:27" }, + "id": 2 }, { "amount": { @@ -30852,7 +30907,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 11, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, @@ -30863,24 +30918,24 @@ "tauMetal": 0, "water": 0 }, - "issued": 3534, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "223:1566:sell:3534" }, - "id": 37 + "meta": { "tradeId": "223:1660:sell:27" }, + "id": 3 } ], "max": 180000, "availableWares": { "coolant": 0, - "drones": 19942, - "electronics": 20792, - "engineParts": 24350, + "drones": 19935, + "electronics": 18020, + "engineParts": 18383, "food": 0, - "fuel": 19885, + "fuel": 19503, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 19779, + "hullPlates": 15718, "hydrogen": 0, "ice": 0, "metals": 0, @@ -30893,15 +30948,15 @@ }, "stored": { "coolant": 0, - "drones": 19942, - "electronics": 20792, - "engineParts": 24350, + "drones": 19935, + "electronics": 18020, + "engineParts": 18383, "food": 0, - "fuel": 19885, + "fuel": 19503, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 19779, + "hullPlates": 15718, "hydrogen": 0, "ice": 0, "metals": 0, @@ -30940,25 +30995,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [131.08312847443597, 147.4244242399982], - "drones": [1259.3465627073579, 1278.6557507845155], - "electronics": [351.28668809343793, 368.327541368581], - "engineParts": [418.76984751207596, 430.13323933947214], - "food": [18.59498243601307, 24.20348820782504], - "fuel": [59.2821184053998, 64.96343127747139], - "fuelium": [72.27530466188165, 79.65627800068953], - "gold": [836.9340948519002, 854.6441128129405], - "goldOre": [90.75948365031053, 102.81709818352523], - "hullPlates": [39.6582000799074, 55.15703172922496], - "hydrogen": [70.70765201292365, 76.66169988634223], - "ice": [11.242152747639643, 18.28401592275687], - "metals": [65.7695069322705, 80.65529139781911], - "ore": [33.05838743159832, 43.470024218779365], - "silica": [48.70596598450335, 63.43865021348977], - "silicon": [29.625682739712758, 42.519618559123145], - "superconductors": [541.4768634740469, 554.3542537253227], - "tauMetal": [290.47079406789305, 305.6769322299851], - "water": [40.32340561011428, 58.1602967795724] + "coolant": [116.37675868610862, 129.33983438580628], + "drones": [1188.2294199640903, 1197.68174516216], + "electronics": [333.3806988164184, 339.50782173179294], + "engineParts": [299.80250281072597, 308.6441438506227], + "food": [7.251539882085522, 22.891771989331772], + "fuel": [62.23016993756188, 70.61043490569962], + "fuelium": [45.29192722740293, 55.612232026479646], + "gold": [919.1551046928106, 928.2644836759599], + "goldOre": [32.169655120854074, 52.094406557062484], + "hullPlates": [45.31122850406192, 51.75254060961645], + "hydrogen": [63.84772876854765, 76.39367128721562], + "ice": [14.71369474365118, 30.10619327436479], + "metals": [90.75457915147975, 107.48321480597846], + "ore": [24.39909737329984, 36.24753943923044], + "silica": [21.530029930333686, 38.47672873643931], + "silicon": [25.96279555531556, 39.818201939655225], + "superconductors": [193.7516580926283, 210.84726124058216], + "tauMetal": [446.13520598178377, 462.28316635132563], + "water": [40.09912307114313, 54.168290505004606] }, "lastPriceAdjust": { "commodities": { @@ -30987,62 +31042,62 @@ "offers": { "coolant": { "active": false, - "price": 135, + "price": 120, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1275, - "quantity": 16058, + "price": 1193, + "quantity": 16065, "type": "buy" }, "electronics": { "active": true, - "price": 363, - "quantity": 15208, + "price": 333, + "quantity": 17980, "type": "buy" }, "engineParts": { "active": true, - "price": 422, - "quantity": 11650, + "price": 306, + "quantity": 17617, "type": "buy" }, "food": { "active": false, - "price": 21, + "price": 15, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 60, - "quantity": 16115, + "price": 70, + "quantity": 16497, "type": "buy" }, "fuelium": { "active": false, - "price": 78, + "price": 47, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 851, + "price": 922, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 101, + "price": 48, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 53, - "quantity": 16221, + "price": 45, + "quantity": 20282, "type": "buy" }, "hydrogen": { @@ -31053,49 +31108,49 @@ }, "ice": { "active": false, - "price": 13, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 66, + "price": 99, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 35, + "price": 24, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 50, + "price": 24, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 32, + "price": 37, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 545, + "price": 194, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 297, + "price": 453, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 52, + "price": 42, "quantity": 0, "type": "buy" } @@ -31119,7 +31174,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1566, 1565, 1564], + "ids": [1660, 1659, 1658], "mask": "BigInt:4294967296" }, "crew": { @@ -31322,8 +31377,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 9917969398, - "money": 9917969398, + "available": 9839466189, + "money": 9839466189, "name": "budget", "mask": "BigInt:16" }, @@ -31522,15 +31577,15 @@ "range": 2, "mining": 0, "role": "military", - "cruise": 1.9, + "cruise": 3.8, "maneuver": 0.6, "rotary": 142, "ttc": 0.8, - "name": "Fighter", + "name": "Dart", "size": "small", "storage": 10, "texture": "sMil", - "slug": "fighter", + "slug": "dart", "hitpoints": { "hp": { "value": 110, "regen": 0.2 }, "shield": { "value": 35, "regen": 3 } @@ -31923,16 +31978,16 @@ "262": -5, "272": -50, "282": 10, - "295": 0, - "296": -40 + "299": 0, + "300": -40 }, "mask": "BigInt:268435456" }, "ai": { "name": "ai", "type": "territorial", - "stockpiling": 1.3601843983339779, - "priceModifier": 0.15379326373100238, + "stockpiling": 1.3273356074658222, + "priceModifier": 0.1836055845143743, "patrols": { "formation": { "fighters": 2 }, "perSector": 6 }, "restrictions": { "mining": false }, "home": 6, @@ -31946,53 +32001,107 @@ { "components": { "budget": { - "allocationIdCounter": 57, + "allocationIdCounter": 17, "allocations": [ { - "amount": 1692, - "issued": 2538, - "meta": { "tradeId": "233:2242:sell:2538" }, - "id": 31 + "amount": 46080, + "issued": 27, + "meta": { "tradeId": "739:1852:buy:27" }, + "id": 1 }, { - "amount": 846, - "issued": 2625, - "meta": { "tradeId": "233:2240:sell:2625" }, - "id": 34 + "amount": 1728, + "issued": 27, + "meta": { "tradeId": "739:1853:buy:27" }, + "id": 2 }, { - "amount": 42720, - "issued": 3435, - "meta": { "tradeId": "631:1759:buy:3435" }, - "id": 51 + "amount": 46080, + "issued": 27, + "meta": { "tradeId": "739:1854:buy:27" }, + "id": 3 }, { - "amount": 42720, - "issued": 3438, - "meta": { "tradeId": "631:1760:buy:3438" }, - "id": 52 + "amount": 72380, + "issued": 27, + "meta": { "tradeId": "233:2340:sell:27" }, + "id": 4 }, { - "amount": 200320, - "issued": 3564, - "meta": { "tradeId": "233:1695:sell:3564" }, - "id": 54 + "amount": 12320, + "issued": 27, + "meta": { "tradeId": "233:2345:sell:27" }, + "id": 5 }, { - "amount": 200320, - "issued": 3570, - "meta": { "tradeId": "233:1694:sell:3570" }, - "id": 55 + "amount": 462, + "issued": 27, + "meta": { "tradeId": "233:2349:sell:27" }, + "id": 6 }, { - "amount": 31300, - "issued": 3591, - "meta": { "tradeId": "233:1710:sell:3591" }, - "id": 56 + "amount": 12320, + "issued": 27, + "meta": { "tradeId": "233:2353:sell:27" }, + "id": 7 + }, + { + "amount": 12320, + "issued": 39, + "meta": { "tradeId": "233:2348:sell:39" }, + "id": 8 + }, + { + "amount": 12320, + "issued": 48, + "meta": { "tradeId": "233:2341:sell:48" }, + "id": 9 + }, + { + "amount": 12320, + "issued": 51, + "meta": { "tradeId": "233:2343:sell:51" }, + "id": 10 + }, + { + "amount": 12320, + "issued": 54, + "meta": { "tradeId": "233:2354:sell:54" }, + "id": 11 + }, + { + "amount": 12320, + "issued": 66, + "meta": { "tradeId": "233:2350:sell:66" }, + "id": 12 + }, + { + "amount": 462, + "issued": 78, + "meta": { "tradeId": "233:2346:sell:78" }, + "id": 13 + }, + { + "amount": 12320, + "issued": 90, + "meta": { "tradeId": "233:2351:sell:90" }, + "id": 14 + }, + { + "amount": 72380, + "issued": 96, + "meta": { "tradeId": "233:2342:sell:96" }, + "id": 15 + }, + { + "amount": 12320, + "issued": 105, + "meta": { "tradeId": "233:2352:sell:105" }, + "id": 16 } ], - "available": 29142850, - "money": 29662768, + "available": 32188324, + "money": 32538776, "name": "budget", "mask": "BigInt:16" }, @@ -32016,7 +32125,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-9.520953170087894, -23.214728219431958], + "coord": [-0.0911157798465716, 0.3535400307883698], "sector": 6, "moved": false, "mask": "BigInt:2199023255552" @@ -32032,13 +32141,13 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 57, + "allocationIdCounter": 17, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 4, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -32056,16 +32165,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 2538, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "233:2242:sell:2538" }, - "id": 31 + "meta": { "tradeId": "233:1852:sell:27" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 2, + "electronics": 6, "engineParts": 0, "food": 0, "fuel": 0, @@ -32083,16 +32192,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 2625, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "233:2240:sell:2625" }, - "id": 34 + "meta": { "tradeId": "233:1853:sell:27" }, + "id": 2 }, { "amount": { "coolant": 0, - "drones": 160, - "electronics": 0, + "drones": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -32110,23 +32219,23 @@ "tauMetal": 0, "water": 0 }, - "issued": 3366, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "233:1758:sell:3366" }, - "id": 49 + "meta": { "tradeId": "233:1854:sell:27" }, + "id": 3 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -32137,23 +32246,23 @@ "tauMetal": 0, "water": 0 }, - "issued": 3435, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "233:1759:sell:3435" }, - "id": 51 + "meta": { "tradeId": "233:2340:sell:27" }, + "id": 4 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -32164,15 +32273,15 @@ "tauMetal": 0, "water": 0 }, - "issued": 3438, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "233:1760:sell:3438" }, - "id": 52 + "meta": { "tradeId": "233:2345:sell:27" }, + "id": 5 }, { "amount": { "coolant": 0, - "drones": 160, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -32180,7 +32289,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, "metals": 0, @@ -32191,15 +32300,15 @@ "tauMetal": 0, "water": 0 }, - "issued": 3564, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "233:1695:sell:3564" }, - "id": 54 + "meta": { "tradeId": "233:2349:sell:27" }, + "id": 6 }, { "amount": { "coolant": 0, - "drones": 160, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -32207,7 +32316,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -32218,15 +32327,15 @@ "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "233:1694:sell:3570" }, - "id": 55 + "meta": { "tradeId": "233:2353:sell:27" }, + "id": 7 }, { "amount": { "coolant": 0, - "drones": 25, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -32234,7 +32343,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -32245,24 +32354,240 @@ "tauMetal": 0, "water": 0 }, - "issued": 3591, + "issued": 39, "type": "incoming", - "meta": { "tradeId": "233:1710:sell:3591" }, - "id": 56 + "meta": { "tradeId": "233:2348:sell:39" }, + "id": 8 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 48, + "type": "incoming", + "meta": { "tradeId": "233:2341:sell:48" }, + "id": 9 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 51, + "type": "incoming", + "meta": { "tradeId": "233:2343:sell:51" }, + "id": 10 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 54, + "type": "incoming", + "meta": { "tradeId": "233:2354:sell:54" }, + "id": 11 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 66, + "type": "incoming", + "meta": { "tradeId": "233:2350:sell:66" }, + "id": 12 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 6, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 78, + "type": "incoming", + "meta": { "tradeId": "233:2346:sell:78" }, + "id": 13 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 90, + "type": "incoming", + "meta": { "tradeId": "233:2351:sell:90" }, + "id": 14 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 96, + "type": "incoming", + "meta": { "tradeId": "233:2342:sell:96" }, + "id": 15 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 105, + "type": "incoming", + "meta": { "tradeId": "233:2352:sell:105" }, + "id": 16 } ], "max": 180000, "availableWares": { "coolant": 0, - "drones": 22850, - "electronics": 21881, - "engineParts": 24944, + "drones": 19039, + "electronics": 15782, + "engineParts": 21829, "food": 0, - "fuel": 21063, + "fuel": 17526, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 23164, + "hullPlates": 17002, "hydrogen": 0, "ice": 0, "metals": 0, @@ -32275,15 +32600,15 @@ }, "stored": { "coolant": 0, - "drones": 22850, - "electronics": 21881, - "engineParts": 24944, + "drones": 19039, + "electronics": 15782, + "engineParts": 21829, "food": 0, - "fuel": 21063, + "fuel": 17526, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 23164, + "hullPlates": 17002, "hydrogen": 0, "ice": 0, "metals": 0, @@ -32322,25 +32647,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [81.40012954652724, 93.42994440612613], - "drones": [1239.8546250759384, 1255.6684924402782], - "electronics": [349.86041846870637, 355.66481066543975], - "engineParts": [453.62938949745035, 464.30080787634074], - "food": [16.135594667359925, 30.38882396205917], - "fuel": [47.958575925191454, 59.98242157288028], - "fuelium": [45.64601862946958, 62.63112774053223], - "gold": [920.4113242164647, 937.3226562779402], - "goldOre": [52.26934978491791, 70.73665330955498], - "hullPlates": [41.316506578219375, 48.61734635152678], - "hydrogen": [69.34762174728849, 78.87523361567047], - "ice": [10.387406237483816, 15.794866023045419], - "metals": [43.654429381794806, 58.022932773820614], - "ore": [25.473808965045208, 33.28900592652343], - "silica": [44.79395387378632, 50.847580905585254], - "silicon": [35.7514852175212, 54.84672671864273], - "superconductors": [554.7513279591496, 573.5595585777093], - "tauMetal": [356.77028445366284, 370.5627400892596], - "water": [35.2435262631858, 41.65267877675491] + "coolant": [51.443279558258745, 67.13938730388793], + "drones": [1083.0185716346236, 1098.6090819397796], + "electronics": [337.6105505958781, 348.4728704774647], + "engineParts": [342.6948500137989, 349.1986385232131], + "food": [12.863974182962455, 29.05950156331291], + "fuel": [54.842605879808914, 72.60708334930462], + "fuelium": [27.787356529515638, 41.90489893509009], + "gold": [505.0517720693854, 514.5760179226884], + "goldOre": [34.12302970819849, 48.519700623633305], + "hullPlates": [34.36825364351734, 49.51633160856107], + "hydrogen": [99.52822666865238, 106.80971154746649], + "ice": [25.79069579676244, 34.08401458523942], + "metals": [86.65741775115795, 92.18395376559124], + "ore": [17.267609693969632, 27.88876110649391], + "silica": [20.719186556288314, 33.976867733506744], + "silicon": [28.83192984274498, 38.24001028861772], + "superconductors": [536.7278848897404, 541.9476474264072], + "tauMetal": [655.9496014016581, 668.157066359236], + "water": [16.40549710388126, 32.68658510516376] }, "lastPriceAdjust": { "commodities": { @@ -32369,115 +32694,115 @@ "offers": { "coolant": { "active": false, - "price": 88, + "price": 66, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1252, - "quantity": 13150, + "price": 1092, + "quantity": 16961, "type": "buy" }, "electronics": { "active": true, - "price": 351, - "quantity": 14119, + "price": 341, + "quantity": 20218, "type": "buy" }, "engineParts": { "active": true, - "price": 462, - "quantity": 11056, + "price": 346, + "quantity": 14171, "type": "buy" }, "food": { "active": false, - "price": 16, + "price": 23, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 51, - "quantity": 14937, + "price": 58, + "quantity": 18474, "type": "buy" }, "fuelium": { "active": false, - "price": 52, + "price": 38, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 931, + "price": 507, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 64, + "price": 39, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 41, - "quantity": 12836, + "price": 42, + "quantity": 18998, "type": "buy" }, "hydrogen": { "active": false, - "price": 71, + "price": 106, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 10, + "price": 26, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 52, + "price": 89, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 27, + "price": 17, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 49, + "price": 32, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 52, + "price": 34, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 572, + "price": 541, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 364, + "price": 666, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 37, + "price": 21, "quantity": 0, "type": "buy" } @@ -32486,71 +32811,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 7, - "price": 423, - "target": "THT Trader Freighter A", - "time": 2469 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 2, - "price": 423, - "target": "THT Trader Freighter A", - "time": 2493 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 16, - "price": 423, - "target": "THT Trader Freighter A", - "time": 2708 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 9, - "price": 423, - "target": "THT Trader Freighter A", - "time": 2854 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 423, - "target": "THT Trader Courier B", - "time": 2901 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 5, - "price": 423, - "target": "THT Trader Freighter A", - "time": 3049 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 4, - "price": 423, - "target": "THT Trader Freighter A", - "time": 3100 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -32565,7 +32826,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1760, 1759, 1758], + "ids": [1854, 1853, 1852], "mask": "BigInt:4294967296" }, "crew": { @@ -32768,8 +33029,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 9960351667, - "money": 9960351667, + "available": 9943856381, + "money": 9943856381, "name": "budget", "mask": "BigInt:16" }, @@ -33070,16 +33331,16 @@ "262": -50, "272": -50, "282": -50, - "295": -50, - "296": -40 + "299": -50, + "300": -40 }, "mask": "BigInt:268435456" }, "ai": { "name": "ai", "type": "territorial", - "stockpiling": 1.5769381923026742, - "priceModifier": 0.12050143843197156, + "stockpiling": 1.4603954492092082, + "priceModifier": 0.10481942983072808, "patrols": { "formation": { "fighters": 2 }, "perSector": 7 }, "restrictions": { "mining": true }, "home": 21, @@ -33093,23 +33354,29 @@ { "components": { "budget": { - "allocationIdCounter": 68, + "allocationIdCounter": 47, "allocations": [ { - "amount": 8930, - "issued": 3516, - "meta": { "tradeId": "243:1897:sell:3516" }, - "id": 66 + "amount": 715, + "issued": 1281, + "meta": { "tradeId": "885:2000:buy:1281" }, + "id": 44 }, { - "amount": 4686, - "issued": 3519, - "meta": { "tradeId": "967:1901:buy:3519" }, - "id": 67 + "amount": 12350, + "issued": 1290, + "meta": { "tradeId": "885:2001:buy:1290" }, + "id": 45 + }, + { + "amount": 12350, + "issued": 1290, + "meta": { "tradeId": "885:2002:buy:1290" }, + "id": 46 } ], - "available": 11828208, - "money": 11841824, + "available": 11493348, + "money": 11518763, "name": "budget", "mask": "BigInt:16" }, @@ -33133,7 +33400,7 @@ "position": { "name": "position", "angle": 0, - "coord": [10.430566235757738, -12.542817010970797], + "coord": [-20.779684955541427, -7.088082350615071], "sector": 21, "moved": false, "mask": "BigInt:2199023255552" @@ -33149,7 +33416,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 68, + "allocationIdCounter": 47, "allocations": [ { "amount": { @@ -33158,34 +33425,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 190, - "water": 0 - }, - "issued": 3438, - "type": "incoming", - "meta": { "tradeId": "243:1900:sell:3438" }, - "id": 64 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -33197,13 +33437,13 @@ "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 11, + "tauMetal": 0, "water": 0 }, - "issued": 3456, + "issued": 1281, "type": "incoming", - "meta": { "tradeId": "243:1902:sell:3456" }, - "id": 65 + "meta": { "tradeId": "243:2000:sell:1281" }, + "id": 44 }, { "amount": { @@ -33227,10 +33467,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3516, + "issued": 1290, "type": "incoming", - "meta": { "tradeId": "243:1897:sell:3516" }, - "id": 66 + "meta": { "tradeId": "243:2001:sell:1290" }, + "id": 45 }, { "amount": { @@ -33239,7 +33479,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 190, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -33251,13 +33491,13 @@ "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 11, + "tauMetal": 0, "water": 0 }, - "issued": 3519, + "issued": 1290, "type": "incoming", - "meta": { "tradeId": "243:1901:sell:3519" }, - "id": 67 + "meta": { "tradeId": "243:2002:sell:1290" }, + "id": 46 } ], "max": 180000, @@ -33267,19 +33507,19 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 39603, + "fuel": 35044, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 37771, + "hydrogen": 36697, "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 37243, + "tauMetal": 39592, "water": 0 }, "stored": { @@ -33288,19 +33528,19 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 39603, + "fuel": 35044, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 37771, + "hydrogen": 36697, "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 37243, + "tauMetal": 39592, "water": 0 }, "quota": { @@ -33331,25 +33571,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [82.00240395608947, 97.19347920180465], - "drones": [1441.2549766567017, 1459.2320646749356], - "electronics": [398.95067937879116, 413.7165010233409], - "engineParts": [218.9036948288127, 231.98376522101702], - "food": [13.123648617530655, 25.26521516921798], - "fuel": [42.971590785673015, 53.01607264518053], - "fuelium": [53.504757321946016, 70.54823674676703], - "gold": [383.61745446896066, 399.1564283918369], - "goldOre": [49.42023691324478, 58.839239979151635], - "hullPlates": [42.52518767063357, 48.483070950567246], - "hydrogen": [54.746747135546585, 68.28255219001785], - "ice": [15.570272514483758, 23.418854882726528], - "metals": [55.93195728645691, 75.14405326665754], - "ore": [29.693637336786388, 40.16367717624138], - "silica": [21.18921880692855, 32.91935949374867], - "silicon": [15.196671601541205, 26.169620203333547], - "superconductors": [395.6581822771266, 406.59853083817865], - "tauMetal": [412.68087591205267, 427.60556574624974], - "water": [21.978778439842454, 28.198287768143928] + "coolant": [79.50752863428939, 87.81655139832804], + "drones": [865.8324310067535, 882.7076877096506], + "electronics": [416.2975147172036, 424.5129805579638], + "engineParts": [251.3016297963235, 259.078549172915], + "food": [17.062277851448783, 31.293026716512806], + "fuel": [61.10486636570924, 68.40266424730905], + "fuelium": [65.25837955132836, 78.15865957348103], + "gold": [680.3207272600307, 687.8369664676841], + "goldOre": [84.24218958076202, 90.73116635906825], + "hullPlates": [28.363430651674044, 42.859936446288756], + "hydrogen": [82.6730738860971, 88.22692402720129], + "ice": [9.840995610497425, 17.821944004987316], + "metals": [63.72599007125204, 72.3769355640941], + "ore": [16.473505544037643, 22.65234924270626], + "silica": [35.56064882642033, 49.801992278533696], + "silicon": [31.267559715933636, 38.62398060694207], + "superconductors": [226.9523656614242, 233.86034874131414], + "tauMetal": [385.0050585482297, 397.4979448807576], + "water": [40.3784358562975, 58.38057259404498] }, "lastPriceAdjust": { "commodities": { @@ -33378,115 +33618,115 @@ "offers": { "coolant": { "active": false, - "price": 88, + "price": 87, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1457, + "price": 872, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 413, + "price": 417, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 220, + "price": 257, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 23, + "price": 27, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 47, - "quantity": 20397, + "price": 64, + "quantity": 24956, "type": "buy" }, "fuelium": { "active": false, - "price": 70, + "price": 72, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 393, + "price": 687, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 57, + "price": 85, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 46, + "price": 37, "quantity": 0, "type": "buy" }, "hydrogen": { "active": true, - "price": 59, - "quantity": 22229, + "price": 84, + "quantity": 23303, "type": "buy" }, "ice": { "active": false, - "price": 21, + "price": 13, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 74, + "price": 67, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 35, + "price": 17, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 21, + "price": 36, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 22, + "price": 34, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 401, + "price": 231, "quantity": 0, "type": "buy" }, "tauMetal": { "active": true, - "price": 420, - "quantity": 22757, + "price": 389, + "quantity": 20408, "type": "buy" }, "water": { "active": false, - "price": 24, + "price": 40, "quantity": 0, "type": "buy" } @@ -33510,7 +33750,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1902, 1901, 1900], + "ids": [2002, 2001, 2000], "mask": "BigInt:4294967296" }, "crew": { @@ -33713,8 +33953,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 9944796270, - "money": 9944796270, + "available": 9943243514, + "money": 9943243514, "name": "budget", "mask": "BigInt:16" }, @@ -33913,15 +34153,15 @@ "range": 2, "mining": 0, "role": "military", - "cruise": 1.9, + "cruise": 3.8, "maneuver": 0.6, "rotary": 142, "ttc": 0.8, - "name": "Fighter", + "name": "Dart", "size": "small", "storage": 10, "texture": "sMil", - "slug": "fighter", + "slug": "dart", "hitpoints": { "hp": { "value": 110, "regen": 0.2 }, "shield": { "value": 35, "regen": 3 } @@ -34314,16 +34554,16 @@ "262": 10, "272": -25, "282": 10, - "295": 0, - "296": -40 + "299": 0, + "300": -40 }, "mask": "BigInt:268435456" }, "ai": { "name": "ai", "type": "territorial", - "stockpiling": 1.3084241533231193, - "priceModifier": 0.12268801048359992, + "stockpiling": 1.265999075250307, + "priceModifier": 0.18006642625356917, "patrols": { "formation": { "fighters": 3 }, "perSector": 2 }, "restrictions": { "mining": false }, "home": 14, @@ -34337,10 +34577,17 @@ { "components": { "budget": { - "allocationIdCounter": 68, - "allocations": [], - "available": 35277100, - "money": 35277100, + "allocationIdCounter": 110, + "allocations": [ + { + "amount": 2592, + "issued": 3576, + "meta": { "tradeId": "1086:2111:buy:3576" }, + "id": 109 + } + ], + "available": 31009512, + "money": 31012104, "name": "budget", "mask": "BigInt:16" }, @@ -34364,7 +34611,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-13.207835379075453, 23.41940502304272], + "coord": [-5.52123289244242, -8.27369668633014], "sector": 14, "moved": false, "mask": "BigInt:2199023255552" @@ -34380,7 +34627,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 68, + "allocationIdCounter": 110, "allocations": [ { "amount": { @@ -34389,7 +34636,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 45, + "fuel": 48, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -34404,24 +34651,24 @@ "tauMetal": 0, "water": 0 }, - "issued": 3507, + "issued": 3576, "type": "incoming", - "meta": { "tradeId": "253:2005:sell:3507" }, - "id": 67 + "meta": { "tradeId": "253:2111:sell:3576" }, + "id": 109 } ], "max": 180000, "availableWares": { "coolant": 0, - "drones": 18135, - "electronics": 21364, - "engineParts": 19237, + "drones": 19107, + "electronics": 18874, + "engineParts": 17367, "food": 0, - "fuel": 32888, + "fuel": 33159, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 36160, + "hullPlates": 36320, "hydrogen": 0, "ice": 0, "metals": 0, @@ -34434,15 +34681,15 @@ }, "stored": { "coolant": 0, - "drones": 18135, - "electronics": 21364, - "engineParts": 19237, + "drones": 19107, + "electronics": 18874, + "engineParts": 17367, "food": 0, - "fuel": 32888, + "fuel": 33159, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 36160, + "hullPlates": 36320, "hydrogen": 0, "ice": 0, "metals": 0, @@ -34481,25 +34728,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [129.26875928385147, 149.02782177742193], - "drones": [1260.4215935221937, 1279.7138305428314], - "electronics": [350.8426132812224, 364.84677778835135], - "engineParts": [440.0540083281763, 453.28305194662283], - "food": [21.850564322559983, 37.02652402351595], - "fuel": [56.002267537028416, 70.53437284115566], - "fuelium": [51.781984813705485, 60.620168654506], - "gold": [529.4548733791108, 544.295647697231], - "goldOre": [51.0020203614039, 67.92304385418984], - "hullPlates": [41.362276923545686, 48.94323884693183], - "hydrogen": [77.04621306744917, 86.17368696761731], - "ice": [17.22042415544641, 31.696651685728792], - "metals": [46.01039842750027, 55.34590679390861], - "ore": [23.697237688164527, 29.046352769395845], - "silica": [33.6372477570887, 43.98171356539818], - "silicon": [30.83486654074629, 50.19155093355679], - "superconductors": [211.8433988672421, 219.30709755372735], - "tauMetal": [350.62116445597746, 368.25669957452936], - "water": [16.663532890505753, 36.53175543766792] + "coolant": [67.77999139757829, 81.23396044493883], + "drones": [1129.62565467286, 1137.5998776932615], + "electronics": [322.904833568307, 335.2730782771365], + "engineParts": [321.8212815137983, 331.45329494205896], + "food": [12.999791414814577, 30.39707760750853], + "fuel": [49.29386423462298, 64.51769277463418], + "fuelium": [73.18872546406433, 83.93440952935343], + "gold": [661.5885758469033, 667.2047860058394], + "goldOre": [72.15966405534317, 77.6269606446521], + "hullPlates": [34.467721067154976, 48.86187974866715], + "hydrogen": [62.2810955695817, 67.45155219060787], + "ice": [21.26629032713828, 33.18522090464898], + "metals": [80.95917784857016, 93.74321214849671], + "ore": [35.590939723127974, 51.198625481591165], + "silica": [27.518073393100458, 36.835475286004346], + "silicon": [22.644161138253224, 30.099525661562375], + "superconductors": [495.35326469974626, 512.3488300390275], + "tauMetal": [481.26185870595344, 489.0908670294532], + "water": [37.06008170690551, 47.185767125262544] }, "lastPriceAdjust": { "commodities": { @@ -34528,55 +34775,55 @@ "offers": { "coolant": { "active": false, - "price": 146, + "price": 74, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1261, - "quantity": 17865, + "price": 1136, + "quantity": 16893, "type": "buy" }, "electronics": { "active": true, - "price": 351, - "quantity": 14636, + "price": 327, + "quantity": 17126, "type": "buy" }, "engineParts": { "active": true, - "price": 443, - "quantity": 16763, + "price": 326, + "quantity": 18633, "type": "buy" }, "food": { "active": false, - "price": 35, + "price": 19, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 60, - "quantity": 3112, + "price": 51, + "quantity": 2841, "type": "buy" }, "fuelium": { "active": false, - "price": 58, + "price": 82, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 542, + "price": 667, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 65, + "price": 74, "quantity": 0, "type": "buy" }, @@ -34588,55 +34835,55 @@ }, "hydrogen": { "active": false, - "price": 80, + "price": 64, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 25, + "price": 30, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 46, + "price": 84, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 27, + "price": 38, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 39, + "price": 36, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 39, + "price": 24, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 216, + "price": 505, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 367, + "price": 481, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 25, + "price": 39, "quantity": 0, "type": "buy" } @@ -34645,62 +34892,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 5, - "price": 421, - "target": "THT Trader Courier B", - "time": 1420 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 421, - "target": "THT Trader Freighter A", - "time": 1579 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 2, - "price": 421, - "target": "THT Trader Courier B", - "time": 1724 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 11, - "price": 421, - "target": "THT Trader Freighter A", - "time": 1901 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 4, - "price": 421, - "target": "THT Trader Courier B", - "time": 2027 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 8, - "price": 421, - "target": "THT Trader Freighter A", - "time": 2059 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -34715,7 +34907,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [2005, 2004, 2003], + "ids": [2112, 2111, 2110], "mask": "BigInt:4294967296" }, "crew": { @@ -34918,8 +35110,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 9949555585, - "money": 9949555585, + "available": 9929861911, + "money": 9929861911, "name": "budget", "mask": "BigInt:16" }, @@ -35118,15 +35310,15 @@ "range": 2, "mining": 0, "role": "military", - "cruise": 1.9, + "cruise": 3.8, "maneuver": 0.6, "rotary": 142, "ttc": 0.8, - "name": "Fighter", + "name": "Dart", "size": "small", "storage": 10, "texture": "sMil", - "slug": "fighter", + "slug": "dart", "hitpoints": { "hp": { "value": 110, "regen": 0.2 }, "shield": { "value": 35, "regen": 3 } @@ -35497,16 +35689,16 @@ "252": 10, "272": -30, "282": -25, - "295": 0, - "296": -40 + "299": 0, + "300": -40 }, "mask": "BigInt:268435456" }, "ai": { "name": "ai", "type": "territorial", - "stockpiling": 1.5504007150571735, - "priceModifier": 0.16434151449493167, + "stockpiling": 1.4235830306374684, + "priceModifier": 0.1588343815887389, "patrols": { "formation": { "fighters": 2 }, "perSector": 3 }, "restrictions": { "mining": true }, "home": 5, @@ -35520,16 +35712,35 @@ { "components": { "budget": { - "allocationIdCounter": 67, - "allocations": [], - "available": 31375414, - "money": 31375414, + "allocationIdCounter": 4, + "allocations": [ + { + "amount": 5022, + "issued": 27, + "meta": { "tradeId": "1433:2208:buy:27" }, + "id": 1 + }, + { + "amount": 133920, + "issued": 27, + "meta": { "tradeId": "1433:2209:buy:27" }, + "id": 2 + }, + { + "amount": 133920, + "issued": 27, + "meta": { "tradeId": "1433:2210:buy:27" }, + "id": 3 + } + ], + "available": 34477744, + "money": 34750606, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [2095], + "docked": [], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -35547,7 +35758,7 @@ "position": { "name": "position", "angle": 0, - "coord": [9.624746606625038, 14.146328113046152], + "coord": [-2.847060045472972, -15.302990453989237], "sector": 5, "moved": false, "mask": "BigInt:2199023255552" @@ -35563,16 +35774,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 67, + "allocationIdCounter": 4, "allocations": [ { "amount": { "coolant": 0, - "drones": 0, + "drones": 6, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -35587,19 +35798,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3477, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "263:2094:sell:3477" }, - "id": 64 + "meta": { "tradeId": "263:2208:sell:27" }, + "id": 1 }, { "amount": { "coolant": 0, - "drones": 0, + "drones": 160, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 120, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -35614,19 +35825,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3507, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "263:2093:sell:3507" }, - "id": 65 + "meta": { "tradeId": "263:2209:sell:27" }, + "id": 2 }, { "amount": { "coolant": 0, - "drones": 0, + "drones": 160, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -35641,24 +35852,24 @@ "tauMetal": 0, "water": 0 }, - "issued": 3513, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "263:2095:sell:3513" }, - "id": 66 + "meta": { "tradeId": "263:2210:sell:27" }, + "id": 3 } ], "max": 180000, "availableWares": { "coolant": 0, - "drones": 20602, - "electronics": 22756, - "engineParts": 24236, + "drones": 16508, + "electronics": 17024, + "engineParts": 19955, "food": 0, - "fuel": 24227, + "fuel": 17161, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 24565, + "hullPlates": 16590, "hydrogen": 0, "ice": 0, "metals": 0, @@ -35671,15 +35882,15 @@ }, "stored": { "coolant": 0, - "drones": 20602, - "electronics": 22756, - "engineParts": 24236, + "drones": 16508, + "electronics": 17024, + "engineParts": 19955, "food": 0, - "fuel": 24227, + "fuel": 17161, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 24565, + "hullPlates": 16590, "hydrogen": 0, "ice": 0, "metals": 0, @@ -35718,25 +35929,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [74.5858161554474, 88.2562786396245], - "drones": [1240.620136475479, 1256.0352548815572], - "electronics": [435.26273682422215, 451], - "engineParts": [432.4471578580151, 440.90643847386264], - "food": [19.426374393361357, 27.446375638788894], - "fuel": [39.64759202800999, 58.17094443796015], - "fuelium": [70.29959160786227, 83.92907662693352], - "gold": [350.33381189340315, 363.85731654782575], - "goldOre": [67.32385088018827, 84.72010559516569], - "hullPlates": [43.90156780367701, 52.84738832272565], - "hydrogen": [73.48121379512833, 80.28527816428351], - "ice": [15.091389821546077, 20.356418765110682], - "metals": [61.68570394657623, 68.80975378156036], - "ore": [40.81933637921189, 48.6773488718029], - "silica": [34.79569301463347, 46.20661941445702], - "silicon": [30.964090896610394, 44.72750419063199], - "superconductors": [490.193715376634, 500.1286072403751], - "tauMetal": [417.403002300343, 428.9714066257991], - "water": [38.7672854586971, 53.02710302305781] + "coolant": [121.70232092416838, 128.93566780548974], + "drones": [1059.5003090066402, 1078.1234943764466], + "electronics": [342.81012380197336, 351.44737663526934], + "engineParts": [319.7753030863473, 328.8267179003976], + "food": [12.182685050571257, 27.16483680227888], + "fuel": [52.48977223664248, 63.88824902930283], + "fuelium": [51.38232262415116, 67.20345253486107], + "gold": [788.9195118801454, 797.5878923502596], + "goldOre": [86.311423088782, 94.60603746667188], + "hullPlates": [44.249376498854645, 54.57334082583185], + "hydrogen": [92.32907218992682, 98.94035042392507], + "ice": [20.63095671106671, 36.32862874058553], + "metals": [70.91682908020798, 81.3762842259531], + "ore": [39.645262472178175, 46.29773772885603], + "silica": [23.485929984909067, 41.711755912825794], + "silicon": [18.170251245286103, 23.909406643850666], + "superconductors": [381.3242787945603, 394.4006865996542], + "tauMetal": [550.8380270648629, 557.4984900756147], + "water": [37.926640221630755, 52.066880907206794] }, "lastPriceAdjust": { "commodities": { @@ -35765,115 +35976,115 @@ "offers": { "coolant": { "active": false, - "price": 79, + "price": 124, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1246, - "quantity": 15398, + "price": 1062, + "quantity": 19492, "type": "buy" }, "electronics": { "active": true, - "price": 450, - "quantity": 13244, + "price": 343, + "quantity": 18976, "type": "buy" }, "engineParts": { "active": true, - "price": 432, - "quantity": 11764, + "price": 322, + "quantity": 16045, "type": "buy" }, "food": { "active": false, - "price": 20, + "price": 22, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 57, - "quantity": 11773, + "price": 58, + "quantity": 18839, "type": "buy" }, "fuelium": { "active": false, - "price": 83, + "price": 65, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 359, + "price": 792, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 78, + "price": 88, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 45, - "quantity": 11435, + "price": 52, + "quantity": 19410, "type": "buy" }, "hydrogen": { "active": false, - "price": 80, + "price": 95, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 15, + "price": 34, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 68, + "price": 81, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 47, + "price": 43, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 38, + "price": 32, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 30, + "price": 22, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 495, + "price": 387, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 418, + "price": 556, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 48, + "price": 41, "quantity": 0, "type": "buy" } @@ -35897,7 +36108,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [2095, 2094, 2093], + "ids": [2210, 2209, 2208], "mask": "BigInt:4294967296" }, "crew": { @@ -36100,8 +36311,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 9940602245, - "money": 9940602245, + "available": 9941894940, + "money": 9941894940, "name": "budget", "mask": "BigInt:16" }, @@ -36300,15 +36511,15 @@ "range": 2, "mining": 0, "role": "military", - "cruise": 1.9, + "cruise": 3.8, "maneuver": 0.6, "rotary": 142, "ttc": 0.8, - "name": "Fighter", + "name": "Dart", "size": "small", "storage": 10, "texture": "sMil", - "slug": "fighter", + "slug": "dart", "hitpoints": { "hp": { "value": 110, "regen": 0.2 }, "shield": { "value": 35, "regen": 3 } @@ -36652,16 +36863,16 @@ "252": -25, "262": -30, "282": -5, - "295": 0, - "296": -40 + "299": 0, + "300": -40 }, "mask": "BigInt:268435456" }, "ai": { "name": "ai", "type": "pirate", - "stockpiling": 1.4025284326618237, - "priceModifier": 0.2179484597670342, + "stockpiling": 1.3857229447549235, + "priceModifier": 0.18358443231087257, "patrols": { "formation": { "fighters": 2 }, "perSector": 6 }, "restrictions": { "mining": false }, "home": 32, @@ -36675,65 +36886,59 @@ { "components": { "budget": { - "allocationIdCounter": 108, + "allocationIdCounter": 9, "allocations": [ { - "amount": 358140, - "issued": 2823, - "meta": { "tradeId": "273:2229:sell:2823" }, - "id": 71 - }, - { - "amount": 358140, - "issued": 3342, - "meta": { "tradeId": "273:2148:sell:3342" }, - "id": 94 + "amount": 13280, + "issued": 27, + "meta": { "tradeId": "1466:2273:buy:27" }, + "id": 1 }, { - "amount": 60960, - "issued": 3492, - "meta": { "tradeId": "273:2152:sell:3492" }, - "id": 101 + "amount": 498, + "issued": 27, + "meta": { "tradeId": "1466:2274:buy:27" }, + "id": 2 }, { - "amount": 2286, - "issued": 3555, - "meta": { "tradeId": "273:2226:sell:3555" }, - "id": 102 + "amount": 13280, + "issued": 27, + "meta": { "tradeId": "1466:2275:buy:27" }, + "id": 3 }, { - "amount": 7157, - "issued": 3561, - "meta": { "tradeId": "1499:2164:buy:3561" }, - "id": 103 + "amount": 267520, + "issued": 27, + "meta": { "tradeId": "273:2337:sell:27" }, + "id": 4 }, { - "amount": 1263, - "issued": 3579, - "meta": { "tradeId": "1499:2166:buy:3579" }, - "id": 104 + "amount": 1571680, + "issued": 27, + "meta": { "tradeId": "273:2339:sell:27" }, + "id": 5 }, { - "amount": 52800, - "issued": 3582, - "meta": { "tradeId": "1443:2165:buy:3582" }, - "id": 105 + "amount": 1571680, + "issued": 87, + "meta": { "tradeId": "273:2336:sell:87" }, + "id": 6 }, { - "amount": 358140, - "issued": 3588, - "meta": { "tradeId": "273:2147:sell:3588" }, - "id": 106 + "amount": 267520, + "issued": 96, + "meta": { "tradeId": "273:2338:sell:96" }, + "id": 7 }, { - "amount": 60960, - "issued": 3594, - "meta": { "tradeId": "273:2228:sell:3594" }, - "id": 107 + "amount": 1571680, + "issued": 156, + "meta": { "tradeId": "273:2335:sell:156" }, + "id": 8 } ], - "available": 33295124, - "money": 34554970, + "available": 23052567, + "money": 28329705, "name": "budget", "mask": "BigInt:16" }, @@ -36757,7 +36962,7 @@ "position": { "name": "position", "angle": 0, - "coord": [11.20459578133601, 6.047562649670645], + "coord": [-5.984997178798054, -14.389929196846847], "sector": 32, "moved": false, "mask": "BigInt:2199023255552" @@ -36773,16 +36978,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 108, + "allocationIdCounter": 9, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 940, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -36797,19 +37002,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 2823, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "273:2229:sell:2823" }, - "id": 71 + "meta": { "tradeId": "273:2273:sell:27" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 940, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 6, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -36824,16 +37029,43 @@ "tauMetal": 0, "water": 0 }, - "issued": 3342, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "273:2148:sell:3342" }, - "id": 94 + "meta": { "tradeId": "273:2274:sell:27" }, + "id": 2 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "273:2275:sell:27" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 160, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -36851,16 +37083,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 3492, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "273:2152:sell:3492" }, - "id": 101 + "meta": { "tradeId": "273:2337:sell:27" }, + "id": 4 }, { "amount": { "coolant": 0, - "drones": 0, - "electronics": 6, + "drones": 940, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -36878,16 +37110,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 3555, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "273:2226:sell:3555" }, - "id": 102 + "meta": { "tradeId": "273:2339:sell:27" }, + "id": 5 }, { "amount": { "coolant": 0, - "drones": 0, - "electronics": 17, + "drones": 940, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -36905,16 +37137,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 3561, + "issued": 87, "type": "incoming", - "meta": { "tradeId": "273:2164:sell:3561" }, - "id": 103 + "meta": { "tradeId": "273:2336:sell:87" }, + "id": 6 }, { "amount": { "coolant": 0, - "drones": 0, - "electronics": 3, + "drones": 160, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -36932,70 +37164,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 3579, + "issued": 96, "type": "incoming", - "meta": { "tradeId": "273:2166:sell:3579" }, - "id": 104 + "meta": { "tradeId": "273:2338:sell:96" }, + "id": 7 }, { "amount": { "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "incoming", - "meta": { "tradeId": "273:2165:sell:3582" }, - "id": 105 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "incoming", - "meta": { "tradeId": "273:2147:sell:3588" }, - "id": 106 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, + "drones": 940, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -37013,24 +37191,24 @@ "tauMetal": 0, "water": 0 }, - "issued": 3594, + "issued": 156, "type": "incoming", - "meta": { "tradeId": "273:2228:sell:3594" }, - "id": 107 + "meta": { "tradeId": "273:2335:sell:156" }, + "id": 8 } ], "max": 180000, "availableWares": { "coolant": 0, - "drones": 17457, - "electronics": 28065, - "engineParts": 24631, + "drones": 24401, + "electronics": 20197, + "engineParts": 21620, "food": 0, - "fuel": 26716, + "fuel": 17041, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 14632, + "hullPlates": 19969, "hydrogen": 0, "ice": 0, "metals": 0, @@ -37043,15 +37221,15 @@ }, "stored": { "coolant": 0, - "drones": 17457, - "electronics": 28065, - "engineParts": 24631, + "drones": 24401, + "electronics": 20197, + "engineParts": 21620, "food": 0, - "fuel": 26716, + "fuel": 17041, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 14632, + "hullPlates": 19969, "hydrogen": 0, "ice": 0, "metals": 0, @@ -37090,25 +37268,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [120.4294996830357, 127.72206897737993], - "drones": [1246.06825785958, 1252.9678807358196], - "electronics": [376.3833333333333, 385.4033333333333], - "engineParts": [482, 491.64], - "food": [16.850156091908737, 34.08277433384109], - "fuel": [51.060824107247775, 59.5153925876247], - "fuelium": [43.75161107004633, 55.75716335385713], - "gold": [748.3462468134275, 757.2293683656201], - "goldOre": [70.53035611860602, 78.30622411722594], - "hullPlates": [32.449719738819695, 50.14535822593498], - "hydrogen": [43.18713241919107, 50.970418383486226], - "ice": [26.52038349812575, 32.43748730511547], - "metals": [66.80199784340743, 76.3169866069553], - "ore": [30.840101153177198, 39.52383675141799], - "silica": [49.80933680009669, 59.89618979390769], - "silicon": [12.897440704412297, 20.997849198993357], - "superconductors": [568.230728021247, 582.90155334062], - "tauMetal": [278.29777874271525, 290.22986442903465], - "water": [30.49632494757629, 48.10696625751635] + "coolant": [135.71467427184623, 149.27844751884695], + "drones": [992.1065142014629, 999.9017027775435], + "electronics": [348.78082867273207, 357.2369719639617], + "engineParts": [280.3260517887369, 299.65637633222684], + "food": [19.79719682297622, 33.69594002557832], + "fuel": [52.95393517318056, 62.57120921169537], + "fuelium": [30.900555249125265, 41.66546910258876], + "gold": [332.7510294614169, 342.43388095378737], + "goldOre": [42.657475348239046, 62.01603169406022], + "hullPlates": [42.812479341256804, 55.81394060826149], + "hydrogen": [42.944413086676924, 62.21529763040988], + "ice": [25.266824594802795, 30.91118170818754], + "metals": [99.67194306454415, 111.8105509340773], + "ore": [36.21021626029964, 49.265594672751334], + "silica": [23.99386492762256, 38.157231277351386], + "silicon": [35.54905848453434, 54.615445700083534], + "superconductors": [356.58892685408205, 365.4501762680661], + "tauMetal": [331.22433709045083, 349.2392564620892], + "water": [41.32468494579026, 58.98789570412011] }, "lastPriceAdjust": { "commodities": { @@ -37137,115 +37315,115 @@ "offers": { "coolant": { "active": false, - "price": 121, + "price": 143, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1251, - "quantity": 18543, + "price": 994, + "quantity": 11599, "type": "buy" }, "electronics": { "active": true, - "price": 381, - "quantity": 7935, + "price": 351, + "quantity": 15803, "type": "buy" }, "engineParts": { "active": true, - "price": 487, - "quantity": 11369, + "price": 284, + "quantity": 14380, "type": "buy" }, "food": { "active": false, - "price": 24, + "price": 28, "quantity": 0, "type": "buy" }, "fuel": { "active": true, "price": 55, - "quantity": 9284, + "quantity": 18959, "type": "buy" }, "fuelium": { "active": false, - "price": 51, + "price": 38, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 752, + "price": 340, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 75, + "price": 49, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 42, - "quantity": 21368, + "price": 53, + "quantity": 16031, "type": "buy" }, "hydrogen": { "active": false, - "price": 43, + "price": 59, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 30, + "price": 27, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 72, + "price": 110, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 32, + "price": 37, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 54, + "price": 24, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 13, + "price": 46, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 574, + "price": 360, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 286, + "price": 345, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 47, + "price": 49, "quantity": 0, "type": "buy" } @@ -37254,143 +37432,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 6, - "price": 1146, - "target": "THT Trader Courier B", - "time": 1230 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 160, - "price": 1146, - "target": "THT Trader Freighter A", - "time": 1577 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 5, - "price": 1146, - "target": "THT Trader Large Freighter B", - "time": 1669 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 1, - "price": 1146, - "target": "THT Trader Courier B", - "time": 2012 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 456, - "target": "THT Trader Freighter A", - "time": 2255 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 456, - "target": "THT Trader Courier B", - "time": 2346 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 456, - "target": "THT Trader Freighter A", - "time": 2398 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 456, - "target": "THT Trader Courier B", - "time": 2588 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 940, - "price": 1373, - "target": "THT Trader Large Freighter B", - "time": 2822 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 456, - "target": "THT Trader Freighter A", - "time": 2995 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 381, - "target": "THT Trader Courier B", - "time": 3068 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 1, - "price": 1373, - "target": "THT Trader Large Freighter B", - "time": 3211 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 1, - "price": 1251, - "target": "THT Trader Courier B", - "time": 3409 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 381, - "target": "THT Trader Freighter A", - "time": 3466 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 381, - "target": "THT Trader Freighter A", - "time": 3592 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -37405,7 +37447,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [2166, 2165, 2164], + "ids": [2275, 2274, 2273], "mask": "BigInt:4294967296" }, "crew": { @@ -37606,83 +37648,101 @@ "components": { "color": { "name": "color", "value": "#f7fc5b", "mask": "BigInt:256" }, "budget": { - "allocationIdCounter": 423, + "allocationIdCounter": 62, "allocations": [ { - "amount": 13160, - "issued": 3213, - "meta": { "tradeId": "640:2230:buy:3213" }, - "id": 408 + "amount": 25380, + "issued": 27, + "meta": { "tradeId": "1214:2340:buy:27" }, + "id": 6 }, { - "amount": 8320, - "issued": 3324, - "meta": { "tradeId": "397:2241:buy:3324" }, - "id": 410 + "amount": 4320, + "issued": 27, + "meta": { "tradeId": "1214:2345:buy:27" }, + "id": 11 }, { - "amount": 2080, - "issued": 3327, - "meta": { "tradeId": "460:2233:buy:3327" }, - "id": 411 + "amount": 162, + "issued": 27, + "meta": { "tradeId": "1214:2349:buy:27" }, + "id": 15 }, { - "amount": 64640, - "issued": 3369, - "meta": { "tradeId": "325:2238:buy:3369" }, - "id": 412 + "amount": 4320, + "issued": 27, + "meta": { "tradeId": "1214:2353:buy:27" }, + "id": 19 }, { - "amount": 7840, - "issued": 3396, - "meta": { "tradeId": "373:2235:buy:3396" }, - "id": 413 + "amount": 4320, + "issued": 39, + "meta": { "tradeId": "1214:2348:buy:39" }, + "id": 21 }, { - "amount": 8320, - "issued": 3444, - "meta": { "tradeId": "397:2231:buy:3444" }, - "id": 416 + "amount": 4320, + "issued": 48, + "meta": { "tradeId": "1214:2341:buy:48" }, + "id": 28 }, { - "amount": 8320, - "issued": 3450, - "meta": { "tradeId": "397:2232:buy:3450" }, - "id": 417 + "amount": 4320, + "issued": 51, + "meta": { "tradeId": "1214:2343:buy:51" }, + "id": 30 }, { - "amount": 51, - "issued": 3468, - "meta": { "tradeId": "815:2227:buy:3468" }, - "id": 418 + "amount": 4320, + "issued": 54, + "meta": { "tradeId": "1214:2354:buy:54" }, + "id": 31 }, { - "amount": 8320, - "issued": 3522, - "meta": { "tradeId": "397:2244:buy:3522" }, - "id": 419 + "amount": 4320, + "issued": 66, + "meta": { "tradeId": "1214:2350:buy:66" }, + "id": 37 }, { - "amount": 64640, - "issued": 3531, - "meta": { "tradeId": "325:2243:buy:3531" }, - "id": 420 + "amount": 162, + "issued": 78, + "meta": { "tradeId": "1214:2346:buy:78" }, + "id": 41 }, { - "amount": 1602, - "issued": 3555, - "meta": { "tradeId": "631:2226:buy:3555" }, - "id": 421 + "amount": 4320, + "issued": 90, + "meta": { "tradeId": "1214:2351:buy:90" }, + "id": 45 }, { - "amount": 42720, - "issued": 3594, - "meta": { "tradeId": "631:2228:buy:3594" }, - "id": 422 + "amount": 25380, + "issued": 96, + "meta": { "tradeId": "1214:2342:buy:96" }, + "id": 47 + }, + { + "amount": 4320, + "issued": 105, + "meta": { "tradeId": "1214:2352:buy:105" }, + "id": 49 + }, + { + "amount": 1440, + "issued": 309, + "meta": { "tradeId": "485:2344:buy:309" }, + "id": 60 + }, + { + "amount": 15980, + "issued": 309, + "meta": { "tradeId": "555:2347:buy:309" }, + "id": 61 } ], - "available": 9973305594, - "money": 9973535607, + "available": 9965988265, + "money": 9966095649, "name": "budget", "mask": "BigInt:16" }, @@ -37881,15 +37941,15 @@ "range": 2, "mining": 0, "role": "military", - "cruise": 1.9, + "cruise": 3.8, "maneuver": 0.6, "rotary": 142, "ttc": 0.8, - "name": "Fighter", + "name": "Dart", "size": "small", "storage": 10, "texture": "sMil", - "slug": "fighter", + "slug": "dart", "hitpoints": { "hp": { "value": 110, "regen": 0.2 }, "shield": { "value": 35, "regen": 3 } @@ -38228,16 +38288,16 @@ "252": 10, "262": -25, "272": -5, - "295": 0, - "296": -40 + "299": 0, + "300": -40 }, "mask": "BigInt:268435456" }, "ai": { "name": "ai", "type": "travelling", - "stockpiling": 1.4215855650730038, - "priceModifier": 0.1427537904519683, + "stockpiling": 1.2322375720166412, + "priceModifier": 0.14962300206463053, "patrols": { "formation": { "fighters": 2 }, "perSector": 3 }, "restrictions": { "mining": false }, "home": 15, @@ -38251,23 +38311,23 @@ { "components": { "budget": { - "allocationIdCounter": 93, + "allocationIdCounter": 7, "allocations": [ { - "amount": 5088, - "issued": 3561, - "meta": { "tradeId": "283:2136:sell:3561" }, - "id": 91 + "amount": 35720, + "issued": 3, + "meta": { "tradeId": "684:296:buy:3" }, + "id": 1 }, { - "amount": 3480, - "issued": 3582, - "meta": { "tradeId": "1520:293:buy:3582" }, - "id": 92 + "amount": 35720, + "issued": 3, + "meta": { "tradeId": "684:297:buy:3" }, + "id": 2 } ], - "available": 24602027, - "money": 24610595, + "available": 28534186, + "money": 28605626, "name": "budget", "mask": "BigInt:16" }, @@ -38291,7 +38351,7 @@ "position": { "name": "position", "angle": 0, - "coord": [-12.699603605030973, 17.27365154690056], + "coord": [-9.197026337180391, -17.87482896365193], "sector": 15, "moved": false, "mask": "BigInt:2199023255552" @@ -38307,7 +38367,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 93, + "allocationIdCounter": 7, "allocations": [ { "amount": { @@ -38316,11 +38376,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 64, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -38331,23 +38391,23 @@ "tauMetal": 0, "water": 0 }, - "issued": 3528, + "issued": 3, "type": "incoming", - "meta": { "tradeId": "283:294:sell:3528" }, - "id": 90 + "meta": { "tradeId": "283:296:sell:3" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 16, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -38358,10 +38418,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3561, + "issued": 3, "type": "incoming", - "meta": { "tradeId": "283:2136:sell:3561" }, - "id": 91 + "meta": { "tradeId": "283:297:sell:3" }, + "id": 2 }, { "amount": { @@ -38370,11 +38430,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 58, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, "metals": 0, @@ -38385,24 +38445,24 @@ "tauMetal": 0, "water": 0 }, - "issued": 3582, + "issued": 3, "type": "incoming", - "meta": { "tradeId": "283:293:sell:3582" }, - "id": 92 + "meta": { "tradeId": "283:298:sell:3" }, + "id": 3 } ], "max": 180000, "availableWares": { "coolant": 0, - "drones": 24811, - "electronics": 24105, - "engineParts": 21685, + "drones": 19800, + "electronics": 22483, + "engineParts": 20908, "food": 0, - "fuel": 34976, + "fuel": 20838, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 14570, + "hullPlates": 19020, "hydrogen": 0, "ice": 0, "metals": 0, @@ -38415,15 +38475,15 @@ }, "stored": { "coolant": 0, - "drones": 24811, - "electronics": 24105, - "engineParts": 21685, + "drones": 19800, + "electronics": 22483, + "engineParts": 20908, "food": 0, - "fuel": 34976, + "fuel": 20838, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 14570, + "hullPlates": 19020, "hydrogen": 0, "ice": 0, "metals": 0, @@ -38462,25 +38522,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [142.7368487489426, 148.18650094409014], - "drones": [1162.5234502275725, 1172.7847081456357], - "electronics": [315.94582402186234, 327.40676421634305], - "engineParts": [482, 491.64], - "food": [9.699912539126643, 15.10545110696621], - "fuel": [39.88043438548211, 58.70571842956458], - "fuelium": [27.24441382727639, 40.58761038285252], - "gold": [739.4043246430543, 758.5311454263838], - "goldOre": [65.37001806733636, 79.56633672044966], - "hullPlates": [33.60502278377511, 51.88559087497105], - "hydrogen": [68.35349853738771, 81.62277974452455], - "ice": [16.2492772952208, 33.784191479898276], - "metals": [54.98678553480063, 66.00920090042995], - "ore": [21.318937679070817, 37.968921333214695], - "silica": [30.524481737200958, 45.488972499921665], - "silicon": [32.18433485386886, 38.20153525662571], - "superconductors": [254.90311020964901, 274.87313302586443], - "tauMetal": [222.90501524619708, 235.07629072976204], - "water": [33.55675292084307, 50.91822639510396] + "coolant": [60.649212775600546, 72.68021816124988], + "drones": [1036.8369124113485, 1050.819815727474], + "electronics": [305.56613999338475, 312.97922880961033], + "engineParts": [363.01015606182153, 376.5568131960365], + "food": [18.57328941550182, 34.71717284702396], + "fuel": [58.65601751407307, 74.07582329332159], + "fuelium": [30.47582229386107, 37.21136497873481], + "gold": [635.1080419561932, 651.9944501521034], + "goldOre": [86.19791446178077, 102.42895758472523], + "hullPlates": [40.40831433321237, 49.4563121257786], + "hydrogen": [47.389169388180065, 63.384679225929716], + "ice": [10.194854832867374, 23.633033535943408], + "metals": [68.2373984805989, 73.26184525147217], + "ore": [27.522872653254662, 32.692292387296256], + "silica": [29.914979169114424, 37.317834824804244], + "silicon": [29.768933024825817, 43.52850401748948], + "superconductors": [389.12030972653565, 399.96088877736025], + "tauMetal": [484.9008911758408, 501.50604301005774], + "water": [15.816750197495061, 30.366778406079224] }, "lastPriceAdjust": { "commodities": { @@ -38509,115 +38569,115 @@ "offers": { "coolant": { "active": false, - "price": 146, + "price": 63, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1169, - "quantity": 11189, + "price": 1047, + "quantity": 16200, "type": "buy" }, "electronics": { "active": true, - "price": 318, - "quantity": 11895, + "price": 308, + "quantity": 13517, "type": "buy" }, "engineParts": { "active": true, - "price": 482, - "quantity": 14315, + "price": 369, + "quantity": 15092, "type": "buy" }, "food": { "active": false, - "price": 13, + "price": 30, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 50, - "quantity": 1024, + "price": 71, + "quantity": 15162, "type": "buy" }, "fuelium": { "active": false, - "price": 30, + "price": 35, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 753, + "price": 638, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 75, + "price": 96, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 37, - "quantity": 21430, + "price": 45, + "quantity": 16980, "type": "buy" }, "hydrogen": { "active": false, - "price": 76, + "price": 62, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 26, + "price": 10, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 60, + "price": 73, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 24, + "price": 28, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 44, + "price": 37, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 34, + "price": 41, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 273, + "price": 396, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 229, + "price": 489, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 35, + "price": 16, "quantity": 0, "type": "buy" } @@ -38626,89 +38686,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 311, - "target": "GBF Freighter A", - "time": 1034 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 311, - "target": "GBF Large Freighter B", - "time": 1045 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 311, - "target": "GBF Large Freighter B", - "time": 1062 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 311, - "target": "GBF Freighter A", - "time": 1127 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 311, - "target": "GBF Freighter A", - "time": 1203 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 17, - "price": 372, - "target": "GBF Freighter A", - "time": 2482 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 16, - "price": 318, - "target": "GBF Freighter A", - "time": 3108 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 18, - "price": 318, - "target": "GBF Freighter A", - "time": 3302 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 17, - "price": 318, - "target": "GBF Freighter A", - "time": 3489 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -38723,7 +38701,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [294, 293, 292], + "ids": [298, 297, 296], "mask": "BigInt:4294967296" }, "crew": { @@ -38929,19 +38907,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 24859, + "currentSpeed": 1, + "currentRotary": 0.0015218034830684068, + "state": "cruise", + "target": 117, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -38951,7 +38929,9 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24859, "onlyManeuver": true } + { "type": "move", "targetId": 117 }, + { "type": "teleport", "targetId": 119 }, + { "type": "move", "targetId": 2366 } ], "type": "move" } @@ -38961,9 +38941,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 39.71243368171856, - "coord": [-13.385315448691134, 16.591261194116967], - "sector": 15, + "angle": -4.542674768143227, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -38971,15 +38951,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, + "allocationIdCounter": 1, "allocations": [], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -39048,51 +39028,23 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 585 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 890 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 869, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1196 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -39101,13 +39053,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Large Freighter B", + "value": "THT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -39115,7 +39067,7 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 283, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1623, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, "id": 292, @@ -39130,15 +39082,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 2.220446049250313e-15, + "currentSpeed": 1.1500000000000001, + "currentRotary": -0.02132103040534039, "state": "cruise", - "target": 1520, + "target": 2367, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -39150,48 +39102,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1520 }, - { "type": "dock", "targetId": 1520 }, - { - "targetId": 1520, - "offer": { - "initiator": 293, - "quantity": 58, - "commodity": "fuel", - "factionId": 282, - "budget": 283, - "allocations": { - "buyer": { "budget": 92, "storage": 59 }, - "seller": { "budget": null, "storage": 319 } - }, - "price": 60, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 283 }, - { "type": "dock", "targetId": 283 }, - { - "targetId": 283, - "offer": { - "initiator": 293, - "quantity": 58, - "commodity": "fuel", - "factionId": 282, - "budget": 283, - "allocations": { - "buyer": { "budget": null, "storage": 92 }, - "seller": { "budget": null, "storage": 60 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2367 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -39199,8 +39112,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 20.063154569669994, - "coord": [-4.073806301551177, 13.803618682352251], + "angle": 2.6307419694384753, + "coord": [-6.800961704313487, -5.1212559166913], "sector": 15, "moved": true }, @@ -39209,70 +39122,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 61, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 58, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "incoming", - "meta": { "tradeId": "1520:293:buy:3582" }, - "id": 59 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 58, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "outgoing", - "meta": { "tradeId": "283:293:sell:3582" }, - "id": 60 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -39341,87 +39199,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 424 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 577 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 728 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 883 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1036 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 17, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1750 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 16, - "price": 294, - "target": "GBF GJ 229 II Factory", - "time": 2899 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -39430,13 +39224,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Freighter A", + "value": "THT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -39444,7 +39238,7 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 283, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1611, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, "id": 293, @@ -39459,15 +39253,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": -4.884981308350689e-15, + "currentSpeed": 1.1500000000000001, + "currentRotary": -0.037886081136700334, "state": "cruise", - "target": 283, + "target": 1611, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -39482,19 +39276,38 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 283 }, - { "type": "dock", "targetId": 283 }, + { "type": "move", "targetId": 1611 }, + { "type": "dock", "targetId": 1611 }, { - "targetId": 283, + "targetId": 1611, "offer": { "initiator": 294, - "quantity": 64, + "quantity": 6, "commodity": "fuel", "factionId": 282, - "budget": 283, + "budget": 1599, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 7 } + }, + "price": 36, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 1599 }, + { "type": "dock", "targetId": 1599 }, + { + "targetId": 1599, + "offer": { + "initiator": 294, + "quantity": 6, + "commodity": "fuel", + "factionId": 282, + "budget": 1599, "allocations": { - "buyer": { "budget": null, "storage": 90 }, - "seller": { "budget": null, "storage": 64 } + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -39509,8 +39322,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -33.35410036351637, - "coord": [-12.245985915546148, 17.083622383357056], + "angle": 8.947169738690551, + "coord": [-6.800961704313487, -5.1212559166913], "sector": 15, "moved": true }, @@ -39519,13 +39332,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 65, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -39534,7 +39347,34 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 64, + "fuel": 6, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 771, + "type": "incoming", + "meta": { "tradeId": "1611:294:buy:771" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 6, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -39549,13 +39389,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3528, + "issued": 771, "type": "outgoing", - "meta": { "tradeId": "283:294:sell:3528" }, - "id": 64 + "meta": { "tradeId": "1599:294:sell:771" }, + "id": 2 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -39583,7 +39423,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 64, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -39624,78 +39464,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 313 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 463 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 613 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 763 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "GBF GJ 229 II Factory", - "time": 913 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1063 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -39704,13 +39489,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Freighter A", + "value": "THT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -39718,559 +39503,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 283, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1599, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, "id": 294, "tags": ["selection", "ship", "role:transport"] }, - { - "components": { - "color": { "name": "color", "value": "#97ff7d", "mask": "BigInt:256" }, - "name": { - "name": "name", - "value": "Player Faction", - "mask": "BigInt:137438953472", - "slug": "PLA" - }, - "blueprints": { - "name": "blueprints", - "ships": [ - { - "name": "Courier A", - "slug": "courierA", - "storage": 11, - "mining": 0, - "texture": "sCiv", - "size": "small", - "cruise": 4, - "maneuver": 0.3, - "rotary": 86, - "ttc": 7, - "acceleration": 0.1, - "build": { - "cost": { - "electronics": 7, - "hullPlates": 200, - "fuel": 100, - "engineParts": 5 - }, - "time": 60 - }, - "role": "transport", - "damage": { "value": 1, "range": 1, "cooldown": 0.3 }, - "hitpoints": { - "hp": { "value": 90, "regen": 0.2 }, - "shield": { "value": 30, "regen": 2 } - } - }, - { - "acceleration": 0.09, - "build": { - "time": 85, - "cost": { - "electronics": 11, - "hullPlates": 225, - "fuel": 90, - "engineParts": 6 - } - }, - "mining": 1, - "role": "mining", - "cruise": 5.2, - "maneuver": 0.28, - "rotary": 92, - "ttc": 8, - "name": "Slate", - "size": "small", - "storage": 32, - "texture": "sMin", - "slug": "smallMinerA", - "damage": { "value": 1, "cooldown": 0.3, "range": 0.95 }, - "hitpoints": { - "hp": { "value": 95, "regen": 0.15 }, - "shield": { "value": 30, "regen": 1.9 } - } - } - ], - "facilityModules": [ - { - "slug": "waterProduction", - "name": "Water Production", - "pac": { - "ice": { "consumes": 1200, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } - }, - "time": 300, - "type": "production", - "build": { - "cost": { - "hullPlates": 8500, - "fuel": 20000, - "electronics": 2600, - "drones": 50 - }, - "time": 220 - }, - "crew": { "cost": 4 } - }, - { - "slug": "containerSmall", - "name": "Small Container", - "storage": 4000, - "type": "storage", - "build": { - "cost": { - "hullPlates": 1000, - "fuel": 800, - "electronics": 120, - "drones": 20 - }, - "time": 70 - }, - "crew": { "cost": 0 } - }, - { - "slug": "containerMedium", - "name": "Medium Container", - "type": "storage", - "pac": {}, - "time": 0, - "build": { "cost": {}, "time": 0 }, - "storage": 20000, - "crew": { "cost": 0 } - }, - { - "slug": "shipyard", - "name": "Shipyard", - "type": "shipyard", - "pac": {}, - "time": 0, - "build": { - "cost": { - "hullPlates": 70000, - "fuel": 24000, - "electronics": 12000, - "drones": 1000 - }, - "time": 0 - }, - "crew": { "cost": 120 } - }, - { - "slug": "habitat", - "name": "Habitation Dome", - "type": "habitat", - "time": 900, - "build": { - "cost": { - "electronics": 2300, - "fuel": 1450, - "hullPlates": 22000 - }, - "time": 410 - }, - "crew": { "cost": 0, "capacity": 50 } - }, - { - "slug": "containerLarge", - "name": "Large Container", - "type": "storage", - "pac": {}, - "time": 0, - "build": { "cost": {}, "time": 0 }, - "storage": 60000, - "crew": { "cost": 0 } - }, - { - "slug": "farm", - "name": "Farm", - "type": "production", - "pac": { - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "time": 240, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 5 } - }, - { - "slug": "refinery", - "name": "Refinery", - "type": "production", - "pac": { - "ore": { "consumes": 1000, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 } - }, - "time": 330, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 8 } - }, - { - "slug": "fueliumRefinery", - "name": "Fuelium Refinery", - "type": "production", - "pac": { - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 } - }, - "time": 359, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 8 } - }, - { - "slug": "hullPlatesFactory", - "name": "Hull Plates Factory", - "type": "production", - "pac": { - "fuel": { "consumes": 325, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 } - }, - "time": 600, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 12 } - }, - { - "slug": "goldRefinery", - "name": "Gold Refinery", - "type": "production", - "pac": { - "goldOre": { "consumes": 1175, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "fuel": { "consumes": 138, "produces": 0 } - }, - "time": 900, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 15 } - }, - { - "slug": "siliconPurification", - "name": "Silicon Purification", - "type": "production", - "pac": { - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 } - }, - "time": 360, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 15 } - }, - { - "slug": "electronicsFactory", - "name": "Electronics Factory", - "type": "production", - "pac": { - "electronics": { "consumes": 0, "produces": 150 }, - "silicon": { "consumes": 450, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 } - }, - "time": 420, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 20 } - }, - { - "slug": "droneFactory", - "name": "Drone Factory", - "type": "production", - "pac": { - "hullPlates": { "consumes": 60, "produces": 0 }, - "electronics": { "consumes": 35, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 } - }, - "time": 960, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 25 } - }, - { - "slug": "teleport", - "name": "Hyperspace Generator", - "type": "teleport", - "pac": { - "hullPlates": { "consumes": 24, "produces": 0 }, - "electronics": { "consumes": 21, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 } - }, - "time": 480, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 0 } - }, - { - "slug": "smallDefense", - "name": "Small Defense Module", - "type": "military", - "pac": {}, - "time": 0, - "build": { "cost": {}, "time": 0 }, - "damage": { "value": 15, "range": 3, "cooldown": 0.7 }, - "storage": 1000, - "crew": { "cost": 1 } - }, - { - "slug": "hydrogenFactory", - "name": "Hydrogen Factory", - "type": "production", - "pac": { - "water": { "consumes": 300, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, - "fuel": { "consumes": 88, "produces": 0 } - }, - "time": 360, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 8 } - }, - { - "slug": "coolantFactory", - "name": "Coolant Factory", - "type": "production", - "pac": { - "coolant": { "consumes": 0, "produces": 225 }, - "fuel": { "consumes": 105, "produces": 0 }, - "hydrogen": { "consumes": 188, "produces": 0 } - }, - "time": 420, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 15 } - }, - { - "slug": "enginePartsFactory", - "name": "Engine Parts Factory", - "type": "production", - "pac": { - "hullPlates": { "consumes": 50, "produces": 0 }, - "fuel": { "consumes": 128, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 40 }, - "superconductors": { "consumes": 5, "produces": 0 } - }, - "time": 590, - "build": { "cost": {}, "time": 0 }, - "crew": { "cost": 25 } - }, - { - "slug": "hub", - "name": "Sector Hub", - "type": "hub", - "pac": { - "food": { "consumes": 4, "produces": 0 }, - "water": { "consumes": 2, "produces": 0 } - }, - "build": { - "cost": { - "hullPlates": 29000, - "drones": 800, - "electronics": 3500, - "fuel": 1500 - }, - "time": 960 - }, - "crew": { "cost": 0 } - }, - { - "slug": "superconductorFactory", - "name": "Superconductor Factory", - "type": "production", - "pac": { - "gold": { "consumes": 10, "produces": 0 }, - "metals": { "consumes": 100, "produces": 0 }, - "fuel": { "consumes": 30, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 70 }, - "coolant": { "consumes": 80, "produces": 0 } - }, - "build": { - "cost": { - "fuel": 9000, - "hullPlates": 16000, - "electronics": 7400, - "drones": 90 - }, - "time": 370 - }, - "crew": { "cost": 21 } - } - ], - "mask": "BigInt:8" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "relations": { - "name": "relations", - "values": { - "222": 0, - "232": 0, - "242": -50, - "252": 0, - "262": 0, - "272": 0, - "282": 0, - "296": -40 - }, - "mask": "BigInt:268435456" - }, - "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 5000, - "money": 5000, - "name": "budget", - "mask": "BigInt:16" - }, - "missions": { - "name": "missions", - "value": [], - "offer": null, - "declined": 3600, - "mask": "BigInt:33554432" - } - }, - "cooldowns": { "timers": {} }, - "id": 295, - "tags": ["player"] - }, - { - "components": { - "color": { "name": "color", "value": "#f55b5b", "mask": "BigInt:256" }, - "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 10000000000, - "money": 10000000000, - "name": "budget", - "mask": "BigInt:16" - }, - "name": { - "name": "name", - "value": "Pirates", - "mask": "BigInt:137438953472", - "slug": "PIR" - }, - "blueprints": { - "name": "blueprints", - "ships": [ - { - "acceleration": 0.2, - "build": { - "time": 70, - "cost": { - "drones": 0, - "fuel": 350, - "hullPlates": 700, - "electronics": 25, - "engineParts": 10 - } - }, - "damage": { "value": 3, "range": 1.2, "cooldown": 0.2 }, - "range": 2, - "mining": 0, - "role": "military", - "cruise": 1.9, - "maneuver": 0.6, - "rotary": 142, - "ttc": 0.8, - "name": "Fighter", - "size": "small", - "storage": 10, - "texture": "sMil", - "slug": "fighter", - "hitpoints": { - "hp": { "value": 110, "regen": 0.2 }, - "shield": { "value": 35, "regen": 3 } - } - } - ], - "facilityModules": [ - { - "slug": "habitat", - "name": "Habitation Dome", - "type": "habitat", - "time": 900, - "build": { - "cost": { - "electronics": 2300, - "fuel": 1450, - "hullPlates": 22000 - }, - "time": 410 - }, - "crew": { "cost": 0, "capacity": 50 } - }, - { - "slug": "hub", - "name": "Sector Hub", - "type": "hub", - "pac": { - "food": { "consumes": 4, "produces": 0 }, - "water": { "consumes": 2, "produces": 0 } - }, - "build": { - "cost": { - "hullPlates": 29000, - "drones": 800, - "electronics": 3500, - "fuel": 1500 - }, - "time": 960 - }, - "crew": { "cost": 0 } - } - ], - "mask": "BigInt:8" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "relations": { - "name": "relations", - "values": { - "222": -40, - "232": -40, - "242": -40, - "252": -40, - "262": -40, - "272": -40, - "282": -40, - "295": -40 - }, - "mask": "BigInt:268435456" - }, - "ai": { - "name": "ai", - "type": "pirate", - "stockpiling": 1.4369443613950426, - "priceModifier": 0.18035818542399817, - "restrictions": { "mining": false }, - "home": 0, - "mask": "BigInt:1" - } - }, - "cooldowns": { "timers": {} }, - "id": 296, - "tags": [] - }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.5009831567151233, - "cruise": 4, - "ttc": 7, - "maneuver": 0.3, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": null, + "target": 159, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -40278,22 +39534,39 @@ "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 295, "mask": "BigInt:274877906944" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 149 }, + { "type": "teleport", "targetId": 151 }, + { "type": "move", "targetId": 117 }, + { "type": "teleport", "targetId": 119 }, + { "type": "move", "targetId": 2369 } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.267384792631638, - "coord": [-0.7195527175798871, -0.9805140403088113], - "sector": 9, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -772.3694623124212, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true }, "render": { - "color": 9961341, + "color": 16251995, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -40301,7 +39574,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 11, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -40370,7 +39643,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -40381,12 +39654,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -40395,43 +39668,44 @@ }, "model": { "name": "model", - "slug": "courierA", - "value": "Courier A", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "Courier A", + "value": "THT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1599, "mask": "BigInt:512" } }, - "cooldowns": { "timers": {} }, - "id": 297, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 295, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.1, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, + "currentSpeed": 0.09, + "currentRotary": 0.014936881034873117, + "state": "warming", + "target": 111, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -40439,70 +39713,185 @@ "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 295, "mask": "BigInt:274877906944" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "auto", + "type": "trade", + "actions": [ + { "type": "move", "targetId": 111 }, + { "type": "teleport", "targetId": 109 }, + { "type": "move", "targetId": 107 }, + { "type": "teleport", "targetId": 105 }, + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 684 }, + { "type": "dock", "targetId": 684 }, + { + "targetId": 684, + "offer": { + "initiator": 296, + "quantity": 940, + "commodity": "hullPlates", + "factionId": 282, + "budget": 283, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 38, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 283 }, + { "type": "dock", "targetId": 283 }, + { + "targetId": 283, + "offer": { + "initiator": 296, + "quantity": 940, + "commodity": "hullPlates", + "factionId": 282, + "budget": 283, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 0.7016345756328581, - "coord": [0.3266691927409784, -0.048635524981003875], - "sector": 9, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 3.88035847620187, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, + "moved": true }, "render": { - "color": 9961341, + "color": 16251995, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 32, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3, + "type": "incoming", + "meta": { "tradeId": "684:296:buy:3" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3, + "type": "outgoing", + "meta": { "tradeId": "283:296:sell:3" }, + "id": 2 + } + ], + "max": 940, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, "water": 0 }, "quota": { @@ -40531,7 +39920,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -40542,27 +39931,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, + "range": 1, "cooldown": 0.3, - "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "Slate", + "value": "THT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -40570,36 +39959,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 0, - "efficiency": 1, - "entityId": null, - "mask": "BigInt:16777216" - } + "commander": { "name": "commander", "id": 283, "mask": "BigInt:512" } }, - "cooldowns": { "timers": {} }, - "id": 298, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 296, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.05, - "rotary": 0.13962634015954636, - "cruise": 1.1, - "ttc": 14, - "maneuver": 0.07, + "acceleration": 0.1, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, + "currentSpeed": 0.09, + "currentRotary": 0.014936881034873117, + "state": "warming", + "target": 111, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -40607,30 +39990,145 @@ "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 295, "mask": "BigInt:274877906944" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "auto", + "type": "trade", + "actions": [ + { "type": "move", "targetId": 111 }, + { "type": "teleport", "targetId": 109 }, + { "type": "move", "targetId": 107 }, + { "type": "teleport", "targetId": 105 }, + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 684 }, + { "type": "dock", "targetId": 684 }, + { + "targetId": 684, + "offer": { + "initiator": 297, + "quantity": 940, + "commodity": "hullPlates", + "factionId": 282, + "budget": 283, + "allocations": { + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 38, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 283 }, + { "type": "dock", "targetId": 283 }, + { + "targetId": 283, + "offer": { + "initiator": 297, + "quantity": 940, + "commodity": "hullPlates", + "factionId": 282, + "budget": 283, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -0.1799520554989571, - "coord": [0.8018743261471044, -0.27017621953815185], - "sector": 9, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 3.88035847620187, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, + "moved": true }, "render": { - "color": 9961341, + "color": 16251995, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lBld", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 100, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3, + "type": "incoming", + "meta": { "tradeId": "684:297:buy:3" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3, + "type": "outgoing", + "meta": { "tradeId": "283:297:sell:3" }, + "id": 2 + } + ], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -40711,26 +40209,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 10, "value": 300 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 5, + "value": 1, "range": 1, - "cooldown": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "facilityStarter", - "value": "Facility Starter", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "Facility Starter", + "value": "THT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -40738,36 +40236,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "deployable": { - "active": false, - "name": "deployable", - "type": "facility", - "cancel": false, - "mask": "BigInt:8192" - } + "commander": { "name": "commander", "id": 283, "mask": "BigInt:512" } }, - "cooldowns": { "timers": {} }, - "id": 299, - "tags": ["selection", "ship", "role:building"] + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 297, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.06, - "rotary": 0.19198621771937624, - "cruise": 0.9, - "ttc": 21, - "maneuver": 0.055, + "acceleration": 0.1, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, + "currentSpeed": 4.855, + "currentRotary": 0.0478606470673979, + "state": "cruise", + "target": 283, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -40775,30 +40267,87 @@ "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 295, "mask": "BigInt:274877906944" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "auto", + "type": "trade", + "actions": [ + { "type": "move", "targetId": 283 }, + { "type": "dock", "targetId": 283 }, + { + "targetId": 283, + "offer": { + "initiator": 298, + "quantity": 6, + "commodity": "hullPlates", + "factionId": 282, + "budget": 283, + "allocations": { + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -0.4415284775419379, - "coord": [-0.05979763087441492, -0.8403572139600376], - "sector": 9, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 6.031213871991362, + "coord": [-6.800961704313487, -5.1212559166913], + "sector": 15, + "moved": true }, "render": { - "color": 9961341, + "color": 16251995, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lStg", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 0, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 6, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3, + "type": "outgoing", + "meta": { "tradeId": "283:298:sell:3" }, + "id": 2 + } + ], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -40830,7 +40379,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, "metals": 0, @@ -40867,38 +40416,49 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [], + "entries": [ + { + "type": "trade", + "action": "buy", + "commodity": "hullPlates", + "quantity": 6, + "price": 38, + "target": "ACT Ross 128 II Factory", + "targetId": 684, + "time": 826 + } + ], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 10, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 5, + "value": 1, "range": 1, - "cooldown": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "facilityBuilder", - "value": "Facility Builder", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "Facility Builder", + "value": "THT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -40906,74 +40466,587 @@ "ids": [], "mask": "BigInt:4294967296" }, - "deployable": { - "active": false, - "name": "deployable", - "type": "builder", - "cancel": false, - "mask": "BigInt:8192" + "commander": { "name": "commander", "id": 283, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 298, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "color": { "name": "color", "value": "#97ff7d", "mask": "BigInt:256" }, + "name": { + "name": "name", + "value": "Player Faction", + "mask": "BigInt:137438953472", + "slug": "PLA" + }, + "blueprints": { + "name": "blueprints", + "ships": [ + { + "name": "Courier A", + "slug": "courierA", + "storage": 11, + "mining": 0, + "texture": "sCiv", + "size": "small", + "cruise": 4, + "maneuver": 0.3, + "rotary": 86, + "ttc": 7, + "acceleration": 0.1, + "build": { + "cost": { + "electronics": 7, + "hullPlates": 200, + "fuel": 100, + "engineParts": 5 + }, + "time": 60 + }, + "role": "transport", + "damage": { "value": 1, "range": 1, "cooldown": 0.3 }, + "hitpoints": { + "hp": { "value": 90, "regen": 0.2 }, + "shield": { "value": 30, "regen": 2 } + } + }, + { + "acceleration": 0.09, + "build": { + "time": 85, + "cost": { + "electronics": 11, + "hullPlates": 225, + "fuel": 90, + "engineParts": 6 + } + }, + "mining": 1, + "role": "mining", + "cruise": 5.2, + "maneuver": 0.28, + "rotary": 92, + "ttc": 8, + "name": "Slate", + "size": "small", + "storage": 32, + "texture": "sMin", + "slug": "smallMinerA", + "damage": { "value": 1, "cooldown": 0.3, "range": 0.95 }, + "hitpoints": { + "hp": { "value": 95, "regen": 0.15 }, + "shield": { "value": 30, "regen": 1.9 } + } + } + ], + "facilityModules": [ + { + "slug": "waterProduction", + "name": "Water Production", + "pac": { + "ice": { "consumes": 1200, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "time": 300, + "type": "production", + "build": { + "cost": { + "hullPlates": 8500, + "fuel": 20000, + "electronics": 2600, + "drones": 50 + }, + "time": 220 + }, + "crew": { "cost": 4 } + }, + { + "slug": "containerSmall", + "name": "Small Container", + "storage": 4000, + "type": "storage", + "build": { + "cost": { + "hullPlates": 1000, + "fuel": 800, + "electronics": 120, + "drones": 20 + }, + "time": 70 + }, + "crew": { "cost": 0 } + }, + { + "slug": "containerMedium", + "name": "Medium Container", + "type": "storage", + "pac": {}, + "time": 0, + "build": { "cost": {}, "time": 0 }, + "storage": 20000, + "crew": { "cost": 0 } + }, + { + "slug": "shipyard", + "name": "Shipyard", + "type": "shipyard", + "pac": {}, + "time": 0, + "build": { + "cost": { + "hullPlates": 70000, + "fuel": 24000, + "electronics": 12000, + "drones": 1000 + }, + "time": 0 + }, + "crew": { "cost": 120 } + }, + { + "slug": "habitat", + "name": "Habitation Dome", + "type": "habitat", + "time": 900, + "build": { + "cost": { + "electronics": 2300, + "fuel": 1450, + "hullPlates": 22000 + }, + "time": 410 + }, + "crew": { "cost": 0, "capacity": 50 } + }, + { + "slug": "containerLarge", + "name": "Large Container", + "type": "storage", + "pac": {}, + "time": 0, + "build": { "cost": {}, "time": 0 }, + "storage": 60000, + "crew": { "cost": 0 } + }, + { + "slug": "farm", + "name": "Farm", + "type": "production", + "pac": { + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "time": 240, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 5 } + }, + { + "slug": "refinery", + "name": "Refinery", + "type": "production", + "pac": { + "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 } + }, + "time": 330, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 8 } + }, + { + "slug": "fueliumRefinery", + "name": "Fuelium Refinery", + "type": "production", + "pac": { + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 } + }, + "time": 359, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 8 } + }, + { + "slug": "hullPlatesFactory", + "name": "Hull Plates Factory", + "type": "production", + "pac": { + "fuel": { "consumes": 325, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 } + }, + "time": 600, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 12 } + }, + { + "slug": "goldRefinery", + "name": "Gold Refinery", + "type": "production", + "pac": { + "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "fuel": { "consumes": 138, "produces": 0 } + }, + "time": 900, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 15 } + }, + { + "slug": "siliconPurification", + "name": "Silicon Purification", + "type": "production", + "pac": { + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 } + }, + "time": 360, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 15 } + }, + { + "slug": "electronicsFactory", + "name": "Electronics Factory", + "type": "production", + "pac": { + "electronics": { "consumes": 0, "produces": 150 }, + "silicon": { "consumes": 450, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 } + }, + "time": 420, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 20 } + }, + { + "slug": "droneFactory", + "name": "Drone Factory", + "type": "production", + "pac": { + "hullPlates": { "consumes": 60, "produces": 0 }, + "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 } + }, + "time": 960, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 25 } + }, + { + "slug": "teleport", + "name": "Hyperspace Generator", + "type": "teleport", + "pac": { + "hullPlates": { "consumes": 24, "produces": 0 }, + "electronics": { "consumes": 21, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 } + }, + "time": 480, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 0 } + }, + { + "slug": "smallDefense", + "name": "Small Defense Module", + "type": "military", + "pac": {}, + "time": 0, + "build": { "cost": {}, "time": 0 }, + "damage": { "value": 15, "range": 3, "cooldown": 0.7 }, + "storage": 1000, + "crew": { "cost": 1 } + }, + { + "slug": "hydrogenFactory", + "name": "Hydrogen Factory", + "type": "production", + "pac": { + "water": { "consumes": 300, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, + "fuel": { "consumes": 88, "produces": 0 } + }, + "time": 360, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 8 } + }, + { + "slug": "coolantFactory", + "name": "Coolant Factory", + "type": "production", + "pac": { + "coolant": { "consumes": 0, "produces": 225 }, + "fuel": { "consumes": 105, "produces": 0 }, + "hydrogen": { "consumes": 188, "produces": 0 } + }, + "time": 420, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 15 } + }, + { + "slug": "enginePartsFactory", + "name": "Engine Parts Factory", + "type": "production", + "pac": { + "hullPlates": { "consumes": 50, "produces": 0 }, + "fuel": { "consumes": 128, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 40 }, + "superconductors": { "consumes": 5, "produces": 0 } + }, + "time": 590, + "build": { "cost": {}, "time": 0 }, + "crew": { "cost": 25 } + }, + { + "slug": "hub", + "name": "Sector Hub", + "type": "hub", + "pac": { + "food": { "consumes": 4, "produces": 0 }, + "water": { "consumes": 2, "produces": 0 } + }, + "build": { + "cost": { + "hullPlates": 29000, + "drones": 800, + "electronics": 3500, + "fuel": 1500 + }, + "time": 960 + }, + "crew": { "cost": 0 } + }, + { + "slug": "superconductorFactory", + "name": "Superconductor Factory", + "type": "production", + "pac": { + "gold": { "consumes": 10, "produces": 0 }, + "metals": { "consumes": 100, "produces": 0 }, + "fuel": { "consumes": 30, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 70 }, + "coolant": { "consumes": 80, "produces": 0 } + }, + "build": { + "cost": { + "fuel": 9000, + "hullPlates": 16000, + "electronics": 7400, + "drones": 90 + }, + "time": 370 + }, + "crew": { "cost": 21 } + } + ], + "mask": "BigInt:8" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "relations": { + "name": "relations", + "values": { + "222": 0, + "232": 0, + "242": -50, + "252": 0, + "262": 0, + "272": 0, + "282": 0, + "300": -40 + }, + "mask": "BigInt:268435456" + }, + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 5000, + "money": 5000, + "name": "budget", + "mask": "BigInt:16" + }, + "missions": { + "name": "missions", + "value": [], + "offer": null, + "declined": 3600, + "mask": "BigInt:33554432" } }, "cooldowns": { "timers": {} }, - "id": 300, - "tags": ["selection", "ship", "role:storage"] + "id": 299, + "tags": ["player"] }, { "components": { + "color": { "name": "color", "value": "#f55b5b", "mask": "BigInt:256" }, "budget": { - "allocationIdCounter": 16, + "allocationIdCounter": 1, "allocations": [], - "available": 433556, - "money": 433556, + "available": 10000000000, + "money": 10000000000, "name": "budget", "mask": "BigInt:16" }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" + "name": { + "name": "name", + "value": "Pirates", + "mask": "BigInt:137438953472", + "slug": "PIR" }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" + "blueprints": { + "name": "blueprints", + "ships": [ + { + "acceleration": 0.23, + "build": { "time": 0, "cost": {} }, + "mining": 0, + "role": "military", + "cruise": 1.7, + "maneuver": 0.64, + "rotary": 168, + "ttc": 1.3, + "name": "Roach", + "size": "small", + "storage": 15, + "texture": "sMil", + "slug": "roach", + "damage": { "value": 1, "cooldown": 0.2, "range": 0.95 }, + "hitpoints": { + "hp": { "value": 45, "regen": 0.1 }, + "shield": { "value": 13, "regen": 2.5 } + } + } + ], + "facilityModules": [ + { + "slug": "habitat", + "name": "Habitation Dome", + "type": "habitat", + "time": 900, + "build": { + "cost": { + "electronics": 2300, + "fuel": 1450, + "hullPlates": 22000 + }, + "time": 410 + }, + "crew": { "cost": 0, "capacity": 50 } + }, + { + "slug": "hub", + "name": "Sector Hub", + "type": "hub", + "pac": { + "food": { "consumes": 4, "produces": 0 }, + "water": { "consumes": 2, "produces": 0 } + }, + "build": { + "cost": { + "hullPlates": 29000, + "drones": 800, + "electronics": 3500, + "fuel": 1500 + }, + "time": 960 + }, + "crew": { "cost": 0 } + } + ], + "mask": "BigInt:8" }, - "modules": { - "name": "modules", - "ids": [302, 303, 304, 305, 306, 307, 308, 309, 310, 311, 312], - "mask": "BigInt:68719476736" + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "relations": { + "name": "relations", + "values": { + "222": -40, + "232": -40, + "242": -40, + "252": -40, + "262": -40, + "272": -40, + "282": -40, + "299": -40 + }, + "mask": "BigInt:268435456" + }, + "ai": { + "name": "ai", + "type": "pirate", + "stockpiling": 1.426661428085074, + "priceModifier": 0.1422569734710876, + "restrictions": { "mining": false }, + "home": 0, + "mask": "BigInt:1" + } + }, + "cooldowns": { "timers": {} }, + "id": 300, + "tags": [] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 1.5009831567151233, + "cruise": 4, + "ttc": 7, + "maneuver": 0.3, + "active": true, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": null, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" }, + "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "owner": { "name": "owner", "id": 299, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 0, - "coord": [-17.339152037942355, -22.448710725267816], - "sector": 10, - "moved": false, + "angle": 1.6344171849736284, + "coord": [-0.20758895473289896, -0.44461543026909645], + "sector": 9, + "moved": true, "mask": "BigInt:2199023255552" }, "render": { - "color": 7326194, - "defaultScale": 1, + "color": 9961341, + "defaultScale": 0.4, "name": "render", - "layer": "facility", - "texture": "fFactory", + "layer": "ship", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, + "allocationIdCounter": 1, "allocations": [], - "max": 61000, + "max": 11, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1, - "fuel": 946, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -40986,15 +41059,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1, - "fuel": 946, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -41007,192 +41080,717 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 31926, - "fuel": 3745, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 10216, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 15111 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [89.70336316322965, 108.28841579837726], - "drones": [739.4352878151722, 745.2407475954319], - "electronics": [250.51633183070032, 265.619158772009], - "engineParts": [431.7939784939257, 439.679295348551], - "food": [21.406734231793962, 22], - "fuel": [54.61557079062634, 66.15256964424691], - "fuelium": [41.715658115490015, 58.639635406766985], - "gold": [486.67174325587234, 503.0749714327417], - "goldOre": [39.79143132835683, 53.391486827447594], - "hullPlates": [38.9129101741091, 50.87880389035007], - "hydrogen": [77.02429995176499, 86.1038257502019], - "ice": [11.697598021173626, 27], - "metals": [82.18502998476515, 92.28587407878737], - "ore": [33.492876755919156, 38.73641301703446], - "silica": [50.316811444404784, 60.13839700664497], - "silicon": [34.384118068048856, 45.79887900873508], - "superconductors": [462.4894989404248, 471.99372796861553], - "tauMetal": [473.9049216065397, 479.3276942209918], - "water": [35, 36.17696835674319] - }, - "lastPriceAdjust": { - "commodities": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 98, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": false, - "price": 740, - "quantity": 0, - "type": "buy" - }, - "electronics": { - "active": false, - "price": 256, - "quantity": 0, - "type": "buy" - }, - "engineParts": { - "active": false, - "price": 431, - "quantity": 0, - "type": "buy" - }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "courierA", + "value": "Courier A", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "Courier A", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + } + }, + "cooldowns": { "timers": {} }, + "id": 301, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.05, + "rotary": 0.13962634015954636, + "cruise": 1.1, + "ttc": 14, + "maneuver": 0.07, + "active": true, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": null, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "owner": { "name": "owner", "id": 299, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 2.735346527732637, + "coord": [-0.35047599283337605, -0.527934788016656], + "sector": 9, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9961341, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "lBld", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 100, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "large", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 10, "value": 300 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 5, + "range": 1, + "cooldown": 1, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "facilityStarter", + "value": "Facility Starter", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "Facility Starter", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "deployable": { + "active": false, + "name": "deployable", + "type": "facility", + "cancel": false, + "mask": "BigInt:8192" + } + }, + "cooldowns": { "timers": {} }, + "id": 302, + "tags": ["selection", "ship", "role:building"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.06, + "rotary": 0.19198621771937624, + "cruise": 0.9, + "ttc": 21, + "maneuver": 0.055, + "active": true, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": null, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "owner": { "name": "owner", "id": 299, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.1227596642192568, + "coord": [-0.4527632612968935, -0.3509914411789602], + "sector": 9, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9961341, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "lStg", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 0, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "large", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 10, "value": 300 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 5, + "range": 1, + "cooldown": 1, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "facilityBuilder", + "value": "Facility Builder", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "Facility Builder", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "deployable": { + "active": false, + "name": "deployable", + "type": "builder", + "cancel": false, + "mask": "BigInt:8192" + } + }, + "cooldowns": { "timers": {} }, + "id": 303, + "tags": ["selection", "ship", "role:storage"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 393965, + "money": 393965, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [305, 306, 307, 308, 309, 310, 311, 312, 313, 314, 315], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-12.906720447384174, 22.490497949482158], + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 7326194, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 160, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1062, + "type": "incoming", + "meta": { "tradeId": "304:1669:sell:1062" }, + "id": 1 + } + ], + "max": 61000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 31926, + "fuel": 3745, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 10216, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 15111 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [103.75413788797475, 120.08175106492588], + "drones": [657.1536265017205, 663.7314917836733], + "electronics": [450.00545324722265, 455.0840267639644], + "engineParts": [466.0036815260811, 484.21347102348847], + "food": [15, 22], + "fuel": [35.57718108316217, 41.394801636673314], + "fuelium": [40.658187466085124, 58.40834801261854], + "gold": [611.7936410861101, 630.5689097539029], + "goldOre": [48.581786660108705, 63.23645044109678], + "hullPlates": [64.22755499825936, 81.23442883402585], + "hydrogen": [103.72177642521702, 113.77374638335424], + "ice": [25.837278681025634, 27], + "metals": [87.32621740994948, 93.03241688825885], + "ore": [17.87118653645119, 27.004273579327815], + "silica": [47.52766966275208, 62.02456790898844], + "silicon": [25.578505395203635, 36.11502354457444], + "superconductors": [239.4125678409725, 253.9730427455558], + "tauMetal": [312.74238220841636, 327.54347152183766], + "water": [35.81906563077945, 43] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 107, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 662, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 453, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 466, + "quantity": 0, + "type": "buy" + }, "food": { "active": true, "price": 21, - "quantity": 1, + "quantity": 0, "type": "sell" }, "fuel": { "active": true, - "price": 60, - "quantity": 2799, + "price": 37, + "quantity": 3745, "type": "buy" }, "fuelium": { "active": false, - "price": 51, + "price": 42, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 488, + "price": 621, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 52, + "price": 57, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 45, + "price": 80, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 84, + "price": 104, "quantity": 0, "type": "buy" }, "ice": { "active": true, - "price": 26, + "price": 25, "quantity": 10216, "type": "buy" }, "metals": { "active": false, - "price": 82, + "price": 90, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 36, + "price": 21, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 51, + "price": 52, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 38, + "price": 33, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 469, + "price": 246, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 476, + "price": 315, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, + "price": 36, "quantity": 0, "type": "sell" } @@ -41211,12 +41809,12 @@ }, "name": { "name": "name", - "value": "UEN Eris Farming Facility", + "value": "UEN Luna Farming Facility", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1563, 1562, 1575], + "ids": [1657, 1656, 1669], "mask": "BigInt:4294967296" }, "crew": { @@ -41253,14 +41851,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 301, + "id": 304, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41275,14 +41873,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 302, + "id": 305, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41297,14 +41895,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 303, + "id": 306, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41390,14 +41988,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 304, + "id": 307, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41483,14 +42081,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 305, + "id": 308, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41576,14 +42174,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 306, + "id": 309, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41598,14 +42196,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 307, + "id": 310, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41628,14 +42226,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 308, + "id": 311, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41650,14 +42248,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 309, + "id": 312, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41686,7 +42284,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7333333333333332 + "water": 0 }, "consumption": { "coolant": 0, @@ -41743,14 +42341,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 310, + "id": 313, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41765,7 +42363,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.05555555555555469, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -41787,7 +42385,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.06666666666666687, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -41800,7 +42398,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.16666666666666696 + "water": 0 } }, "name": "production", @@ -41836,14 +42434,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 311, + "id": 314, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 301, + "id": 304, "mask": "BigInt:549755813888" }, "name": { @@ -41929,16 +42527,23 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 312, + "id": 315, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 6, - "allocations": [], - "available": 2299744, - "money": 2299744, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 781, + "issued": 309, + "meta": { "tradeId": "376:1655:buy:309" }, + "id": 1 + } + ], + "available": 3082950, + "money": 3083731, "name": "budget", "mask": "BigInt:16" }, @@ -41956,13 +42561,13 @@ }, "modules": { "name": "modules", - "ids": [314, 315, 316, 317, 318, 319, 320, 321, 322, 323, 324], + "ids": [317, 318, 319, 320, 321, 322, 323, 324, 325, 326, 327], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [2.8923763436478946, 20.107045988841442], + "coord": [8.576950801703449, 34.62667527259159], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -41978,7 +42583,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 16, "allocations": [ { "amount": { @@ -41987,7 +42592,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -42002,37 +42607,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3207, - "type": "incoming", - "meta": { "tradeId": "313:1561:sell:3207" }, - "id": 16 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 160, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "313:1574:sell:3594" }, - "id": 18 + "meta": { "tradeId": "316:1655:sell:309" }, + "id": 1 } ], "max": 81000, @@ -42042,10 +42620,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1714, + "fuel": 2248, "fuelium": 0, - "gold": 3977, - "goldOre": 21830, + "gold": 4697, + "goldOre": 19478, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -42063,10 +42641,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1714, + "fuel": 2248, "fuelium": 0, - "gold": 3977, - "goldOre": 21830, + "gold": 4697, + "goldOre": 19478, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -42106,25 +42684,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [99.49608602059212, 114.03925477541806], - "drones": [1630.045649985822, 1642.8604573034738], - "electronics": [366.915230317146, 375.07825737336185], - "engineParts": [415.9927659837856, 433.47808748409506], - "food": [11.054626225504393, 27.553724423123576], - "fuel": [51.95718263573811, 69.99531342941994], - "fuelium": [46.252129586817034, 60.91321744831423], - "gold": [491.39259144186195, 502.89259144186195], - "goldOre": [41.50521503296319, 51.87817704032534], - "hullPlates": [44.33607583414145, 63.27477159258166], - "hydrogen": [58.43857390458719, 73.58463730420297], - "ice": [20.004911883580608, 39.201597377006124], - "metals": [46.36022063316476, 56.76504774098834], - "ore": [21.683799297618798, 35.925942770793654], - "silica": [35.3604976134459, 53.08769170640704], - "silicon": [27.57190913448961, 47.02391236447965], - "superconductors": [528.7487860229242, 539.3667849048072], - "tauMetal": [252.9012633820855, 260.5813353429645], - "water": [35.569449018155936, 48.09795634296313] + "coolant": [63.01375027845562, 79.87341726819872], + "drones": [1637.7686484530764, 1649.4079255064378], + "electronics": [417.08109521801737, 434.8245092086111], + "engineParts": [440.4472995614455, 454.256187493054], + "food": [12.46150776124151, 26.905325970897092], + "fuel": [61.19061102690405, 73.06866517356882], + "fuelium": [62.49159144256961, 76.64627214915883], + "gold": [624, 630.4874698750857], + "goldOre": [59.7357740991185, 65.29329753628514], + "hullPlates": [55.32262111993367, 68.60536039306626], + "hydrogen": [78.95746524784497, 84.06531943183913], + "ice": [24.501175587928373, 39.89155981623398], + "metals": [79.56910680149949, 94.81673081880967], + "ore": [38.40327551513576, 55.33559596204671], + "silica": [39.7314381096289, 51.78647604692401], + "silicon": [23.82915460902232, 42.82300144014694], + "superconductors": [261.06934587568855, 273.1542820048621], + "tauMetal": [527.0932530523169, 537.7853676003016], + "water": [19.088627482714784, 31.508534322298107] }, "lastPriceAdjust": { "commodities": { @@ -42153,91 +42731,91 @@ "offers": { "coolant": { "active": false, - "price": 101, + "price": 75, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1634, + "price": 1641, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 369, + "price": 421, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 428, + "price": 443, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 23, + "price": 16, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 55, - "quantity": 5900, + "price": 70, + "quantity": 5366, "type": "buy" }, "fuelium": { "active": false, - "price": 49, + "price": 70, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 496, - "quantity": 3977, + "price": 625, + "quantity": 4697, "type": "sell" }, "goldOre": { "active": true, - "price": 48, - "quantity": 43003, + "price": 62, + "quantity": 45355, "type": "buy" }, "hullPlates": { "active": false, - "price": 49, + "price": 62, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 73, + "price": 79, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 37, + "price": 38, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 53, + "price": 92, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 27, + "price": 54, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 39, + "price": 46, "quantity": 0, "type": "buy" }, @@ -42249,19 +42827,19 @@ }, "superconductors": { "active": false, - "price": 537, + "price": 264, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 258, + "price": 531, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 40, + "price": 22, "quantity": 0, "type": "buy" } @@ -42285,7 +42863,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1561, 1574], + "ids": [1655, 1668], "mask": "BigInt:4294967296" }, "crew": { @@ -42322,14 +42900,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 313, + "id": 316, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42344,14 +42922,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 314, + "id": 317, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42366,14 +42944,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 315, + "id": 318, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42388,14 +42966,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 316, + "id": 319, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42481,14 +43059,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 317, + "id": 320, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42503,14 +43081,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 318, + "id": 321, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42596,14 +43174,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 319, + "id": 322, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42618,14 +43196,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 320, + "id": 323, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42711,14 +43289,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 321, + "id": 324, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42733,14 +43311,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 322, + "id": 325, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42826,14 +43404,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 323, + "id": 326, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 313, + "id": 316, "mask": "BigInt:549755813888" }, "name": { @@ -42856,7 +43434,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 324, + "id": 327, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -42864,8 +43442,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 2877950, - "money": 2877950, + "available": 3235926, + "money": 3235926, "name": "budget", "mask": "BigInt:16" }, @@ -42883,13 +43461,13 @@ }, "modules": { "name": "modules", - "ids": [326, 327, 328, 329, 330, 331, 332, 333, 334, 335, 336], + "ids": [329, 330, 331, 332, 333, 334, 335, 336, 337, 338, 339], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [12.109264625525405, -15.561505751231321], + "coord": [-4.808596976877133, 9.01333389922414], "sector": 2, "moved": false, "mask": "BigInt:2199023255552" @@ -42905,7 +43483,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 12, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -42916,35 +43494,8 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 160, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3369, - "type": "outgoing", - "meta": { "tradeId": "325:2238:buy:3369" }, - "id": 10 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 160, - "goldOre": 0, + "gold": 0, + "goldOre": 160, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -42956,10 +43507,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3531, - "type": "outgoing", - "meta": { "tradeId": "325:2243:buy:3531" }, - "id": 11 + "issued": 405, + "type": "incoming", + "meta": { "tradeId": "328:1667:sell:405" }, + "id": 1 } ], "max": 81000, @@ -42969,10 +43520,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2019, + "fuel": 383, "fuelium": 0, - "gold": 4394, - "goldOre": 12179, + "gold": 3753, + "goldOre": 2961, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -42990,10 +43541,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2019, + "fuel": 383, "fuelium": 0, - "gold": 4714, - "goldOre": 12179, + "gold": 3753, + "goldOre": 2961, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -43033,25 +43584,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [96.87288981057124, 109.16922058410724], - "drones": [668.383684863965, 682.7996272821856], - "electronics": [213.56824890215876, 223.6479248304073], - "engineParts": [394.6373473207726, 410.23723596455005], - "food": [12.050002114250198, 31.54851192278819], - "fuel": [49.02500777996201, 65.32900430939839], - "fuelium": [67.27242473853482, 72.93714019991069], - "gold": [397.00023897554115, 413.9142616889351], - "goldOre": [40.117986103004306, 57.29784713304738], - "hullPlates": [52.52196769001005, 68.09088618513302], - "hydrogen": [46.98515066750406, 57.667857843691834], - "ice": [16.110521700542925, 22.43793437165812], - "metals": [68.9067071338583, 78.88379581861099], - "ore": [29.412913792917536, 46.89750950925864], - "silica": [49.10088326093212, 59.48637063908955], - "silicon": [33.7940050177996, 48.29458933510717], - "superconductors": [533.6397955075779, 548.0299360874044], - "tauMetal": [519.7064878703368, 527.2200489598655], - "water": [41.95273276927878, 47.001391033624444] + "coolant": [65.42817757432124, 80.7985181183975], + "drones": [646.2228274835043, 662.2518091115364], + "electronics": [333.686959015602, 349.49184793568025], + "engineParts": [399.8148936968467, 415.0779267463936], + "food": [13.706143537011716, 21.779760131477275], + "fuel": [46.63152255482902, 55.68574120693654], + "fuelium": [49.8947087569624, 56.99374921471884], + "gold": [547.1687514567407, 566.6393340317661], + "goldOre": [45.627884256645416, 61.565495628673176], + "hullPlates": [45.726054033658286, 61.24984783090853], + "hydrogen": [56.52654633663697, 73.1168028564544], + "ice": [20.654627646781293, 34.177455892734976], + "metals": [34.174490179404145, 41.709204619226746], + "ore": [19.23737330663014, 38.45667770643431], + "silica": [46.330174888880975, 60.58103484101764], + "silicon": [31.147324950021698, 38.26239609665395], + "superconductors": [459.39963332941744, 464.471075425195], + "tauMetal": [423.1978407752863, 437.6531929185528], + "water": [23.993453229432323, 37.57252762435206] }, "lastPriceAdjust": { "commodities": { @@ -43080,115 +43631,115 @@ "offers": { "coolant": { "active": false, - "price": 101, + "price": 70, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 669, + "price": 654, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 223, + "price": 341, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 402, + "price": 408, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 16, + "price": 18, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 62, - "quantity": 5595, + "price": 50, + "quantity": 7231, "type": "buy" }, "fuelium": { "active": false, - "price": 72, + "price": 56, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 404, - "quantity": 4394, + "price": 549, + "quantity": 3753, "type": "sell" }, "goldOre": { "active": true, - "price": 50, - "quantity": 52654, + "price": 48, + "quantity": 61872, "type": "buy" }, "hullPlates": { "active": false, - "price": 61, + "price": 46, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 48, + "price": 67, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 17, + "price": 22, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 76, + "price": 38, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 37, + "price": 20, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 51, + "price": 59, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 39, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 537, + "price": 459, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 524, + "price": 434, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 45, + "price": 25, "quantity": 0, "type": "buy" } @@ -43197,17 +43748,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "gold", - "quantity": 160, - "price": 404, - "target": "THT Trader Freighter A", - "time": 3054 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -43222,7 +43763,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1560, 1573], + "ids": [1654, 1667], "mask": "BigInt:4294967296" }, "crew": { @@ -43259,14 +43800,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 325, + "id": 328, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43281,14 +43822,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 326, + "id": 329, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43303,14 +43844,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 327, + "id": 330, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43325,14 +43866,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 328, + "id": 331, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43418,14 +43959,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 329, + "id": 332, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43440,14 +43981,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 330, + "id": 333, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43533,14 +44074,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 331, + "id": 334, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43555,14 +44096,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 332, + "id": 335, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43648,14 +44189,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 333, + "id": 336, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43670,14 +44211,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 334, + "id": 337, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43763,14 +44304,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 335, + "id": 338, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 325, + "id": 328, "mask": "BigInt:549755813888" }, "name": { @@ -43793,7 +44334,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 336, + "id": 339, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -43801,8 +44342,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 824858, - "money": 824858, + "available": 964756, + "money": 964756, "name": "budget", "mask": "BigInt:16" }, @@ -43820,13 +44361,13 @@ }, "modules": { "name": "modules", - "ids": [338, 339, 340, 341, 342, 343, 344, 345, 346, 347, 348], + "ids": [341, 342, 343, 344, 345, 346, 347, 348, 349, 350, 351], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [14.061744757235463, 13.772326802842514], + "coord": [-19.153448031883492, -4.441629053695648], "sector": 2, "moved": false, "mask": "BigInt:2199023255552" @@ -43842,7 +44383,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 117, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -43864,39 +44405,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 11 - }, - "issued": 3507, - "type": "outgoing", - "meta": { "tradeId": "337:1551:buy:3507" }, - "id": 112 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 160 + "water": 260 }, - "issued": 3567, + "issued": 507, "type": "outgoing", - "meta": { "tradeId": "337:1994:buy:3567" }, - "id": 115 + "meta": { "tradeId": "340:1647:buy:507" }, + "id": 1 }, { "amount": { @@ -43911,19 +44425,19 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 160, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 89 + "water": 0 }, - "issued": 3579, - "type": "outgoing", - "meta": { "tradeId": "337:1553:buy:3579" }, - "id": 116 + "issued": 900, + "type": "incoming", + "meta": { "tradeId": "340:1666:sell:900" }, + "id": 2 } ], "max": 81000, @@ -43939,14 +44453,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 4604, + "ice": 7259, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 30320 }, "stored": { "coolant": 0, @@ -43960,14 +44474,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 4604, + "ice": 7259, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 260 + "water": 30580 }, "quota": { "coolant": 0, @@ -43997,25 +44511,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [125.86899225145716, 143.2030718975507], - "drones": [926.3508171990926, 945.1763909204344], - "electronics": [345.3326111793158, 364.0762450624731], - "engineParts": [357.77429989967084, 373.0968204836142], - "food": [12.051806755167924, 29.388524668335045], - "fuel": [58.333644058206275, 66.25224626191059], - "fuelium": [71.14140811857189, 87.3179451958153], - "gold": [904.1956846264459, 918.5314271475221], - "goldOre": [57.73893119580934, 71.21929994850649], - "hullPlates": [31.93766691116429, 39.65513844281747], - "hydrogen": [96.35909522507058, 113.41769892189032], - "ice": [18.745355956604506, 27], - "metals": [72.94233490825233, 87.16157213452053], - "ore": [33.92289588992502, 51.65850964298556], - "silica": [23.825953337880204, 32.827012723917655], - "silicon": [18.985405402948864, 32.47064627369042], - "superconductors": [360.1577673971897, 368.2547796834037], - "tauMetal": [377.1921359137578, 394.6870671227688], - "water": [30.849182252020384, 34.773471486409115] + "coolant": [58.86212404698984, 69.46842506906891], + "drones": [1344.437059951345, 1354.6274365291852], + "electronics": [209.45158003203576, 217.95132764798788], + "engineParts": [384.8612592967246, 397.11984504798687], + "food": [8.259319877713729, 17.20423066685811], + "fuel": [35.70435157627212, 41.97519202552078], + "fuelium": [74.1623662911524, 81.39413481668069], + "gold": [445.13340225564286, 450.9004508092438], + "goldOre": [56.63469575058961, 74.14044101951424], + "hullPlates": [28.366682105893226, 40.75806303318026], + "hydrogen": [73.25636740201787, 78.90580692895361], + "ice": [26.995898514320942, 27], + "metals": [37.254333398600885, 42.36988720268477], + "ore": [38.15007114152017, 46.67551696631751], + "silica": [17.93929471178487, 32.059388049322195], + "silicon": [19.92933363414582, 39.74167646626218], + "superconductors": [573.2992912199345, 584.9129241201072], + "tauMetal": [429.14880198566027, 445.41617241687925], + "water": [35, 37] }, "lastPriceAdjust": { "commodities": { @@ -44044,55 +44558,55 @@ "offers": { "coolant": { "active": false, - "price": 139, + "price": 59, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 926, + "price": 1353, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 361, + "price": 217, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 369, + "price": 396, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 16, + "price": 10, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 61, + "price": 38, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 79, + "price": 76, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 913, + "price": 449, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 57, + "price": 60, "quantity": 0, "type": "buy" }, @@ -44104,25 +44618,25 @@ }, "hydrogen": { "active": false, - "price": 96, + "price": 73, "quantity": 0, "type": "buy" }, "ice": { "active": true, - "price": 19, - "quantity": 41681, + "price": 26, + "quantity": 39026, "type": "buy" }, "metals": { "active": false, - "price": 76, + "price": 39, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 42, + "price": 45, "quantity": 0, "type": "buy" }, @@ -44134,26 +44648,26 @@ }, "silicon": { "active": false, - "price": 28, + "price": 26, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 365, + "price": 576, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 382, + "price": 434, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 33, - "quantity": 0, + "price": 36, + "quantity": 30320, "type": "sell" } }, @@ -44161,44 +44675,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "ACT Courier B", - "time": 2978 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "ACT Courier B", - "time": 3245 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "ACT Courier B", - "time": 3406 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "ACT Courier B", - "time": 3568 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -44213,7 +44690,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1559, 1572], + "ids": [1653, 1666], "mask": "BigInt:4294967296" }, "crew": { @@ -44250,14 +44727,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 337, + "id": 340, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44272,14 +44749,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 338, + "id": 341, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44294,14 +44771,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 339, + "id": 342, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44316,14 +44793,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 340, + "id": 343, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44409,14 +44886,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 341, + "id": 344, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44431,14 +44908,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 342, + "id": 345, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44524,14 +45001,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 343, + "id": 346, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44546,14 +45023,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 344, + "id": 347, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44639,14 +45116,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 345, + "id": 348, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44661,14 +45138,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 346, + "id": 349, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44754,14 +45231,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 347, + "id": 350, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 337, + "id": 340, "mask": "BigInt:549755813888" }, "name": { @@ -44784,7 +45261,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 348, + "id": 351, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -44792,8 +45269,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1153663, - "money": 1153663, + "available": 1587480, + "money": 1587480, "name": "budget", "mask": "BigInt:16" }, @@ -44811,13 +45288,13 @@ }, "modules": { "name": "modules", - "ids": [350, 351, 352, 353, 354, 355, 356, 357, 358, 359, 360], + "ids": [353, 354, 355, 356, 357, 358, 359, 360, 361, 362, 363], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-6.995712887158804, 2.741700583155552], + "coord": [6.037893982155763, 13.092949923765136], "sector": 3, "moved": false, "mask": "BigInt:2199023255552" @@ -44833,90 +45310,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 45, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 800, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3423, - "type": "outgoing", - "meta": { "tradeId": "349:1543:buy:3423" }, - "id": 41 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 800, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "outgoing", - "meta": { "tradeId": "349:1558:buy:3483" }, - "id": 43 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 11, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "outgoing", - "meta": { "tradeId": "349:1544:buy:3594" }, - "id": 44 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 81000, "availableWares": { "coolant": 0, @@ -44931,8 +45326,8 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 5908, - "ore": 14981, + "metals": 14204, + "ore": 12681, "silica": 0, "silicon": 0, "superconductors": 0, @@ -44952,8 +45347,8 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 7519, - "ore": 14981, + "metals": 14204, + "ore": 12681, "silica": 0, "silicon": 0, "superconductors": 0, @@ -44988,25 +45383,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [98.48798032638446, 113.61755345618054], - "drones": [1550.9312127572575, 1562.3585291480815], - "electronics": [149.18428843333535, 155.67025101108973], - "engineParts": [357.99760626334637, 363.40610590513364], - "food": [15.596411760364704, 30.68842419240031], - "fuel": [44.77415675801235, 64.08299478832649], - "fuelium": [51.015917354558994, 61.60777948311397], - "gold": [583.7220157008614, 603.6449909022882], - "goldOre": [34.35414427146023, 43.30653138734266], - "hullPlates": [28.494044130461905, 36.447312565028646], - "hydrogen": [99.71353204743346, 109.95290511505252], - "ice": [12.907489036119133, 21.505785908991598], - "metals": [69.76574074074074, 71.76574074074074], - "ore": [18.28289633034033, 33.04285714285714], - "silica": [26.232650542136483, 44.16021103137181], - "silicon": [32.024848925184244, 37.106560843277805], - "superconductors": [363.4835560342986, 382.53500714726385], - "tauMetal": [545.525815515622, 559.8993852767749], - "water": [14.795819241033177, 22.50329067592932] + "coolant": [138.90861395661398, 155.78024047442528], + "drones": [1124.8496427074579, 1141.2712548454533], + "electronics": [157.24008434725107, 175.50892316435383], + "engineParts": [253.06295674205637, 265.425908860559], + "food": [11.590618131145144, 22.662010121246468], + "fuel": [26.682340593064556, 45.34566752281125], + "fuelium": [73.03232325228834, 83.62380940818304], + "gold": [370.878258592686, 380.508887134944], + "goldOre": [56.279721967625434, 66.3120097361118], + "hullPlates": [57.104503925196475, 64.82866907501304], + "hydrogen": [67.98718037305932, 75.60151901946791], + "ice": [14.546450099592455, 22.495064679073447], + "metals": [68, 70], + "ore": [37.16828957456167, 42], + "silica": [34.42334146570935, 52.57345196244843], + "silicon": [20.7450145470168, 40.44117488791173], + "superconductors": [405.46360309483725, 418.1609856136772], + "tauMetal": [455.7470839508425, 462.4130663837513], + "water": [32.72190244614414, 38.481307959222995] }, "lastPriceAdjust": { "commodities": { @@ -45035,115 +45430,115 @@ "offers": { "coolant": { "active": false, - "price": 107, + "price": 140, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1552, + "price": 1126, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 153, + "price": 159, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 360, + "price": 261, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 22, + "price": 12, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 53, + "price": 33, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 59, + "price": 78, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 585, + "price": 374, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 41, + "price": 60, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 32, + "price": 62, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 104, + "price": 72, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 15, + "price": 22, "quantity": 0, "type": "buy" }, "metals": { "active": true, - "price": 71, - "quantity": 5908, + "price": 68, + "quantity": 14204, "type": "sell" }, "ore": { "active": true, - "price": 29, - "quantity": 39019, + "price": 40, + "quantity": 41319, "type": "buy" }, "silica": { "active": false, - "price": 32, + "price": 50, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 36, + "price": 29, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 376, + "price": 410, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 547, + "price": 461, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 19, + "price": 35, "quantity": 0, "type": "buy" } @@ -45167,7 +45562,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1558, 1571], + "ids": [1652, 1665], "mask": "BigInt:4294967296" }, "crew": { @@ -45204,14 +45599,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 349, + "id": 352, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45226,14 +45621,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 350, + "id": 353, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45248,14 +45643,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 351, + "id": 354, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45270,14 +45665,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 352, + "id": 355, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45363,14 +45758,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 353, + "id": 356, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45385,14 +45780,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 354, + "id": 357, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45478,14 +45873,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 355, + "id": 358, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45500,14 +45895,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 356, + "id": 359, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45593,14 +45988,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 357, + "id": 360, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45615,14 +46010,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 358, + "id": 361, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45708,14 +46103,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 359, + "id": 362, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 349, + "id": 352, "mask": "BigInt:549755813888" }, "name": { @@ -45738,7 +46133,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 360, + "id": 363, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -45746,8 +46141,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 951221, - "money": 951221, + "available": 880846, + "money": 880846, "name": "budget", "mask": "BigInt:16" }, @@ -45765,13 +46160,13 @@ }, "modules": { "name": "modules", - "ids": [362, 363, 364, 365, 366, 367, 368, 369, 370, 371, 372], + "ids": [365, 366, 367, 368, 369, 370, 371, 372, 373, 374, 375], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-25.784954428521836, 17.417861481394812], + "coord": [5.47129942755682, -7.899068152437211], "sector": 3, "moved": false, "mask": "BigInt:2199023255552" @@ -45787,36 +46182,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 57, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 260, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3408, - "type": "outgoing", - "meta": { "tradeId": "361:1557:buy:3408" }, - "id": 54 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 81000, "availableWares": { "coolant": 0, @@ -45833,8 +46200,8 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 30277, + "silica": 1, + "silicon": 30099, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -45854,8 +46221,8 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 30537, + "silica": 1, + "silicon": 30099, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -45888,25 +46255,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [60.76038552978151, 77.25533787003744], - "drones": [958.1668221460168, 967.0697667842932], - "electronics": [292.52813706370705, 312.4764926707731], - "engineParts": [437.8021055335726, 455.54915486795005], - "food": [12.350552146120256, 30.12649770204031], - "fuel": [64.98090340104625, 78.44452319462926], - "fuelium": [25.594693247654874, 36.004174787066425], - "gold": [599.8200097505699, 618.109821269687], - "goldOre": [81.67723050762092, 98.41474713135692], - "hullPlates": [58.449772237032704, 74.74009858874749], - "hydrogen": [46.1259584883746, 65.96318190632117], - "ice": [16.59831937241921, 35.12867111873582], - "metals": [92.90825424936445, 107.64905110600589], - "ore": [36.69146863713004, 43.2637427598005], - "silica": [30.27592679365531, 39.03774904659376], - "silicon": [19, 20.712579423868313], - "superconductors": [256.3417225608848, 274.5915421289452], - "tauMetal": [397.5499852741772, 416.1421784479902], - "water": [32.94050708940337, 38.60444387715518] + "coolant": [115.14690755411047, 126.95284842632739], + "drones": [710.5526012350364, 729.541320209241], + "electronics": [172.6990232428814, 185.9270882699813], + "engineParts": [418.9809573845629, 437.84322094196705], + "food": [21.535409908297552, 29.78744657084317], + "fuel": [48.54336931321913, 57.74215763270237], + "fuelium": [58.5337818542513, 70.90596108738286], + "gold": [932.7808829212186, 951.6509130418051], + "goldOre": [54.57399620993863, 67.68037967087301], + "hullPlates": [30.033688019175955, 49.78501813063664], + "hydrogen": [91.896150196366, 103.95131914907488], + "ice": [10.94125227494957, 20.206487485923905], + "metals": [59.172324990870706, 77.84909874611157], + "ore": [22.938611064131308, 32.994157848688694], + "silica": [25.97416973837332, 35.986347427015545], + "silicon": [18, 30.604241268405723], + "superconductors": [271.66618726842887, 286.29364269220014], + "tauMetal": [342.8386160182893, 360.20903413597017], + "water": [39.91829094344021, 52.09151095610858] }, "lastPriceAdjust": { "commodities": { @@ -45935,115 +46302,115 @@ "offers": { "coolant": { "active": false, - "price": 74, + "price": 125, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 964, + "price": 721, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 309, + "price": 184, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 452, + "price": 434, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 24, + "price": 27, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 67, + "price": 54, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 27, + "price": 69, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 608, + "price": 934, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 92, + "price": 63, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 59, + "price": 44, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 46, + "price": 96, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 26, + "price": 18, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 95, + "price": 68, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 41, + "price": 30, "quantity": 0, "type": "buy" }, "silica": { "active": true, - "price": 31, - "quantity": 30375, + "price": 29, + "quantity": 30374, "type": "buy" }, "silicon": { "active": true, - "price": 20, - "quantity": 30277, + "price": 22, + "quantity": 30099, "type": "sell" }, "superconductors": { "active": false, - "price": 257, + "price": 276, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 413, + "price": 357, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 34, + "price": 49, "quantity": 0, "type": "buy" } @@ -46052,170 +46419,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 21, - "target": "THT Trader Freighter A", - "time": 1797 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 21, - "target": "THT Trader Freighter A", - "time": 2024 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2030 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2060 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 6, - "price": 22, - "target": "THT Trader Courier B", - "time": 2118 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2132 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2297 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 940, - "price": 22, - "target": "THT Trader Large Freighter B", - "time": 2341 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2369 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2381 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2582 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2618 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "THT Trader Freighter A", - "time": 2822 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 6, - "price": 20, - "target": "THT Trader Courier B", - "time": 2962 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 3241 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 3260 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 3332 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 6, - "price": 20, - "target": "THT Trader Courier B", - "time": 3552 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -46230,7 +46434,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1557, 1570], + "ids": [1651, 1664], "mask": "BigInt:4294967296" }, "crew": { @@ -46267,14 +46471,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 361, + "id": 364, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46289,14 +46493,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 362, + "id": 365, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46311,14 +46515,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 363, + "id": 366, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46333,14 +46537,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 364, + "id": 367, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46366,7 +46570,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.5409836065573348, + "silicon": 0.20036429872490924, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -46426,14 +46630,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 365, + "id": 368, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46448,14 +46652,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 366, + "id": 369, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46481,7 +46685,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.8943533697631683, + "silicon": 0.7249544626593343, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -46541,14 +46745,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 367, + "id": 370, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46563,14 +46767,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 368, + "id": 371, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46596,7 +46800,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.9744990892531513, + "silicon": 0.7249544626593343, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -46656,14 +46860,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 369, + "id": 372, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46678,14 +46882,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 370, + "id": 373, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46711,7 +46915,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.9744990892531513, + "silicon": 0.7249544626593343, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -46771,14 +46975,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 371, + "id": 374, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 361, + "id": 364, "mask": "BigInt:549755813888" }, "name": { @@ -46801,7 +47005,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 372, + "id": 375, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -46809,8 +47013,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 2443059, - "money": 2443059, + "available": 2204476, + "money": 2204476, "name": "budget", "mask": "BigInt:16" }, @@ -46828,13 +47032,13 @@ }, "modules": { "name": "modules", - "ids": [374, 375, 376, 377, 378, 379, 380, 381, 382, 383, 384], + "ids": [377, 378, 379, 380, 381, 382, 383, 384, 385, 386, 387], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-17.914220828159394, -5.960596077189647], + "coord": [31.12023004273581, 16.260652839250007], "sector": 4, "moved": false, "mask": "BigInt:2199023255552" @@ -46850,89 +47054,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 202, + "allocationIdCounter": 2, "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 160, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3396, - "type": "outgoing", - "meta": { "tradeId": "373:2235:buy:3396" }, - "id": 194 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 260, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "outgoing", - "meta": { "tradeId": "373:1555:buy:3516" }, - "id": 199 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 940, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3537, - "type": "outgoing", - "meta": { "tradeId": "373:2073:buy:3537" }, - "id": 200 - }, { "amount": { "coolant": 0, @@ -46955,10 +47078,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3585, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "373:1556:buy:3585" }, - "id": 201 + "meta": { "tradeId": "376:1655:buy:309" }, + "id": 1 } ], "max": 81000, @@ -46968,8 +47091,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 18825, - "fuelium": 8, + "fuel": 29308, + "fuelium": 20, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -46989,8 +47112,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 20196, - "fuelium": 8, + "fuel": 29319, + "fuelium": 20, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -47032,25 +47155,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [94.90806480493336, 100.37695251748869], - "drones": [1263.181805724018, 1278.2460416905603], - "electronics": [191.25059964511323, 199.33649087909006], - "engineParts": [377.0283717818667, 388.15020787302353], - "food": [16.763386812016815, 32.52864361295904], - "fuel": [49, 51], - "fuelium": [58.74197802615374, 70.11435566775162], - "gold": [514.6917625057864, 527.6868351088507], - "goldOre": [48.38051552805635, 64.65629351016779], - "hullPlates": [54.484243722582626, 60.28971187576274], - "hydrogen": [87.0067435444774, 92.82815044187795], - "ice": [20.11632767856052, 35.11742186193756], - "metals": [83.11577910161873, 94.01569825432904], - "ore": [18.48969284706957, 30.35638836604037], - "silica": [49.96535589466228, 64.39707714903356], - "silicon": [27.965933421156322, 38.825492411899745], - "superconductors": [321.00913545629516, 330.16044970331404], - "tauMetal": [241.0503477614401, 252.9686027858445], - "water": [29.469936944376677, 41.250916800957306] + "coolant": [130.60777794000057, 148.373506104693], + "drones": [688.5873059501916, 699.5616868068386], + "electronics": [236.4516843354727, 244.87240326279854], + "engineParts": [217.78422065872996, 232.93085696837022], + "food": [21.95425163054746, 35.96353855643639], + "fuel": [60, 62], + "fuelium": [56.44864848418445, 75], + "gold": [830.547713374244, 845.4836045229902], + "goldOre": [40.827531588198816, 48.97428337891081], + "hullPlates": [63.835993886156906, 73.07784418071373], + "hydrogen": [39.90884603785432, 55.33017550405464], + "ice": [20.29162720116294, 37.72812414885951], + "metals": [87.92390332386842, 103.0358374558418], + "ore": [22.55569001349908, 33.26196413544605], + "silica": [19.543970017175717, 37.02980842023231], + "silicon": [19.556152681978837, 24.736936955554636], + "superconductors": [296.9952607947563, 312.0613025949086], + "tauMetal": [546.0997579567302, 554.6228331288569], + "water": [14.663240093420116, 29.017893255310618] }, "lastPriceAdjust": { "commodities": { @@ -47079,115 +47202,115 @@ "offers": { "coolant": { "active": false, - "price": 99, + "price": 140, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1274, + "price": 691, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 193, + "price": 239, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 387, + "price": 220, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 27, + "price": 23, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 49, - "quantity": 18825, + "price": 60, + "quantity": 29308, "type": "sell" }, "fuelium": { "active": true, - "price": 61, - "quantity": 37376, + "price": 59, + "quantity": 37364, "type": "buy" }, "gold": { "active": false, - "price": 516, + "price": 835, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 61, + "price": 47, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 56, + "price": 68, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 88, + "price": 44, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 23, + "price": 27, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 89, + "price": 95, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 19, + "price": 30, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 52, + "price": 28, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 28, + "price": 23, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 328, + "price": 297, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 245, + "price": 549, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 39, + "price": 26, "quantity": 0, "type": "buy" } @@ -47196,161 +47319,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 639 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 659 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 666 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 28, - "target": "THT Trader Courier B", - "time": 677 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 1140 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 1148 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 1148 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 1169 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 49, - "target": "AMS Large Freighter B", - "time": 3099 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 49, - "target": "AMS Freighter A", - "time": 3129 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 49, - "target": "THT Trader Freighter A", - "time": 3169 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 49, - "target": "AMS Courier B", - "time": 3387 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 49, - "target": "AMS Large Freighter B", - "time": 3391 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 49, - "target": "AMS Freighter A", - "time": 3423 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 49, - "target": "THT Trader Large Freighter B", - "time": 3437 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 49, - "target": "AMS Large Freighter B", - "time": 3559 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 49, - "target": "AMS Courier B", - "time": 3560 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -47365,7 +47334,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1556, 1569], + "ids": [1650, 1663], "mask": "BigInt:4294967296" }, "crew": { @@ -47402,14 +47371,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 373, + "id": 376, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47424,14 +47393,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 374, + "id": 377, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47446,14 +47415,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 375, + "id": 378, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47468,14 +47437,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 376, + "id": 379, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47491,7 +47460,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.7542087542086211, + "fuel": 0.9542087542086755, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -47561,14 +47530,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 377, + "id": 380, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47583,14 +47552,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 378, + "id": 381, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47606,7 +47575,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.7542087542086211, + "fuel": 0.8222222222221465, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -47676,14 +47645,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 379, + "id": 382, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47698,14 +47667,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 380, + "id": 383, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47721,7 +47690,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.6228956228954896, + "fuel": 0.8222222222221465, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -47791,14 +47760,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 381, + "id": 384, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47813,14 +47782,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 382, + "id": 385, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47836,7 +47805,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.6228956228954896, + "fuel": 0.8222222222221465, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -47906,14 +47875,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 383, + "id": 386, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 373, + "id": 376, "mask": "BigInt:549755813888" }, "name": { @@ -47936,29 +47905,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 384, + "id": 387, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 65, - "allocations": [ - { - "amount": 12740, - "issued": 3516, - "meta": { "tradeId": "373:1555:buy:3516" }, - "id": 63 - }, - { - "amount": 539, - "issued": 3585, - "meta": { "tradeId": "385:1556:sell:3585" }, - "id": 64 - } - ], - "available": 2539787, - "money": 2553066, + "allocationIdCounter": 1, + "allocations": [], + "available": 3211585, + "money": 3211585, "name": "budget", "mask": "BigInt:16" }, @@ -47976,13 +47932,13 @@ }, "modules": { "name": "modules", - "ids": [386, 387, 388, 389, 390, 391, 392, 393, 394, 395, 396], + "ids": [389, 390, 391, 392, 393, 394, 395, 396, 397, 398, 399], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [18.67622546232362, 4.529730409874645], + "coord": [-6.899231194948287, 5.450004086226857], "sector": 4, "moved": false, "mask": "BigInt:2199023255552" @@ -47998,7 +47954,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 79, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -48007,37 +47963,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "incoming", - "meta": { "tradeId": "385:1555:sell:3516" }, - "id": 77 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 160, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -48049,10 +47978,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3585, + "issued": 243, "type": "incoming", - "meta": { "tradeId": "385:1556:sell:3585" }, - "id": 78 + "meta": { "tradeId": "388:1662:sell:243" }, + "id": 1 } ], "max": 81000, @@ -48062,10 +47991,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6354, + "fuel": 1400, "fuelium": 0, - "gold": 5915, - "goldOre": 16274, + "gold": 6121, + "goldOre": 19658, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -48083,10 +48012,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6354, + "fuel": 1400, "fuelium": 0, - "gold": 5915, - "goldOre": 16274, + "gold": 6121, + "goldOre": 19658, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -48126,25 +48055,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [116.9317030201215, 123.70218678794245], - "drones": [1803.3353567659076, 1816.3639788585122], - "electronics": [284.476802564354, 290.8328700661208], - "engineParts": [325.86022454244926, 343.4515407903916], - "food": [7.137670967476108, 19.845828292936908], - "fuel": [43.98782322452347, 61.25490299949947], - "fuelium": [40.277244173802785, 53.342503286296754], - "gold": [507, 517.14], - "goldOre": [52.73174236172908, 60.122019039092486], - "hullPlates": [62.59120850063838, 78.34182733545957], - "hydrogen": [46.51607002558704, 56.0080988073159], - "ice": [24.59510770953415, 40.88239645768621], - "metals": [53.0236969204003, 62.87045982029807], - "ore": [32.916094420730005, 52.15030117962588], - "silica": [35.83959075784911, 51.37179657940196], - "silicon": [26.608136311001132, 34.57535022851839], - "superconductors": [412.17988205438326, 419.80690706312936], - "tauMetal": [619.6474695072968, 628.5091456366999], - "water": [20.29035884744136, 28.665854149898337] + "coolant": [64.02769103014842, 77.41339412596487], + "drones": [947.1839511972764, 966.2106213013221], + "electronics": [274.18218061724315, 288.87842372269677], + "engineParts": [413.8103885543659, 427.9284415775794], + "food": [7.43494754006564, 24.83420475126866], + "fuel": [57.530639259270615, 67.98051006731248], + "fuelium": [70.83585183033298, 81.91466434901521], + "gold": [581, 592.62], + "goldOre": [61.19379272932582, 74.21686095547672], + "hullPlates": [61.59680255811206, 69.11471008304483], + "hydrogen": [103.68486141096469, 123.57418907638478], + "ice": [14.250546604782187, 30.147593736088634], + "metals": [33.18964956200551, 50.132942587405374], + "ore": [14.31806974679094, 33.547871048542234], + "silica": [36.21322260749044, 48.11649996053018], + "silicon": [14.635388875595483, 21.219800720186022], + "superconductors": [245.1915708270886, 263.4778902328317], + "tauMetal": [344.35695695367474, 355.41520776398426], + "water": [32.55304929825824, 51.86905846528373] }, "lastPriceAdjust": { "commodities": { @@ -48173,115 +48102,115 @@ "offers": { "coolant": { "active": false, - "price": 121, + "price": 65, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1814, + "price": 952, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 290, + "price": 286, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 330, + "price": 425, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 7, + "price": 17, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 49, - "quantity": 1260, + "price": 65, + "quantity": 6214, "type": "buy" }, "fuelium": { "active": false, - "price": 40, + "price": 76, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 515, - "quantity": 5915, + "price": 584, + "quantity": 6121, "type": "sell" }, "goldOre": { "active": true, - "price": 53, - "quantity": 48559, + "price": 65, + "quantity": 45175, "type": "buy" }, "hullPlates": { "active": false, - "price": 67, + "price": 64, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 49, + "price": 109, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 37, + "price": 28, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 54, + "price": 47, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 41, + "price": 28, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 37, + "price": 41, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 27, + "price": 15, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 416, + "price": 245, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 626, + "price": 355, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 27, + "price": 35, "quantity": 0, "type": "buy" } @@ -48305,7 +48234,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1555, 1568], + "ids": [1649, 1662], "mask": "BigInt:4294967296" }, "crew": { @@ -48342,14 +48271,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 385, + "id": 388, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 385, + "id": 388, "mask": "BigInt:549755813888" }, "name": { @@ -48364,14 +48293,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 386, + "id": 389, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 385, + "id": 388, "mask": "BigInt:549755813888" }, "name": { @@ -48386,143 +48315,6 @@ } }, "cooldowns": { "timers": {} }, - "id": 387, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 385, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 388, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 385, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Gold Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0.19335154826957623, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 4.600000000000053, - "fuelium": 0, - "gold": 0, - "goldOre": 4.16666666666702, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 15, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 389, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 385, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, "id": 390, "tags": ["facilityModule", "facilityModuleType:storage"] }, @@ -48530,100 +48322,7 @@ "components": { "parent": { "name": "parent", - "id": 385, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Gold Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0.19335154826957623, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 4.600000000000053, - "fuelium": 0, - "gold": 0, - "goldOre": 4.16666666666702, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 15, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 391, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 385, + "id": 388, "mask": "BigInt:549755813888" }, "name": { @@ -48638,14 +48337,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 392, + "id": 391, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 385, + "id": 388, "mask": "BigInt:549755813888" }, "name": { @@ -48731,14 +48430,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 393, + "id": 392, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 385, + "id": 388, "mask": "BigInt:549755813888" }, "name": { @@ -48753,14 +48452,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 394, + "id": 393, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 385, + "id": 388, "mask": "BigInt:549755813888" }, "name": { @@ -48846,14 +48545,244 @@ } }, "cooldowns": { "timers": { "production": 1 } }, + "id": 394, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 388, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, "id": 395, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 388, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 396, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 385, + "id": 388, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 397, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 388, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 398, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 388, "mask": "BigInt:549755813888" }, "name": { @@ -48876,7 +48805,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 396, + "id": 399, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -48884,8 +48813,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1214830, - "money": 1214830, + "available": 1487662, + "money": 1487662, "name": "budget", "mask": "BigInt:16" }, @@ -48903,13 +48832,13 @@ }, "modules": { "name": "modules", - "ids": [398, 399, 400, 401, 402, 403, 404, 405, 406, 407, 408], + "ids": [401, 402, 403, 404, 405, 406, 407, 408, 409, 410, 411], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-5.9341590599092475, -1.1892650893839996], + "coord": [5.7163428299343595, -4.570897967762053], "sector": 11, "moved": false, "mask": "BigInt:2199023255552" @@ -48925,117 +48854,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 38, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3324, - "type": "outgoing", - "meta": { "tradeId": "397:2241:buy:3324" }, - "id": 33 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3444, - "type": "outgoing", - "meta": { "tradeId": "397:2231:buy:3444" }, - "id": 34 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3450, - "type": "outgoing", - "meta": { "tradeId": "397:2232:buy:3450" }, - "id": 35 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3522, - "type": "outgoing", - "meta": { "tradeId": "397:2244:buy:3522" }, - "id": 37 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 81000, "availableWares": { "coolant": 0, @@ -49050,8 +48870,8 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 13042, - "ore": 12311, + "metals": 15926, + "ore": 13219, "silica": 0, "silicon": 0, "superconductors": 0, @@ -49071,8 +48891,8 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 13682, - "ore": 12311, + "metals": 15926, + "ore": 13219, "silica": 0, "silicon": 0, "superconductors": 0, @@ -49107,25 +48927,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [137.38426209617342, 147.94826617745952], - "drones": [766.625255239975, 782.5063368230061], - "electronics": [407.63139857417696, 414.4863165799442], - "engineParts": [225.30229009820806, 240.46037906613836], - "food": [20.72534627746763, 33.76972319713328], - "fuel": [60.58703533386194, 72.27215743793212], - "fuelium": [57.026000642184286, 65.11135366571663], - "gold": [683.4832960963769, 692.2338657740554], - "goldOre": [71.09509436371411, 80.1119837746332], - "hullPlates": [26.72634380587329, 35.97322216082484], - "hydrogen": [62.285271545154416, 72.26719117762019], - "ice": [17.672970038792123, 32.016351550030116], - "metals": [52, 54], - "ore": [29.156520101947656, 34.652188366712785], - "silica": [32.747275634660184, 40.54861240825496], - "silicon": [34.73130966872931, 45.31818581503312], - "superconductors": [460.40220443643597, 468.84603337940985], - "tauMetal": [598.9729513927633, 609.294287461422], - "water": [41.30476603650382, 50.04306513327212] + "coolant": [96.41847112237137, 109.30966504547004], + "drones": [1535.5058611486884, 1550.7878435766495], + "electronics": [388.8048680437871, 404.2463589970868], + "engineParts": [427.4485746641345, 442.5430959459905], + "food": [13.152899710618776, 28.280300243436642], + "fuel": [44.449426657623974, 49.48848295794146], + "fuelium": [32.45692530464204, 46.39217346870802], + "gold": [504.3142785274301, 511.4687850224539], + "goldOre": [54.26205963976922, 60.890068930199874], + "hullPlates": [40.22316639398174, 59.20689785746563], + "hydrogen": [49.24229494756784, 56.07511387664253], + "ice": [21.6833901369058, 35.21474409768181], + "metals": [77.43870219859778, 79.43870219859778], + "ore": [33.00383209763445, 42], + "silica": [50.46917098049043, 56.62185770067761], + "silicon": [21.21886942572741, 36.9545354651904], + "superconductors": [546.3981377917362, 566.05930697379], + "tauMetal": [263.200372451216, 282.7760249647097], + "water": [31.414801856147623, 49.59565587747707] }, "lastPriceAdjust": { "commodities": { @@ -49154,115 +48974,115 @@ "offers": { "coolant": { "active": false, - "price": 147, + "price": 102, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 767, + "price": 1549, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 414, + "price": 402, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 235, + "price": 438, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 24, + "price": 19, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 65, + "price": 48, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 61, + "price": 38, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 690, + "price": 505, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 72, + "price": 58, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 29, + "price": 47, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 69, + "price": 53, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 28, + "price": 25, "quantity": 0, "type": "buy" }, "metals": { "active": true, - "price": 52, - "quantity": 13042, + "price": 79, + "quantity": 15926, "type": "sell" }, "ore": { "active": true, - "price": 30, - "quantity": 41689, + "price": 38, + "quantity": 40781, "type": "buy" }, "silica": { "active": false, - "price": 38, + "price": 54, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 40, + "price": 33, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 465, + "price": 560, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 608, + "price": 268, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 43, + "price": 46, "quantity": 0, "type": "buy" } @@ -49271,179 +49091,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "THT Trader Freighter A", - "time": 1178 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "THT Trader Freighter A", - "time": 1618 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "THT Trader Freighter A", - "time": 1639 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "THT Trader Freighter A", - "time": 1691 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "THT Trader Freighter A", - "time": 1938 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "THT Trader Freighter A", - "time": 2139 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "THT Trader Freighter A", - "time": 2177 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 940, - "price": 48, - "target": "THT Trader Large Freighter B", - "time": 2255 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 6, - "price": 48, - "target": "THT Trader Courier B", - "time": 2285 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "THT Trader Freighter A", - "time": 2382 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 6, - "price": 48, - "target": "THT Trader Courier B", - "time": 2512 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "THT Trader Freighter A", - "time": 2649 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "THT Trader Freighter A", - "time": 2817 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 2964 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 2970 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 3084 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 3174 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 6, - "price": 52, - "target": "THT Trader Courier B", - "time": 3281 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 3307 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -49458,7 +49106,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1554, 1567], + "ids": [1648, 1661], "mask": "BigInt:4294967296" }, "crew": { @@ -49495,14 +49143,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 397, + "id": 400, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49517,14 +49165,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 398, + "id": 401, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49539,14 +49187,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 399, + "id": 402, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49561,14 +49209,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 400, + "id": 403, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49654,14 +49302,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 401, + "id": 404, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49676,14 +49324,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 402, + "id": 405, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49769,14 +49417,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 403, + "id": 406, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49791,14 +49439,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 404, + "id": 407, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49884,14 +49532,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 405, + "id": 408, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49906,14 +49554,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 406, + "id": 409, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -49999,14 +49647,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 407, + "id": 410, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 397, + "id": 400, "mask": "BigInt:549755813888" }, "name": { @@ -50029,23 +49677,23 @@ } }, "cooldowns": { "timers": {} }, - "id": 408, + "id": 411, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 13, + "allocationIdCounter": 2, "allocations": [ { - "amount": 2937, - "issued": 3579, - "meta": { "tradeId": "337:1553:buy:3579" }, - "id": 12 + "amount": 7800, + "issued": 507, + "meta": { "tradeId": "340:1647:buy:507" }, + "id": 1 } ], - "available": 145926, - "money": 148863, + "available": 189929, + "money": 197729, "name": "budget", "mask": "BigInt:16" }, @@ -50063,13 +49711,13 @@ }, "modules": { "name": "modules", - "ids": [410, 411, 412, 413, 414, 415], + "ids": [413, 414, 415, 416, 417, 418], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [5.064219956800951, 5.266014090607653], + "coord": [-2.3505239289361093, 7.962119203994668], "sector": 1, "moved": false, "mask": "BigInt:2199023255552" @@ -50085,7 +49733,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 13, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -50107,12 +49755,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 89 + "water": 260 }, - "issued": 3579, + "issued": 507, "type": "incoming", - "meta": { "tradeId": "409:1553:sell:3579" }, - "id": 12 + "meta": { "tradeId": "412:1647:sell:507" }, + "id": 1 } ], "max": 20000, @@ -50121,7 +49769,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6706, + "food": 8714, "fuel": 0, "fuelium": 0, "gold": 0, @@ -50135,14 +49783,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5933 + "water": 3791 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6706, + "food": 8714, "fuel": 0, "fuelium": 0, "gold": 0, @@ -50156,7 +49804,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5933 + "water": 3791 }, "quota": { "coolant": 0, @@ -50186,25 +49834,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [108.23254291453472, 115.85053605664467], - "drones": [1766.3429626838401, 1785.6752592280206], - "electronics": [436.72543118770386, 449.05729513494623], - "engineParts": [369.48144927136525, 375.1881259492015], - "food": [13.09, 22], - "fuel": [68.32179345560345, 86.02632309677362], - "fuelium": [53.12402655055915, 69.51711120295496], - "gold": [654.3010687638614, 661.6362827649536], - "goldOre": [67.77846357622167, 78.02195546490633], - "hullPlates": [37.906726597145976, 54.40153169310503], - "hydrogen": [94.81220693061732, 103.29426481247795], - "ice": [22.860277325019986, 40.21083382283163], - "metals": [37.22593604507048, 53.887875765268134], - "ore": [14.113986678494484, 26.02806785185135], - "silica": [20.913770958537146, 28.290199459945224], - "silicon": [31.64196273895181, 51.25015287034798], - "superconductors": [316.1784413827269, 331.11478043993196], - "tauMetal": [481.1812976025083, 486.5992340112048], - "water": [29.65919571625708, 33.883050847457625] + "coolant": [121.99755508564402, 127.24017440098106], + "drones": [964.4405859965527, 980.4752635392084], + "electronics": [172.87730753781375, 184.98479502846374], + "engineParts": [410.4327432971852, 417.6053710929278], + "food": [16.11637189950979, 22], + "fuel": [37.97104136285162, 50.461415709593126], + "fuelium": [52.60680211549122, 71.63282888207553], + "gold": [364.27710879616916, 379.44828309014724], + "goldOre": [47.17329576972807, 57.55419268268364], + "hullPlates": [29.004049777392748, 36.92508062267901], + "hydrogen": [60.34035176031837, 67.94180879009609], + "ice": [12.454168500378145, 29.51251334778794], + "metals": [51.08750199870146, 64.73193292482203], + "ore": [33.682427747347006, 46.594886482589274], + "silica": [22.853056983421514, 37.90497673921932], + "silicon": [32.311808382139795, 39.55156308575117], + "superconductors": [297.95050037658666, 308.29130950278983], + "tauMetal": [437.98136804332387, 454.39017870711007], + "water": [33.889370110095484, 41.061129177959366] }, "lastPriceAdjust": { "commodities": { @@ -50233,116 +49881,116 @@ "offers": { "coolant": { "active": false, - "price": 112, + "price": 123, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1783, + "price": 970, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 444, + "price": 176, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 375, + "price": 415, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 18, - "quantity": 6627, + "price": 19, + "quantity": 4619, "type": "buy" }, "fuel": { "active": false, - "price": 70, + "price": 47, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 62, + "price": 58, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 660, + "price": 368, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 75, + "price": 52, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 41, + "price": 29, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 97, + "price": 67, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 30, + "price": 16, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 42, + "price": 59, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 18, + "price": 42, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 27, + "price": 36, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 44, + "price": 33, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 329, + "price": 299, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 482, + "price": 452, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 31, - "quantity": 733, + "price": 36, + "quantity": 2875, "type": "buy" } }, @@ -50350,26 +49998,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 42, - "target": "THT Trader Large Freighter B", - "time": 2769 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 74, - "price": 42, - "target": "THT Trader Freighter A", - "time": 2923 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -50384,7 +50013,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1553], + "ids": [1647], "mask": "BigInt:4294967296" }, "crew": { @@ -50421,14 +50050,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 409, + "id": 412, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 409, + "id": 412, "mask": "BigInt:549755813888" }, "name": { @@ -50509,14 +50138,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 410, + "id": 413, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 409, + "id": 412, "mask": "BigInt:549755813888" }, "name": { @@ -50531,14 +50160,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 411, + "id": 414, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 409, + "id": 412, "mask": "BigInt:549755813888" }, "name": { @@ -50553,14 +50182,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 412, + "id": 415, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 409, + "id": 412, "mask": "BigInt:549755813888" }, "name": { @@ -50583,14 +50212,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 413, + "id": 416, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 409, + "id": 412, "mask": "BigInt:549755813888" }, "name": { @@ -50613,14 +50242,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 414, + "id": 417, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 409, + "id": 412, "mask": "BigInt:549755813888" }, "name": { @@ -50643,16 +50272,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 415, + "id": 418, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 24, + "allocationIdCounter": 1, "allocations": [], - "available": 92447, - "money": 92447, + "available": 293066, + "money": 293066, "name": "budget", "mask": "BigInt:16" }, @@ -50670,13 +50299,13 @@ }, "modules": { "name": "modules", - "ids": [417, 418, 419, 420, 421, 422], + "ids": [420, 421, 422, 423, 424, 425], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-1.0478808646884126, -8.516918729090985], + "coord": [5.710274642210235, -7.597524427039267], "sector": 2, "moved": false, "mask": "BigInt:2199023255552" @@ -50692,43 +50321,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 24, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3477, - "type": "incoming", - "meta": { "tradeId": "416:1552:sell:3477" }, - "id": 23 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6613, + "food": 5897, "fuel": 0, "fuelium": 0, "gold": 0, @@ -50742,14 +50343,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6622 + "water": 2596 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6613, + "food": 5897, "fuel": 0, "fuelium": 0, "gold": 0, @@ -50763,7 +50364,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6622 + "water": 2596 }, "quota": { "coolant": 0, @@ -50793,25 +50394,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [123.6075271219541, 134.34654214088155], - "drones": [891.006813063371, 907.3870119287756], - "electronics": [362.09151527353697, 369.5033005943907], - "engineParts": [447.0957509257727, 457.90819367883626], - "food": [10.444889473268757, 18.422724059626006], - "fuel": [38.96665258475867, 50.20075908319611], - "fuelium": [48.83695348682687, 58.86675233880341], - "gold": [647.3145491148467, 652.8811035566279], - "goldOre": [41.346811942748694, 50.620588258061815], - "hullPlates": [25.360443772056097, 41.09094807372798], - "hydrogen": [46.57626934370473, 64.71206790107202], - "ice": [22.987093914972544, 40.65383207393225], - "metals": [64.20680266113668, 72.82960693502918], - "ore": [26.33648904861552, 38.52658877532446], - "silica": [22.732734851058616, 39.376966619481045], - "silicon": [17.606257453004044, 30.27158588704017], - "superconductors": [407.4973174168558, 424.89083299648695], - "tauMetal": [332.0768520438273, 348.9346975904746], - "water": [24.052371927613546, 34.959638308961225] + "coolant": [104.96140849760891, 118.53855595244377], + "drones": [1025.137045632217, 1030.5712221056717], + "electronics": [447.683064722397, 462.2820612653791], + "engineParts": [376.25169158496, 395.8876402552412], + "food": [12.007517354235919, 22], + "fuel": [37.68085045551415, 47.74065492455624], + "fuelium": [25.28032989490601, 42.22114632729088], + "gold": [375.765699652661, 388.0010983664076], + "goldOre": [80.4085219177639, 91.56379908805835], + "hullPlates": [61.98089307808506, 80.30133076261743], + "hydrogen": [42.19281939236809, 56.55595500168849], + "ice": [22.74768052084781, 36.36099487826171], + "metals": [56.916445023017296, 75.44479142349074], + "ore": [32.15579661304733, 47.63926850086771], + "silica": [29.399967216288537, 34.75656627978504], + "silicon": [13.208640873206896, 21.75899407436116], + "superconductors": [488.7742190506592, 504.28122642323467], + "tauMetal": [470.964517641703, 485.89582570026806], + "water": [38.94613344533789, 41.59964849503072] }, "lastPriceAdjust": { "commodities": { @@ -50840,116 +50441,116 @@ "offers": { "coolant": { "active": false, - "price": 128, + "price": 113, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 905, + "price": 1029, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 364, + "price": 459, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 450, + "price": 385, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 14, - "quantity": 6720, + "price": 18, + "quantity": 7436, "type": "buy" }, "fuel": { "active": false, - "price": 39, + "price": 45, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 51, + "price": 36, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 650, + "price": 382, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 47, + "price": 80, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 33, + "price": 75, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 60, + "price": 48, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 40, + "price": 36, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 70, + "price": 67, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 30, + "price": 35, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 23, + "price": 34, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 23, + "price": 18, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 421, + "price": 496, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 345, + "price": 474, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 30, - "quantity": 44, + "price": 40, + "quantity": 4070, "type": "buy" } }, @@ -50972,7 +50573,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1552], + "ids": [1646], "mask": "BigInt:4294967296" }, "crew": { @@ -50989,7 +50590,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 240, "produces": 0 }, + "food": { "consumes": 244, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -51003,20 +50604,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 120, "produces": 0 } + "water": { "consumes": 122, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 416, + "id": 419, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 416, + "id": 419, "mask": "BigInt:549755813888" }, "name": { @@ -51052,7 +50653,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 5.933333333333342, + "food": 5.533333333333342, "fuel": 0, "fuelium": 0, "gold": 0, @@ -51066,7 +50667,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.466666666666671 + "water": 0.26666666666667105 } }, "name": "production", @@ -51076,7 +50677,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 240, "produces": 0 }, + "food": { "consumes": 244, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -51090,21 +50691,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 120, "produces": 0 } + "water": { "consumes": 122, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 417, + "id": 420, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 416, + "id": 419, "mask": "BigInt:549755813888" }, "name": { @@ -51119,14 +50720,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 418, + "id": 421, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 416, + "id": 419, "mask": "BigInt:549755813888" }, "name": { @@ -51141,14 +50742,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 419, + "id": 422, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 416, + "id": 419, "mask": "BigInt:549755813888" }, "name": { @@ -51171,14 +50772,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 420, + "id": 423, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 416, + "id": 419, "mask": "BigInt:549755813888" }, "name": { @@ -51201,14 +50802,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 421, + "id": 424, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 416, + "id": 419, "mask": "BigInt:549755813888" }, "name": { @@ -51231,29 +50832,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 422, + "id": 425, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 22, - "allocations": [ - { - "amount": 20790, - "issued": 3336, - "meta": { "tradeId": "423:1559:sell:3336" }, - "id": 20 - }, - { - "amount": 363, - "issued": 3507, - "meta": { "tradeId": "337:1551:buy:3507" }, - "id": 21 - } - ], - "available": 152265, - "money": 173418, + "allocationIdCounter": 1, + "allocations": [], + "available": 214005, + "money": 214005, "name": "budget", "mask": "BigInt:16" }, @@ -51271,13 +50859,13 @@ }, "modules": { "name": "modules", - "ids": [424, 425, 426, 427, 428, 429], + "ids": [427, 428, 429, 430, 431, 432], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [0.7289676648018677, -6.639125261736705], + "coord": [-6.411611064133436, 0.37890128578132476], "sector": 3, "moved": false, "mask": "BigInt:2199023255552" @@ -51293,70 +50881,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 22, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 630 - }, - "issued": 3336, - "type": "incoming", - "meta": { "tradeId": "423:1559:sell:3336" }, - "id": 20 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 11 - }, - "issued": 3507, - "type": "incoming", - "meta": { "tradeId": "423:1551:sell:3507" }, - "id": 21 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 7180, + "food": 6621, "fuel": 0, "fuelium": 0, "gold": 0, @@ -51370,14 +50903,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4972 + "water": 3919 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 7180, + "food": 6621, "fuel": 0, "fuelium": 0, "gold": 0, @@ -51391,7 +50924,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4972 + "water": 3919 }, "quota": { "coolant": 0, @@ -51421,25 +50954,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [72.41695936773368, 87.34238655922078], - "drones": [1258.059882938433, 1268.2072868803898], - "electronics": [362.1726727809264, 377.5923840261328], - "engineParts": [373.9377193151116, 392.27935146905236], - "food": [13.370866245092923, 18.49047619047619], - "fuel": [64.13394000769135, 80.94643663226725], - "fuelium": [42.57377392060208, 50.44181047148529], - "gold": [497.3937906955133, 513.6154813746921], - "goldOre": [77.61003303217058, 86.99550341020037], - "hullPlates": [59.349163145261485, 70.46676094436049], - "hydrogen": [90.52379451488537, 108.3884094603655], - "ice": [15.714446549343297, 23.660757638319115], - "metals": [65.06783216063627, 81.1945046538352], - "ore": [24.00862179968768, 40.235019960922685], - "silica": [31.849215856630284, 48.89739188292472], - "silicon": [12.850784763393978, 31.70306157803176], - "superconductors": [472.03231366846484, 477.7322866751], - "tauMetal": [247.0907199935721, 252.691453269558], - "water": [27.695582398995057, 35.136870124673464] + "coolant": [75.49656368469908, 85.82747104720772], + "drones": [1651.6996026924783, 1662.9819583435606], + "electronics": [290.08009247880057, 303.58481105448254], + "engineParts": [411.18044008328724, 431.0451834268087], + "food": [12.004160194043319, 22], + "fuel": [35.6945366904082, 51.182415478015926], + "fuelium": [34.52949877591668, 42.46814057549649], + "gold": [382.21739745344604, 388.73235990877436], + "goldOre": [86.77704741461515, 101.64296501100382], + "hullPlates": [51.10596821247074, 67.0016376153408], + "hydrogen": [98.38177302222245, 116.75531963800329], + "ice": [11.515284609264633, 26.811543521134894], + "metals": [43.06470059238909, 54.24724949925798], + "ore": [15.536309285233374, 33.15067214190032], + "silica": [18.393318423977767, 28.69291423597805], + "silicon": [21.212434416605596, 36.88909215750427], + "superconductors": [303.50954364668064, 308.8379803420378], + "tauMetal": [326.39539719734336, 343.78290767949665], + "water": [35.382185534860234, 40.97959183673469] }, "lastPriceAdjust": { "commodities": { @@ -51468,116 +51001,116 @@ "offers": { "coolant": { "active": false, - "price": 77, + "price": 83, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1265, + "price": 1660, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 372, + "price": 296, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 381, + "price": 427, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 15, - "quantity": 6153, + "price": 17, + "quantity": 6712, "type": "buy" }, "fuel": { "active": false, - "price": 77, + "price": 49, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 45, + "price": 40, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 503, + "price": 386, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 86, + "price": 93, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 65, + "price": 51, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 104, + "price": 105, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 18, + "price": 25, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 72, + "price": 49, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 34, + "price": 31, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 47, + "price": 26, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 19, + "price": 26, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 473, + "price": 307, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 250, + "price": 329, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 33, - "quantity": 1694, + "price": 37, + "quantity": 2747, "type": "buy" } }, @@ -51600,7 +51133,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1551], + "ids": [1645], "mask": "BigInt:4294967296" }, "crew": { @@ -51637,14 +51170,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 423, + "id": 426, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 423, + "id": 426, "mask": "BigInt:549755813888" }, "name": { @@ -51725,14 +51258,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 424, + "id": 427, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 423, + "id": 426, "mask": "BigInt:549755813888" }, "name": { @@ -51747,14 +51280,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 425, + "id": 428, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 423, + "id": 426, "mask": "BigInt:549755813888" }, "name": { @@ -51769,14 +51302,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 426, + "id": 429, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 423, + "id": 426, "mask": "BigInt:549755813888" }, "name": { @@ -51799,14 +51332,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 427, + "id": 430, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 423, + "id": 426, "mask": "BigInt:549755813888" }, "name": { @@ -51829,14 +51362,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 428, + "id": 431, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 423, + "id": 426, "mask": "BigInt:549755813888" }, "name": { @@ -51859,16 +51392,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 429, + "id": 432, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 3, + "allocationIdCounter": 1, "allocations": [], - "available": 171530, - "money": 171530, + "available": 249610, + "money": 249610, "name": "budget", "mask": "BigInt:16" }, @@ -51886,13 +51419,13 @@ }, "modules": { "name": "modules", - "ids": [431, 432, 433, 434, 435, 436], + "ids": [434, 435, 436, 437, 438, 439], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-8.823445442998219, 0.5982471911379346], + "coord": [-6.116232178026802, -9.112708532447805], "sector": 4, "moved": false, "mask": "BigInt:2199023255552" @@ -51908,7 +51441,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 3, + "allocationIdCounter": 1, "allocations": [], "max": 20000, "availableWares": { @@ -51916,7 +51449,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 9305, + "food": 6697, "fuel": 0, "fuelium": 0, "gold": 0, @@ -51930,14 +51463,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3469 + "water": 2667 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 9305, + "food": 6697, "fuel": 0, "fuelium": 0, "gold": 0, @@ -51951,7 +51484,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3469 + "water": 2667 }, "quota": { "coolant": 0, @@ -51981,25 +51514,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [128.00927861848191, 137.02853256196974], - "drones": [1229.4721489174917, 1243.8812511193305], - "electronics": [388.4046217944474, 405.9511625806664], - "engineParts": [318.84356714498796, 333.80770127717324], - "food": [13.440267058562137, 22], - "fuel": [58.83406964017068, 75.05128307998532], - "fuelium": [61.08343983799885, 67.91769659715453], - "gold": [880.2646915586515, 894.4160697945025], - "goldOre": [46.47349768692992, 56.857493007530465], - "hullPlates": [50.82242821216862, 61.30918452927956], - "hydrogen": [48.858070597664586, 65.50522900022395], - "ice": [10.896480184974568, 30.436531915852097], - "metals": [55.43306204174323, 62.77130377191867], - "ore": [24.565020027082454, 39.51146070245589], - "silica": [33.380687942512424, 50.32567089544028], - "silicon": [16.53270928250826, 32.22411538535828], - "superconductors": [220.9187373658231, 230.56470541557627], - "tauMetal": [246.76497613837614, 263.26306958813365], - "water": [28.136561587066545, 40.93584878969661] + "coolant": [81.9736505198521, 99.68311737989383], + "drones": [1586.933454935267, 1597.7714240393207], + "electronics": [253.7570817585255, 270.19191606474544], + "engineParts": [233.4462263738942, 252.2683007019536], + "food": [17.761732965119762, 22], + "fuel": [51.1190288046009, 65.65156115658897], + "fuelium": [45.635150623711695, 57.92621757059101], + "gold": [920.6951814256291, 935.3783149690138], + "goldOre": [63.543124807856714, 71.96684328349244], + "hullPlates": [41.397385353558086, 55.17473631810936], + "hydrogen": [41.14354633501005, 60.16023697753347], + "ice": [21.42184658268116, 39.672259678153125], + "metals": [86.77481754107384, 106.09054918483363], + "ore": [38.19767600342489, 49.48626094192679], + "silica": [48.650132179536726, 53.708266412044885], + "silicon": [34.682212847611645, 53.31390636064487], + "superconductors": [505.60634077863807, 525.2283352340294], + "tauMetal": [292.09373056913773, 304.9095733285184], + "water": [28.114099795706085, 38.16836643910808] }, "lastPriceAdjust": { "commodities": { @@ -52028,116 +51561,116 @@ "offers": { "coolant": { "active": false, - "price": 136, + "price": 82, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1235, + "price": 1595, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 402, + "price": 257, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 330, + "price": 248, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 16, - "quantity": 4028, + "price": 20, + "quantity": 6636, "type": "buy" }, "fuel": { "active": false, - "price": 70, + "price": 58, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 63, + "price": 53, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 885, + "price": 932, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 55, + "price": 66, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 58, + "price": 54, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 53, + "price": 47, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 22, + "price": 36, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 59, + "price": 101, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 37, + "price": 38, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 49, + "price": 50, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 20, + "price": 49, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 226, + "price": 506, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 254, + "price": 301, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 34, - "quantity": 3197, + "price": 30, + "quantity": 3999, "type": "buy" } }, @@ -52160,7 +51693,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1550], + "ids": [1644], "mask": "BigInt:4294967296" }, "crew": { @@ -52177,7 +51710,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 228, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -52191,20 +51724,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 114, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 430, + "id": 433, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 430, + "id": 433, "mask": "BigInt:549755813888" }, "name": { @@ -52240,7 +51773,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.5999999999999996, + "food": 4.133333333333339, "fuel": 0, "fuelium": 0, "gold": 0, @@ -52254,7 +51787,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7999999999999998 + "water": 2.0666666666666695 } }, "name": "production", @@ -52264,7 +51797,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 228, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -52278,21 +51811,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 114, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 431, + "id": 434, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 430, + "id": 433, "mask": "BigInt:549755813888" }, "name": { @@ -52307,14 +51840,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 432, + "id": 435, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 430, + "id": 433, "mask": "BigInt:549755813888" }, "name": { @@ -52329,14 +51862,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 433, + "id": 436, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 430, + "id": 433, "mask": "BigInt:549755813888" }, "name": { @@ -52359,14 +51892,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 434, + "id": 437, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 430, + "id": 433, "mask": "BigInt:549755813888" }, "name": { @@ -52389,14 +51922,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 435, + "id": 438, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 430, + "id": 433, "mask": "BigInt:549755813888" }, "name": { @@ -52419,29 +51952,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 436, + "id": 439, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 40, - "allocations": [ - { - "amount": 4680, - "issued": 3339, - "meta": { "tradeId": "437:1542:sell:3339" }, - "id": 36 - }, - { - "amount": 4680, - "issued": 3534, - "meta": { "tradeId": "437:1546:sell:3534" }, - "id": 39 - } - ], - "available": 12144, - "money": 21504, + "allocationIdCounter": 1, + "allocations": [], + "available": 187740, + "money": 187740, "name": "budget", "mask": "BigInt:16" }, @@ -52459,13 +51979,13 @@ }, "modules": { "name": "modules", - "ids": [438, 439, 440, 441, 442, 443], + "ids": [441, 442, 443, 444, 445, 446], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-8.242377120167118, 4.828167324534903], + "coord": [-7.6661552985937265, -3.006526669716923], "sector": 10, "moved": false, "mask": "BigInt:2199023255552" @@ -52481,97 +52001,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 40, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3309, - "type": "incoming", - "meta": { "tradeId": "437:1549:sell:3309" }, - "id": 34 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3339, - "type": "incoming", - "meta": { "tradeId": "437:1542:sell:3339" }, - "id": 36 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3534, - "type": "incoming", - "meta": { "tradeId": "437:1546:sell:3534" }, - "id": 39 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 12327, + "food": 7409, "fuel": 0, "fuelium": 0, "gold": 0, @@ -52585,14 +52023,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6883 + "water": 3364 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 12327, + "food": 7409, "fuel": 0, "fuelium": 0, "gold": 0, @@ -52606,7 +52044,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6883 + "water": 3364 }, "quota": { "coolant": 0, @@ -52636,25 +52074,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [69.58922494795301, 77.31384762837223], - "drones": [1391.0963901341458, 1406.2404496790039], - "electronics": [365.3291523215082, 384.609138112407], - "engineParts": [158.48750198356493, 169.17881029900428], - "food": [15.9022351302878, 18.555263157894736], - "fuel": [65.23609728761006, 76.10606566295024], - "fuelium": [44.03809780496787, 61.06970415408739], - "gold": [758.3537181436191, 767.6390014454132], - "goldOre": [95.83047879190241, 107.94591846491959], - "hullPlates": [48.66093827144371, 54.792055815681394], - "hydrogen": [73.60013967482143, 83.46424686864076], - "ice": [26.46404986996427, 38.82032760067002], - "metals": [94.83554911363879, 109.43795522097219], - "ore": [16.785855104940744, 29.389567172159236], - "silica": [30.73321224666989, 47.087816345220276], - "silicon": [27.48785314489527, 42.78991003194627], - "superconductors": [316.249276081704, 328.5612788230368], - "tauMetal": [387.2954481598146, 402.63371036637506], - "water": [28.011418314086274, 34.776723895799634] + "coolant": [86.17579625988571, 104.30356583668811], + "drones": [828.767510300803, 847.9762332597612], + "electronics": [386.66105185308584, 404.32344731540314], + "engineParts": [290.2895156142747, 302.54731822742383], + "food": [12.938717033042703, 17.492682926829268], + "fuel": [37.22199663548287, 53.30862812637321], + "fuelium": [69.5386253512352, 75.36210534987792], + "gold": [928.5374511190099, 947.6816779369134], + "goldOre": [90.50224144340973, 100.86306031782937], + "hullPlates": [47.981396058726425, 61.36737500136766], + "hydrogen": [55.33418116443865, 65.77803658119913], + "ice": [14.44361734592761, 23.576280805046583], + "metals": [85.01650589058221, 104.89796591188029], + "ore": [40.17733861531283, 49.15304385106888], + "silica": [39.22335342654918, 54.02624844283847], + "silicon": [14.866273723957317, 31.65989182392451], + "superconductors": [429.93798305424883, 449.1402891740472], + "tauMetal": [511.47777263433653, 521.7326369518082], + "water": [23.274031964703735, 34.95777777777778] }, "lastPriceAdjust": { "commodities": { @@ -52683,116 +52121,116 @@ "offers": { "coolant": { "active": false, - "price": 70, + "price": 93, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1402, + "price": 830, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 374, + "price": 396, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 168, + "price": 290, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 18, - "quantity": 1006, + "price": 15, + "quantity": 5924, "type": "buy" }, "fuel": { "active": false, - "price": 74, + "price": 40, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 52, + "price": 72, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 759, + "price": 928, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 102, + "price": 95, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 52, + "price": 50, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 77, + "price": 56, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 27, + "price": 15, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 107, + "price": 98, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 28, + "price": 40, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 36, + "price": 43, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 29, + "price": 30, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 323, + "price": 440, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 389, + "price": 511, "quantity": 0, "type": "buy" }, "water": { "active": true, "price": 30, - "quantity": 0, + "quantity": 3302, "type": "buy" } }, @@ -52815,7 +52253,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1549], + "ids": [1643], "mask": "BigInt:4294967296" }, "crew": { @@ -52832,7 +52270,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 32, "produces": 0 }, + "food": { "consumes": 16, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -52846,20 +52284,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 16, "produces": 0 } + "water": { "consumes": 8, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 437, + "id": 440, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 437, + "id": 440, "mask": "BigInt:549755813888" }, "name": { @@ -52895,7 +52333,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1.666666666666668, + "food": 0.26666666666666783, "fuel": 0, "fuelium": 0, "gold": 0, @@ -52909,7 +52347,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.33333333333333504 + "water": 0.13333333333333564 } }, "name": "production", @@ -52919,7 +52357,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 32, "produces": 0 }, + "food": { "consumes": 16, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -52933,21 +52371,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 16, "produces": 0 } + "water": { "consumes": 8, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 438, + "id": 441, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 437, + "id": 440, "mask": "BigInt:549755813888" }, "name": { @@ -52962,14 +52400,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 439, + "id": 442, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 437, + "id": 440, "mask": "BigInt:549755813888" }, "name": { @@ -52984,14 +52422,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 440, + "id": 443, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 437, + "id": 440, "mask": "BigInt:549755813888" }, "name": { @@ -53014,14 +52452,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 441, + "id": 444, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 437, + "id": 440, "mask": "BigInt:549755813888" }, "name": { @@ -53044,14 +52482,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 442, + "id": 445, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 437, + "id": 440, "mask": "BigInt:549755813888" }, "name": { @@ -53074,16 +52512,23 @@ } }, "cooldowns": { "timers": {} }, - "id": 443, + "id": 446, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 27, - "allocations": [], - "available": 129157, - "money": 129157, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 4420, + "issued": 774, + "meta": { "tradeId": "447:1635:sell:774" }, + "id": 1 + } + ], + "available": 254675, + "money": 259095, "name": "budget", "mask": "BigInt:16" }, @@ -53101,13 +52546,13 @@ }, "modules": { "name": "modules", - "ids": [445, 446, 447, 448, 449, 450], + "ids": [448, 449, 450, 451, 452, 453], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-9.673539322277895, -5.270956265685442], + "coord": [-6.3971374458338985, 3.5800352921023464], "sector": 11, "moved": false, "mask": "BigInt:2199023255552" @@ -53123,15 +52568,43 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, - "allocations": [], + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 260, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 774, + "type": "incoming", + "meta": { "tradeId": "447:1635:sell:774" }, + "id": 1 + } + ], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13518, + "food": 6377, "fuel": 0, "fuelium": 0, "gold": 0, @@ -53145,14 +52618,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2329 + "water": 3313 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13518, + "food": 6377, "fuel": 0, "fuelium": 0, "gold": 0, @@ -53166,7 +52639,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2329 + "water": 3313 }, "quota": { "coolant": 0, @@ -53196,25 +52669,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [92.98694927741731, 103.73570179475757], - "drones": [1248.0457157768128, 1255.263637872168], - "electronics": [379.16003667986524, 392.9864451165354], - "engineParts": [168.3818840333084, 181.25594874873102], - "food": [15.537932534339292, 20.86102167018562], - "fuel": [65.91645977864994, 79.60751154438432], - "fuelium": [28.83237231004393, 38.06918241688007], - "gold": [707.133199754114, 719.2380161292289], - "goldOre": [60.62126194850994, 77.62399819901695], - "hullPlates": [65.71829343780149, 80.23917006392453], - "hydrogen": [71.63340481298016, 77.0361699757789], - "ice": [11.915484996272967, 17.82317539259018], - "metals": [46.57475291853998, 58.720008225104266], - "ore": [18.247637027747793, 36.73362400675793], - "silica": [49.83758562645186, 56.31522559098822], - "silicon": [14.349538060390536, 27.346327844858614], - "superconductors": [396.6636069552801, 402.9790536802778], - "tauMetal": [572.4666450652903, 587.1532350687278], - "water": [29.388896187603322, 42.2560366709625] + "coolant": [90.73600770622232, 108.79055837590528], + "drones": [838.4038287729281, 851.7315756391046], + "electronics": [348.50521109108024, 356.84296076302275], + "engineParts": [316.8448213442948, 326.28597748561], + "food": [17.837629919723167, 21.00160271997483], + "fuel": [37.43176010168077, 50.282499352373094], + "fuelium": [60.245806248350085, 73.91447788177345], + "gold": [366.98958429665106, 379.6268030810364], + "goldOre": [74.19674361230159, 90.09711827193148], + "hullPlates": [56.82719840899976, 65.16770417447604], + "hydrogen": [97.0464268328439, 113.97871277331589], + "ice": [14.236733830798213, 34.147736109169884], + "metals": [33.663016630547276, 51.62459715237003], + "ore": [21.263682529918707, 30.64718779942705], + "silica": [20.352304113901052, 26.04751465105016], + "silicon": [32.95574889995413, 48.08909499748894], + "superconductors": [507.6964245653195, 520.7294361519178], + "tauMetal": [537.7874658133333, 544.5919401933658], + "water": [31.104338518257098, 36.945024037279794] }, "lastPriceAdjust": { "commodities": { @@ -53243,116 +52716,116 @@ "offers": { "coolant": { "active": false, - "price": 97, + "price": 101, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1249, + "price": 844, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 389, + "price": 355, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 181, + "price": 323, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 17, - "quantity": 0, + "price": 20, + "quantity": 6956, "type": "buy" }, "fuel": { "active": false, - "price": 77, + "price": 49, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 33, + "price": 65, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 712, + "price": 379, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 74, + "price": 85, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 67, + "price": 60, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 75, + "price": 110, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 15, + "price": 29, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 56, + "price": 37, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 19, + "price": 23, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 52, + "price": 22, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 14, + "price": 40, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 402, + "price": 513, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 581, + "price": 543, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 31, - "quantity": 4337, + "price": 35, + "quantity": 3353, "type": "buy" } }, @@ -53375,7 +52848,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1548], + "ids": [1642], "mask": "BigInt:4294967296" }, "crew": { @@ -53392,7 +52865,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 172, "produces": 0 }, + "food": { "consumes": 116, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -53406,20 +52879,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 86, "produces": 0 } + "water": { "consumes": 58, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 444, + "id": 447, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 444, + "id": 447, "mask": "BigInt:549755813888" }, "name": { @@ -53455,7 +52928,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.466666666666672, + "food": 3.7999999999999954, "fuel": 0, "fuelium": 0, "gold": 0, @@ -53469,7 +52942,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7333333333333361 + "water": 1.3999999999999977 } }, "name": "production", @@ -53479,7 +52952,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 172, "produces": 0 }, + "food": { "consumes": 116, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -53493,21 +52966,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 86, "produces": 0 } + "water": { "consumes": 58, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 445, + "id": 448, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 444, + "id": 447, "mask": "BigInt:549755813888" }, "name": { @@ -53522,14 +52995,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 446, + "id": 449, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 444, + "id": 447, "mask": "BigInt:549755813888" }, "name": { @@ -53544,14 +53017,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 447, + "id": 450, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 444, + "id": 447, "mask": "BigInt:549755813888" }, "name": { @@ -53574,14 +53047,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 448, + "id": 451, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 444, + "id": 447, "mask": "BigInt:549755813888" }, "name": { @@ -53604,14 +53077,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 449, + "id": 452, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 444, + "id": 447, "mask": "BigInt:549755813888" }, "name": { @@ -53634,16 +53107,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 450, + "id": 453, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 14, + "allocationIdCounter": 1, "allocations": [], - "available": 779559, - "money": 779559, + "available": 2015556, + "money": 2015556, "name": "budget", "mask": "BigInt:16" }, @@ -53661,14 +53134,14 @@ }, "modules": { "name": "modules", - "ids": [452, 453, 454, 455, 456, 457, 458, 459], + "ids": [455, 456, 457, 458, 459, 460, 461, 462, 463, 464, 465, 466], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-24.362791121121525, -11.314121418169568], - "sector": 11, + "coord": [-15.029769630446838, -16.22710572724774], + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" }, @@ -53683,7 +53156,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 42, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -53691,12 +53164,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 260, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, @@ -53707,10 +53180,37 @@ "tauMetal": 0, "water": 0 }, - "issued": 3534, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "451:1546:buy:3534" }, - "id": 40 + "meta": { "tradeId": "454:1658:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 260, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "454:1659:buy:27" }, + "id": 2 } ], "max": 181000, @@ -53719,63 +53219,63 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 91598, - "fuel": 10245, + "food": 35687, + "fuel": 10623, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 31987, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 4727, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 18281 + "water": 3693 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 91858, - "fuel": 10245, + "food": 35687, + "fuel": 10623, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 32507, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 4727, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 18281 + "water": 3693 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 134007, - "fuel": 15723, + "food": 69597, + "fuel": 23245, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 53358, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 18559, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 16239 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -53784,25 +53284,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [116.96177566300943, 125.60528846467695], - "drones": [729.502543554018, 744.4227866988716], - "electronics": [395.66940557860033, 411.3956999001474], - "engineParts": [297.85565163945694, 313.81616058802416], - "food": [13.975539547530175, 17.729860839203994], - "fuel": [59.298776437380496, 70.04441218827762], - "fuelium": [66.28114621861928, 74.51407482376342], - "gold": [713.0513961216552, 721.3040498034302], - "goldOre": [89.16626044693973, 102.05357277108652], - "hullPlates": [66.83798829207879, 77.99821682043321], - "hydrogen": [78.22675091572816, 94.92571308142567], - "ice": [22.854684814628243, 42.56739687515416], - "metals": [57.50098774499007, 71.91921904060814], - "ore": [16.68469838251967, 32.930775683215714], - "silica": [34.62985115401098, 45.11606693272747], - "silicon": [15.057461429306137, 28.03807807002094], - "superconductors": [232.56283176834737, 246.12184523320798], - "tauMetal": [513.4778497226025, 523.8405919859796], - "water": [28.073917289241372, 43] + "coolant": [113.25540942800863, 125.27826022752635], + "drones": [1476.8130973624625, 1494.3983423457373], + "electronics": [247.38490680372018, 253.5886099137981], + "engineParts": [437.85314255409924, 455.2701558229519], + "food": [15, 19.237545147692263], + "fuel": [62.70491686469572, 73.5942184062768], + "fuelium": [40.871991743821404, 57.47268281709242], + "gold": [934.9019261022715, 949.5979550995769], + "goldOre": [79.72838484183663, 88.46763506964994], + "hullPlates": [48, 50], + "hydrogen": [81.6429697978869, 87.12702690440305], + "ice": [26.76077393910397, 35.191366567755125], + "metals": [62.01854007531929, 74.83922972604586], + "ore": [28.041196639975997, 37.01027815683254], + "silica": [22.929737986693553, 33.92294455449913], + "silicon": [28.29386975030959, 36.8003122722163], + "superconductors": [363.6930863273391, 371.2640807081512], + "tauMetal": [649.2195364542501, 663.5939222576865], + "water": [25.406650568637346, 35.341299989895724] }, "lastPriceAdjust": { "commodities": { @@ -53831,67 +53331,67 @@ "offers": { "coolant": { "active": false, - "price": 121, + "price": 124, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 734, + "price": 1486, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 408, + "price": 249, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 313, + "price": 439, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 15, - "quantity": 91598, + "price": 16, + "quantity": 35687, "type": "sell" }, "fuel": { "active": true, - "price": 60, - "quantity": 5478, + "price": 66, + "quantity": 12622, "type": "buy" }, "fuelium": { "active": false, - "price": 71, + "price": 56, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 720, + "price": 947, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 101, + "price": 87, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 77, - "quantity": 0, - "type": "buy" + "active": true, + "price": 48, + "quantity": 31987, + "type": "sell" }, "hydrogen": { "active": false, - "price": 83, + "price": 85, "quantity": 0, "type": "buy" }, @@ -53902,45 +53402,45 @@ "type": "buy" }, "metals": { - "active": false, - "price": 69, - "quantity": 0, + "active": true, + "price": 64, + "quantity": 13832, "type": "buy" }, "ore": { "active": false, - "price": 26, + "price": 28, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 44, + "price": 25, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 15, + "price": 32, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 241, + "price": 370, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 513, + "price": 657, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, - "quantity": 12987, + "price": 28, + "quantity": 12546, "type": "buy" } }, @@ -53958,17 +53458,17 @@ }, "name": { "name": "name", - "value": "UEN Discordis c Factory", + "value": "UEN Saturn Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1547, 1546], + "ids": [1641, 1640, 1639], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 11.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -53980,34 +53480,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 1500 }, - "fuel": { "consumes": 176, "produces": 0 }, + "food": { "consumes": 0, "produces": 3000 }, + "fuel": { "consumes": 1002, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 2300 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 800, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 350, "produces": 0 } + "water": { "consumes": 700, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 451, + "id": 454, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54022,14 +53522,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 452, + "id": 455, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54044,14 +53544,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 453, + "id": 456, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54074,14 +53574,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 454, + "id": 457, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54096,14 +53596,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 455, + "id": 458, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54118,14 +53618,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 456, + "id": 459, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54140,14 +53640,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 457, + "id": 460, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54162,7 +53662,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.7121212121211471, + "food": 0.7222222222221761, "fuel": 0, "fuelium": 0, "gold": 0, @@ -54233,14 +53733,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 458, + "id": 461, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 451, + "id": 454, "mask": "BigInt:549755813888" }, "name": { @@ -54255,7 +53755,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.7121212121211471, + "food": 0.7222222222221761, "fuel": 0, "fuelium": 0, "gold": 0, @@ -54326,35 +53826,388 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 459, + "id": 462, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "budget": { - "allocationIdCounter": 61, - "allocations": [ - { - "amount": 56800, - "issued": 3423, - "meta": { "tradeId": "349:1543:buy:3423" }, - "id": 55 + "parent": { + "name": "parent", + "id": 454, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hull Plates Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0.24074074074072627, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - { - "amount": 64800, - "issued": 3483, - "meta": { "tradeId": "460:1558:sell:3483" }, - "id": 57 + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 2.833333333333245, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 1.333333333333245, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 12, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 463, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 454, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hull Plates Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0.24074074074072627, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - { - "amount": 781, - "issued": 3594, - "meta": { "tradeId": "349:1544:buy:3594" }, - "id": 60 + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 2.833333333333245, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 1.333333333333245, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 } - ], - "available": 1181054, - "money": 1303435, + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 12, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 464, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 454, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.7222222222221761, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 465, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 454, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.7222222222221761, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 466, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 931002, + "money": 931002, "name": "budget", "mask": "BigInt:16" }, @@ -54372,13 +54225,13 @@ }, "modules": { "name": "modules", - "ids": [461, 462, 463, 464, 465, 466, 467, 468, 469], + "ids": [468, 469, 470, 471, 472, 473, 474, 475], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-20.620812777245103, -14.429978017750697], + "coord": [16.926510993635887, -18.831717657970835], "sector": 2, "moved": false, "mask": "BigInt:2199023255552" @@ -54394,207 +54247,71 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 80, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 260, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3159, - "type": "incoming", - "meta": { "tradeId": "460:1545:sell:3159" }, - "id": 63 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3327, - "type": "outgoing", - "meta": { "tradeId": "460:2233:buy:3327" }, - "id": 68 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 800, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3423, - "type": "incoming", - "meta": { "tradeId": "460:1543:sell:3423" }, - "id": 71 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 800, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "incoming", - "meta": { "tradeId": "460:1558:sell:3483" }, - "id": 75 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 11, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "incoming", - "meta": { "tradeId": "460:1544:sell:3594" }, - "id": 79 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 17244, - "fuel": 14076, + "food": 97228, + "fuel": 8496, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 63540, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 26295, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6600 + "water": 19923 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 17404, - "fuel": 14076, + "food": 97228, + "fuel": 8496, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 63540, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 26295, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6600 + "water": 19923 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 28500, - "fuel": 28044, + "food": 134007, + "fuel": 15723, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 87402, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 30401, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6650 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -54603,25 +54320,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [142.60586792736348, 147.6271003694109], - "drones": [1709.7308681689879, 1725.3396079960792], - "electronics": [238.182535745152, 257.35441051081585], - "engineParts": [203.02835075513065, 217.34704767461346], - "food": [13.109332140493155, 15.957873603688892], - "fuel": [52.43779066803688, 68.95890216038377], - "fuelium": [71.02384432870286, 88.3132978176805], - "gold": [555.6127855713487, 570.9127503273769], - "goldOre": [37.384211076397975, 43.900650579926086], - "hullPlates": [46, 49.819082631444516], - "hydrogen": [86.24993535573402, 94.55099130728706], - "ice": [9.906443523630578, 29.492769325880776], - "metals": [77.59330605359779, 86.50111090739827], - "ore": [39.20616798784437, 44.654573265441925], - "silica": [30.033859354320093, 44.96000263487847], - "silicon": [13.425009992728398, 28.590184126310007], - "superconductors": [548.6545923813301, 559.56383536589], - "tauMetal": [556.0388517384122, 571.0826487009251], - "water": [31.558609518925934, 43] + "coolant": [65.57059368247873, 80.63208947725906], + "drones": [1311.6296549917988, 1316.7602256223033], + "electronics": [429.7293724494301, 440.9121068800928], + "engineParts": [269.3381421627445, 287.76912930541954], + "food": [13, 13.943949200215586], + "fuel": [51.46135555328443, 71.15846552692885], + "fuelium": [29.615106827907653, 41.3442713661921], + "gold": [945.5749570298988, 956.7967714302712], + "goldOre": [65.57356112332694, 73.59692440746021], + "hullPlates": [27.09089618028738, 40.77001680128738], + "hydrogen": [45.65709618992446, 52.498187497021995], + "ice": [10.926642036165843, 25.731174921412823], + "metals": [82.13112611328123, 89.38044835321878], + "ore": [23.96606272981767, 40.23767112706741], + "silica": [43.678789790664936, 54.48261324968575], + "silicon": [31.204240833245606, 41.66582047904349], + "superconductors": [519.0437125769834, 528.1228135159342], + "tauMetal": [540.5983011244452, 559.2214373570437], + "water": [35.43089200740569, 43] }, "lastPriceAdjust": { "commodities": { @@ -54650,116 +54367,116 @@ "offers": { "coolant": { "active": false, - "price": 147, + "price": 72, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1720, + "price": 1315, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 253, + "price": 440, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 207, + "price": 275, "quantity": 0, "type": "buy" }, "food": { "active": true, "price": 13, - "quantity": 17244, + "quantity": 97228, "type": "sell" }, "fuel": { "active": true, - "price": 63, - "quantity": 13968, + "price": 69, + "quantity": 7227, "type": "buy" }, "fuelium": { "active": false, - "price": 76, + "price": 39, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 558, + "price": 946, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 39, + "price": 66, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 49, - "quantity": 63540, - "type": "sell" + "active": false, + "price": 33, + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 90, + "price": 52, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 27, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 81, - "quantity": 4106, + "active": false, + "price": 82, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 40, + "price": 30, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 34, + "price": 43, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 15, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 556, + "price": 526, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 559, + "price": 548, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 41, - "quantity": 50, + "price": 39, + "quantity": 11345, "type": "buy" } }, @@ -54767,44 +54484,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 13, - "target": "THT Trader Freighter A", - "time": 2846 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 940, - "price": 13, - "target": "THT Trader Large Freighter B", - "time": 2873 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 13, - "target": "THT Trader Freighter A", - "time": 3072 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 13, - "target": "THT Trader Freighter A", - "time": 3326 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -54819,12 +54499,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1545, 1544, 1543], + "ids": [1638, 1637], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 11.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -54836,34 +54516,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 738, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 2300 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 800, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 460, + "id": 467, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { @@ -54878,14 +54558,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 461, + "id": 468, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { @@ -54900,14 +54580,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 462, + "id": 469, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { @@ -54930,14 +54610,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 463, + "id": 470, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { @@ -54952,14 +54632,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 464, + "id": 471, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { @@ -54974,14 +54654,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 465, + "id": 472, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { @@ -54996,14 +54676,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 466, + "id": 473, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { @@ -55018,7 +54698,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.49999999999998046, + "food": 0.7121212121211471, "fuel": 0, "fuelium": 0, "gold": 0, @@ -55089,19 +54769,19 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 467, + "id": 474, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 460, + "id": 467, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -55111,107 +54791,14 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.7121212121211471, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.16666666666672292, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, - "fuelium": 0, - "gold": 0, - "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1.333333333333245, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 12, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 468, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 460, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Hull Plates Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.16666666666672292, - "hydrogen": 0, - "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -55226,20 +54813,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.833333333333245, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1.333333333333245, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -55249,42 +54836,42 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 469, + "id": 475, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 9, + "allocationIdCounter": 1, "allocations": [], - "available": 1271171, - "money": 1271171, + "available": 1034996, + "money": 1034996, "name": "budget", "mask": "BigInt:16" }, @@ -55302,13 +54889,13 @@ }, "modules": { "name": "modules", - "ids": [471, 472, 473, 474, 475, 476, 477, 478, 479, 480, 481], + "ids": [477, 478, 479, 480, 481, 482, 483, 484], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-9.474025945532391, -18.962402389514807], + "coord": [-0.4515615618350495, -23.681638944082568], "sector": 11, "moved": false, "mask": "BigInt:2199023255552" @@ -55324,16 +54911,44 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, - "allocations": [], + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 260, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 774, + "type": "outgoing", + "meta": { "tradeId": "476:1635:buy:774" }, + "id": 1 + } + ], "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 52672, - "fuel": 6192, + "food": 67717, + "fuel": 6685, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -55346,15 +54961,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14121 + "water": 16346 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 52672, - "fuel": 6192, + "food": 67977, + "fuel": 6685, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -55367,7 +54982,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14121 + "water": 16346 }, "quota": { "coolant": 0, @@ -55397,25 +55012,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [126.26851369841083, 142.19576065544547], - "drones": [1517.6881489520638, 1531.7103159251315], - "electronics": [330.047296860085, 342.4981534119248], - "engineParts": [390.0001379393833, 397.733191686355], - "food": [13.827836061858186, 19.54636244522137], - "fuel": [62.51933193868222, 69.84950327508797], - "fuelium": [74.61660843636936, 88.41685276281143], - "gold": [684.6996924328346, 702.9747248648985], - "goldOre": [40.48375402792005, 59.87074794930531], - "hullPlates": [63.19647847392609, 71.91305362459967], - "hydrogen": [42.69890883017342, 59.14974053115447], - "ice": [23.608424046319826, 42.91429077587913], - "metals": [34.482158226233054, 42.510316222216616], - "ore": [20.343667907952558, 34.03281992816513], - "silica": [19.386497554039376, 27.931491536359516], - "silicon": [29.9458494638964, 42.75679066184252], - "superconductors": [223.5153655683053, 228.83895252492252], - "tauMetal": [549.8065225086284, 565.586723616961], - "water": [32.20680221652886, 42.24818317771662] + "coolant": [101.75113691005899, 111.37957063665169], + "drones": [954.8811662731226, 963.5613206698489], + "electronics": [235.49571635910166, 249.29886602868834], + "engineParts": [229.75889833195282, 247.88988928642556], + "food": [14, 19.12613319227145], + "fuel": [47.97373872487318, 66.70876794948248], + "fuelium": [74.4874774395005, 86.05048738791521], + "gold": [852.113707063161, 866.1782945715818], + "goldOre": [59.21755593677452, 78.14090011280456], + "hullPlates": [57.77062129880178, 63.58468018911103], + "hydrogen": [43.633376031320005, 49.12033864161384], + "ice": [12.888802006683193, 23.967924361800733], + "metals": [79.40608765386995, 94.48288431221914], + "ore": [29.88756084759875, 43.254519287995315], + "silica": [18.63025037363029, 24.312314587116717], + "silicon": [14.759573496499579, 25.098271440893473], + "superconductors": [272.0827961973883, 287.16782679771296], + "tauMetal": [228.55388376148525, 242.56504860053818], + "water": [31.97919289507343, 38.38012435458451] }, "lastPriceAdjust": { "commodities": { @@ -55444,116 +55059,116 @@ "offers": { "coolant": { "active": false, - "price": 136, + "price": 110, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1519, + "price": 954, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 331, + "price": 237, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 391, + "price": 236, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 15, - "quantity": 52672, + "price": 16, + "quantity": 67717, "type": "sell" }, "fuel": { "active": true, - "price": 64, - "quantity": 9531, + "price": 61, + "quantity": 9038, "type": "buy" }, "fuelium": { "active": false, - "price": 76, + "price": 81, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 692, + "price": 856, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 49, + "price": 62, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 69, + "price": 58, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 56, + "price": 44, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 34, + "price": 14, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 42, + "price": 86, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 22, + "price": 37, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 22, + "price": 24, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 33, + "price": 16, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 228, + "price": 274, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 551, + "price": 236, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 39, - "quantity": 17147, + "price": 33, + "quantity": 14922, "type": "buy" } }, @@ -55576,12 +55191,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1542, 1541], + "ids": [1636, 1635], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 11.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -55593,8 +55208,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 440, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -55607,20 +55222,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 470, + "id": 476, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -55635,14 +55250,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 471, + "id": 477, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -55657,14 +55272,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 472, + "id": 478, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -55687,14 +55302,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 473, + "id": 479, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -55709,14 +55324,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 474, + "id": 480, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -55731,14 +55346,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 475, + "id": 481, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -55753,14 +55368,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 476, + "id": 482, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -55775,286 +55390,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.6282051282051135, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 477, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 470, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.6282051282051135, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 478, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 470, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.6282051282051135, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 479, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 470, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.6282051282051135, + "food": 0.7121212121211471, "fuel": 0, "fuelium": 0, "gold": 0, @@ -56125,14 +55461,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 480, + "id": 483, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 470, + "id": 476, "mask": "BigInt:549755813888" }, "name": { @@ -56147,7 +55483,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.6282051282051135, + "food": 0.7121212121211471, "fuel": 0, "fuelium": 0, "gold": 0, @@ -56218,35 +55554,16 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 481, + "id": 484, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 42, - "allocations": [ - { - "amount": 71440, - "issued": 3132, - "meta": { "tradeId": "482:2234:sell:3132" }, - "id": 35 - }, - { - "amount": 12160, - "issued": 3396, - "meta": { "tradeId": "482:2235:sell:3396" }, - "id": 38 - }, - { - "amount": 3782, - "issued": 3552, - "meta": { "tradeId": "505:1540:buy:3552" }, - "id": 41 - } - ], - "available": 1536716, - "money": 1624098, + "allocationIdCounter": 1, + "allocations": [], + "available": 1795625, + "money": 1795625, "name": "budget", "mask": "BigInt:16" }, @@ -56264,13 +55581,13 @@ }, "modules": { "name": "modules", - "ids": [483, 484, 485, 486, 487, 488, 489, 490, 491, 492], + "ids": [486, 487, 488, 489, 490, 491, 492, 493, 494, 495, 496, 497], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-7.968418079225845, 6.072146594092764], + "coord": [-21.255033834502107, -24.693194155542876], "sector": 2, "moved": false, "mask": "BigInt:2199023255552" @@ -56286,7 +55603,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 44, + "allocationIdCounter": 18, "allocations": [ { "amount": { @@ -56295,38 +55612,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3132, - "type": "incoming", - "meta": { "tradeId": "482:2234:sell:3132" }, - "id": 36 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 160, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, @@ -56337,10 +55627,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3396, - "type": "incoming", - "meta": { "tradeId": "482:2235:sell:3396" }, - "id": 40 + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "485:1660:buy:27" }, + "id": 1 }, { "amount": { @@ -56348,7 +55638,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 160, "fuel": 0, "fuelium": 0, "gold": 0, @@ -56362,39 +55652,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 313 - }, - "issued": 3513, - "type": "incoming", - "meta": { "tradeId": "482:1539:sell:3513" }, - "id": 42 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 61, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, "water": 0 }, - "issued": 3552, - "type": "incoming", - "meta": { "tradeId": "482:1540:sell:3552" }, - "id": 43 + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "485:2344:buy:309" }, + "id": 17 } ], "max": 181000, @@ -56403,63 +55666,63 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2408, - "fuel": 3604, + "food": 71069, + "fuel": 8146, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 19692, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 5034, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13138 + "water": 5770 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2408, - "fuel": 3604, + "food": 71229, + "fuel": 8146, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 19952, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 5034, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13138 + "water": 5770 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 134007, - "fuel": 15723, + "food": 97802, + "fuel": 19951, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 29992, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 10432, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 22820 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -56468,25 +55731,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [97.14776521979067, 116.00382872034592], - "drones": [1501.395781821457, 1508.0159433230176], - "electronics": [221.11541559997642, 240.8823670377817], - "engineParts": [280.52190265064615, 292.3657569632945], - "food": [17, 21.97966026650349], - "fuel": [65.16697174473447, 77], - "fuelium": [48.17062334543857, 58.07890416275558], - "gold": [776.4970834272614, 795.5375294680476], - "goldOre": [61.07447228718924, 71.63893665223235], - "hullPlates": [45.888519010611745, 57.50248308553482], - "hydrogen": [79.21360240379974, 94.53973066442649], - "ice": [12.74056797849997, 19.98165929657338], - "metals": [91.15342734017642, 111.00259064805948], - "ore": [20.516635776178802, 39.832931549810745], - "silica": [23.112278594900793, 35.71393412419296], - "silicon": [12.434261899044515, 28.759591174913655], - "superconductors": [384.55932594619054, 395.54813226514943], - "tauMetal": [520.0998472472832, 536.3882898432195], - "water": [26.154608792245572, 38.21781863053831] + "coolant": [139.12909435249995, 155.85139690694032], + "drones": [945.1052480720386, 957.9645115578718], + "electronics": [409.229711938313, 425.50658229000265], + "engineParts": [338.4117661793182, 344.1605809413402], + "food": [13.916538596182233, 16.840986657915934], + "fuel": [61.09927537106412, 66.35640350491718], + "fuelium": [61.79414113931067, 77.57351057564384], + "gold": [497.68322827073655, 511.4819293888652], + "goldOre": [52.54982276351532, 60.944631305661375], + "hullPlates": [46, 54.31529179190216], + "hydrogen": [45.51700646817254, 59.36926283914266], + "ice": [16.27641202586984, 26.172395147146624], + "metals": [71.42614409409137, 81.8336235278143], + "ore": [30.13188574412306, 48.491967150679216], + "silica": [44.43405766343646, 53.25353273147104], + "silicon": [25.0005483887632, 34.19837593552613], + "superconductors": [565.2874953471554, 575.0895297148298], + "tauMetal": [473.8043066390602, 488.95617141443677], + "water": [32.792752074632844, 41.91025018860299] }, "lastPriceAdjust": { "commodities": { @@ -56515,116 +55778,116 @@ "offers": { "coolant": { "active": false, - "price": 100, + "price": 153, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1505, + "price": 956, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 234, + "price": 416, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 287, + "price": 343, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 17, - "quantity": 2408, + "price": 14, + "quantity": 71069, "type": "sell" }, "fuel": { "active": true, - "price": 76, - "quantity": 12119, + "price": 61, + "quantity": 11805, "type": "buy" }, "fuelium": { "active": false, - "price": 50, + "price": 65, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 777, + "price": 499, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 66, + "price": 53, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 49, - "quantity": 0, - "type": "buy" + "active": true, + "price": 50, + "quantity": 19692, + "type": "sell" }, "hydrogen": { "active": false, - "price": 82, + "price": 54, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 14, + "price": 16, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 98, - "quantity": 0, + "active": true, + "price": 78, + "quantity": 5398, "type": "buy" }, "ore": { "active": false, - "price": 25, + "price": 43, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 24, + "price": 45, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 17, + "price": 33, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 391, + "price": 574, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 531, + "price": 480, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 32, - "quantity": 18130, + "price": 41, + "quantity": 17050, "type": "buy" } }, @@ -56632,26 +55895,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 100, - "price": 71, - "target": "THT Trader Freighter A", - "time": 3203 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 76, - "target": "THT Trader Freighter A", - "time": 3394 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -56666,7 +55910,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1540, 1539], + "ids": [1634, 1633, 1632], "mask": "BigInt:4294967296" }, "crew": { @@ -56683,34 +55927,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3000 }, - "fuel": { "consumes": 352, "produces": 0 }, + "food": { "consumes": 0, "produces": 3750 }, + "fuel": { "consumes": 765, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 700, "produces": 0 } + "water": { "consumes": 875, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 482, + "id": 485, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56725,14 +55969,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 483, + "id": 486, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56747,14 +55991,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 484, + "id": 487, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56777,14 +56021,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 485, + "id": 488, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56799,14 +56043,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 486, + "id": 489, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56821,14 +56065,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 487, + "id": 490, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56843,14 +56087,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 488, + "id": 491, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56865,7 +56109,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.904761904761898, + "food": 0.4298245614034819, "fuel": 0, "fuelium": 0, "gold": 0, @@ -56887,7 +56131,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.6000000000000112, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -56900,7 +56144,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.000000000000016 + "water": 0.8333333333333774 } }, "name": "production", @@ -56936,14 +56180,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 489, + "id": 492, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -56958,7 +56202,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.904761904761898, + "food": 0.4298245614034819, "fuel": 0, "fuelium": 0, "gold": 0, @@ -56980,7 +56224,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.6000000000000112, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -56993,7 +56237,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.000000000000016 + "water": 0.8333333333333774 } }, "name": "production", @@ -57029,14 +56273,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 490, + "id": 493, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -57051,7 +56295,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.904761904761898, + "food": 0.4298245614034819, "fuel": 0, "fuelium": 0, "gold": 0, @@ -57073,7 +56317,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.6000000000000112, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -57086,7 +56330,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.000000000000016 + "water": 0.8333333333333774 } }, "name": "production", @@ -57122,14 +56366,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 491, + "id": 494, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 482, + "id": 485, "mask": "BigInt:549755813888" }, "name": { @@ -57144,7 +56388,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.904761904761898, + "food": 0.4298245614034819, "fuel": 0, "fuelium": 0, "gold": 0, @@ -57166,7 +56410,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.6000000000000112, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -57179,7 +56423,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.000000000000016 + "water": 0.8333333333333774 } }, "name": "production", @@ -57215,16 +56459,202 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 492, + "id": 495, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 485, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hull Plates Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0.7923976608187306, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 2.833333333333245, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 1.333333333333245, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 12, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 496, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 485, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.4298245614034819, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 497, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 19, + "allocationIdCounter": 1, "allocations": [], - "available": 378108, - "money": 378108, + "available": 1707399, + "money": 1707399, "name": "budget", "mask": "BigInt:16" }, @@ -57242,19 +56672,19 @@ }, "modules": { "name": "modules", - "ids": [494, 495, 496, 497, 498, 499, 500, 501, 502, 503, 504], + "ids": [499, 500, 501, 502, 503, 504, 505, 506], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [23.060979126213333, -5.560359002917014], - "sector": 8, + "coord": [-17.949538158316166, -5.247212314049936], + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16761677, + "color": 7326194, "defaultScale": 1, "name": "render", "layer": "facility", @@ -57264,132 +56694,714 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 64, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3246, - "type": "incoming", - "meta": { "tradeId": "493:1756:sell:3246" }, - "id": 38 + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 134007, + "fuel": 15723, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 31268 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [80.86344918975979, 88.767330098451], + "drones": [1715.1945862771438, 1734.583166047195], + "electronics": [412.76509459354537, 424.0968952572603], + "engineParts": [187.67750874606736, 205.7750753566672], + "food": [16.603266998732785, 22], + "fuel": [32.707955291151066, 39.37880311320901], + "fuelium": [58.12689859739943, 65.06371479729555], + "gold": [660.828985750173, 676.0894194640649], + "goldOre": [55.24171477793381, 65.94378164246125], + "hullPlates": [46.2541187258352, 54.149824068870984], + "hydrogen": [81.82479689302303, 94.80882661402313], + "ice": [14.659453560566305, 20.87774552352984], + "metals": [67.72212015031897, 82.47655094873733], + "ore": [14.690561059117691, 29.826236275000568], + "silica": [42.86637124485517, 48.88487851975158], + "silicon": [14.555290739431182, 21.08639883642209], + "superconductors": [444.0718210073737, 461.4126903909862], + "tauMetal": [270.3133407865293, 284.26227535800103], + "water": [33.15014278333433, 38.89562249549003] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3291, - "type": "incoming", - "meta": { "tradeId": "493:1757:sell:3291" }, - "id": 39 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 86, + "quantity": 0, + "type": "buy" }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 96, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "incoming", - "meta": { "tradeId": "493:1768:sell:3582" }, - "id": 42 + "drones": { + "active": false, + "price": 1724, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 423, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 204, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 18, + "quantity": 0, + "type": "sell" + }, + "fuel": { + "active": true, + "price": 37, + "quantity": 15723, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 62, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 661, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 56, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 50, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 87, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 19, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 71, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 16, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 46, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 18, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 461, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 274, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 36, + "quantity": 31268, + "type": "buy" } - ], + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "UEN Saturn Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1631, 1630], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 11.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 350, "produces": 0 } + }, + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 498, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 499, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 500, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 501, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 502, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 503, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 504, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 505, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 498, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 506, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 501882, + "money": 501882, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [508, 509, 510, 511, 512, 513, 514, 515, 516, 517, 518], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-12.752427057355206, -9.090210853866552], + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16761677, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], "max": 61000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4, - "fuel": 1981, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 8, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4, - "fuel": 1981, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 8, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2 + "water": 0 }, "quota": { "coolant": 0, @@ -57419,25 +57431,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [66.43133741509442, 84.37878490015478], - "drones": [1714.0330011198955, 1723.9522117347603], - "electronics": [321.79399380904556, 329.70917482696393], - "engineParts": [374.1515117079118, 382.2196895620739], - "food": [20, 22], - "fuel": [49.68934556576921, 68.30287287474573], - "fuelium": [29.462664271257037, 37.219713116850215], - "gold": [771.3589321185405, 790.4974515512299], - "goldOre": [77.7731398401676, 97.71880214581142], - "hullPlates": [37.97253007314347, 46.38196975792354], - "hydrogen": [81.66693747019164, 92.87289993062848], - "ice": [25.263777683115713, 27], - "metals": [73.60607681048882, 81.92310293431086], - "ore": [23.374118068095534, 28.66050159546448], - "silica": [23.99602574917045, 32.09591221426258], - "silicon": [30.799112717791, 50.349252387127386], - "superconductors": [424.4955124852223, 443.3845194036158], - "tauMetal": [509.14061992277965, 516.5661876941684], - "water": [39.51105207402797, 42.998970734708735] + "coolant": [88.27331769839694, 98.41450929326516], + "drones": [678.3373259547583, 687.0582507190435], + "electronics": [309.7348001597222, 320.9301662196138], + "engineParts": [200.032366561333, 212.69315549201994], + "food": [18.970243890810274, 22], + "fuel": [74.81011382059303, 77], + "fuelium": [39.01505080797133, 47.87115743041118], + "gold": [890.6705544209838, 905.6415107279871], + "goldOre": [47.09942008297233, 53.7560852837429], + "hullPlates": [26.878872709986354, 44.30197246638093], + "hydrogen": [81.65276870395695, 100.06956516574652], + "ice": [18.523892267313954, 26.893635206793597], + "metals": [65.93657066594001, 76.64841914048941], + "ore": [18.721876434216348, 33.054917892875935], + "silica": [19.494225966820792, 28.595072952624765], + "silicon": [27.321829955058966, 38.60988408972451], + "superconductors": [234.25146639556604, 252.96933808642305], + "tauMetal": [262.99045352708924, 273.88828320628437], + "water": [42.38420600889337, 43] }, "lastPriceAdjust": { "commodities": { @@ -57466,115 +57478,115 @@ "offers": { "coolant": { "active": false, - "price": 83, + "price": 97, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1718, + "price": 685, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 324, + "price": 320, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 378, + "price": 210, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 21, - "quantity": 4, + "price": 19, + "quantity": 0, "type": "sell" }, "fuel": { "active": true, - "price": 66, - "quantity": 1764, + "price": 74, + "quantity": 3745, "type": "buy" }, "fuelium": { "active": false, - "price": 36, + "price": 45, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 777, + "price": 901, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 81, + "price": 51, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 45, + "price": 36, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 89, + "price": 82, "quantity": 0, "type": "buy" }, "ice": { "active": true, - "price": 26, - "quantity": 10208, + "price": 22, + "quantity": 10216, "type": "buy" }, "metals": { "active": false, - "price": 76, + "price": 74, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 23, + "price": 31, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 25, + "price": 20, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 38, + "price": 30, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 434, + "price": 238, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 515, + "price": 263, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 39, + "price": 42, "quantity": 0, "type": "sell" } @@ -57593,12 +57605,12 @@ }, "name": { "name": "name", - "value": "ACT Pontus Farming Facility", + "value": "ACT Sector Alpha Farming Facility", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1757, 1756, 1768], + "ids": [1851, 1850, 1862], "mask": "BigInt:4294967296" }, "crew": { @@ -57635,14 +57647,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 493, + "id": 507, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -57657,14 +57669,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 494, + "id": 508, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -57679,14 +57691,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 495, + "id": 509, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -57772,14 +57784,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 496, + "id": 510, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -57865,14 +57877,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 497, + "id": 511, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -57958,14 +57970,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 498, + "id": 512, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -57980,14 +57992,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 499, + "id": 513, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -58010,14 +58022,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 500, + "id": 514, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -58032,14 +58044,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 501, + "id": 515, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -58068,7 +58080,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.4666666666666639 + "water": 0 }, "consumption": { "coolant": 0, @@ -58125,14 +58137,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 502, + "id": 516, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -58147,7 +58159,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8333333333333315, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -58169,7 +58181,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.33333333333333437, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -58182,7 +58194,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333348 + "water": 0 } }, "name": "production", @@ -58218,14 +58230,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 503, + "id": 517, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 493, + "id": 507, "mask": "BigInt:549755813888" }, "name": { @@ -58311,7 +58323,7 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 504, + "id": 518, "tags": ["facilityModule", "facilityModuleType:production"] }, { @@ -58319,8 +58331,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 2694664, - "money": 2694664, + "available": 2357632, + "money": 2357632, "name": "budget", "mask": "BigInt:16" }, @@ -58338,13 +58350,13 @@ }, "modules": { "name": "modules", - "ids": [506, 507, 508, 509, 510, 511, 512, 513, 514, 515, 516], + "ids": [520, 521, 522, 523, 524, 525, 526, 527, 528, 529, 530], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [7.644317465014537, 3.4560233359555], + "coord": [-8.522519377432243, -12.114439946521806], "sector": 6, "moved": false, "mask": "BigInt:2199023255552" @@ -58360,117 +58372,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 152, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 63, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3531, - "type": "outgoing", - "meta": { "tradeId": "505:1750:buy:3531" }, - "id": 148 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 61, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3552, - "type": "outgoing", - "meta": { "tradeId": "505:1540:buy:3552" }, - "id": 149 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3576, - "type": "outgoing", - "meta": { "tradeId": "505:1708:buy:3576" }, - "id": 150 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "outgoing", - "meta": { "tradeId": "505:1679:buy:3579" }, - "id": 151 - } - ], + "allocationIdCounter": 8, + "allocations": [], "max": 81000, "availableWares": { "coolant": 0, @@ -58478,8 +58381,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 45, + "fuel": 24942, + "fuelium": 26, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -58499,8 +58402,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 184, - "fuelium": 45, + "fuel": 24942, + "fuelium": 26, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -58542,25 +58445,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [96.978869941481, 112.46595509425848], - "drones": [738.4357101915937, 757.3753216175493], - "electronics": [289.5805013032695, 302.41632580509037], - "engineParts": [293.4522310361132, 301.8539972281417], - "food": [20.52730534038257, 32.970763184393874], - "fuel": [56.479059792656706, 66.1605005040061], - "fuelium": [63.717898546708156, 71.5374176348273], - "gold": [610.1003687604338, 619.182973781306], - "goldOre": [54.550160922721474, 59.734595052520184], - "hullPlates": [62.293327608517764, 73.48587484591005], - "hydrogen": [49.59079974529382, 67.91781699753916], - "ice": [10.234887774110627, 28.920268029409684], - "metals": [60.15651690130801, 78.77675318734771], - "ore": [29.905420290766976, 42.820519926081246], - "silica": [24.986180910079764, 43.263325287164946], - "silicon": [16.35520000232595, 30.223775869966005], - "superconductors": [499.69707067670976, 514.6394637899004], - "tauMetal": [621.4218591243132, 628.2893008798005], - "water": [30.22875290686665, 46.43667977541568] + "coolant": [74.32352783335125, 87.68191845681824], + "drones": [832.0092455152267, 849.0013184425051], + "electronics": [185.83976981744857, 192.7168505315656], + "engineParts": [379.05138985578594, 399.01785496045443], + "food": [18.360734792892927, 28.63426652485891], + "fuel": [45, 47], + "fuelium": [54.667997033963815, 67.86498727913957], + "gold": [493.8752364425212, 502.5713866478939], + "goldOre": [66.05668308790727, 72.9760313565948], + "hullPlates": [52.38692603118561, 57.84065084558878], + "hydrogen": [82.88967023083924, 90.84096349124671], + "ice": [11.305593795744542, 27.97685760543944], + "metals": [46.79487912509823, 52.96395349076022], + "ore": [32.68054952433285, 44.623979531598096], + "silica": [34.41546080231015, 45.38316767818307], + "silicon": [23.394202499669674, 39.639801198439486], + "superconductors": [354.58944329571165, 363.1091945194825], + "tauMetal": [548.7730577091481, 568.4091017149991], + "water": [19.94745224830803, 25.19796242298281] }, "lastPriceAdjust": { "commodities": { @@ -58589,115 +58492,115 @@ "offers": { "coolant": { "active": false, - "price": 102, + "price": 86, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 744, + "price": 834, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 293, + "price": 191, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 300, + "price": 387, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 24, + "price": 19, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 62, - "quantity": 0, + "price": 45, + "quantity": 24942, "type": "sell" }, "fuelium": { "active": true, - "price": 68, - "quantity": 37339, + "price": 64, + "quantity": 37358, "type": "buy" }, "gold": { "active": false, - "price": 616, + "price": 495, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 55, + "price": 66, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 71, + "price": 53, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 52, + "price": 85, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 14, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 61, + "price": 48, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 32, + "price": 40, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 37, + "price": 44, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 29, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 513, + "price": 356, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 621, + "price": 559, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 36, + "price": 23, "quantity": 0, "type": "buy" } @@ -58706,116 +58609,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 800, - "price": 65, - "target": "UEN Large Freighter A", - "time": 2099 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 65, - "target": "UEN Freighter B", - "time": 2122 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 800, - "price": 65, - "target": "UEN Large Freighter A", - "time": 2464 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 65, - "target": "UEN Freighter B", - "time": 2588 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 800, - "price": 65, - "target": "UEN Large Freighter A", - "time": 2827 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 62, - "target": "UEN Courier A", - "time": 2921 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 62, - "target": "UEN Freighter B", - "time": 2931 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 62, - "target": "UEN Freighter B", - "time": 3053 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 62, - "target": "UEN Courier A", - "time": 3113 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 800, - "price": 62, - "target": "UEN Large Freighter A", - "time": 3193 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 800, - "price": 62, - "target": "UEN Large Freighter A", - "time": 3211 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 62, - "target": "UEN Freighter B", - "time": 3385 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -58830,7 +58624,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1755, 1767], + "ids": [1849, 1861], "mask": "BigInt:4294967296" }, "crew": { @@ -58867,14 +58661,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 505, + "id": 519, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -58889,14 +58683,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 506, + "id": 520, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -58911,14 +58705,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 507, + "id": 521, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -58933,14 +58727,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 508, + "id": 522, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -58956,7 +58750,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.7218855218853921, + "fuel": 0.1959595959594651, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -59016,7 +58810,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -59025,15 +58819,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 509, + "cooldowns": { "timers": { "production": 0 } }, + "id": 523, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -59048,14 +58842,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 510, + "id": 524, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -59071,7 +58865,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.7218855218853921, + "fuel": 0.6498316498315226, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -59131,7 +58925,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -59140,15 +58934,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 511, + "cooldowns": { "timers": { "production": 0 } }, + "id": 525, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -59163,14 +58957,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 512, + "id": 526, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -59186,7 +58980,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.7218855218853921, + "fuel": 0.5178451178449954, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -59246,7 +59040,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -59255,15 +59049,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 513, + "cooldowns": { "timers": { "production": 0 } }, + "id": 527, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -59278,14 +59072,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 514, + "id": 528, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -59301,7 +59095,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.5905723905722606, + "fuel": 0.5178451178449954, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -59361,7 +59155,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -59370,15 +59164,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 515, + "cooldowns": { "timers": { "production": 0 } }, + "id": 529, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 505, + "id": 519, "mask": "BigInt:549755813888" }, "name": { @@ -59401,7 +59195,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 516, + "id": 530, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -59409,8 +59203,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 911895, - "money": 911895, + "available": 1295448, + "money": 1295448, "name": "budget", "mask": "BigInt:16" }, @@ -59428,13 +59222,13 @@ }, "modules": { "name": "modules", - "ids": [518, 519, 520, 521, 522, 523, 524, 525, 526, 527, 528], + "ids": [532, 533, 534, 535, 536, 537, 538, 539, 540, 541, 542], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-32.49681576406708, -7.214588989444945], + "coord": [3.929897301760806, -31.905854937116736], "sector": 6, "moved": false, "mask": "BigInt:2199023255552" @@ -59450,144 +59244,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 165, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3480, - "type": "outgoing", - "meta": { "tradeId": "517:1702:buy:3480" }, - "id": 156 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3549, - "type": "outgoing", - "meta": { "tradeId": "517:1699:buy:3549" }, - "id": 159 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 72 - }, - "issued": 3564, - "type": "outgoing", - "meta": { "tradeId": "517:1703:buy:3564" }, - "id": 162 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3576, - "type": "outgoing", - "meta": { "tradeId": "517:1706:buy:3576" }, - "id": 163 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 32, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3591, - "type": "incoming", - "meta": { "tradeId": "517:1766:sell:3591" }, - "id": 164 - } - ], + "allocationIdCounter": 2, + "allocations": [], "max": 81000, "availableWares": { "coolant": 0, @@ -59601,14 +59259,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 6508, + "ice": 19, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 23539 }, "stored": { "coolant": 0, @@ -59622,14 +59280,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 6508, + "ice": 19, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 336 + "water": 23539 }, "quota": { "coolant": 0, @@ -59659,25 +59317,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [59.54536843699916, 75.77056073260849], - "drones": [823.4742786999881, 833.0260530538922], - "electronics": [355.1461908935747, 366.18882616402107], - "engineParts": [382.7529513205655, 398.37313910322985], - "food": [12.101529537822682, 20.998449351385027], - "fuel": [54.64103759339563, 67.95519534221873], - "fuelium": [41.38781389402417, 47.02592829835062], - "gold": [669.037382304926, 687.8684146939], - "goldOre": [44.52069165975763, 51.20067951760012], - "hullPlates": [35.639468214677464, 50.29542473250247], - "hydrogen": [79.31707004791386, 95.87581622666335], - "ice": [23.1312480332445, 27], - "metals": [98.58863723340595, 110.5225185747322], - "ore": [39.8762463289218, 59.53504275183321], - "silica": [26.583359069705892, 44.00749392014182], - "silicon": [26.69647866986608, 44.477021256769795], - "superconductors": [293.1654190836024, 302.49348054129723], - "tauMetal": [507.0072198409374, 519.9886967603894], - "water": [31, 33] + "coolant": [113.84535026204202, 120.15024753280487], + "drones": [801.6630792255985, 818.2857383592388], + "electronics": [182.17514486268684, 201.39583286782477], + "engineParts": [291.6139600404141, 304.59409338783064], + "food": [10.584748971427864, 18.652608926289233], + "fuel": [53.203636947797364, 70.39572552289627], + "fuelium": [36.99208985018794, 52.148638982126336], + "gold": [949.5472467878742, 959.8288964339098], + "goldOre": [67.2014953053758, 73.30016457214985], + "hullPlates": [51.885391564840816, 58.4631730501928], + "hydrogen": [81.99234500826029, 90.09242413534622], + "ice": [27, 29], + "metals": [61.12503544080997, 77.07470097842804], + "ore": [33.61531634228065, 48.304075472175654], + "silica": [47.32769364379118, 67.14608547797333], + "silicon": [21.183971901278653, 33.331842758306664], + "superconductors": [223.11105544961708, 229.8855971303812], + "tauMetal": [399.9168006946756, 414.166153837748], + "water": [38, 40] }, "lastPriceAdjust": { "commodities": { @@ -59706,37 +59364,37 @@ "offers": { "coolant": { "active": false, - "price": 63, + "price": 118, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 826, + "price": 813, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 359, + "price": 189, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 388, + "price": 295, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 13, + "price": 17, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 65, + "price": 67, "quantity": 0, "type": "buy" }, @@ -59748,74 +59406,74 @@ }, "gold": { "active": false, - "price": 687, + "price": 951, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 47, + "price": 69, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 49, + "price": 57, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 79, + "price": 85, "quantity": 0, "type": "buy" }, "ice": { "active": true, - "price": 23, - "quantity": 39777, + "price": 28, + "quantity": 46266, "type": "buy" }, "metals": { "active": false, - "price": 99, + "price": 69, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 55, + "price": 37, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 32, + "price": 64, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 29, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 294, + "price": 225, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 516, + "price": 405, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 32, - "quantity": 0, + "price": 38, + "quantity": 23539, "type": "sell" } }, @@ -59823,71 +59481,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 31, - "target": "FFW Freighter A", - "time": 1453 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 31, - "target": "FFW Freighter A", - "time": 1837 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 29, - "target": "FFW Freighter A", - "time": 2221 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 29, - "target": "THT Trader Large Freighter B", - "time": 2576 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 29, - "target": "FFW Freighter A", - "time": 2605 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 32, - "target": "FFW Freighter A", - "time": 2989 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 88, - "price": 32, - "target": "FFW Freighter A", - "time": 3373 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -59902,7 +59496,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1754, 1766], + "ids": [1848, 1860], "mask": "BigInt:4294967296" }, "crew": { @@ -59939,14 +59533,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 517, + "id": 531, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -59961,14 +59555,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 518, + "id": 532, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -59983,14 +59577,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 519, + "id": 533, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60005,14 +59599,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 520, + "id": 534, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60041,7 +59635,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.23921568627459777 }, "consumption": { "coolant": 0, @@ -60088,7 +59682,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -60097,15 +59691,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 521, + "cooldowns": { "timers": { "production": 0 } }, + "id": 535, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60120,14 +59714,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 522, + "id": 536, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60156,7 +59750,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.23921568627459777 }, "consumption": { "coolant": 0, @@ -60203,7 +59797,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -60212,15 +59806,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 523, + "cooldowns": { "timers": { "production": 0 } }, + "id": 537, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60235,14 +59829,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 524, + "id": 538, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60271,7 +59865,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.23921568627459777 }, "consumption": { "coolant": 0, @@ -60318,7 +59912,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -60327,15 +59921,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 525, + "cooldowns": { "timers": { "production": 0 } }, + "id": 539, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60350,14 +59944,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 526, + "id": 540, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60386,7 +59980,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.29803921568636227 }, "consumption": { "coolant": 0, @@ -60433,7 +60027,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -60442,15 +60036,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 527, + "cooldowns": { "timers": { "production": 0 } }, + "id": 541, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 517, + "id": 531, "mask": "BigInt:549755813888" }, "name": { @@ -60473,7 +60067,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 528, + "id": 542, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -60481,14 +60075,14 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1210814, - "money": 1210814, + "available": 1486329, + "money": 1486329, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [1672], + "docked": [], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -60500,13 +60094,13 @@ }, "modules": { "name": "modules", - "ids": [530, 531, 532, 533, 534, 535, 536, 537, 538, 539, 540], + "ids": [544, 545, 546, 547, 548, 549, 550, 551, 552, 553, 554], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [8.95501494547155, -26.6065987972959], + "coord": [0.8661259902848912, -9.879999665328182], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -60522,7 +60116,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 87, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -60538,7 +60132,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 20, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -60546,10 +60140,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3579, + "issued": 1209, "type": "outgoing", - "meta": { "tradeId": "529:1674:buy:3579" }, - "id": 86 + "meta": { "tradeId": "543:1847:buy:1209" }, + "id": 1 } ], "max": 81000, @@ -60566,8 +60160,8 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 7351, + "metals": 14985, + "ore": 14257, "silica": 0, "silicon": 0, "superconductors": 0, @@ -60587,8 +60181,8 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 20, - "ore": 7351, + "metals": 15145, + "ore": 14257, "silica": 0, "silicon": 0, "superconductors": 0, @@ -60623,25 +60217,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [132.07851211822066, 138.2949106147574], - "drones": [1742.9287430634324, 1751.375715519435], - "electronics": [312.1576092797241, 331.5598486986228], - "engineParts": [298.8849351431113, 317.72015433577087], - "food": [21.79698205158678, 32.98043992863072], - "fuel": [73.53132885667556, 84.78799101409729], - "fuelium": [30.11291346554942, 39.13062849909235], - "gold": [786.0712599596711, 799.5492414983128], - "goldOre": [87.62992139950492, 93.28169392720791], - "hullPlates": [25.881542242210497, 41.95500580419939], - "hydrogen": [37.365510264527124, 56.01586009439403], - "ice": [25.93530371785686, 36.84593578045596], - "metals": [74.09193068500858, 82.4683619900456], - "ore": [16.16663712228026, 33.50008863315922], - "silica": [28.703826034821084, 43.59699611581697], - "silicon": [34.88148019362728, 46.172596933596026], - "superconductors": [421.83274570602396, 431.6639466887684], - "tauMetal": [354.82228784937763, 361.8405035441478], - "water": [16.34801901748289, 33.48592800997951] + "coolant": [130.85081148022505, 146.09887390135455], + "drones": [875.5388039733123, 885.3196944826132], + "electronics": [430.9111707537344, 436.28452348068504], + "engineParts": [429.09399368069637, 447.09009397457663], + "food": [14.130692708317403, 23.38588273952991], + "fuel": [42.35816568303554, 48.65762436583686], + "fuelium": [69.96465290963685, 76.9119113004009], + "gold": [718.946027707943, 724.8059254177042], + "goldOre": [84.61219021087152, 101.99010974483055], + "hullPlates": [53.822512469734576, 65.65438714702952], + "hydrogen": [56.68261726207538, 66.49506981628139], + "ice": [11.657428560656994, 20.316080564741767], + "metals": [74.40579298192392, 82.47470165326656], + "ore": [36.654153030206956, 42], + "silica": [28.768623235952646, 48.51153512289417], + "silicon": [24.705845447316634, 32.092793505200376], + "superconductors": [467.38115400371714, 482.83660584857677], + "tauMetal": [626.5920090353276, 636.89305911979], + "water": [39.87012128905148, 56.928197028774676] }, "lastPriceAdjust": { "commodities": { @@ -60670,115 +60264,115 @@ "offers": { "coolant": { "active": false, - "price": 132, + "price": 145, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1743, + "price": 877, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 314, + "price": 433, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 299, + "price": 438, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 25, + "price": 14, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 84, + "price": 46, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 32, + "price": 72, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 794, + "price": 723, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 88, + "price": 100, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 33, + "price": 56, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 38, + "price": 64, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 35, + "price": 18, "quantity": 0, "type": "buy" }, "metals": { "active": true, - "price": 74, - "quantity": 0, + "price": 81, + "quantity": 14985, "type": "sell" }, "ore": { "active": true, - "price": 26, - "quantity": 46649, + "price": 39, + "quantity": 39743, "type": "buy" }, "silica": { "active": false, - "price": 40, + "price": 44, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 39, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 429, + "price": 470, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 358, + "price": 634, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 29, + "price": 50, "quantity": 0, "type": "buy" } @@ -60802,7 +60396,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1753, 1765], + "ids": [1847, 1859], "mask": "BigInt:4294967296" }, "crew": { @@ -60839,14 +60433,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 529, + "id": 543, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -60861,14 +60455,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 530, + "id": 544, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -60883,14 +60477,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 531, + "id": 545, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -60905,14 +60499,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 532, + "id": 546, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -60998,14 +60592,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 533, + "id": 547, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -61020,14 +60614,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 534, + "id": 548, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -61113,14 +60707,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 535, + "id": 549, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -61135,14 +60729,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 536, + "id": 550, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -61228,14 +60822,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 537, + "id": 551, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -61250,14 +60844,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 538, + "id": 552, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -61343,14 +60937,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 539, + "id": 553, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 529, + "id": 543, "mask": "BigInt:549755813888" }, "name": { @@ -61373,7 +60967,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 540, + "id": 554, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -61381,8 +60975,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1073031, - "money": 1073031, + "available": 728664, + "money": 728664, "name": "budget", "mask": "BigInt:16" }, @@ -61400,13 +60994,13 @@ }, "modules": { "name": "modules", - "ids": [542, 543, 544, 545, 546, 547, 548, 549, 550, 551, 552], + "ids": [556, 557, 558, 559, 560, 561, 562, 563, 564, 565, 566], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [0.42923674575627424, -0.9782536772563444], + "coord": [-2.4612118569357664, -0.2241459101673115], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -61422,7 +61016,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 146, + "allocationIdCounter": 23, "allocations": [ { "amount": { @@ -61441,123 +61035,15 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "outgoing", - "meta": { "tradeId": "541:1707:buy:3501" }, - "id": 141 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 6, + "silicon": 940, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3582, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "541:1730:buy:3582" }, - "id": 142 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "outgoing", - "meta": { "tradeId": "541:1733:buy:3588" }, - "id": 143 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 96, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "incoming", - "meta": { "tradeId": "541:1764:sell:3588" }, - "id": 144 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 6, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "outgoing", - "meta": { "tradeId": "541:1732:buy:3594" }, - "id": 145 + "meta": { "tradeId": "555:2347:buy:309" }, + "id": 22 } ], "max": 81000, @@ -61576,8 +61062,8 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 5138, - "silicon": 8486, + "silica": 14, + "silicon": 31233, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -61597,8 +61083,8 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 5138, - "silicon": 8818, + "silica": 14, + "silicon": 32173, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -61631,25 +61117,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [99.88100115145126, 117.63373997906326], - "drones": [1462.7633944834934, 1478.9412192200593], - "electronics": [267.5625008048972, 280.6173513518406], - "engineParts": [255.87247858462365, 268.36281263975326], - "food": [10.637237914030207, 23.1960042856102], - "fuel": [52.31559198060261, 58.807180208458824], - "fuelium": [39.45400300493772, 55.6113718165755], - "gold": [754.2115979002688, 765.0415885384992], - "goldOre": [54.34597830593043, 63.4812676163008], - "hullPlates": [24.719968609413904, 40.72650194188455], - "hydrogen": [92.2299472657989, 109.25778513310208], - "ice": [21.81142307242215, 27.939990867464516], - "metals": [87.85556338329411, 105.16009346004333], - "ore": [25.43189875971994, 31.417089064896437], - "silica": [37.835130807276556, 44.93934920680374], - "silicon": [26.88201877377229, 33.04324840340192], - "superconductors": [294.22547201696807, 305.7800406848614], - "tauMetal": [618.4144584744856, 635.1346094197411], - "water": [20.78440169895147, 28.565562168662886] + "coolant": [126.55840073668773, 132.79334514052843], + "drones": [936.721274835347, 954.0853959038626], + "electronics": [393.3747356990074, 412.5530031157292], + "engineParts": [191.38150891591255, 203.57020045390232], + "food": [18.439141360541647, 34.68065697282683], + "fuel": [54.76799721428041, 65.45165202720699], + "fuelium": [65.47766344959581, 81.91027497787789], + "gold": [840.3214187949923, 848.4099261261717], + "goldOre": [34.270760063394356, 45.61701152773601], + "hullPlates": [45.29302095100192, 59.864655368654006], + "hydrogen": [88.23526849986362, 99.8104676300337], + "ice": [17.881002252265528, 25.96420377051404], + "metals": [64.19915792826008, 78.21424840227822], + "ore": [33.74078427091156, 52.49545594903916], + "silica": [23.652301719674718, 39.13998981326746], + "silicon": [15.62096605024267, 25.13963080025301], + "superconductors": [481.8155807614032, 501.28001026432383], + "tauMetal": [505.79400979108453, 519.7170080593426], + "water": [22.496739150707633, 35.612042442943135] }, "lastPriceAdjust": { "commodities": { @@ -61678,67 +61164,67 @@ "offers": { "coolant": { "active": false, - "price": 105, + "price": 131, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1475, + "price": 942, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 276, + "price": 395, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 263, + "price": 191, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 20, + "price": 21, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 55, + "price": 61, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 44, + "price": 71, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 763, + "price": 844, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 61, + "price": 40, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 36, + "price": 51, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 94, + "price": 92, "quantity": 0, "type": "buy" }, @@ -61750,43 +61236,43 @@ }, "metals": { "active": false, - "price": 93, + "price": 77, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 25, + "price": 34, "quantity": 0, "type": "buy" }, "silica": { "active": true, - "price": 43, - "quantity": 25237, + "price": 24, + "quantity": 30361, "type": "buy" }, "silicon": { "active": true, - "price": 32, - "quantity": 8486, + "price": 17, + "quantity": 31233, "type": "sell" }, "superconductors": { "active": false, - "price": 294, + "price": 484, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 623, + "price": 507, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 25, + "price": 27, "quantity": 0, "type": "buy" } @@ -61795,26 +61281,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 6, - "price": 27, - "target": "THT Trader Courier B", - "time": 1676 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 940, - "price": 27, - "target": "THT Trader Large Freighter B", - "time": 2106 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -61829,7 +61296,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1752, 1764], + "ids": [1846, 1858], "mask": "BigInt:4294967296" }, "crew": { @@ -61866,14 +61333,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 541, + "id": 555, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -61888,14 +61355,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 542, + "id": 556, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -61910,14 +61377,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 543, + "id": 557, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -61932,14 +61399,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 544, + "id": 558, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -61965,7 +61432,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0.20036429872490924, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -62015,7 +61482,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -62024,15 +61491,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 545, + "cooldowns": { "timers": { "production": 0 } }, + "id": 559, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -62047,14 +61514,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 546, + "id": 560, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -62080,7 +61547,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0.20036429872490924, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -62130,7 +61597,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -62139,15 +61606,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 547, + "cooldowns": { "timers": { "production": 0 } }, + "id": 561, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -62162,14 +61629,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 548, + "id": 562, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -62195,7 +61662,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0.7249544626593343, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -62245,7 +61712,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -62254,15 +61721,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 549, + "cooldowns": { "timers": { "production": 0 } }, + "id": 563, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -62277,14 +61744,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 550, + "id": 564, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -62310,7 +61777,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0.7249544626593343, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -62360,7 +61827,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -62369,15 +61836,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 551, + "cooldowns": { "timers": { "production": 0 } }, + "id": 565, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 541, + "id": 555, "mask": "BigInt:549755813888" }, "name": { @@ -62400,7 +61867,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 552, + "id": 566, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -62408,8 +61875,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1215736, - "money": 1215736, + "available": 1022472, + "money": 1022472, "name": "budget", "mask": "BigInt:16" }, @@ -62427,13 +61894,13 @@ }, "modules": { "name": "modules", - "ids": [554, 555, 556, 557, 558, 559, 560, 561, 562, 563, 564], + "ids": [568, 569, 570, 571, 572, 573, 574, 575, 576, 577, 578], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [1.291978071453613, 15.024902027847869], + "coord": [-0.863550433247311, 8.231952454829829], "sector": 8, "moved": false, "mask": "BigInt:2199023255552" @@ -62449,7 +61916,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 308, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -62471,12 +61938,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 38 + "water": 160 }, - "issued": 3546, + "issued": 312, "type": "outgoing", - "meta": { "tradeId": "553:1744:buy:3546" }, - "id": 307 + "meta": { "tradeId": "567:1842:buy:312" }, + "id": 1 } ], "max": 81000, @@ -62492,14 +61959,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 16, + "ice": 1762, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 27246 }, "stored": { "coolant": 0, @@ -62513,14 +61980,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 16, + "ice": 1762, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 38 + "water": 27406 }, "quota": { "coolant": 0, @@ -62550,25 +62017,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [119.03609721367309, 128.8862432168013], - "drones": [1140.9123924669966, 1155.5445654270713], - "electronics": [160.9167893894505, 177.92355384830083], - "engineParts": [396.4787473459801, 414.16036943558294], - "food": [11.486034565837286, 22.729951634152744], - "fuel": [45.45307333729882, 61.276718705456986], - "fuelium": [58.201647014768106, 74.35427509981614], - "gold": [384.50233627442054, 393.5747095058839], - "goldOre": [73.72425514480634, 93.6915550060049], - "hullPlates": [39.60538631239186, 51.60392081343818], - "hydrogen": [89.62300551959228, 94.86034425194062], - "ice": [22.773043282200838, 27], - "metals": [40.501424878907955, 45.5693884401508], - "ore": [40.013175704256135, 48.8251840884985], - "silica": [46.31690475119866, 55.85574201488267], - "silicon": [26.346839542173996, 36.27209250162112], - "superconductors": [569.9870490789956, 580.5789170781286], - "tauMetal": [498.6165339745507, 514.8820268639857], - "water": [35, 35.501477665299745] + "coolant": [61.952029340220484, 67.95171730480963], + "drones": [693.6221796530297, 710.4771864007897], + "electronics": [386.5572823989213, 403.62750661098346], + "engineParts": [368.16924347351494, 378.2160370994104], + "food": [8.982807370566245, 26.218110572546735], + "fuel": [45.04610694292241, 61.629342735486105], + "fuelium": [69.93052393545739, 83.71879605943742], + "gold": [788.7660997771825, 796.8662937957981], + "goldOre": [55.230032780906654, 63.45561989105599], + "hullPlates": [61.61263469233138, 78.12180355987495], + "hydrogen": [100.49257524783336, 115.5112292713382], + "ice": [24.44204297494213, 27], + "metals": [57.28704115467498, 67.98151460483106], + "ore": [30.59616029199681, 46.68943377493044], + "silica": [18.359996345394368, 30.02287735460157], + "silicon": [20.782826462328607, 31.72301549292464], + "superconductors": [276.96748586866124, 293.99388981555614], + "tauMetal": [476.06439714316105, 482.7642458901746], + "water": [32, 34.72236229843977] }, "lastPriceAdjust": { "commodities": { @@ -62597,25 +62064,25 @@ "offers": { "coolant": { "active": false, - "price": 119, + "price": 63, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1149, + "price": 708, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 171, + "price": 394, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 409, + "price": 371, "quantity": 0, "type": "buy" }, @@ -62633,43 +62100,43 @@ }, "fuelium": { "active": false, - "price": 68, + "price": 75, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 387, + "price": 789, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 87, + "price": 62, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 40, + "price": 74, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 92, + "price": 105, "quantity": 0, "type": "buy" }, "ice": { "active": true, - "price": 26, - "quantity": 46269, + "price": 24, + "quantity": 44523, "type": "buy" }, "metals": { "active": false, - "price": 40, + "price": 67, "quantity": 0, "type": "buy" }, @@ -62681,32 +62148,32 @@ }, "silica": { "active": false, - "price": 50, + "price": 28, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 27, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 572, + "price": 289, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 503, + "price": 478, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, - "quantity": 0, + "price": 33, + "quantity": 27246, "type": "sell" } }, @@ -62714,98 +62181,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 20, - "target": "THT Trader Courier B", - "time": 712 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "THT Trader Large Freighter B", - "time": 787 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 829 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 20, - "target": "THT Trader Courier B", - "time": 838 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "THT Trader Large Freighter B", - "time": 842 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "THT Trader Large Freighter B", - "time": 879 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 20, - "target": "THT Trader Courier B", - "time": 907 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "THT Trader Large Freighter B", - "time": 945 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 1140 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 1176 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -62820,7 +62196,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1751, 1763], + "ids": [1845, 1857], "mask": "BigInt:4294967296" }, "crew": { @@ -62857,14 +62233,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 553, + "id": 567, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -62879,14 +62255,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 554, + "id": 568, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -62901,14 +62277,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 555, + "id": 569, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -62923,14 +62299,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 556, + "id": 570, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -62959,7 +62335,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7254901960784963 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, @@ -63006,7 +62382,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -63015,15 +62391,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 557, + "cooldowns": { "timers": { "production": 1 } }, + "id": 571, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -63038,14 +62414,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 558, + "id": 572, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -63074,7 +62450,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7529411764706566 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, @@ -63121,7 +62497,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -63130,15 +62506,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 559, + "cooldowns": { "timers": { "production": 1 } }, + "id": 573, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -63153,14 +62529,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 560, + "id": 574, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -63189,7 +62565,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.07450980392163942 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, @@ -63236,7 +62612,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -63245,15 +62621,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 561, + "cooldowns": { "timers": { "production": 1 } }, + "id": 575, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -63268,14 +62644,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 562, + "id": 576, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -63304,7 +62680,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.10196078431379973 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, @@ -63351,7 +62727,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -63360,15 +62736,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 563, + "cooldowns": { "timers": { "production": 1 } }, + "id": 577, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 553, + "id": 567, "mask": "BigInt:549755813888" }, "name": { @@ -63391,23 +62767,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 564, + "id": 578, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 17, - "allocations": [ - { - "amount": 3906, - "issued": 3531, - "meta": { "tradeId": "505:1750:buy:3531" }, - "id": 16 - } - ], - "available": 2937284, - "money": 2941190, + "allocationIdCounter": 1, + "allocations": [], + "available": 3080768, + "money": 3080768, "name": "budget", "mask": "BigInt:16" }, @@ -63425,13 +62794,13 @@ }, "modules": { "name": "modules", - "ids": [566, 567, 568, 569, 570, 571, 572, 573, 574, 575, 576], + "ids": [580, 581, 582, 583, 584, 585, 586, 587, 588, 589, 590], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [7.847588669515598, -8.279530147923008], + "coord": [18.175500848525864, -1.154930376284156], "sector": 9, "moved": false, "mask": "BigInt:2199023255552" @@ -63447,36 +62816,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 104, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 63, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3531, - "type": "incoming", - "meta": { "tradeId": "565:1750:sell:3531" }, - "id": 102 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 81000, "availableWares": { "coolant": 0, @@ -63484,10 +62825,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 3714, + "fuel": 619, "fuelium": 0, - "gold": 1139, - "goldOre": 15506, + "gold": 5896, + "goldOre": 19284, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -63505,10 +62846,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 3714, + "fuel": 619, "fuelium": 0, - "gold": 1139, - "goldOre": 15506, + "gold": 5896, + "goldOre": 19284, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -63548,25 +62889,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [107.15071461097725, 112.21557482800358], - "drones": [1215.3884372994419, 1227.1651620607806], - "electronics": [297.57720287189613, 303.274960373565], - "engineParts": [399.647338378064, 407.96350005323364], - "food": [17.523120361088893, 33.718283947581554], - "fuel": [41.82548558455543, 59.6168416849408], - "fuelium": [33.49488027136229, 40.680340472580156], - "gold": [636.2754804024346, 645.7595221028685], - "goldOre": [58.28242731095558, 68.0460892968689], - "hullPlates": [55.887659436009784, 65.10849409022953], - "hydrogen": [35.94022866812787, 42.739466863552224], - "ice": [17.38666691688414, 32.33747485639816], - "metals": [55.13299830896764, 69.76515983046272], - "ore": [29.972664088684866, 42.35860122935122], - "silica": [43.453470651191125, 62.65427772866128], - "silicon": [23.69510659241653, 37.50148697738958], - "superconductors": [551.9671488829222, 565.2806707662558], - "tauMetal": [524.1840663341952, 541.0752891311538], - "water": [17.697680315925655, 36.14818784524218] + "coolant": [91.45385905825677, 96.6080248063481], + "drones": [1722.1581552272116, 1730.6280536106324], + "electronics": [288.8018194671663, 304.98027752490316], + "engineParts": [221.67923680181943, 239.1349147928009], + "food": [20.370653707353252, 27.472837858608873], + "fuel": [48.8174814251894, 56.553558304967446], + "fuelium": [42.01363118986199, 55.43092770759172], + "gold": [612.3814652701149, 627.9614652701149], + "goldOre": [50.53490994153847, 65.15400662518091], + "hullPlates": [30.333137461563073, 37.63995666101972], + "hydrogen": [81.6583138735269, 99.53405979349037], + "ice": [12.969746147909255, 28.25258592885481], + "metals": [74.08578578012177, 79.72465361247635], + "ore": [15.97059718985386, 31.1212940344474], + "silica": [28.618415608299582, 36.65714124688539], + "silicon": [13.591015333024684, 18.90799125112804], + "superconductors": [366.2875169932877, 375.0462882638867], + "tauMetal": [563.0855578444573, 578.0143603593592], + "water": [36.63125684319019, 50.06786776542909] }, "lastPriceAdjust": { "commodities": { @@ -63595,115 +62936,115 @@ "offers": { "coolant": { "active": false, - "price": 108, + "price": 92, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1216, + "price": 1725, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 302, + "price": 299, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 400, + "price": 238, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 20, + "price": 22, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 45, - "quantity": 3900, + "price": 54, + "quantity": 6995, "type": "buy" }, "fuelium": { "active": false, - "price": 39, + "price": 53, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 639, - "quantity": 1139, + "price": 618, + "quantity": 5896, "type": "sell" }, "goldOre": { "active": true, - "price": 58, - "quantity": 49327, + "price": 62, + "quantity": 45549, "type": "buy" }, "hullPlates": { "active": false, - "price": 60, + "price": 32, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 38, + "price": 95, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 25, + "price": 14, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 69, + "price": 77, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 40, + "price": 16, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 44, + "price": 33, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 37, + "price": 18, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 554, + "price": 372, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 535, + "price": 568, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 23, + "price": 39, "quantity": 0, "type": "buy" } @@ -63727,7 +63068,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1750, 1762], + "ids": [1844, 1856], "mask": "BigInt:4294967296" }, "crew": { @@ -63764,14 +63105,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 565, + "id": 579, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -63786,14 +63127,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 566, + "id": 580, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -63808,14 +63149,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 567, + "id": 581, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -63830,14 +63171,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 568, + "id": 582, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -63923,14 +63264,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 569, + "id": 583, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -63945,14 +63286,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 570, + "id": 584, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -64038,14 +63379,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 571, + "id": 585, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -64060,14 +63401,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 572, + "id": 586, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -64153,14 +63494,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 573, + "id": 587, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -64175,14 +63516,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 574, + "id": 588, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -64268,14 +63609,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 575, + "id": 589, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 565, + "id": 579, "mask": "BigInt:549755813888" }, "name": { @@ -64298,7 +63639,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 576, + "id": 590, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -64306,14 +63647,14 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 2201653, - "money": 2201653, + "available": 2242800, + "money": 2242800, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [1714], + "docked": [], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -64325,13 +63666,13 @@ }, "modules": { "name": "modules", - "ids": [578, 579, 580, 581, 582, 583, 584, 585, 586, 587, 588], + "ids": [592, 593, 594, 595, 596, 597, 598, 599, 600, 601, 602], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-1.7563932834594231, 3.302742727859332], + "coord": [-10.280444438848871, 6.388080434683744], "sector": 25, "moved": false, "mask": "BigInt:2199023255552" @@ -64347,7 +63688,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 421, + "allocationIdCounter": 8, "allocations": [ { "amount": { @@ -64356,7 +63697,61 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 0, + "fuelium": 96, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 99, + "type": "incoming", + "meta": { "tradeId": "591:1855:sell:99" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 300, + "type": "outgoing", + "meta": { "tradeId": "591:1789:buy:300" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -64371,10 +63766,118 @@ "tauMetal": 0, "water": 0 }, - "issued": 3543, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "577:1714:buy:3543" }, - "id": 419 + "meta": { "tradeId": "591:1792:buy:309" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 312, + "type": "outgoing", + "meta": { "tradeId": "591:1790:buy:312" }, + "id": 4 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 312, + "type": "outgoing", + "meta": { "tradeId": "591:1791:buy:312" }, + "id": 5 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1845, + "type": "outgoing", + "meta": { "tradeId": "591:1797:buy:1845" }, + "id": 6 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 2952, + "type": "outgoing", + "meta": { "tradeId": "591:1769:buy:2952" }, + "id": 7 } ], "max": 81000, @@ -64384,8 +63887,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 9, + "fuel": 29723, + "fuelium": 4, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -64405,8 +63908,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, - "fuelium": 9, + "fuel": 30683, + "fuelium": 4, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -64448,25 +63951,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [62.77166899521724, 71.34863059478393], - "drones": [864.8201613765362, 878.2221220679193], - "electronics": [227.0979813146609, 244.45127640024407], - "engineParts": [389.7190941917718, 401.65114899620767], - "food": [15.734483816869558, 26.266389720083517], - "fuel": [53.94327070637791, 56.73050091507689], - "fuelium": [58.98613561901459, 70.78339437834754], - "gold": [858.707496991731, 873.4733926593576], - "goldOre": [92.91970201347772, 101.45734891250609], - "hullPlates": [42.283697877234005, 61.99846158981593], - "hydrogen": [36.80414261764184, 53.57772413636624], - "ice": [26.78099278811801, 46.72750074570877], - "metals": [70.69876007858797, 84.18142719013795], - "ore": [26.02620450616, 42.36751926149262], - "silica": [21.158654111640587, 33.07963297413093], - "silicon": [31.111541995865398, 39.6167727740031], - "superconductors": [518.3940566725605, 538.2564656569051], - "tauMetal": [300.519651800646, 316.5018584758352], - "water": [32.25110729224797, 45.07231729770519] + "coolant": [110.66913611316734, 123.32050421013935], + "drones": [1153.6587921257665, 1165.9688045607106], + "electronics": [172.27901407094694, 188.02812350367816], + "engineParts": [382.3501166636445, 394.02111631777865], + "food": [12.933807106770132, 24.518209069156548], + "fuel": [51, 53], + "fuelium": [56.32593965240324, 74.99698743183168], + "gold": [771.5207358294754, 779.6595881506433], + "goldOre": [59.83755121273116, 79.4378520001305], + "hullPlates": [39.852269846915064, 52.04893700031192], + "hydrogen": [96.91640411180494, 114.65792503780588], + "ice": [20.771289292278617, 33.361321816998334], + "metals": [56.369692675971606, 61.47541570723408], + "ore": [40.17905296779573, 53.82881442344153], + "silica": [49.337839784054545, 63.91366936887681], + "silicon": [26.68484488002897, 44.11796167760555], + "superconductors": [504.91424779017666, 524.4463633333881], + "tauMetal": [346.3639655350486, 363.3534917455515], + "water": [26.143921843938926, 45.115191499483366] }, "lastPriceAdjust": { "commodities": { @@ -64495,115 +63998,115 @@ "offers": { "coolant": { "active": false, - "price": 66, + "price": 115, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 873, + "price": 1160, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 239, + "price": 175, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 397, + "price": 387, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 23, + "price": 17, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 54, - "quantity": 0, + "price": 52, + "quantity": 29723, "type": "sell" }, "fuelium": { "active": true, - "price": 59, - "quantity": 37375, + "price": 60, + "quantity": 37380, "type": "buy" }, "gold": { "active": false, - "price": 872, + "price": 777, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 99, + "price": 73, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 46, + "price": 41, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 51, + "price": 97, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 44, + "price": 26, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 83, + "price": 61, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 27, + "price": 41, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 25, + "price": 60, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 36, + "price": 42, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 537, + "price": 519, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 306, + "price": 359, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 32, + "price": 43, "quantity": 0, "type": "buy" } @@ -64627,7 +64130,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1749, 1761], + "ids": [1843, 1855], "mask": "BigInt:4294967296" }, "crew": { @@ -64664,14 +64167,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 577, + "id": 591, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64686,14 +64189,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 578, + "id": 592, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64708,14 +64211,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 579, + "id": 593, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64730,14 +64233,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 580, + "id": 594, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64753,7 +64256,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9777777777776411, + "fuel": 0.049158249158146816, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -64823,14 +64326,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 581, + "id": 595, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64845,14 +64348,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 582, + "id": 596, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64868,7 +64371,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.8464646464645096, + "fuel": 0.049158249158146816, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -64938,14 +64441,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 583, + "id": 597, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64960,14 +64463,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 584, + "id": 598, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -64983,7 +64486,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.8464646464645096, + "fuel": 0.049158249158146816, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -65053,14 +64556,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 585, + "id": 599, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -65075,14 +64578,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 586, + "id": 600, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -65098,7 +64601,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.30033670033656534, + "fuel": 0.049158249158146816, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -65168,14 +64671,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 587, + "id": 601, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 577, + "id": 591, "mask": "BigInt:549755813888" }, "name": { @@ -65198,23 +64701,23 @@ } }, "cooldowns": { "timers": {} }, - "id": 588, + "id": 602, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 33, + "allocationIdCounter": 2, "allocations": [ { - "amount": 3360, - "issued": 3327, - "meta": { "tradeId": "589:2233:sell:3327" }, - "id": 31 + "amount": 8160, + "issued": 312, + "meta": { "tradeId": "567:1842:buy:312" }, + "id": 1 } ], - "available": 240883, - "money": 244243, + "available": 320817, + "money": 328977, "name": "budget", "mask": "BigInt:16" }, @@ -65232,13 +64735,13 @@ }, "modules": { "name": "modules", - "ids": [590, 591, 592, 593, 594, 595], + "ids": [604, 605, 606, 607, 608, 609], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [6.528578587511554, 9.333048724654137], + "coord": [-3.2969871621370164, -3.556075808136553], "sector": 6, "moved": false, "mask": "BigInt:2199023255552" @@ -65254,35 +64757,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, + "allocationIdCounter": 2, "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3327, - "type": "incoming", - "meta": { "tradeId": "589:2233:sell:3327" }, - "id": 31 - }, { "amount": { "coolant": 0, @@ -65303,12 +64779,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 160 }, - "issued": 3489, + "issued": 312, "type": "incoming", - "meta": { "tradeId": "589:1748:sell:3489" }, - "id": 32 + "meta": { "tradeId": "603:1842:sell:312" }, + "id": 1 } ], "max": 20000, @@ -65317,7 +64793,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6499, + "food": 4729, "fuel": 0, "fuelium": 0, "gold": 0, @@ -65331,14 +64807,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3715 + "water": 2825 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6499, + "food": 4729, "fuel": 0, "fuelium": 0, "gold": 0, @@ -65352,7 +64828,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3715 + "water": 2825 }, "quota": { "coolant": 0, @@ -65382,25 +64858,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [98.09967169761455, 108.69183230684979], - "drones": [984.3541824316574, 1000.121261145366], - "electronics": [401.2587129113513, 420.0457805020227], - "engineParts": [320.34091562398976, 326.9690108933037], - "food": [11.204835611908624, 22], - "fuel": [36.71055802937412, 52.60892283894157], - "fuelium": [31.040723242106715, 45.887883736359484], - "gold": [385.99669967167875, 401.82363409265326], - "goldOre": [85.98510374178554, 95.60644814867422], - "hullPlates": [28.507430734605258, 37.7281039027816], - "hydrogen": [56.75663190688359, 72.38175159163075], - "ice": [9.120817991563372, 22.004594719834472], - "metals": [69.95391195597571, 77.27809075217222], - "ore": [30.830138189066645, 46.41561871411932], - "silica": [38.985944595924664, 49.507726018575696], - "silicon": [15.106793630795178, 23.435053851951942], - "superconductors": [344.4479687073059, 355.06573561805953], - "tauMetal": [598.3170781123451, 609.0422601843617], - "water": [31.26387811218525, 40.5592616465623] + "coolant": [101.19816639852803, 118.50516163548468], + "drones": [804.2021966249305, 812.2822753887763], + "electronics": [395.577342985006, 404.4607056845721], + "engineParts": [371.5221173650538, 388.371519087052], + "food": [16.330885140353324, 21.139130434782608], + "fuel": [41.51951989648496, 51.44522236105112], + "fuelium": [33.337219590751985, 49.45638497399918], + "gold": [373.8085697288419, 392.3308332826276], + "goldOre": [57.662872058682986, 71.03962184257732], + "hullPlates": [54.12338810479766, 62.77305780076463], + "hydrogen": [69.47924889971577, 82.07229698529969], + "ice": [17.12072350895709, 34.8580006847874], + "metals": [66.22815474208868, 74.97874111533224], + "ore": [35.68562539005723, 51.13251602651494], + "silica": [37.741022877336846, 49.523935692272175], + "silicon": [30.370212802476484, 39.18301165802101], + "superconductors": [351.3130280561653, 369.5818299468045], + "tauMetal": [336.57645200094896, 347.50375870424455], + "water": [41.72355227768917, 43] }, "lastPriceAdjust": { "commodities": { @@ -65429,116 +64905,116 @@ "offers": { "coolant": { "active": false, - "price": 105, + "price": 114, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 993, + "price": 804, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 414, + "price": 396, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 322, + "price": 383, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 21, - "quantity": 6834, + "price": 19, + "quantity": 8604, "type": "buy" }, "fuel": { "active": false, - "price": 36, + "price": 49, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 35, + "price": 45, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 396, + "price": 382, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 93, + "price": 69, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 33, + "price": 56, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 72, + "price": 81, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 11, + "price": 21, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 72, + "price": 67, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 42, + "price": 37, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 48, + "price": 42, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 21, + "price": 38, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 347, + "price": 366, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 605, + "price": 339, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 34, - "quantity": 2951, + "price": 42, + "quantity": 3841, "type": "buy" } }, @@ -65546,44 +65022,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Trader Freighter A", - "time": 2967 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "THT Trader Large Freighter B", - "time": 3130 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Trader Freighter A", - "time": 3192 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Trader Freighter A", - "time": 3447 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -65598,7 +65037,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1748], + "ids": [1842], "mask": "BigInt:4294967296" }, "crew": { @@ -65615,7 +65054,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 200, "produces": 0 }, + "food": { "consumes": 256, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -65629,20 +65068,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 100, "produces": 0 } + "water": { "consumes": 128, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 589, + "id": 603, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 589, + "id": 603, "mask": "BigInt:549755813888" }, "name": { @@ -65678,7 +65117,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1.666666666666683, + "food": 0.3333333333333499, "fuel": 0, "fuelium": 0, "gold": 0, @@ -65692,7 +65131,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.3333333333333415 + "water": 3.666666666666675 } }, "name": "production", @@ -65702,7 +65141,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 200, "produces": 0 }, + "food": { "consumes": 256, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -65716,21 +65155,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 100, "produces": 0 } + "water": { "consumes": 128, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 590, + "id": 604, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 589, + "id": 603, "mask": "BigInt:549755813888" }, "name": { @@ -65745,14 +65184,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 591, + "id": 605, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 589, + "id": 603, "mask": "BigInt:549755813888" }, "name": { @@ -65767,14 +65206,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 592, + "id": 606, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 589, + "id": 603, "mask": "BigInt:549755813888" }, "name": { @@ -65797,14 +65236,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 593, + "id": 607, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 589, + "id": 603, "mask": "BigInt:549755813888" }, "name": { @@ -65827,14 +65266,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 594, + "id": 608, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 589, + "id": 603, "mask": "BigInt:549755813888" }, "name": { @@ -65857,16 +65296,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 595, + "id": 609, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 15, + "allocationIdCounter": 1, "allocations": [], - "available": 39436, - "money": 39436, + "available": 312990, + "money": 312990, "name": "budget", "mask": "BigInt:16" }, @@ -65884,13 +65323,13 @@ }, "modules": { "name": "modules", - "ids": [597, 598, 599, 600, 601, 602], + "ids": [611, 612, 613, 614, 615, 616], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [4.906006615745785, 3.4153813894132554], + "coord": [4.3302958544881776, 4.150743908664833], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -65906,43 +65345,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3348, - "type": "incoming", - "meta": { "tradeId": "596:1747:sell:3348" }, - "id": 14 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 10675, + "food": 4372, "fuel": 0, "fuelium": 0, "gold": 0, @@ -65956,14 +65367,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6249 + "water": 2408 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 10675, + "food": 4372, "fuel": 0, "fuelium": 0, "gold": 0, @@ -65977,7 +65388,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6249 + "water": 2408 }, "quota": { "coolant": 0, @@ -66007,25 +65418,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [73.42693190151988, 78.50445696332677], - "drones": [779.5088168740691, 797.1002156905498], - "electronics": [243.8321540027868, 262.7683164477854], - "engineParts": [281.1839769643713, 286.903006104796], - "food": [11.50071053668811, 17.853846153846153], - "fuel": [73.20803179571973, 90.34362992911551], - "fuelium": [32.31369165374642, 42.84918391411328], - "gold": [577.4407957359444, 597.4079227245678], - "goldOre": [95.68859721504178, 110.16483321405049], - "hullPlates": [48.03902034798218, 56.63165603306422], - "hydrogen": [40.65742798010178, 54.25014296876246], - "ice": [21.826231497769577, 26.920919912408323], - "metals": [37.86976989489851, 54.94522049670583], - "ore": [19.39656552852976, 31.754537117613136], - "silica": [44.66494731555748, 53.881471889578876], - "silicon": [27.553009429430855, 41.56799677604324], - "superconductors": [210.54701697504854, 225.84261464479485], - "tauMetal": [395.8048567101698, 403.7204226546295], - "water": [32.26480693843797, 43] + "coolant": [78.86798287256167, 96.31639305774885], + "drones": [1753.2561227591893, 1772.606341352893], + "electronics": [314.3250899328758, 320.73952029761966], + "engineParts": [232.75477713576907, 239.37776116831654], + "food": [14.859870118950898, 22], + "fuel": [55.29697818513999, 65.01117074859815], + "fuelium": [67.7817691433918, 78.09175648340192], + "gold": [931.2332275785573, 940.6955391908882], + "goldOre": [44.37070345489169, 50.27231698208173], + "hullPlates": [53.450447054261986, 67.45517735197646], + "hydrogen": [45.76370877659008, 55.59451729501113], + "ice": [16.39430330985786, 24.969128772870047], + "metals": [52.222830466059406, 69.2686930028114], + "ore": [39.93745718891222, 53.50691688862409], + "silica": [33.1314192078799, 39.56203965491457], + "silicon": [12.657640393021234, 24.079557502806082], + "superconductors": [493.1294054468499, 504.85379523112294], + "tauMetal": [463.65592914891363, 478.7104673784108], + "water": [28.677612690407297, 35.164895101339724] }, "lastPriceAdjust": { "commodities": { @@ -66054,61 +65465,61 @@ "offers": { "coolant": { "active": false, - "price": 76, + "price": 83, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 793, + "price": 1761, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 261, + "price": 316, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 281, + "price": 239, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 13, - "quantity": 2658, + "price": 20, + "quantity": 8961, "type": "buy" }, "fuel": { "active": false, - "price": 76, + "price": 64, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 41, + "price": 70, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 589, + "price": 936, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 95, + "price": 46, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 53, + "price": 64, "quantity": 0, "type": "buy" }, @@ -66120,50 +65531,50 @@ }, "ice": { "active": false, - "price": 22, + "price": 24, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 40, + "price": 55, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 20, + "price": 45, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 50, + "price": 38, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 16, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 223, + "price": 499, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 396, + "price": 469, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 37, - "quantity": 417, + "price": 33, + "quantity": 4258, "type": "buy" } }, @@ -66171,35 +65582,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "THT Trader Courier B", - "time": 2174 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Trader Freighter A", - "time": 2641 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "THT Trader Courier B", - "time": 2749 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -66214,7 +65597,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1747], + "ids": [1841], "mask": "BigInt:4294967296" }, "crew": { @@ -66231,7 +65614,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 564, "produces": 0 }, + "food": { "consumes": 452, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -66245,20 +65628,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 282, "produces": 0 } + "water": { "consumes": 226, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 596, + "id": 610, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 596, + "id": 610, "mask": "BigInt:549755813888" }, "name": { @@ -66294,7 +65677,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.13333333333330444, + "food": 14.80000000000002, "fuel": 0, "fuelium": 0, "gold": 0, @@ -66308,7 +65691,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 7.066666666666652 + "water": 5.40000000000001 } }, "name": "production", @@ -66318,7 +65701,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 564, "produces": 0 }, + "food": { "consumes": 452, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -66332,21 +65715,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 282, "produces": 0 } + "water": { "consumes": 226, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 597, + "id": 611, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 596, + "id": 610, "mask": "BigInt:549755813888" }, "name": { @@ -66361,14 +65744,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 598, + "id": 612, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 596, + "id": 610, "mask": "BigInt:549755813888" }, "name": { @@ -66383,14 +65766,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 599, + "id": 613, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 596, + "id": 610, "mask": "BigInt:549755813888" }, "name": { @@ -66413,14 +65796,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 600, + "id": 614, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 596, + "id": 610, "mask": "BigInt:549755813888" }, "name": { @@ -66443,14 +65826,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 601, + "id": 615, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 596, + "id": 610, "mask": "BigInt:549755813888" }, "name": { @@ -66473,16 +65856,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 602, + "id": 616, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 31, + "allocationIdCounter": 1, "allocations": [], - "available": 107588, - "money": 107588, + "available": 223826, + "money": 223826, "name": "budget", "mask": "BigInt:16" }, @@ -66500,13 +65883,13 @@ }, "modules": { "name": "modules", - "ids": [604, 605, 606, 607, 608, 609], + "ids": [618, 619, 620, 621, 622, 623], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-8.128440635089138, 5.882095490433985], + "coord": [-6.487729705557282, -8.427176684289645], "sector": 8, "moved": false, "mask": "BigInt:2199023255552" @@ -66522,43 +65905,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3432, - "type": "incoming", - "meta": { "tradeId": "603:1746:sell:3432" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6388, + "food": 6704, "fuel": 0, "fuelium": 0, "gold": 0, @@ -66572,14 +65927,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6318 + "water": 3313 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6388, + "food": 6704, "fuel": 0, "fuelium": 0, "gold": 0, @@ -66593,7 +65948,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6318 + "water": 3313 }, "quota": { "coolant": 0, @@ -66623,25 +65978,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [49.94651083024825, 66.22865312778902], - "drones": [961.9806604946596, 973.1540521973761], - "electronics": [403.6729280146148, 421.0619918556787], - "engineParts": [185.28631039322414, 190.43110639296953], - "food": [12.627958821243874, 17.6], - "fuel": [42.396410161267944, 53.48538013247583], - "fuelium": [51.25391172189002, 67.28291674525394], - "gold": [880.644917654059, 892.877342600757], - "goldOre": [60.14426690515988, 70.14350201994802], - "hullPlates": [47.632856853861014, 61.69082366779038], - "hydrogen": [43.32538757482013, 56.12028023177456], - "ice": [26.36974443099612, 37.181194426949695], - "metals": [83.48290248221673, 100.52605778044808], - "ore": [36.841663251164704, 48.49881128302056], - "silica": [49.9206254663025, 56.26306529301888], - "silicon": [28.88928976179906, 48.6736489650859], - "superconductors": [451.14799057948056, 470.31741039472104], - "tauMetal": [572.7477207683191, 581.836067682266], - "water": [34.78142526670655, 43] + "coolant": [128.81205509213362, 145.92688668758248], + "drones": [959.0861063804452, 975.9293927138173], + "electronics": [305.9434748158458, 315.6962054861261], + "engineParts": [251.02540766774638, 265.2907383908408], + "food": [16.943483718440095, 19.045714285714283], + "fuel": [31.705397250562005, 50.36927887923975], + "fuelium": [65.73111094286953, 79.23116359496892], + "gold": [858.1388981811641, 867.6143343370308], + "goldOre": [33.43424938569819, 48.41898318531923], + "hullPlates": [28.12291676362429, 43.15571063106743], + "hydrogen": [39.24867300537173, 48.81945335942464], + "ice": [20.310077024035103, 27.672236191449976], + "metals": [89.98288688587792, 96.08572967299588], + "ore": [16.561616478522684, 35.240319958842335], + "silica": [21.651221238382234, 26.938416124818296], + "silicon": [30.897941865594067, 36.00290774677301], + "superconductors": [469.33635035783567, 478.18228107451444], + "tauMetal": [329.6285511244352, 336.58781571152514], + "water": [28.198812482436907, 36.64185008581594] }, "lastPriceAdjust": { "commodities": { @@ -66670,116 +66025,116 @@ "offers": { "coolant": { "active": false, - "price": 55, + "price": 134, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 966, + "price": 964, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 403, + "price": 315, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 185, + "price": 260, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 14, - "quantity": 6945, + "price": 18, + "quantity": 6629, "type": "buy" }, "fuel": { "active": false, - "price": 43, + "price": 36, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 63, + "price": 67, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 887, + "price": 865, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 62, + "price": 37, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 57, + "price": 35, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 51, + "price": 41, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 36, + "price": 26, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 98, + "price": 93, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 45, + "price": 30, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 54, + "price": 23, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 30, + "price": 35, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 452, + "price": 476, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 573, + "price": 333, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 39, - "quantity": 348, + "price": 32, + "quantity": 3353, "type": "buy" } }, @@ -66802,7 +66157,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1746], + "ids": [1840], "mask": "BigInt:4294967296" }, "crew": { @@ -66819,7 +66174,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 200, "produces": 0 }, + "food": { "consumes": 208, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -66833,20 +66188,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 100, "produces": 0 } + "water": { "consumes": 104, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 603, + "id": 617, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 603, + "id": 617, "mask": "BigInt:549755813888" }, "name": { @@ -66882,7 +66237,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1.666666666666683, + "food": 0.8666666666666636, "fuel": 0, "fuelium": 0, "gold": 0, @@ -66896,7 +66251,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.3333333333333415 + "water": 0.9333333333333318 } }, "name": "production", @@ -66906,7 +66261,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 200, "produces": 0 }, + "food": { "consumes": 208, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -66920,21 +66275,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 100, "produces": 0 } + "water": { "consumes": 104, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 604, + "id": 618, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 603, + "id": 617, "mask": "BigInt:549755813888" }, "name": { @@ -66949,14 +66304,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 605, + "id": 619, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 603, + "id": 617, "mask": "BigInt:549755813888" }, "name": { @@ -66971,14 +66326,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 606, + "id": 620, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 603, + "id": 617, "mask": "BigInt:549755813888" }, "name": { @@ -67001,14 +66356,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 607, + "id": 621, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 603, + "id": 617, "mask": "BigInt:549755813888" }, "name": { @@ -67031,14 +66386,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 608, + "id": 622, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 603, + "id": 617, "mask": "BigInt:549755813888" }, "name": { @@ -67061,23 +66416,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 609, + "id": 623, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 19, - "allocations": [ - { - "amount": 2400, - "issued": 3591, - "meta": { "tradeId": "792:1745:buy:3591" }, - "id": 18 - } - ], - "available": 164730, - "money": 167130, + "allocationIdCounter": 1, + "allocations": [], + "available": 279520, + "money": 279520, "name": "budget", "mask": "BigInt:16" }, @@ -67095,13 +66443,13 @@ }, "modules": { "name": "modules", - "ids": [611, 612, 613, 614, 615, 616], + "ids": [625, 626, 627, 628, 629, 630], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [9.048695857303471, 4.18344172292074], + "coord": [-2.1266080107291616, 4.985645045037511], "sector": 9, "moved": false, "mask": "BigInt:2199023255552" @@ -67117,43 +66465,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3591, - "type": "incoming", - "meta": { "tradeId": "610:1745:sell:3591" }, - "id": 18 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 5597, + "food": 6333, "fuel": 0, "fuelium": 0, "gold": 0, @@ -67167,14 +66487,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5440 + "water": 2226 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 5597, + "food": 6333, "fuel": 0, "fuelium": 0, "gold": 0, @@ -67188,7 +66508,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5440 + "water": 2226 }, "quota": { "coolant": 0, @@ -67218,25 +66538,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [81.55377496305795, 95.75035647843464], - "drones": [1326.383155903252, 1336.284447364261], - "electronics": [175.9920946167973, 188.46768490455244], - "engineParts": [444.41461462625506, 459.91833768374585], - "food": [11.716930270176267, 22], - "fuel": [63.94603763615991, 81.8700697609741], - "fuelium": [60.353375960877344, 79.82936969042126], - "gold": [475.8140177277519, 483.33701302328], - "goldOre": [92.0723184272329, 98.67243588049553], - "hullPlates": [51.558343442179385, 57.0056897717046], - "hydrogen": [101.73030561107763, 116.26315572187268], - "ice": [17.16810949192684, 28.97224847555727], - "metals": [61.796250902039006, 74.4589647216863], - "ore": [15.466552544388975, 20.925399443055873], - "silica": [17.805973477330056, 26.261991029266156], - "silicon": [31.534477114782323, 51.21370228178576], - "superconductors": [301.03358083733514, 314.9634831371741], - "tauMetal": [324.2116025964826, 337.4077034426395], - "water": [33.74530217681836, 43] + "coolant": [49.727957692718455, 61.19945275315051], + "drones": [1166.5865922331718, 1181.7463520265449], + "electronics": [251.72688406000646, 257.4894708469146], + "engineParts": [455.2585387564943, 471.7635376377323], + "food": [15.335896104992429, 18.810000000000002], + "fuel": [36.12496435398923, 52.29852064648989], + "fuelium": [45.03757404814711, 55.200165507582355], + "gold": [481.4092472783864, 497.8335126139174], + "goldOre": [80.21369705725378, 87.83786908762954], + "hullPlates": [35.50906561995092, 48.03174346786593], + "hydrogen": [62.902058967054074, 76.73607090532317], + "ice": [25.486394904798495, 31.980271789634738], + "metals": [52.46688541495162, 70.90664901578687], + "ore": [14.624725922288482, 27.289495215871383], + "silica": [27.99347655122292, 34.64758029531807], + "silicon": [32.08043990796955, 51.624924473032635], + "superconductors": [435.88459637764015, 452.26502908191276], + "tauMetal": [383.60550774134936, 396.12230085057246], + "water": [34.50706861642164, 40.231290726069965] }, "lastPriceAdjust": { "commodities": { @@ -67265,116 +66585,116 @@ "offers": { "coolant": { "active": false, - "price": 83, + "price": 54, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1332, + "price": 1173, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 188, + "price": 255, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 448, + "price": 463, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 16, - "quantity": 7736, + "price": 15, + "quantity": 7000, "type": "buy" }, "fuel": { "active": false, - "price": 64, + "price": 48, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 74, + "price": 52, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 483, + "price": 481, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 97, + "price": 80, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 54, + "price": 40, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 105, + "price": 73, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 27, + "price": 31, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 73, + "price": 55, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 17, + "price": 25, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 19, + "price": 34, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 39, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 305, + "price": 442, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 336, + "price": 390, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, - "quantity": 1226, + "price": 40, + "quantity": 4440, "type": "buy" } }, @@ -67397,7 +66717,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1745], + "ids": [1839], "mask": "BigInt:4294967296" }, "crew": { @@ -67414,7 +66734,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 184, "produces": 0 }, + "food": { "consumes": 224, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -67428,20 +66748,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 92, "produces": 0 } + "water": { "consumes": 112, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 610, + "id": 624, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 610, + "id": 624, "mask": "BigInt:549755813888" }, "name": { @@ -67477,7 +66797,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1.266666666666679, + "food": 4.266666666666667, "fuel": 0, "fuelium": 0, "gold": 0, @@ -67491,7 +66811,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2.1333333333333395 + "water": 0.1333333333333333 } }, "name": "production", @@ -67501,7 +66821,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 184, "produces": 0 }, + "food": { "consumes": 224, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -67515,21 +66835,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 92, "produces": 0 } + "water": { "consumes": 112, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 611, + "id": 625, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 610, + "id": 624, "mask": "BigInt:549755813888" }, "name": { @@ -67544,14 +66864,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 612, + "id": 626, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 610, + "id": 624, "mask": "BigInt:549755813888" }, "name": { @@ -67566,14 +66886,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 613, + "id": 627, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 610, + "id": 624, "mask": "BigInt:549755813888" }, "name": { @@ -67596,14 +66916,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 614, + "id": 628, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 610, + "id": 624, "mask": "BigInt:549755813888" }, "name": { @@ -67626,14 +66946,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 615, + "id": 629, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 610, + "id": 624, "mask": "BigInt:549755813888" }, "name": { @@ -67656,83 +66976,22 @@ } }, "cooldowns": { "timers": {} }, - "id": 616, + "id": 630, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": 19740, - "issued": 3213, - "meta": { "tradeId": "617:2230:sell:3213" }, - "id": 16 - }, - { - "amount": 19740, - "issued": 3327, - "meta": { "tradeId": "617:1709:sell:3327" }, - "id": 19 - }, - { - "amount": 19740, - "issued": 3447, - "meta": { "tradeId": "617:1677:sell:3447" }, - "id": 21 - }, - { - "amount": 3360, - "issued": 3477, - "meta": { "tradeId": "617:1700:sell:3477" }, - "id": 22 - }, - { - "amount": 19740, - "issued": 3501, - "meta": { "tradeId": "617:1701:sell:3501" }, - "id": 24 - }, - { - "amount": 3360, - "issued": 3522, - "meta": { "tradeId": "617:1675:sell:3522" }, - "id": 27 - }, - { - "amount": 3360, - "issued": 3522, - "meta": { "tradeId": "617:1719:sell:3522" }, - "id": 28 - }, - { - "amount": 1330, - "issued": 3546, - "meta": { "tradeId": "553:1744:buy:3546" }, - "id": 29 - }, - { - "amount": 3360, - "issued": 3567, - "meta": { "tradeId": "617:1698:sell:3567" }, - "id": 30 - }, - { - "amount": 3360, - "issued": 3573, - "meta": { "tradeId": "617:1718:sell:3573" }, - "id": 31 - } - ], - "available": 128552, - "money": 225642, + "allocationIdCounter": 1, + "allocations": [], + "available": 239430, + "money": 239430, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [1687], + "docked": [], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -67744,13 +67003,13 @@ }, "modules": { "name": "modules", - "ids": [618, 619, 620, 621, 622, 623], + "ids": [632, 633, 634, 635, 636, 637], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [8.380673198649575, -5.122861125307538], + "coord": [-6.503771111957521, 7.3672376121282355], "sector": 25, "moved": false, "mask": "BigInt:2199023255552" @@ -67766,286 +67025,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3213, - "type": "incoming", - "meta": { "tradeId": "617:2230:sell:3213" }, - "id": 16 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3327, - "type": "incoming", - "meta": { "tradeId": "617:1709:sell:3327" }, - "id": 19 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "incoming", - "meta": { "tradeId": "617:1677:sell:3447" }, - "id": 21 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3477, - "type": "incoming", - "meta": { "tradeId": "617:1700:sell:3477" }, - "id": 22 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "incoming", - "meta": { "tradeId": "617:1701:sell:3501" }, - "id": 24 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3522, - "type": "incoming", - "meta": { "tradeId": "617:1675:sell:3522" }, - "id": 27 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3522, - "type": "incoming", - "meta": { "tradeId": "617:1719:sell:3522" }, - "id": 28 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 38 - }, - "issued": 3546, - "type": "incoming", - "meta": { "tradeId": "617:1744:sell:3546" }, - "id": 29 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3567, - "type": "incoming", - "meta": { "tradeId": "617:1698:sell:3567" }, - "id": 30 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3573, - "type": "incoming", - "meta": { "tradeId": "617:1718:sell:3573" }, - "id": 31 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 7711, + "food": 6113, "fuel": 0, "fuelium": 0, "gold": 0, @@ -68059,14 +67047,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3729 + "water": 3896 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 7711, + "food": 6113, "fuel": 0, "fuelium": 0, "gold": 0, @@ -68080,7 +67068,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3729 + "water": 3896 }, "quota": { "coolant": 0, @@ -68110,25 +67098,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [123.20265253897935, 135.26798352645116], - "drones": [1157.8957667199757, 1173.1105578733966], - "electronics": [342.8489491776571, 350.289143933965], - "engineParts": [351.4383781371099, 358.612995713186], - "food": [9.632334949382074, 21.955684443202802], - "fuel": [32.46028838998052, 47.98587694916827], - "fuelium": [48.77476643031336, 68.525612662941], - "gold": [754.1072746495611, 762.8014916786059], - "goldOre": [71.7233988295319, 85.59557889862946], - "hullPlates": [54.34009183808772, 60.69299448083592], - "hydrogen": [97.68475838253792, 115.07270816152487], - "ice": [24.347771460300883, 37.2780371854403], - "metals": [69.96488891663131, 82.70614555894517], - "ore": [37.37909699783919, 48.65275074707966], - "silica": [30.344251003987598, 37.70266320551785], - "silicon": [22.413940575991134, 32.3727787969232], - "superconductors": [222.03647597801188, 233.577688323778], - "tauMetal": [560.6438800942448, 577.0860087023116], - "water": [24.941549540367355, 35.88907627487968] + "coolant": [67.30406192000682, 82.54739563157491], + "drones": [1215.2990822972142, 1221.7429425233483], + "electronics": [272.3076913396941, 284.4592548884964], + "engineParts": [463.8122302744934, 483.6805980524343], + "food": [21.390981640236344, 22], + "fuel": [49.20731099864212, 65.38050613897846], + "fuelium": [43.07582306899154, 58.01568237868314], + "gold": [574.3308874920638, 584.308649436501], + "goldOre": [59.764814144283235, 73.81068187808616], + "hullPlates": [54.35639226295736, 72.58016407917194], + "hydrogen": [93.64450572299943, 108.90194209727706], + "ice": [17.24759785801151, 22.323783359556415], + "metals": [82.48000060268228, 95.66700256822817], + "ore": [41.40115475709403, 54.61117047044014], + "silica": [32.173336725472616, 47.0310782809983], + "silicon": [29.953381789281618, 45.36746351267072], + "superconductors": [559.7715838316569, 574.9096453964431], + "tauMetal": [381.20214642364505, 386.21049323436006], + "water": [29.73313507187487, 41.6478047624127] }, "lastPriceAdjust": { "commodities": { @@ -68157,116 +67145,116 @@ "offers": { "coolant": { "active": false, - "price": 123, + "price": 81, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1166, + "price": 1215, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 348, + "price": 275, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 358, + "price": 463, "quantity": 0, "type": "buy" }, "food": { "active": true, "price": 21, - "quantity": 5628, + "quantity": 7220, "type": "buy" }, "fuel": { "active": false, - "price": 42, + "price": 65, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 59, + "price": 45, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 756, + "price": 582, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 73, + "price": 62, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 60, + "price": 61, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 104, + "price": 100, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 34, + "price": 21, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 76, + "price": 94, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 44, + "price": 49, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 37, + "price": 41, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 37, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 230, + "price": 567, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 571, + "price": 383, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 24, - "quantity": 2937, + "price": 33, + "quantity": 2770, "type": "buy" } }, @@ -68274,44 +67262,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 28, - "target": "THT Trader Courier B", - "time": 637 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 28, - "target": "THT Trader Freighter A", - "time": 680 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "THT Trader Courier B", - "time": 2818 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "THT Trader Courier B", - "time": 3245 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -68326,7 +67277,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1744], + "ids": [1838], "mask": "BigInt:4294967296" }, "crew": { @@ -68343,7 +67294,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 340, "produces": 0 }, + "food": { "consumes": 240, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -68357,20 +67308,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 170, "produces": 0 } + "water": { "consumes": 120, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 617, + "id": 631, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 617, + "id": 631, "mask": "BigInt:549755813888" }, "name": { @@ -68406,7 +67357,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 5.466666666666688, + "food": 5.933333333333342, "fuel": 0, "fuelium": 0, "gold": 0, @@ -68420,7 +67371,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.733333333333344 + "water": 3.466666666666671 } }, "name": "production", @@ -68430,7 +67381,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 340, "produces": 0 }, + "food": { "consumes": 240, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -68444,21 +67395,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 170, "produces": 0 } + "water": { "consumes": 120, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 618, + "id": 632, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 617, + "id": 631, "mask": "BigInt:549755813888" }, "name": { @@ -68473,14 +67424,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 619, + "id": 633, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 617, + "id": 631, "mask": "BigInt:549755813888" }, "name": { @@ -68495,14 +67446,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 620, + "id": 634, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 617, + "id": 631, "mask": "BigInt:549755813888" }, "name": { @@ -68525,14 +67476,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 621, + "id": 635, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 617, + "id": 631, "mask": "BigInt:549755813888" }, "name": { @@ -68555,14 +67506,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 622, + "id": 636, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 617, + "id": 631, "mask": "BigInt:549755813888" }, "name": { @@ -68585,16 +67536,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 623, + "id": 637, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 16, + "allocationIdCounter": 1, "allocations": [], - "available": 121296, - "money": 121296, + "available": 238180, + "money": 238180, "name": "budget", "mask": "BigInt:16" }, @@ -68612,13 +67563,13 @@ }, "modules": { "name": "modules", - "ids": [625, 626, 627, 628, 629, 630], + "ids": [639, 640, 641, 642, 643, 644], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [1.1614768497937078, 2.7749923141460204], + "coord": [8.343492008187717, -9.047991748979655], "sector": 26, "moved": false, "mask": "BigInt:2199023255552" @@ -68634,7 +67585,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 16, + "allocationIdCounter": 1, "allocations": [], "max": 20000, "availableWares": { @@ -68642,7 +67593,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13375, + "food": 5768, "fuel": 0, "fuelium": 0, "gold": 0, @@ -68656,14 +67607,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2856 + "water": 3630 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13375, + "food": 5768, "fuel": 0, "fuelium": 0, "gold": 0, @@ -68677,7 +67628,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2856 + "water": 3630 }, "quota": { "coolant": 0, @@ -68707,25 +67658,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [54.80972266101574, 69.41636229823828], - "drones": [643.9717098985949, 659.035808436956], - "electronics": [301.00365632232104, 306.63883176582993], - "engineParts": [380.22840424325216, 385.29214151311754], - "food": [10.897189709524561, 18.165714285714287], - "fuel": [52.70342024568657, 69.62766567368197], - "fuelium": [32.18422014681212, 37.93003448860746], - "gold": [419.85312131218905, 426.4490045563238], - "goldOre": [36.38929238307284, 50.858598406888895], - "hullPlates": [29.58431895850809, 36.4413723568783], - "hydrogen": [78.40131413497215, 85.89797302461234], - "ice": [14.750012697887072, 24.839504682866462], - "metals": [98.59928088564362, 113.95464611844828], - "ore": [18.343734365271075, 30.093944133479027], - "silica": [28.16054480657282, 40.983764255253725], - "silicon": [19.363499446765587, 31.707872903340622], - "superconductors": [496.52871481112425, 506.52620698765946], - "tauMetal": [317.17203662270094, 331.36838089328575], - "water": [29.44523748111789, 35.02951371070279] + "coolant": [112.43334496035669, 126.16149253789902], + "drones": [1804.1934440155171, 1810.891750846627], + "electronics": [446.38380963773557, 455.6892561164639], + "engineParts": [298.30135328309234, 317.80552122548085], + "food": [17.575993397439625, 22], + "fuel": [74.73082308804877, 81.79994399820384], + "fuelium": [43.178594133296066, 50.20943493036777], + "gold": [327.3901807737447, 343.03292504168945], + "goldOre": [92.09738744537351, 100.40897782360025], + "hullPlates": [41.78562642720958, 53.32159050954011], + "hydrogen": [52.71078358079416, 71.31554432015922], + "ice": [19.385602617786837, 38.4115105231755], + "metals": [46.732723555182226, 59.29446641249017], + "ore": [22.880108174244228, 35.07093609475824], + "silica": [44.34772912762051, 49.653572264477916], + "silicon": [25.544221988694023, 36.55880682142056], + "superconductors": [484.21460747933736, 502.0780166123374], + "tauMetal": [430.278157550947, 435.84324688592955], + "water": [27.16060448847282, 39.887327680770255] }, "lastPriceAdjust": { "commodities": { @@ -68754,97 +67705,97 @@ "offers": { "coolant": { "active": false, - "price": 65, + "price": 117, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 658, + "price": 1808, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 303, + "price": 452, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 381, + "price": 317, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 11, - "quantity": 0, + "price": 20, + "quantity": 7565, "type": "buy" }, "fuel": { "active": false, - "price": 66, + "price": 79, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 33, + "price": 47, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 424, + "price": 335, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 46, + "price": 96, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 30, + "price": 41, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 84, + "price": 68, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 22, + "price": 37, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 112, + "price": 47, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 29, + "price": 34, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 40, + "price": 46, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 28, + "price": 26, "quantity": 0, "type": "buy" }, @@ -68856,14 +67807,14 @@ }, "tauMetal": { "active": false, - "price": 326, + "price": 430, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 32, - "quantity": 3810, + "price": 30, + "quantity": 3036, "type": "buy" } }, @@ -68871,35 +67822,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 20, - "target": "THT Trader Courier B", - "time": 1439 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 20, - "target": "THT Trader Courier B", - "time": 1596 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 1893 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -68914,7 +67837,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1743], + "ids": [1837], "mask": "BigInt:4294967296" }, "crew": { @@ -68931,7 +67854,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 16, "produces": 0 }, + "food": { "consumes": 296, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -68945,20 +67868,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 8, "produces": 0 } + "water": { "consumes": 148, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 624, + "id": 638, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 624, + "id": 638, "mask": "BigInt:549755813888" }, "name": { @@ -68994,7 +67917,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.26666666666666783, + "food": 3.6000000000000156, "fuel": 0, "fuelium": 0, "gold": 0, @@ -69008,7 +67931,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.13333333333333564 + "water": 3.8000000000000087 } }, "name": "production", @@ -69018,7 +67941,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 16, "produces": 0 }, + "food": { "consumes": 296, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -69032,21 +67955,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 8, "produces": 0 } + "water": { "consumes": 148, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 625, + "id": 639, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 624, + "id": 638, "mask": "BigInt:549755813888" }, "name": { @@ -69061,14 +67984,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 626, + "id": 640, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 624, + "id": 638, "mask": "BigInt:549755813888" }, "name": { @@ -69083,14 +68006,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 627, + "id": 641, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 624, + "id": 638, "mask": "BigInt:549755813888" }, "name": { @@ -69113,14 +68036,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 628, + "id": 642, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 624, + "id": 638, "mask": "BigInt:549755813888" }, "name": { @@ -69143,14 +68066,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 629, + "id": 643, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 624, + "id": 638, "mask": "BigInt:549755813888" }, "name": { @@ -69173,23 +68096,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 630, + "id": 644, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 156, - "allocations": [ - { - "amount": 4800, - "issued": 3393, - "meta": { "tradeId": "631:1752:sell:3393" }, - "id": 149 - } - ], - "available": 4663679, - "money": 4668479, + "allocationIdCounter": 1, + "allocations": [], + "available": 893791, + "money": 893791, "name": "budget", "mask": "BigInt:16" }, @@ -69207,14 +68123,14 @@ }, "modules": { "name": "modules", - "ids": [632, 633, 634, 635, 636, 637, 638, 639], + "ids": [646, 647, 648, 649, 650, 651, 652], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-21.713867679842927, -15.963762273846353], - "sector": 25, + "coord": [-0.381600105366779, 11.532257967822105], + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, @@ -69229,396 +68145,71 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 263, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3393, - "type": "incoming", - "meta": { "tradeId": "631:1752:sell:3393" }, - "id": 249 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3396, - "type": "incoming", - "meta": { "tradeId": "631:1739:sell:3396" }, - "id": 250 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3426, - "type": "incoming", - "meta": { "tradeId": "631:1740:sell:3426" }, - "id": 253 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3435, - "type": "outgoing", - "meta": { "tradeId": "631:1759:buy:3435" }, - "id": 254 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3438, - "type": "outgoing", - "meta": { "tradeId": "631:1760:buy:3438" }, - "id": 255 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "outgoing", - "meta": { "tradeId": "631:1717:buy:3447" }, - "id": 256 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3513, - "type": "incoming", - "meta": { "tradeId": "631:1742:sell:3513" }, - "id": 257 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "incoming", - "meta": { "tradeId": "631:1741:sell:3516" }, - "id": 258 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "outgoing", - "meta": { "tradeId": "631:1716:buy:3519" }, - "id": 259 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 6, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3555, - "type": "outgoing", - "meta": { "tradeId": "631:2226:buy:3555" }, - "id": 260 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3570, - "type": "outgoing", - "meta": { "tradeId": "631:1689:buy:3570" }, - "id": 261 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "outgoing", - "meta": { "tradeId": "631:2228:buy:3594" }, - "id": 262 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, - "drones": 1088, - "electronics": 3269, + "drones": 0, + "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 21560, + "food": 91034, + "fuel": 7605, "fuelium": 0, - "gold": 2878, + "gold": 0, "goldOre": 0, - "hullPlates": 8358, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 47780, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 13425 }, "stored": { "coolant": 0, - "drones": 1088, - "electronics": 5015, + "drones": 0, + "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 21560, + "food": 91034, + "fuel": 7605, "fuelium": 0, - "gold": 2878, + "gold": 0, "goldOre": 0, - "hullPlates": 8358, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 47780, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 13425 }, "quota": { "coolant": 0, - "drones": 2649, - "electronics": 37708, + "drones": 0, + "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 30574, + "food": 134007, + "fuel": 15723, "fuelium": 0, - "gold": 6114, + "gold": 0, "goldOre": 0, - "hullPlates": 12229, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 91722, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -69627,25 +68218,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [59.51753203855748, 74.45656642658301], - "drones": [1208.9553721230905, 1228.0838306102876], - "electronics": [262.96977097614115, 268.48977097614113], - "engineParts": [294.8833803519211, 308.4318891403754], - "food": [19.697993315222867, 30.166546636339916], - "fuel": [42.845556444010576, 55.50926010926638], - "fuelium": [63.353098291986825, 76.534473147114], - "gold": [702.9149183976459, 718.2267073159701], - "goldOre": [37.40770965823992, 43.02912331117874], - "hullPlates": [33.65594518979167, 47.95822979293414], - "hydrogen": [73.1016945229502, 78.88191906797566], - "ice": [12.567897010082262, 24.20871217298379], - "metals": [88.31713493125676, 103.72595689413043], - "ore": [19.215584393820652, 25.636645599826235], - "silica": [21.407586547285057, 28.970442782675264], - "silicon": [22.43628175410647, 36], - "superconductors": [326.72524741594265, 336.7674698300573], - "tauMetal": [660.89892923513, 671.2951392990204], - "water": [27.97588871733034, 39.62204754313394] + "coolant": [82.42480022174338, 100.75985157902306], + "drones": [1631.610409847742, 1646.024629938611], + "electronics": [209.23508115855495, 216.70451866437787], + "engineParts": [402.1066496073983, 409.49099983286766], + "food": [15, 18.309568446816442], + "fuel": [59.431686434622506, 65.94378146293292], + "fuelium": [45.42900166250664, 57.13300759475213], + "gold": [942.601185477448, 959.8173704916176], + "goldOre": [66.35953939044549, 80.3020388132809], + "hullPlates": [34.51673514682166, 46.411475770659116], + "hydrogen": [101.61903940685302, 118.09565313207946], + "ice": [15.714752147238272, 30.941610125966555], + "metals": [80.50648677640481, 98.39714595783298], + "ore": [38.52750294872017, 43.618080780468745], + "silica": [36.64221461817884, 54.33879025110955], + "silicon": [15.636816895717123, 23.322862765487514], + "superconductors": [400.83558140692026, 408.7934103151136], + "tauMetal": [571.3897795056507, 581.9763391190595], + "water": [22.383993022773875, 34.41395063889031] }, "lastPriceAdjust": { "commodities": { @@ -69674,116 +68265,116 @@ "offers": { "coolant": { "active": false, - "price": 61, + "price": 84, "quantity": 0, "type": "buy" }, "drones": { - "active": true, - "price": 1214, - "quantity": 1088, - "type": "sell" + "active": false, + "price": 1635, + "quantity": 0, + "type": "buy" }, "electronics": { - "active": true, - "price": 267, - "quantity": 3199, - "type": "sell" - }, - "engineParts": { "active": false, - "price": 304, + "price": 211, "quantity": 0, "type": "buy" }, - "food": { + "engineParts": { "active": false, - "price": 26, + "price": 404, "quantity": 0, "type": "buy" }, + "food": { + "active": true, + "price": 15, + "quantity": 91034, + "type": "sell" + }, "fuel": { "active": true, - "price": 55, - "quantity": 9014, + "price": 60, + "quantity": 8118, "type": "buy" }, "fuelium": { "active": false, - "price": 67, + "price": 56, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 714, - "quantity": 3236, + "active": false, + "price": 955, + "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 37, + "price": 75, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 37, - "quantity": 3871, + "active": false, + "price": 35, + "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 73, + "price": 107, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 21, + "price": 17, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 99, + "price": 83, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 25, + "price": 40, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 21, + "price": 39, "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 30, - "quantity": 43942, + "active": false, + "price": 18, + "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 333, + "price": 404, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 666, + "price": 572, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 29, - "quantity": 0, + "active": true, + "price": 23, + "quantity": 17843, "type": "buy" } }, @@ -69791,206 +68382,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 170, - "target": "THT Trader Courier B", - "time": 384 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 170, - "target": "THT Trader Freighter A", - "time": 491 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 170, - "target": "THT Trader Courier B", - "time": 503 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 170, - "target": "THT Trader Large Freighter B", - "time": 629 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 170, - "target": "THT Trader Freighter A", - "time": 745 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 170, - "target": "THT Trader Courier B", - "time": 812 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 170, - "target": "THT Trader Freighter A", - "time": 994 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 277, - "target": "THT Trader Courier B", - "time": 1007 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 277, - "target": "THT Trader Large Freighter B", - "time": 1248 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 277, - "target": "THT Trader Freighter A", - "time": 1533 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 216, - "price": 277, - "target": "THT Trader Large Freighter B", - "time": 1565 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 46, - "price": 277, - "target": "THT Trader Freighter A", - "time": 1876 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 277, - "target": "THT Trader Large Freighter B", - "time": 1898 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 276, - "target": "THT Trader Freighter A", - "time": 1961 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 276, - "target": "THT Trader Freighter A", - "time": 2097 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 276, - "target": "THT Trader Courier B", - "time": 2226 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 276, - "target": "THT Trader Courier B", - "time": 2469 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 276, - "target": "THT Trader Freighter A", - "time": 2697 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 267, - "target": "THT Trader Courier B", - "time": 2948 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 267, - "target": "THT Trader Freighter A", - "time": 3168 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 267, - "target": "THT Trader Large Freighter B", - "time": 3232 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 267, - "target": "THT Trader Freighter A", - "time": 3294 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -70000,17 +68392,17 @@ }, "name": { "name": "name", - "value": "ACT Ross 128 I Factory", + "value": "ACT Pontus Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1742, 1741, 1740, 1739], + "ids": [1836, 1835], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 6.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -70019,37 +68411,37 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 150 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 631, + "id": 645, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 631, + "id": 645, "mask": "BigInt:549755813888" }, "name": { @@ -70064,14 +68456,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 632, + "id": 646, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 631, + "id": 645, "mask": "BigInt:549755813888" }, "name": { @@ -70086,14 +68478,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 633, + "id": 647, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 631, + "id": 645, "mask": "BigInt:549755813888" }, "name": { @@ -70116,14 +68508,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 634, + "id": 648, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 631, + "id": 645, "mask": "BigInt:549755813888" }, "name": { @@ -70138,14 +68530,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 635, + "id": 649, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 631, + "id": 645, "mask": "BigInt:549755813888" }, "name": { @@ -70160,14 +68552,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 636, + "id": 650, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 631, + "id": 645, "mask": "BigInt:549755813888" }, "name": { @@ -70182,19 +68574,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 637, + "id": 651, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 631, + "id": 645, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -70202,9 +68594,9 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.7028985507246288, + "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.16666666666660745, "fuel": 0, "fuelium": 0, "gold": 0, @@ -70226,7 +68618,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -70239,7 +68631,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -70247,107 +68639,14 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 20, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 638, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 631, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Drone Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0.3742512077294682, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0.16666666666665564, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -70356,35 +68655,53 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 639, + "id": 652, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 106, + "allocationIdCounter": 5, "allocations": [ { - "amount": 7520, - "issued": 3519, - "meta": { "tradeId": "754:1735:buy:3519" }, - "id": 103 + "amount": 270720, + "issued": 303, + "meta": { "tradeId": "739:1832:buy:303" }, + "id": 1 + }, + { + "amount": 1728, + "issued": 306, + "meta": { "tradeId": "739:1831:buy:306" }, + "id": 2 + }, + { + "amount": 46080, + "issued": 309, + "meta": { "tradeId": "739:1834:buy:309" }, + "id": 3 + }, + { + "amount": 46080, + "issued": 315, + "meta": { "tradeId": "739:1833:buy:315" }, + "id": 4 } ], - "available": 1183471, - "money": 1190991, + "available": 3048482, + "money": 3413090, "name": "budget", "mask": "BigInt:16" }, @@ -70402,14 +68719,14 @@ }, "modules": { "name": "modules", - "ids": [641, 642, 643, 644, 645, 646, 647, 648, 649, 650, 651, 652], + "ids": [654, 655, 656, 657, 658, 659, 660, 661, 662], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [3.092730514380154, -11.102394526234255], - "sector": 7, + "coord": [-0.9735942770663435, -8.17136412932797], + "sector": 6, "moved": false, "mask": "BigInt:2199023255552" }, @@ -70424,47 +68741,20 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 202, + "allocationIdCounter": 5, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3213, - "type": "outgoing", - "meta": { "tradeId": "640:2230:buy:3213" }, - "id": 186 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, + "electronics": 940, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 160, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -70475,16 +68765,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 3399, + "issued": 303, "type": "incoming", - "meta": { "tradeId": "640:1738:sell:3399" }, - "id": 195 + "meta": { "tradeId": "653:1832:sell:303" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 6, "engineParts": 0, "food": 0, "fuel": 0, @@ -70500,45 +68790,18 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 - }, - "issued": 3504, - "type": "incoming", - "meta": { "tradeId": "640:1734:sell:3504" }, - "id": 198 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, "water": 0 }, - "issued": 3519, + "issued": 306, "type": "incoming", - "meta": { "tradeId": "640:1735:sell:3519" }, - "id": 199 + "meta": { "tradeId": "653:1831:sell:306" }, + "id": 2 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -70554,18 +68817,18 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, - "issued": 3540, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "640:1737:sell:3540" }, - "id": 200 + "meta": { "tradeId": "653:1834:sell:309" }, + "id": 3 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -70581,77 +68844,77 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, - "issued": 3561, + "issued": 315, "type": "incoming", - "meta": { "tradeId": "640:1736:sell:3561" }, - "id": 201 + "meta": { "tradeId": "653:1833:sell:315" }, + "id": 4 } ], "max": 181000, "availableWares": { "coolant": 0, - "drones": 1465, - "electronics": 11247, + "drones": 2243, + "electronics": 4372, "engineParts": 0, - "food": 16824, - "fuel": 14153, + "food": 68544, + "fuel": 8097, "fuelium": 0, - "gold": 3974, + "gold": 0, "goldOre": 0, - "hullPlates": 8234, + "hullPlates": 8843, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 31966, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 8068 + "water": 12124 }, "stored": { "coolant": 0, - "drones": 1465, - "electronics": 11247, + "drones": 2243, + "electronics": 4372, "engineParts": 0, - "food": 17764, - "fuel": 14153, + "food": 68544, + "fuel": 8097, "fuelium": 0, - "gold": 3974, + "gold": 0, "goldOre": 0, - "hullPlates": 8234, + "hullPlates": 8843, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 31966, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 8068 + "water": 12124 }, "quota": { "coolant": 0, - "drones": 2436, - "electronics": 25303, + "drones": 3829, + "electronics": 10309, "engineParts": 0, - "food": 46858, - "fuel": 24241, + "food": 110455, + "fuel": 12960, "fuelium": 0, - "gold": 3748, + "gold": 0, "goldOre": 0, - "hullPlates": 11246, + "hullPlates": 17672, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 56230, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 10933 + "water": 25772 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -70660,25 +68923,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [99.46439974186443, 113.16896160174053], - "drones": [1160.1471690357978, 1170.1010306782275], - "electronics": [321.3218941905287, 337.24600448754717], - "engineParts": [190.4758348022819, 204.4304415582617], - "food": [14, 15.052456357505655], - "fuel": [53.43803851977139, 70.03333549321972], - "fuelium": [38.96150889870379, 46.80219073944451], - "gold": [613.9528140924504, 633.588638025173], - "goldOre": [94.69529876356395, 100.34131970306966], - "hullPlates": [45.56396545866933, 53.82556677673524], - "hydrogen": [38.40394769993285, 43.501019444491945], - "ice": [15.08728484465275, 29.464520614491946], - "metals": [34.66467629000177, 40.467408067995024], - "ore": [23.869755458832042, 30.5245937392047], - "silica": [39.51962741011023, 56.52192576501302], - "silicon": [19.457497760512517, 30.57857142857143], - "superconductors": [236.3773307609011, 244.4504534964436], - "tauMetal": [521.5860719123905, 528.2289879615768], - "water": [34.33333609526044, 43] + "coolant": [111.00792525601392, 128.2246659816578], + "drones": [1047.621346739793, 1070.861346739793], + "electronics": [317.9688568061952, 333.5356465058362], + "engineParts": [366.55845396807507, 380.96282021439265], + "food": [13, 17.688661044728608], + "fuel": [58.767119600669766, 65.68904181079068], + "fuelium": [34.211363478644564, 50.206843478307334], + "gold": [918.5505014557474, 924.7557666953948], + "goldOre": [74.37366111321504, 92.37784227737019], + "hullPlates": [44.250243703832325, 55.87777777777777], + "hydrogen": [96.43702315734025, 113.95005265917109], + "ice": [10.804942078438549, 20.788102307744765], + "metals": [96.0803033515567, 105.17196040066302], + "ore": [14.878540675484729, 33.92421603350428], + "silica": [25.457817932976333, 43.58791167673306], + "silicon": [23.80674207949811, 42.63835776705534], + "superconductors": [475.51716691962184, 491.1749779837885], + "tauMetal": [568.6224533336344, 584.5199693260307], + "water": [29.528344487443864, 37.448264572278696] }, "lastPriceAdjust": { "commodities": { @@ -70707,116 +68970,116 @@ "offers": { "coolant": { "active": false, - "price": 103, + "price": 114, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1163, - "quantity": 1465, + "price": 1051, + "quantity": 2243, "type": "sell" }, "electronics": { "active": true, - "price": 335, - "quantity": 11037, - "type": "sell" + "price": 322, + "quantity": 5937, + "type": "buy" }, "engineParts": { "active": false, - "price": 202, + "price": 376, "quantity": 0, "type": "buy" }, "food": { "active": true, "price": 14, - "quantity": 16824, + "quantity": 68544, "type": "sell" }, "fuel": { "active": true, - "price": 54, - "quantity": 10088, + "price": 62, + "quantity": 4863, "type": "buy" }, "fuelium": { "active": false, - "price": 46, + "price": 43, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 628, + "active": false, + "price": 923, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 98, + "price": 80, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 45, - "quantity": 3012, + "price": 50, + "quantity": 8829, "type": "buy" }, "hydrogen": { "active": false, - "price": 38, + "price": 112, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 15, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 39, + "price": 96, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 29, + "price": 26, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 51, + "price": 25, "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 24, - "quantity": 24264, + "active": false, + "price": 40, + "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 241, + "price": 486, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 522, + "price": 582, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 39, - "quantity": 2865, + "price": 30, + "quantity": 13648, "type": "buy" } }, @@ -70824,143 +69087,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 11, - "target": "THT Trader Courier B", - "time": 432 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 564 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 575 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 11, - "target": "THT Trader Courier B", - "time": 579 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 585 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 587 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 601 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 606 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 1094 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "THT Trader Freighter A", - "time": 1116 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "THT Trader Courier B", - "time": 1359 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "THT Trader Courier B", - "time": 1518 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 14, - "target": "THT Trader Freighter A", - "time": 1704 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "THT Trader Courier B", - "time": 2767 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "THT Trader Courier B", - "time": 3194 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -70970,12 +69097,12 @@ }, "name": { "name": "name", - "value": "ACT Arges Factory", + "value": "ACT Gaia Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1738, 1737, 1736, 1735, 1734], + "ids": [1834, 1833, 1832, 1831], "mask": "BigInt:4294967296" }, "crew": { @@ -70989,21 +69116,21 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 39 }, - "electronics": { "consumes": 105, "produces": 300 }, + "drones": { "consumes": 0, "produces": 26 }, + "electronics": { "consumes": 70, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 388, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 60, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 180, "produces": 0 }, + "hullPlates": { "consumes": 120, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 175, "produces": 0 } @@ -71012,14 +69139,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 640, + "id": 653, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71034,14 +69161,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 641, + "id": 654, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71056,14 +69183,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 642, + "id": 655, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71086,14 +69213,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 643, + "id": 656, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71108,14 +69235,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 644, + "id": 657, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71130,14 +69257,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 645, + "id": 658, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71152,14 +69279,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 646, + "id": 659, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71171,7 +69298,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.4096014692378326, + "drones": 0.420317460317461, "electronics": 0, "engineParts": 0, "food": 0, @@ -71193,7 +69320,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666616, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -71245,107 +69372,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 647, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 640, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Electronics Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0.7261707988980683, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 20, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 648, + "id": 660, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71360,7 +69394,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.6308539944903444, + "food": 0.09523809523806115, "fuel": 0, "fuelium": 0, "gold": 0, @@ -71382,7 +69416,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1.5333333333333474, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -71395,7 +69429,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5.3333333333333535 + "water": 0.8333333333333774 } }, "name": "production", @@ -71431,14 +69465,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 649, + "id": 661, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 653, "mask": "BigInt:549755813888" }, "name": { @@ -71450,7 +69484,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.4096014692378326, + "drones": 0.420317460317461, "electronics": 0, "engineParts": 0, "food": 0, @@ -71472,7 +69506,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666616, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -71524,26 +69558,152 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 650, + "id": 662, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "parent": { - "name": "parent", - "id": 640, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 3476045, + "money": 3476045, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Drone Factory", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "production": { - "buffer": { - "production": { + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [664, 665, 666, 667, 668, 669, 670, 671, 672, 673, 674], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [7.448590739612683, 13.054133068558457], + "sector": 7, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16761677, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 3, + "allocations": [], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 460, + "electronics": 13340, + "engineParts": 0, + "food": 22953, + "fuel": 9645, + "fuelium": 0, + "gold": 2829, + "goldOre": 0, + "hullPlates": 1576, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 40144, + "superconductors": 0, + "tauMetal": 0, + "water": 3058 + }, + "stored": { + "coolant": 0, + "drones": 460, + "electronics": 13340, + "engineParts": 0, + "food": 22953, + "fuel": 9645, + "fuelium": 0, + "gold": 2829, + "goldOre": 0, + "hullPlates": 1576, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 40144, + "superconductors": 0, + "tauMetal": 0, + "water": 3058 + }, + "quota": { + "coolant": 0, + "drones": 679, + "electronics": 25364, + "engineParts": 0, + "food": 39222, + "fuel": 28135, + "fuelium": 0, + "gold": 4706, + "goldOre": 0, + "hullPlates": 3137, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 70600, + "superconductors": 0, + "tauMetal": 0, + "water": 9151 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [69.26945826261414, 79.06959384314015], + "drones": [1000, 1020], + "electronics": [284, 289.68], + "engineParts": [385.4328730865051, 394.9963414238578], + "food": [15, 15.669517315693662], + "fuel": [52.34169391966306, 63.96615601301829], + "fuelium": [34.52147664610681, 48.246041158028326], + "gold": [733.2532949290863, 739.3279962713966], + "goldOre": [51.82637729640001, 68.95148759299207], + "hullPlates": [33.9973277596945, 53.11403637290911], + "hydrogen": [86.50702223708825, 103.49322256252871], + "ice": [22.025874959755136, 34.23915946905295], + "metals": [90.81112383561944, 98.11905367362144], + "ore": [37.33587845115743, 45.758839639564215], + "silica": [34.40145233724698, 40.05591858898074], + "silicon": [23.268056442084983, 35.16982331291681], + "superconductors": [407.70290350782375, 422.1859686707194], + "tauMetal": [307.34585161587, 314.82497941233925], + "water": [33.98338595126185, 39.21395348837209] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, - "drones": 0.4096014692378326, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -71562,39 +69722,164 @@ "tauMetal": 0, "water": 0 }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0.6666666666666616, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 78, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": true, + "price": 1001, + "quantity": 460, + "type": "sell" + }, + "electronics": { + "active": true, + "price": 286, + "quantity": 13270, + "type": "sell" + }, + "engineParts": { + "active": false, + "price": 393, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 15, + "quantity": 22953, + "type": "sell" + }, + "fuel": { + "active": true, + "price": 60, + "quantity": 18490, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 35, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": true, + "price": 734, + "quantity": 1877, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 64, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": true, + "price": 49, + "quantity": 1561, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 95, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 25, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 94, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 44, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 37, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": true, + "price": 25, + "quantity": 30456, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 412, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 309, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 34, + "quantity": 6093, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "ACT Arges Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1830, 1829, 1828, 1827, 1826], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "electronics": { "consumes": 35, "produces": 450 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 538, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 90, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -71602,874 +69887,50 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 1350, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 663, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 663, + "mask": "BigInt:549755813888" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 25, - "mask": "BigInt:281474976710656" + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 651, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 664, + "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 640, + "id": 663, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0.7261707988980683, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 20, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 652, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "budget": { - "allocationIdCounter": 153, - "allocations": [ - { - "amount": 7020, - "issued": 3408, - "meta": { "tradeId": "653:1557:sell:3408" }, - "id": 146 - }, - { - "amount": 192, - "issued": 3582, - "meta": { "tradeId": "541:1730:buy:3582" }, - "id": 150 - }, - { - "amount": 5120, - "issued": 3588, - "meta": { "tradeId": "541:1733:buy:3588" }, - "id": 151 - }, - { - "amount": 192, - "issued": 3594, - "meta": { "tradeId": "541:1732:buy:3594" }, - "id": 152 - } - ], - "available": 1258855, - "money": 1271379, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [654, 655, 656, 657, 658, 659, 660, 661, 662, 663, 664, 665], - "mask": "BigInt:68719476736" - }, - "position": { - "name": "position", - "angle": 0, - "coord": [9.169298473952985, -15.261450430973532], - "sector": 6, - "moved": false, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 16761677, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fFactory", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 153, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 60, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3273, - "type": "incoming", - "meta": { "tradeId": "653:1729:sell:3273" }, - "id": 142 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 260, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3408, - "type": "incoming", - "meta": { "tradeId": "653:1557:sell:3408" }, - "id": 146 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3420, - "type": "incoming", - "meta": { "tradeId": "653:1731:sell:3420" }, - "id": 147 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 6, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "incoming", - "meta": { "tradeId": "653:1730:sell:3582" }, - "id": 150 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "incoming", - "meta": { "tradeId": "653:1733:sell:3588" }, - "id": 151 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 6, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "incoming", - "meta": { "tradeId": "653:1732:sell:3594" }, - "id": 152 - } - ], - "max": 181000, - "availableWares": { - "coolant": 0, - "drones": 678, - "electronics": 11389, - "engineParts": 0, - "food": 47293, - "fuel": 10196, - "fuelium": 0, - "gold": 2989, - "goldOre": 0, - "hullPlates": 5726, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 22578, - "superconductors": 0, - "tauMetal": 0, - "water": 10385 - }, - "stored": { - "coolant": 0, - "drones": 678, - "electronics": 11389, - "engineParts": 0, - "food": 47293, - "fuel": 10196, - "fuelium": 0, - "gold": 2989, - "goldOre": 0, - "hullPlates": 5726, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 22578, - "superconductors": 0, - "tauMetal": 0, - "water": 10385 - }, - "quota": { - "coolant": 0, - "drones": 1237, - "electronics": 17614, - "engineParts": 0, - "food": 71409, - "fuel": 22660, - "fuelium": 0, - "gold": 2856, - "goldOre": 0, - "hullPlates": 5712, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 42845, - "superconductors": 0, - "tauMetal": 0, - "water": 16662 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [120.80600361551504, 129.51700235914376], - "drones": [1021.7852252494192, 1031.731241846471], - "electronics": [266.51326539806325, 285.4691611114571], - "engineParts": [221.79550231079318, 234.90158069469132], - "food": [13, 18.096754276298533], - "fuel": [46.54839499523888, 54.001952043276574], - "fuelium": [69.18006797682392, 81.30894253578735], - "gold": [702.2811335686688, 710.9359474584854], - "goldOre": [52.962466759244975, 59.246773131863485], - "hullPlates": [40.12961819121111, 56.045833333333334], - "hydrogen": [50.4288769306282, 60.79436136708395], - "ice": [16.21959161914029, 29.80173251750972], - "metals": [94.43789328196904, 107.00443049129086], - "ore": [28.562057983327872, 48.47229681892627], - "silica": [41.88139127367425, 53.05838040559882], - "silicon": [22.70844250664418, 27.419999999999998], - "superconductors": [315.52073142374695, 327.4505211670139], - "tauMetal": [571.3858042213412, 584.0531129796751], - "water": [20.94121860111017, 39.63294968365153] - }, - "lastPriceAdjust": { - "commodities": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 128, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": true, - "price": 1031, - "quantity": 678, - "type": "sell" - }, - "electronics": { - "active": true, - "price": 267, - "quantity": 11249, - "type": "sell" - }, - "engineParts": { - "active": false, - "price": 228, - "quantity": 0, - "type": "buy" - }, - "food": { - "active": true, - "price": 13, - "quantity": 47293, - "type": "sell" - }, - "fuel": { - "active": true, - "price": 52, - "quantity": 12464, - "type": "buy" - }, - "fuelium": { - "active": false, - "price": 77, - "quantity": 0, - "type": "buy" - }, - "gold": { - "active": true, - "price": 705, - "quantity": 0, - "type": "buy" - }, - "goldOre": { - "active": false, - "price": 55, - "quantity": 0, - "type": "buy" - }, - "hullPlates": { - "active": true, - "price": 47, - "quantity": 0, - "type": "buy" - }, - "hydrogen": { - "active": false, - "price": 55, - "quantity": 0, - "type": "buy" - }, - "ice": { - "active": false, - "price": 28, - "quantity": 0, - "type": "buy" - }, - "metals": { - "active": false, - "price": 95, - "quantity": 0, - "type": "buy" - }, - "ore": { - "active": false, - "price": 35, - "quantity": 0, - "type": "buy" - }, - "silica": { - "active": false, - "price": 48, - "quantity": 0, - "type": "buy" - }, - "silicon": { - "active": true, - "price": 27, - "quantity": 20267, - "type": "buy" - }, - "superconductors": { - "active": false, - "price": 318, - "quantity": 0, - "type": "buy" - }, - "tauMetal": { - "active": false, - "price": 574, - "quantity": 0, - "type": "buy" - }, - "water": { - "active": true, - "price": 33, - "quantity": 6277, - "type": "buy" - } - }, - "mask": "BigInt:34359738368" - }, - "journal": { - "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "gold", - "quantity": 11, - "price": 544, - "target": "UEN Courier A", - "time": 437 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 20, - "target": "UEN Freighter B", - "time": 550 - }, - { - "type": "trade", - "action": "buy", - "commodity": "gold", - "quantity": 11, - "price": 544, - "target": "UEN Courier A", - "time": 655 - }, - { - "type": "trade", - "action": "buy", - "commodity": "gold", - "quantity": 11, - "price": 544, - "target": "UEN Courier A", - "time": 875 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 20, - "target": "UEN Freighter B", - "time": 958 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "UEN Freighter B", - "time": 1366 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "UEN Freighter B", - "time": 1774 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2147 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2177 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 6, - "price": 35, - "target": "THT Trader Courier B", - "time": 2181 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "UEN Freighter B", - "time": 2182 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2249 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2414 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2486 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2498 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 940, - "price": 35, - "target": "THT Trader Large Freighter B", - "time": 2536 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 35, - "target": "UEN Freighter B", - "time": 2590 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2699 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2735 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2939 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 35, - "target": "UEN Freighter B", - "time": 2998 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "UEN Freighter B", - "time": 3406 - } - ], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 100000, "regen": 0, "value": 100000 }, - "mask": "BigInt:1048576" - }, - "name": { - "name": "name", - "value": "ACT Gaia Factory", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [1733, 1732, 1731, 1730, 1729], - "mask": "BigInt:4294967296" - }, - "crew": { - "name": "crew", - "workers": { "current": 14.5, "max": 14 }, - "mood": 50, - "mask": "BigInt:140737488355328" - }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "compoundProduction": { - "name": "compoundProduction", - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 26 }, - "electronics": { "consumes": 70, "produces": 300 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 1500 }, - "fuel": { "consumes": 476, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 60, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 120, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 900, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 350, "produces": 0 } - }, - "mask": "BigInt:1024" - } - }, - "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 653, - "tags": ["selection", "facility"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 653, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 654, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 653, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Storage", + "value": "Basic Storage", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { @@ -72479,14 +69940,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 655, + "id": 665, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -72509,14 +69970,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 656, + "id": 666, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -72531,14 +69992,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 657, + "id": 667, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -72553,14 +70014,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 658, + "id": 668, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -72575,27 +70036,27 @@ } }, "cooldowns": { "timers": {} }, - "id": 659, + "id": 669, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.38941254125412417, - "electronics": 0, + "drones": 0, + "electronics": 0.3333333333333296, "engineParts": 0, "food": 0, "fuel": 0, @@ -72616,7 +70077,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666572, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -72639,21 +70100,21 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -72663,19 +70124,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 20, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 660, + "id": 670, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -72690,7 +70151,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.1584158415841439, + "food": 0.666666666666647, "fuel": 0, "fuelium": 0, "gold": 0, @@ -72712,7 +70173,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.53333333333336, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -72725,7 +70186,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.3333333333333712 + "water": 0.33333333333337656 } }, "name": "production", @@ -72761,14 +70222,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 661, + "id": 671, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -72781,7 +70242,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.03168316831682749, + "electronics": 0.3333333333333296, "engineParts": 0, "food": 0, "fuel": 0, @@ -72854,107 +70315,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 662, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 653, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.1584158415841439, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.53333333333336, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 3.3333333333333712 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 663, + "id": 672, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -72966,7 +70334,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.38941254125412417, + "drones": 0.19555555555555512, "electronics": 0, "engineParts": 0, "food": 0, @@ -72988,7 +70356,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666572, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, "fuel": 0, @@ -73040,14 +70408,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 664, + "id": 673, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 653, + "id": 663, "mask": "BigInt:549755813888" }, "name": { @@ -73060,7 +70428,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.03168316831682749, + "electronics": 0.3333333333333296, "engineParts": 0, "food": 0, "fuel": 0, @@ -73133,23 +70501,16 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 665, + "id": 674, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 109, - "allocations": [ - { - "amount": 282, - "issued": 3558, - "meta": { "tradeId": "754:1726:buy:3558" }, - "id": 108 - } - ], - "available": 943340, - "money": 943622, + "allocationIdCounter": 1, + "allocations": [], + "available": 13816708, + "money": 13816708, "name": "budget", "mask": "BigInt:16" }, @@ -73167,13 +70528,13 @@ }, "modules": { "name": "modules", - "ids": [667, 668, 669, 670, 671, 672, 673, 674], + "ids": [676, 677, 678, 679, 680, 681, 682, 683], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-2.7312510106546277, 23.305484043250296], + "coord": [5.653516957494233, -24.07812707766994], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -73189,129 +70550,20 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 109, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3384, - "type": "incoming", - "meta": { "tradeId": "666:1725:sell:3384" }, - "id": 103 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "incoming", - "meta": { "tradeId": "666:1728:sell:3516" }, - "id": 106 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "incoming", - "meta": { "tradeId": "666:1727:sell:3519" }, - "id": 107 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "666:1726:sell:3558" }, - "id": 108 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, - "drones": 1031, - "electronics": 5929, + "drones": 13664, + "electronics": 26337, "engineParts": 0, - "food": 58423, - "fuel": 7364, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6094, + "hullPlates": 44093, "hydrogen": 0, "ice": 0, "metals": 0, @@ -73320,19 +70572,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14950 + "water": 0 }, "stored": { "coolant": 0, - "drones": 1031, - "electronics": 5929, + "drones": 13664, + "electronics": 26337, "engineParts": 0, - "food": 58423, - "fuel": 7364, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6094, + "hullPlates": 44093, "hydrogen": 0, "ice": 0, "metals": 0, @@ -73341,19 +70593,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14950 + "water": 0 }, "quota": { "coolant": 0, - "drones": 2099, - "electronics": 5651, + "drones": 21787, + "electronics": 58657, "engineParts": 0, - "food": 121097, - "fuel": 14208, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 9687, + "hullPlates": 100555, "hydrogen": 0, "ice": 0, "metals": 0, @@ -73362,7 +70614,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 28256 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -73371,25 +70623,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [139.90498729119088, 147.60495328285415], - "drones": [1232, 1256.64], - "electronics": [347.43098629023586, 358.51397026646936], - "engineParts": [333.87590954596067, 341.4808425971697], - "food": [15, 18.983991372642688], - "fuel": [45.8627810379834, 56.84950980588607], - "fuelium": [43.835420905099454, 63.60533446399266], - "gold": [488.70108075371803, 507.3965366973581], - "goldOre": [67.74690293999599, 87.61703459668965], - "hullPlates": [41.45661104954369, 57.86066485029828], - "hydrogen": [50.127751503663276, 60.37244917743371], - "ice": [23.41634888122779, 34.597176891781245], - "metals": [40.68968613072224, 56.458596670825756], - "ore": [35.39015514262957, 51.62683747027198], - "silica": [27.683416231340278, 37.89323223784457], - "silicon": [18.734081163687403, 29.564649213252128], - "superconductors": [446.64883521704667, 463.7847752588314], - "tauMetal": [407.41206895861205, 421.907261300494], - "water": [34.20147108603186, 43] + "coolant": [85.39416023975423, 97.03547496953021], + "drones": [1030, 1050.6], + "electronics": [346.36997580077326, 352.1290549573717], + "engineParts": [223.28482325298708, 237.00610381620982], + "food": [12.48342463468288, 30.729280001691542], + "fuel": [58.9199564825827, 71.26479756781379], + "fuelium": [52.022256832841, 71.21682997150305], + "gold": [553.9509565594067, 565.9515586664089], + "goldOre": [78.56535386466732, 85.10576782075414], + "hullPlates": [43.359969995834675, 55.09860718927713], + "hydrogen": [97.38686687165307, 108.75151511183014], + "ice": [24.58552421183719, 41.36861416695303], + "metals": [36.48836813046186, 42.34092659450472], + "ore": [19.143669714681213, 37.55161832566635], + "silica": [50.20339620847479, 58.46929428179895], + "silicon": [19.2804739300352, 39.23087694818233], + "superconductors": [433.2140354177133, 449.42981676159116], + "tauMetal": [385.44153175772374, 405.3631144026331], + "water": [42.90041317906754, 49.73771230616669] }, "lastPriceAdjust": { "commodities": { @@ -73418,116 +70670,116 @@ "offers": { "coolant": { "active": false, - "price": 146, + "price": 87, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1254, - "quantity": 1031, + "price": 1033, + "quantity": 13664, "type": "sell" }, "electronics": { "active": true, - "price": 347, - "quantity": 0, + "price": 351, + "quantity": 32320, "type": "buy" }, "engineParts": { "active": false, - "price": 335, + "price": 234, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 17, - "quantity": 58423, - "type": "sell" + "active": false, + "price": 18, + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 55, - "quantity": 6844, + "active": false, + "price": 62, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 57, + "price": 55, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 489, + "price": 554, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 74, + "price": 79, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 50, - "quantity": 3593, + "price": 44, + "quantity": 56462, "type": "buy" }, "hydrogen": { "active": false, - "price": 51, + "price": 103, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 32, + "price": 40, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 55, + "price": 39, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 43, + "price": 20, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 33, + "price": 52, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 23, + "price": 28, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 455, + "price": 440, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 417, + "price": 393, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 37, - "quantity": 13306, + "active": false, + "price": 44, + "quantity": 0, "type": "buy" } }, @@ -73535,53 +70787,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 418, - "target": "THT Trader Courier B", - "time": 1047 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 418, - "target": "THT Trader Large Freighter B", - "time": 1400 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 418, - "target": "THT Trader Freighter A", - "time": 1646 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 216, - "price": 418, - "target": "THT Trader Large Freighter B", - "time": 1731 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 46, - "price": 418, - "target": "THT Trader Freighter A", - "time": 1988 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -73596,7 +70802,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1728, 1727, 1726, 1725], + "ids": [1825, 1824], "mask": "BigInt:4294967296" }, "crew": { @@ -73610,15 +70816,15 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 26 }, + "electronics": { "consumes": 70, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 120, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -73627,20 +70833,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 666, + "id": 675, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { @@ -73655,14 +70861,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 667, + "id": 676, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { @@ -73677,14 +70883,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 668, + "id": 677, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { @@ -73707,14 +70913,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 669, + "id": 678, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { @@ -73729,14 +70935,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 670, + "id": 679, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { @@ -73751,14 +70957,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 671, + "id": 680, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { @@ -73773,14 +70979,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 672, + "id": 681, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { @@ -73792,7 +70998,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.37845878136200783, + "drones": 0.7524836601307192, "electronics": 0, "engineParts": 0, "food": 0, @@ -73866,29 +71072,29 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 673, + "id": 682, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 666, + "id": 675, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.7524836601307192, "electronics": 0, "engineParts": 0, - "food": 0.29569892473114656, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -73907,10 +71113,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -73923,22 +71129,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -73947,28 +71153,35 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 674, + "id": 683, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 88, - "allocations": [], - "available": 2296092, - "money": 2296092, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 13440, + "issued": 1209, + "meta": { "tradeId": "684:1847:sell:1209" }, + "id": 1 + } + ], + "available": 2777931, + "money": 2791371, "name": "budget", "mask": "BigInt:16" }, @@ -73986,14 +71199,14 @@ }, "modules": { "name": "modules", - "ids": [676, 677, 678, 679, 680, 681, 682, 683, 684, 685, 686, 687], + "ids": [685, 686, 687, 688, 689, 690, 691, 692, 693], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [7.588396084111864, -23.918724433989606], - "sector": 25, + "coord": [12.304998034191264, -24.97383102974344], + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, @@ -74008,7 +71221,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 188, + "allocationIdCounter": 7, "allocations": [ { "amount": { @@ -74017,11 +71230,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -74032,10 +71245,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3135, - "type": "incoming", - "meta": { "tradeId": "675:1723:sell:3135" }, - "id": 175 + "issued": 3, + "type": "outgoing", + "meta": { "tradeId": "684:296:buy:3" }, + "id": 1 }, { "amount": { @@ -74048,27 +71261,27 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3435, - "type": "incoming", - "meta": { "tradeId": "675:1724:sell:3435" }, - "id": 184 + "issued": 3, + "type": "outgoing", + "meta": { "tradeId": "684:297:buy:3" }, + "id": 2 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -74084,12 +71297,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3459, - "type": "incoming", - "meta": { "tradeId": "675:1720:sell:3459" }, - "id": 185 + "issued": 870, + "type": "outgoing", + "meta": { "tradeId": "684:1783:buy:870" }, + "id": 4 }, { "amount": { @@ -74105,31 +71318,31 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3495, + "issued": 1209, "type": "incoming", - "meta": { "tradeId": "675:1722:sell:3495" }, - "id": 186 + "meta": { "tradeId": "684:1847:sell:1209" }, + "id": 5 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 6, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -74140,75 +71353,75 @@ "tauMetal": 0, "water": 0 }, - "issued": 3528, - "type": "incoming", - "meta": { "tradeId": "675:1721:sell:3528" }, - "id": 187 + "issued": 2859, + "type": "outgoing", + "meta": { "tradeId": "684:1784:buy:2859" }, + "id": 6 } ], "max": 181000, "availableWares": { "coolant": 0, - "drones": 1123, - "electronics": 83, + "drones": 0, + "electronics": 4262, "engineParts": 0, - "food": 37637, - "fuel": 13109, + "food": 26390, + "fuel": 14745, "fuelium": 0, - "gold": 1212, + "gold": 807, "goldOre": 0, - "hullPlates": 10183, + "hullPlates": 23802, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 9109, "ore": 0, "silica": 0, - "silicon": 17148, + "silicon": 10491, "superconductors": 0, "tauMetal": 0, - "water": 13441 + "water": 2988 }, "stored": { "coolant": 0, - "drones": 1123, - "electronics": 83, + "drones": 0, + "electronics": 4428, "engineParts": 0, - "food": 37637, - "fuel": 13109, + "food": 26390, + "fuel": 14745, "fuelium": 0, - "gold": 1212, + "gold": 807, "goldOre": 0, - "hullPlates": 10183, + "hullPlates": 25682, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 9109, "ore": 0, "silica": 0, - "silicon": 17148, + "silicon": 10491, "superconductors": 0, "tauMetal": 0, - "water": 13441 + "water": 2988 }, "quota": { "coolant": 0, - "drones": 4230, - "electronics": 23591, + "drones": 0, + "electronics": 7401, "engineParts": 0, - "food": 61011, - "fuel": 19360, + "food": 37009, + "fuel": 27781, "fuelium": 0, - "gold": 2440, + "gold": 1480, "goldOre": 0, - "hullPlates": 19523, + "hullPlates": 56747, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 19738, "ore": 0, "silica": 0, - "silicon": 36606, + "silicon": 22205, "superconductors": 0, "tauMetal": 0, - "water": 14235 + "water": 8635 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -74217,25 +71430,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [113.76044174825087, 126.89115137105006], - "drones": [1058.8948158307517, 1073.1345421909027], - "electronics": [342.4578726567148, 353.70310066688796], - "engineParts": [304.0173071401671, 317.18314034523615], - "food": [15.12260200719017, 17.989751094147568], - "fuel": [59.53285686286809, 66.63964389814188], - "fuelium": [54.316422305182016, 71.32568665828326], - "gold": [646.9322908297313, 656.2040244050864], - "goldOre": [52.255747720671735, 61.898503656698665], - "hullPlates": [38.137720091491815, 47.36674791341519], - "hydrogen": [34.03148304356817, 50.28748012212538], - "ice": [23.575992262743632, 30.789828960925902], - "metals": [62.694974927256176, 69.56001407522675], - "ore": [25.539222404088974, 45.48271549731749], - "silica": [50.51101980274692, 67.30466984350623], - "silicon": [26.33375768436122, 28.666666666666668], - "superconductors": [541.9588283829714, 558.7655706728256], - "tauMetal": [354.42152034422264, 362.6703387431012], - "water": [32.85745724242055, 39.50726493647983] + "coolant": [64.46729121011735, 80.1242422454501], + "drones": [1468.2806298100659, 1475.6616149746078], + "electronics": [324, 330.48], + "engineParts": [240.17648450664538, 252.68148309624868], + "food": [12.067333255867972, 16.893766973043437], + "fuel": [56.725129219570306, 66.27194971247201], + "fuelium": [71.81895437641762, 87.54645114426106], + "gold": [763.9220328007583, 774.410829761097], + "goldOre": [43.376306035021166, 59.069774626097306], + "hullPlates": [54, 56], + "hydrogen": [96.4669838672977, 112.11267903951958], + "ice": [21.982842988210955, 32.82315664551061], + "metals": [81.64569616959142, 89.55], + "ore": [33.99897248737719, 39.67924715339885], + "silica": [19.3655680381727, 35.31311617457308], + "silicon": [15.67461261769511, 28.63], + "superconductors": [491.6098279522005, 506.37831403742103], + "tauMetal": [620.2161049563308, 628.586726548479], + "water": [23.646376147794424, 38.29602501437748] }, "lastPriceAdjust": { "commodities": { @@ -74264,116 +71477,116 @@ "offers": { "coolant": { "active": false, - "price": 124, + "price": 72, "quantity": 0, "type": "buy" }, "drones": { - "active": true, - "price": 1069, - "quantity": 1123, - "type": "sell" + "active": false, + "price": 1469, + "quantity": 0, + "type": "buy" }, "electronics": { "active": true, - "price": 342, - "quantity": 0, + "price": 329, + "quantity": 4262, "type": "sell" }, "engineParts": { "active": false, - "price": 308, + "price": 241, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 15, - "quantity": 37637, + "price": 16, + "quantity": 26390, "type": "sell" }, "fuel": { "active": true, - "price": 64, - "quantity": 6251, + "price": 66, + "quantity": 13036, "type": "buy" }, "fuelium": { "active": false, - "price": 66, + "price": 84, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 650, - "quantity": 1228, + "price": 771, + "quantity": 673, "type": "buy" }, "goldOre": { "active": false, - "price": 52, + "price": 53, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 40, - "quantity": 9340, - "type": "buy" + "price": 55, + "quantity": 23802, + "type": "sell" }, "hydrogen": { "active": false, - "price": 36, + "price": 108, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 28, + "price": 31, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 69, - "quantity": 0, + "active": true, + "price": 88, + "quantity": 10629, "type": "buy" }, "ore": { "active": false, - "price": 44, + "price": 34, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 59, + "price": 21, "quantity": 0, "type": "buy" }, "silicon": { "active": true, - "price": 28, - "quantity": 19458, + "price": 27, + "quantity": 11714, "type": "buy" }, "superconductors": { "active": false, - "price": 546, + "price": 500, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 361, + "price": 621, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 37, - "quantity": 794, + "price": 34, + "quantity": 5647, "type": "buy" } }, @@ -74381,7 +71594,18 @@ }, "journal": { "name": "journal", - "entries": [], + "entries": [ + { + "type": "trade", + "action": "sell", + "commodity": "hullPlates", + "quantity": 6, + "price": 38, + "target": "THT Courier B", + "targetId": 298, + "time": 826 + } + ], "mask": "BigInt:4194304" }, "hitpoints": { @@ -74391,12 +71615,12 @@ }, "name": { "name": "name", - "value": "ACT Ross 128 I Factory", + "value": "ACT Ross 128 II Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1724, 1723, 1722, 1721, 1720], + "ids": [1823, 1822, 1821, 1820, 1819], "mask": "BigInt:4294967296" }, "crew": { @@ -74410,18 +71634,18 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 52 }, - "electronics": { "consumes": 140, "produces": 150 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 238, "produces": 0 }, + "fuel": { "consumes": 563, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 240, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 450, "produces": 0 }, @@ -74433,14 +71657,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 675, + "id": 684, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { @@ -74455,14 +71679,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 676, + "id": 685, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { @@ -74477,14 +71701,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 677, + "id": 686, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { @@ -74507,14 +71731,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 678, + "id": 687, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { @@ -74529,14 +71753,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 679, + "id": 688, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { @@ -74551,14 +71775,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 680, + "id": 689, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { @@ -74573,29 +71797,122 @@ } }, "cooldowns": { "timers": {} }, - "id": 681, + "id": 690, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.2828359788359784, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.4298245614034819, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 691, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 684, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Electronics Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0.8859649122806941, + "engineParts": 0, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -74614,7 +71931,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666616, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -74637,21 +71954,21 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -74661,24 +71978,24 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 20, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 682, + "id": 692, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 684, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -74686,14 +72003,14 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.26349206349205717, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.7923976608187306, "hydrogen": 0, "ice": 0, "metals": 0, @@ -74710,14 +72027,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, @@ -74731,20 +72048,20 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -74754,34 +72071,512 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 683, + "id": 693, "tags": ["facilityModule", "facilityModuleType:production"] }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 1995838, + "money": 1995838, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [695, 696, 697, 698, 699, 700, 701, 702, 703, 704], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [11.68329105876316, 5.243584484003662], + "sector": 8, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16761677, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 997, + "electronics": 3067, + "engineParts": 0, + "food": 64959, + "fuel": 6988, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 3895, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 16270 + }, + "stored": { + "coolant": 0, + "drones": 997, + "electronics": 3067, + "engineParts": 0, + "food": 64959, + "fuel": 6988, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 3895, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 16270 + }, + "quota": { + "coolant": 0, + "drones": 2099, + "electronics": 5651, + "engineParts": 0, + "food": 121097, + "fuel": 14208, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 9687, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 28256 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [73.65704296332471, 89.8508772761025], + "drones": [1122.6770607802077, 1149.1770607802077], + "electronics": [339.51431814689874, 346.95244596989176], + "engineParts": [452.51767052755537, 469.3160801063269], + "food": [17, 18.600566122911587], + "fuel": [48.75162887262724, 62.30191916309037], + "fuelium": [71.67188373775761, 83.4764166982713], + "gold": [440.84013003827573, 447.96436540409803], + "goldOre": [34.05846603180625, 47.06768964551245], + "hullPlates": [45.85865404829662, 58.23276556641929], + "hydrogen": [77.21509833588503, 88.82030470205046], + "ice": [26.136335467619006, 45.542320503769005], + "metals": [74.13810436643051, 81.77097304311269], + "ore": [30.348502865489234, 35.36226587251431], + "silica": [41.08355614584906, 60.80647343498254], + "silicon": [21.679825623253908, 28.497146440530834], + "superconductors": [433.33553669736744, 441.7546720486647], + "tauMetal": [367.2741211758728, 384.8292938167648], + "water": [23.538142189377556, 36.88126410183538] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 85, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": true, + "price": 1142, + "quantity": 997, + "type": "sell" + }, + "electronics": { + "active": true, + "price": 342, + "quantity": 2584, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 453, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 18, + "quantity": 64959, + "type": "sell" + }, + "fuel": { + "active": true, + "price": 58, + "quantity": 7220, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 76, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 444, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 45, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": true, + "price": 55, + "quantity": 5792, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 78, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 30, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 78, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 32, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 49, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 23, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 440, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 383, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 33, + "quantity": 11986, + "type": "buy" + } + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "ACT Pontus Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1818, 1817, 1816, 1815], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 26 }, + "electronics": { "consumes": 70, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 120, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 350, "produces": 0 } + }, + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 694, + "tags": ["selection", "facility"] + }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 694, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 695, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 694, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 696, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 694, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 697, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 694, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 698, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 694, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 699, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 694, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 700, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 694, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.2828359788359784, + "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.8387978142076284, "fuel": 0, "fuelium": 0, "gold": 0, @@ -74800,10 +72595,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666616, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -74816,22 +72611,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -74840,26 +72635,26 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 684, + "id": 701, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 694, "mask": "BigInt:549755813888" }, "name": { @@ -74871,7 +72666,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.2828359788359784, + "drones": 0.30653916211293214, "electronics": 0, "engineParts": 0, "food": 0, @@ -74893,7 +72688,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666616, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -74945,29 +72740,29 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 685, + "id": 702, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 694, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.2828359788359784, + "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.8387978142076284, "fuel": 0, "fuelium": 0, "gold": 0, @@ -74986,10 +72781,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666616, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -75002,22 +72797,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -75026,41 +72821,41 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 686, + "id": 703, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 675, + "id": 694, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.30653916211293214, "electronics": 0, "engineParts": 0, - "food": 0.31746031746028813, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -75079,10 +72874,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 1.5333333333333474, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -75095,22 +72890,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5.3333333333333535 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -75119,28 +72914,28 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 687, + "id": 704, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 30, + "allocationIdCounter": 1, "allocations": [], - "available": 919554, - "money": 919554, + "available": 10433767, + "money": 10433767, "name": "budget", "mask": "BigInt:16" }, @@ -75158,14 +72953,14 @@ }, "modules": { "name": "modules", - "ids": [689, 690, 691, 692, 693, 694, 695, 696], + "ids": [706, 707, 708, 709, 710, 711, 712], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-17.693890512736488, -20.080345277206664], - "sector": 7, + "coord": [17.220135980575776, -10.965481286968132], + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" }, @@ -75180,20 +72975,20 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 32, + "allocationIdCounter": 1, "allocations": [], "max": 181000, "availableWares": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 9017, + "electronics": 31521, "engineParts": 0, - "food": 67428, - "fuel": 9048, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 69120, "hydrogen": 0, "ice": 0, "metals": 0, @@ -75202,19 +72997,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 19034 + "water": 0 }, "stored": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 9017, + "electronics": 31521, "engineParts": 0, - "food": 67428, - "fuel": 9048, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 69120, "hydrogen": 0, "ice": 0, "metals": 0, @@ -75223,19 +73018,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 19034 + "water": 0 }, "quota": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 21787, + "electronics": 58657, "engineParts": 0, - "food": 134007, - "fuel": 15723, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 100555, "hydrogen": 0, "ice": 0, "metals": 0, @@ -75244,7 +73039,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -75253,25 +73048,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [71.12323154671363, 78.95953693975517], - "drones": [1308.6923018837642, 1316.0915229440377], - "electronics": [407.424985435257, 422.2884479644145], - "engineParts": [202.11861563829893, 213.7543465205045], - "food": [16, 17.43895316761134], - "fuel": [62.156621907921824, 76.03686210196109], - "fuelium": [68.794883699639, 87.4537911472365], - "gold": [749.9608914256557, 768.184675918328], - "goldOre": [84.84209877497977, 100.55367703318446], - "hullPlates": [47.76802477759391, 56.08925484529659], - "hydrogen": [42.567951920563786, 54.01078139820065], - "ice": [23.542022072382643, 32.44316030208125], - "metals": [57.502173240280165, 70.28969115308298], - "ore": [33.30542685374164, 46.91341925390715], - "silica": [38.70658184759617, 53.4556923018585], - "silicon": [25.85540692089612, 36.061612131367944], - "superconductors": [432.6578279486241, 446.05776538499595], - "tauMetal": [353.5974975274555, 367.9250149067162], - "water": [29.836283766680165, 37.474418604651156] + "coolant": [103.17915962755288, 114.51062980577036], + "drones": [1152.7072009391063, 1160.217229258914], + "electronics": [317.9087499621357, 326.5125956036001], + "engineParts": [323.14870987777044, 330.49145897973705], + "food": [13.591700947373758, 26.380311622056475], + "fuel": [36.14705730324698, 47.49173132262081], + "fuelium": [72.42976751290676, 88.70324211990786], + "gold": [356.2568113175184, 365.29076374186747], + "goldOre": [58.63684615550664, 75.94482441501616], + "hullPlates": [45.18585108199546, 59.49411764705883], + "hydrogen": [88.06874562508379, 96.60456342766626], + "ice": [11.274494380496819, 26.03807677978942], + "metals": [89.7645033035474, 104.95324059316229], + "ore": [29.43806819854966, 42.91388116082109], + "silica": [30.343274846888498, 38.91304014378559], + "silicon": [32.715951821826835, 44.337249643057596], + "superconductors": [258.0855215169961, 266.9057577025008], + "tauMetal": [488.1821057897636, 500.5791311792659], + "water": [32.07733922706154, 42.96702732253208] }, "lastPriceAdjust": { "commodities": { @@ -75300,116 +73095,116 @@ "offers": { "coolant": { "active": false, - "price": 71, + "price": 105, "quantity": 0, "type": "buy" }, "drones": { - "active": false, - "price": 1310, - "quantity": 0, - "type": "buy" + "active": true, + "price": 1159, + "quantity": 9017, + "type": "sell" }, "electronics": { - "active": false, - "price": 419, - "quantity": 0, + "active": true, + "price": 321, + "quantity": 27136, "type": "buy" }, "engineParts": { "active": false, - "price": 205, + "price": 328, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 16, - "quantity": 67428, - "type": "sell" + "active": false, + "price": 15, + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 72, - "quantity": 6675, + "active": false, + "price": 38, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 72, + "price": 84, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 764, + "price": 356, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 97, + "price": 72, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, + "active": true, "price": 55, - "quantity": 0, + "quantity": 31435, "type": "buy" }, "hydrogen": { "active": false, - "price": 48, + "price": 88, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 13, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 60, + "price": 91, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 33, + "price": 42, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 48, + "price": 32, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 32, + "price": 35, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 433, + "price": 259, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 358, + "price": 499, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 36, - "quantity": 12234, + "active": false, + "price": 34, + "quantity": 0, "type": "buy" } }, @@ -75417,17 +73212,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 72, - "target": "THT Trader Courier B", - "time": 3554 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -75437,17 +73222,17 @@ }, "name": { "name": "name", - "value": "ACT Arges Factory", + "value": "ACT Sector Alpha Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1719, 1718], + "ids": [1814, 1813], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 11.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -75456,15 +73241,15 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 1500 }, - "fuel": { "consumes": 176, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -75473,20 +73258,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 350, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 688, + "id": 705, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 688, + "id": 705, "mask": "BigInt:549755813888" }, "name": { @@ -75501,14 +73286,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 689, + "id": 706, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 688, + "id": 705, "mask": "BigInt:549755813888" }, "name": { @@ -75523,14 +73308,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 690, + "id": 707, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 688, + "id": 705, "mask": "BigInt:549755813888" }, "name": { @@ -75553,14 +73338,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 691, + "id": 708, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 688, + "id": 705, "mask": "BigInt:549755813888" }, "name": { @@ -75575,14 +73360,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 692, + "id": 709, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 688, + "id": 705, "mask": "BigInt:549755813888" }, "name": { @@ -75597,14 +73382,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 693, + "id": 710, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 688, + "id": 705, "mask": "BigInt:549755813888" }, "name": { @@ -75619,29 +73404,29 @@ } }, "cooldowns": { "timers": {} }, - "id": 694, + "id": 711, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 688, + "id": 705, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.09888888888888925, "electronics": 0, "engineParts": 0, - "food": 0.7121212121211471, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -75660,81 +73445,9 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 695, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 688, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.7121212121211471, "fuel": 0, "fuelium": 0, "gold": 0, @@ -75749,42 +73462,21 @@ "superconductors": 0, "tauMetal": 0, "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -75793,53 +73485,28 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 696, + "id": 712, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": 250980, - "issued": 3447, - "meta": { "tradeId": "631:1717:buy:3447" }, - "id": 25 - }, - { - "amount": 43240, - "issued": 3504, - "meta": { "tradeId": "697:1682:sell:3504" }, - "id": 26 - }, - { - "amount": 42720, - "issued": 3519, - "meta": { "tradeId": "631:1716:buy:3519" }, - "id": 27 - }, - { - "amount": 43240, - "issued": 3558, - "meta": { "tradeId": "697:1683:sell:3558" }, - "id": 28 - } - ], - "available": 9091451, - "money": 9471631, + "allocationIdCounter": 1, + "allocations": [], + "available": 2277414, + "money": 2277414, "name": "budget", "mask": "BigInt:16" }, @@ -75857,13 +73524,13 @@ }, "modules": { "name": "modules", - "ids": [698, 699, 700, 701, 702, 703, 704, 705, 706, 707], + "ids": [714, 715, 716, 717, 718, 719, 720, 721, 722, 723, 724, 725], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [18.228362751423553, 15.341172864258432], + "coord": [20.670743822767854, -7.5387749046431125], "sector": 7, "moved": false, "mask": "BigInt:2199023255552" @@ -75879,129 +73546,20 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "incoming", - "meta": { "tradeId": "697:1717:sell:3447" }, - "id": 25 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 940, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3504, - "type": "incoming", - "meta": { "tradeId": "697:1682:sell:3504" }, - "id": 26 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "incoming", - "meta": { "tradeId": "697:1716:sell:3519" }, - "id": 27 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 940, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "697:1683:sell:3558" }, - "id": 28 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, - "drones": 15101, - "electronics": 38308, + "drones": 1146, + "electronics": 2380, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 78261, + "fuel": 5096, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 58722, + "hullPlates": 5643, "hydrogen": 0, "ice": 0, "metals": 0, @@ -76010,19 +73568,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 17195 }, "stored": { "coolant": 0, - "drones": 15101, - "electronics": 38308, + "drones": 1146, + "electronics": 2380, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 78261, + "fuel": 5096, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 58722, + "hullPlates": 5643, "hydrogen": 0, "ice": 0, "metals": 0, @@ -76031,19 +73589,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 17195 }, "quota": { "coolant": 0, - "drones": 21787, - "electronics": 58657, + "drones": 2099, + "electronics": 5651, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 121097, + "fuel": 14208, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 100555, + "hullPlates": 9687, "hydrogen": 0, "ice": 0, "metals": 0, @@ -76052,7 +73610,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 28256 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -76061,25 +73619,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [127.00149717443477, 133.706269137054], - "drones": [1169, 1192.38], - "electronics": [352.1354379084322, 369.4243847102812], - "engineParts": [297.30533557989645, 309.88227058877163], - "food": [12.969981206248647, 21.45254909170378], - "fuel": [65.0478740946156, 84.05533877971608], - "fuelium": [40.25753056358295, 54.53369469698003], - "gold": [719.5768846351771, 738.6706384002488], - "goldOre": [66.94257301733647, 79.62116865886142], - "hullPlates": [43.82381788151697, 59.715562735569506], - "hydrogen": [67.18290499642166, 78.81161376228782], - "ice": [14.570108204686445, 32.8744079555655], - "metals": [46.79370529961173, 52.6073212343893], - "ore": [22.484625039794366, 30.07476590388876], - "silica": [18.722100250474966, 37.61919179633706], - "silicon": [26.32208672339477, 36.23549470423316], - "superconductors": [397.0839704525515, 402.1085483430567], - "tauMetal": [447.8735892658897, 467.8594734589551], - "water": [18.4883133147445, 24.24997162245939] + "coolant": [87.55886952405332, 107.26975302872849], + "drones": [1315.0921302461093, 1321.9353820312776], + "electronics": [331.1647368242859, 340.0913268160437], + "engineParts": [412.5516200208996, 428.85149037118623], + "food": [13.120796330321996, 18.08118758691795], + "fuel": [58.23734940485798, 67.44816915910313], + "fuelium": [27.81763728284545, 37.714785141426745], + "gold": [865.0414349709381, 881.5220502521474], + "goldOre": [60.40312223388453, 71.91497719289727], + "hullPlates": [51.591304170403625, 60.6808656250705], + "hydrogen": [62.53555810050891, 71.35171470822726], + "ice": [18.939492753965133, 24.770777654435292], + "metals": [67.17491437839061, 83.90015980276112], + "ore": [18.234501064758643, 34.56932859825797], + "silica": [20.015711879501406, 34.54026137430928], + "silicon": [14.491024811002644, 20.79324165214892], + "superconductors": [375.2437041158157, 393.6480829539736], + "tauMetal": [458.5049650138203, 470.61689890193384], + "water": [35.42496467167012, 42.03263612851394] }, "lastPriceAdjust": { "commodities": { @@ -76108,116 +73666,116 @@ "offers": { "coolant": { "active": false, - "price": 128, + "price": 103, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1187, - "quantity": 15101, + "price": 1319, + "quantity": 1146, "type": "sell" }, "electronics": { "active": true, - "price": 353, - "quantity": 20349, + "price": 336, + "quantity": 3271, "type": "buy" }, "engineParts": { "active": false, - "price": 300, + "price": 418, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 20, - "quantity": 0, - "type": "buy" + "active": true, + "price": 13, + "quantity": 78261, + "type": "sell" }, "fuel": { - "active": false, - "price": 68, - "quantity": 0, + "active": true, + "price": 66, + "quantity": 9112, "type": "buy" }, "fuelium": { "active": false, - "price": 52, + "price": 32, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 734, + "price": 874, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 67, + "price": 62, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 46, - "quantity": 41833, + "price": 52, + "quantity": 4044, "type": "buy" }, "hydrogen": { "active": false, - "price": 67, + "price": 66, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 25, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 47, + "price": 80, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 25, + "price": 22, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 28, + "price": 34, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 32, + "price": 16, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 401, + "price": 388, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 454, + "price": 460, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 19, - "quantity": 0, + "active": true, + "price": 36, + "quantity": 11061, "type": "buy" } }, @@ -76240,7 +73798,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1717, 1716], + "ids": [1812, 1811, 1810, 1809], "mask": "BigInt:4294967296" }, "crew": { @@ -76254,15 +73812,15 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 52 }, - "electronics": { "consumes": 140, "produces": 0 }, + "drones": { "consumes": 0, "produces": 39 }, + "electronics": { "consumes": 105, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 2250 }, + "fuel": { "consumes": 264, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 240, "produces": 0 }, + "hullPlates": { "consumes": 180, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -76271,20 +73829,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 525, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 697, + "id": 713, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -76299,14 +73857,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 698, + "id": 714, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -76321,14 +73879,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 699, + "id": 715, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -76351,14 +73909,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 700, + "id": 716, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -76373,14 +73931,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 701, + "id": 717, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -76395,14 +73953,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 702, + "id": 718, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -76417,14 +73975,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 703, + "id": 719, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -76436,7 +73994,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.38941254125412417, + "drones": 0.19555555555555512, "electronics": 0, "engineParts": 0, "food": 0, @@ -76458,7 +74016,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666572, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, "fuel": 0, @@ -76510,29 +74068,29 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 704, + "id": 720, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.38941254125412417, + "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.666666666666647, "fuel": 0, "fuelium": 0, "gold": 0, @@ -76551,10 +74109,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666572, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -76567,22 +74125,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.33333333333337656 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -76591,41 +74149,41 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 705, + "id": 721, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.38941254125412417, + "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.666666666666647, "fuel": 0, "fuelium": 0, "gold": 0, @@ -76644,10 +74202,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666572, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -76660,22 +74218,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.33333333333337656 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -76684,41 +74242,41 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 706, + "id": 722, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 697, + "id": 713, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.38941254125412417, + "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.666666666666647, "fuel": 0, "fuelium": 0, "gold": 0, @@ -76737,10 +74295,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.6666666666666572, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -76753,22 +74311,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.33333333333337656 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -76777,762 +74335,41 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 707, + "id": 723, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "budget": { - "allocationIdCounter": 83, - "allocations": [ - { - "amount": 61, - "issued": 3468, - "meta": { "tradeId": "708:2227:sell:3468" }, - "id": 79 - }, - { - "amount": 6400, - "issued": 3483, - "meta": { "tradeId": "792:1713:buy:3483" }, - "id": 80 - }, - { - "amount": 6400, - "issued": 3525, - "meta": { "tradeId": "792:1712:buy:3525" }, - "id": 81 - }, - { - "amount": 324, - "issued": 3543, - "meta": { "tradeId": "577:1714:buy:3543" }, - "id": 82 - } - ], - "available": 1125646, - "money": 1138831, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [709, 710, 711, 712, 713, 714, 715, 716], - "mask": "BigInt:68719476736" - }, - "position": { - "name": "position", - "angle": 0, - "coord": [2.6483777098994175, 4.551042886739982], - "sector": 7, - "moved": false, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 16761677, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fFactory", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 83, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3429, - "type": "incoming", - "meta": { "tradeId": "708:1715:sell:3429" }, - "id": 78 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3468, - "type": "incoming", - "meta": { "tradeId": "708:2227:sell:3468" }, - "id": 79 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "incoming", - "meta": { "tradeId": "708:1713:sell:3483" }, - "id": 80 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3525, - "type": "incoming", - "meta": { "tradeId": "708:1712:sell:3525" }, - "id": 81 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3543, - "type": "incoming", - "meta": { "tradeId": "708:1714:sell:3543" }, - "id": 82 - } - ], - "max": 181000, - "availableWares": { - "coolant": 0, - "drones": 1314, - "electronics": 5800, - "engineParts": 0, - "food": 76797, - "fuel": 8306, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 8536, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 10841 - }, - "stored": { - "coolant": 0, - "drones": 1314, - "electronics": 5800, - "engineParts": 0, - "food": 76797, - "fuel": 8306, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 8536, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 10841 - }, - "quota": { - "coolant": 0, - "drones": 2099, - "electronics": 5651, - "engineParts": 0, - "food": 121097, - "fuel": 14208, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 9687, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 28256 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [145.6315498739557, 153.61378084933565], - "drones": [1256.1710044709716, 1276.0196076252594], - "electronics": [343.3991113126897, 358.27080189053845], - "engineParts": [442.52211334636405, 456.0223336703867], - "food": [14.018213604385778, 18.018213604385778], - "fuel": [58.1413748392214, 70.74813293783012], - "fuelium": [34.6558345876576, 49.23821187389315], - "gold": [594.4313811121372, 606.2625084709287], - "goldOre": [36.246782078977255, 54.191291590883324], - "hullPlates": [53.301561505641246, 67], - "hydrogen": [46.1871455060856, 53.61823254300816], - "ice": [22.55596013292878, 28.14051256821722], - "metals": [48.4066368203894, 62.5015302247442], - "ore": [36.88091235262581, 48.388959888619596], - "silica": [44.132489052996405, 60.513642592737575], - "silicon": [26.106114771032296, 41.1333384923186], - "superconductors": [487.5065730743158, 506.25681764909933], - "tauMetal": [618.7548355652134, 634.179876396173], - "water": [35.08667913437543, 43] - }, - "lastPriceAdjust": { - "commodities": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 150, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": true, - "price": 1268, - "quantity": 1314, - "type": "sell" - }, - "electronics": { - "active": true, - "price": 352, - "quantity": 0, - "type": "buy" - }, - "engineParts": { - "active": false, - "price": 455, - "quantity": 0, - "type": "buy" - }, - "food": { - "active": true, - "price": 16, - "quantity": 76797, - "type": "sell" - }, - "fuel": { - "active": true, - "price": 65, - "quantity": 5902, - "type": "buy" - }, - "fuelium": { - "active": false, - "price": 40, - "quantity": 0, - "type": "buy" - }, - "gold": { - "active": false, - "price": 603, - "quantity": 0, - "type": "buy" - }, - "goldOre": { - "active": false, - "price": 52, - "quantity": 0, - "type": "buy" - }, - "hullPlates": { - "active": true, - "price": 61, - "quantity": 1151, - "type": "buy" - }, - "hydrogen": { - "active": false, - "price": 46, - "quantity": 0, - "type": "buy" - }, - "ice": { - "active": false, - "price": 25, - "quantity": 0, - "type": "buy" - }, - "metals": { - "active": false, - "price": 60, - "quantity": 0, - "type": "buy" - }, - "ore": { - "active": false, - "price": 44, - "quantity": 0, - "type": "buy" - }, - "silica": { - "active": false, - "price": 51, - "quantity": 0, - "type": "buy" - }, - "silicon": { - "active": false, - "price": 32, - "quantity": 0, - "type": "buy" - }, - "superconductors": { - "active": false, - "price": 500, - "quantity": 0, - "type": "buy" - }, - "tauMetal": { - "active": false, - "price": 622, - "quantity": 0, - "type": "buy" - }, - "water": { - "active": true, - "price": 42, - "quantity": 17415, - "type": "buy" - } - }, - "mask": "BigInt:34359738368" - }, - "journal": { - "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 83, - "target": "THT Trader Courier B", - "time": 792 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "THT Trader Freighter A", - "time": 888 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "THT Trader Freighter A", - "time": 908 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "THT Trader Freighter A", - "time": 915 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "THT Trader Freighter A", - "time": 1389 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "THT Trader Freighter A", - "time": 1397 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "THT Trader Freighter A", - "time": 1397 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "THT Trader Freighter A", - "time": 1418 - }, - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 6, - "price": 61, - "target": "THT Trader Courier B", - "time": 2885 - } - ], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 100000, "regen": 0, "value": 100000 }, - "mask": "BigInt:1048576" - }, - "name": { - "name": "name", - "value": "ACT Arges Factory", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [1715, 1714, 1713, 1712], - "mask": "BigInt:4294967296" - }, - "crew": { - "name": "crew", - "workers": { "current": 14.5, "max": 14 }, - "mood": 50, - "mask": "BigInt:140737488355328" - }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "compoundProduction": { - "name": "compoundProduction", - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "mask": "BigInt:1024" - } - }, - "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 708, - "tags": ["selection", "facility"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 708, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 709, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 708, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Storage", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 1000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 710, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 708, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 711, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 708, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 712, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 708, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 713, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 708, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 714, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, { "components": { "parent": { "name": "parent", - "id": 708, + "id": 713, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.19555555555555512, "electronics": 0, "engineParts": 0, - "food": 0.29569892473114656, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -77551,10 +74388,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -77567,22 +74404,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -77591,26 +74428,26 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 715, + "id": 724, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 708, + "id": 713, "mask": "BigInt:549755813888" }, "name": { @@ -77622,7 +74459,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.37845878136200783, + "drones": 0.19555555555555512, "electronics": 0, "engineParts": 0, "food": 0, @@ -77644,7 +74481,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.16666666666665564, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, "fuel": 0, @@ -77696,23 +74533,16 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 716, + "id": 725, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 77, - "allocations": [ - { - "amount": 372, - "issued": 3576, - "meta": { "tradeId": "505:1708:buy:3576" }, - "id": 76 - } - ], - "available": 1513623, - "money": 1513995, + "allocationIdCounter": 1, + "allocations": [], + "available": 3248697, + "money": 3248697, "name": "budget", "mask": "BigInt:16" }, @@ -77730,14 +74560,14 @@ }, "modules": { "name": "modules", - "ids": [718, 719, 720, 721, 722, 723, 724, 725, 726, 727, 728], + "ids": [727, 728, 729, 730, 731, 732, 733, 734, 735, 736, 737, 738], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-16.292355763315484, 6.960544771592737], - "sector": 7, + "coord": [16.440688095924422, -12.478085404729585], + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, @@ -77752,43 +74582,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 80, + "allocationIdCounter": 2, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "incoming", - "meta": { "tradeId": "717:1711:sell:3540" }, - "id": 77 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, + "electronics": 940, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -77803,75 +74606,75 @@ "tauMetal": 0, "water": 0 }, - "issued": 3576, - "type": "incoming", - "meta": { "tradeId": "717:1708:sell:3576" }, - "id": 78 + "issued": 3591, + "type": "outgoing", + "meta": { "tradeId": "726:1788:buy:3591" }, + "id": 1 } ], "max": 181000, "availableWares": { "coolant": 0, - "drones": 0, - "electronics": 3958, + "drones": 270, + "electronics": 7499, "engineParts": 0, - "food": 55182, - "fuel": 11469, + "food": 39258, + "fuel": 13091, "fuelium": 0, - "gold": 0, + "gold": 1519, "goldOre": 0, - "hullPlates": 6901, + "hullPlates": 751, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 26694, "superconductors": 0, "tauMetal": 0, - "water": 12976 + "water": 6810 }, "stored": { "coolant": 0, - "drones": 0, - "electronics": 3958, + "drones": 270, + "electronics": 8439, "engineParts": 0, - "food": 55182, - "fuel": 11469, + "food": 39258, + "fuel": 13091, "fuelium": 0, - "gold": 0, + "gold": 1519, "goldOre": 0, - "hullPlates": 6901, + "hullPlates": 751, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 26694, "superconductors": 0, "tauMetal": 0, - "water": 12976 + "water": 6810 }, "quota": { "coolant": 0, - "drones": 1445, - "electronics": 3892, + "drones": 525, + "electronics": 19621, "engineParts": 0, - "food": 125115, - "fuel": 14680, + "food": 60683, + "fuel": 25325, "fuelium": 0, - "gold": 0, + "gold": 3641, "goldOre": 0, - "hullPlates": 6672, + "hullPlates": 2427, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 54615, "superconductors": 0, "tauMetal": 0, - "water": 29193 + "water": 14159 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -77880,25 +74683,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [95.46138089461166, 106.26482090454223], - "drones": [1423.4280247564463, 1433.869700006178], - "electronics": [344.69569783277984, 354.10032326615874], - "engineParts": [320.22579920122166, 332.71291100703695], - "food": [15, 19.20165729352889], - "fuel": [50.332061271072, 58.82280275079115], - "fuelium": [57.111345395510085, 64.55234433651614], - "gold": [860.886965910591, 879.9214258426517], - "goldOre": [90.11959325613041, 97.37382941845526], - "hullPlates": [39.89678627425475, 46.59917108664794], - "hydrogen": [64.47426025477824, 69.50956584670638], - "ice": [9.760662322202586, 27.87278475361979], - "metals": [74.91035889344374, 87.63933350285176], - "ore": [18.362633859715316, 34.236917522415304], - "silica": [50.12589599653767, 60.945679448105324], - "silicon": [29.493749045726048, 43.628283922920346], - "superconductors": [303.1492149384409, 310.60956528004806], - "tauMetal": [624.1348241603156, 641.2506352649149], - "water": [38.16281852078607, 43] + "coolant": [130.2115010347967, 145.47577467272794], + "drones": [1176.5795763401336, 1184.0077383758019], + "electronics": [315, 321.3], + "engineParts": [205.79758839782232, 223.3278100762521], + "food": [15, 18.131919413693204], + "fuel": [50.94584690283621, 57.418991768102615], + "fuelium": [61.55111908537772, 80.97113564559386], + "gold": [759.3089113095349, 776.8717384066528], + "goldOre": [56.48218581024641, 74.40257535358944], + "hullPlates": [47.529482002547475, 64.43982713396073], + "hydrogen": [101.7924504958328, 114.57200138519877], + "ice": [17.265358803350466, 25.5706224643032], + "metals": [59.356828514282725, 73.4938109132442], + "ore": [32.51528649641317, 45.00659582167799], + "silica": [46.68639048399859, 63.83945752764296], + "silicon": [21.43548487022825, 28.21321259695872], + "superconductors": [384.51127213518214, 400.726307051888], + "tauMetal": [559.394725740411, 578.0746757972331], + "water": [29.345158191493223, 37.984845551918866] }, "lastPriceAdjust": { "commodities": { @@ -77927,116 +74730,116 @@ "offers": { "coolant": { "active": false, - "price": 103, + "price": 141, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1425, - "quantity": 0, + "price": 1183, + "quantity": 270, "type": "sell" }, "electronics": { "active": true, - "price": 349, - "quantity": 0, - "type": "buy" + "price": 317, + "quantity": 7429, + "type": "sell" }, "engineParts": { "active": false, - "price": 326, + "price": 217, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 17, - "quantity": 55182, + "price": 16, + "quantity": 39258, "type": "sell" }, "fuel": { "active": true, - "price": 55, - "quantity": 3211, + "price": 52, + "quantity": 12234, "type": "buy" }, "fuelium": { "active": false, - "price": 64, + "price": 79, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 864, - "quantity": 0, + "active": true, + "price": 772, + "quantity": 2122, "type": "buy" }, "goldOre": { "active": false, - "price": 93, + "price": 64, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 42, - "quantity": 0, + "price": 48, + "quantity": 1676, "type": "buy" }, "hydrogen": { "active": false, - "price": 65, + "price": 111, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 13, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 78, + "price": 73, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 21, + "price": 36, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 59, + "price": 48, "quantity": 0, "type": "buy" }, "silicon": { - "active": false, - "price": 40, - "quantity": 0, + "active": true, + "price": 26, + "quantity": 27921, "type": "buy" }, "superconductors": { "active": false, - "price": 307, + "price": 386, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 630, + "price": 568, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 41, - "quantity": 16217, + "price": 31, + "quantity": 7349, "type": "buy" } }, @@ -78054,12 +74857,12 @@ }, "name": { "name": "name", - "value": "ACT Arges Factory", + "value": "ACT Ross 128 II Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1711, 1710, 1709, 1708], + "ids": [1808, 1807, 1806, 1805, 1804], "mask": "BigInt:4294967296" }, "crew": { @@ -78073,37 +74876,37 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 26 }, - "electronics": { "consumes": 70, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 450 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 2250 }, - "fuel": { "consumes": 264, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 626, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 90, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 120, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 1350, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 525, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 717, + "id": 726, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78118,14 +74921,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 718, + "id": 727, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78140,14 +74943,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 719, + "id": 728, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78170,14 +74973,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 720, + "id": 729, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78192,14 +74995,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 721, + "id": 730, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78214,14 +75017,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 722, + "id": 731, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78236,14 +75039,107 @@ } }, "cooldowns": { "timers": {} }, - "id": 723, + "id": 732, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Electronics Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0.38541666666666297, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 20, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 733, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78258,7 +75154,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.318181818181797, + "food": 0.9270833333333106, "fuel": 0, "fuelium": 0, "gold": 0, @@ -78280,7 +75176,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -78293,7 +75189,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0.33333333333337656 } }, "name": "production", @@ -78329,14 +75225,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 724, + "id": 734, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78351,7 +75247,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.318181818181797, + "food": 0.9270833333333106, "fuel": 0, "fuelium": 0, "gold": 0, @@ -78373,7 +75269,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -78386,7 +75282,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0.33333333333337656 } }, "name": "production", @@ -78422,14 +75318,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 725, + "id": 735, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { @@ -78441,7 +75337,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.3615151515151518, + "drones": 0.7667361111111102, "electronics": 0, "engineParts": 0, "food": 0, @@ -78463,7 +75359,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.16666666666665564, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, "fuel": 0, @@ -78515,27 +75411,27 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 726, + "id": 736, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.3615151515151518, - "electronics": 0, + "drones": 0, + "electronics": 0.38541666666666297, "engineParts": 0, "food": 0, "fuel": 0, @@ -78556,7 +75452,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.16666666666665564, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -78579,21 +75475,21 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -78603,24 +75499,24 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 20, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 727, + "id": 737, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 717, + "id": 726, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { @@ -78628,9 +75524,9 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.38541666666666297, "engineParts": 0, - "food": 0.318181818181797, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -78652,7 +75548,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -78665,7 +75561,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -78673,12 +75569,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -78686,62 +75582,38 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 20, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 728, + "id": 738, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 82, + "allocationIdCounter": 2, "allocations": [ { - "amount": 115040, - "issued": 3369, - "meta": { "tradeId": "729:2238:sell:3369" }, - "id": 75 - }, - { - "amount": 5120, - "issued": 3501, - "meta": { "tradeId": "541:1707:buy:3501" }, - "id": 77 - }, - { - "amount": 115040, - "issued": 3531, - "meta": { "tradeId": "729:2243:sell:3531" }, - "id": 78 - }, - { - "amount": 2304, - "issued": 3564, - "meta": { "tradeId": "517:1703:buy:3564" }, - "id": 80 - }, - { - "amount": 2816, - "issued": 3576, - "meta": { "tradeId": "517:1706:buy:3576" }, - "id": 81 + "amount": 8160, + "issued": 309, + "meta": { "tradeId": "739:1848:sell:309" }, + "id": 1 } ], - "available": 1358049, - "money": 1598369, + "available": 2438892, + "money": 2447052, "name": "budget", "mask": "BigInt:16" }, @@ -78759,13 +75631,13 @@ }, "modules": { "name": "modules", - "ids": [730, 731, 732, 733, 734, 735, 736, 737, 738, 739, 740], + "ids": [740, 741, 742, 743, 744, 745, 746, 747, 748, 749], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-18.84058407587718, 17.784284971603263], + "coord": [13.102971718691329, 5.895503607317941], "sector": 25, "moved": false, "mask": "BigInt:2199023255552" @@ -78781,18 +75653,18 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 130, + "allocationIdCounter": 9, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, - "gold": 160, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -78805,16 +75677,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 3369, - "type": "incoming", - "meta": { "tradeId": "729:2238:sell:3369" }, - "id": 123 + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "739:1852:buy:27" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 6, "engineParts": 0, "food": 0, "fuel": 0, @@ -78827,21 +75699,21 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3423, - "type": "incoming", - "meta": { "tradeId": "729:1704:sell:3423" }, - "id": 124 + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "739:1853:buy:27" }, + "id": 2 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -78854,26 +75726,26 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3501, - "type": "incoming", - "meta": { "tradeId": "729:1707:sell:3501" }, - "id": 125 + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "739:1854:buy:27" }, + "id": 3 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 940, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, - "gold": 160, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -78886,19 +75758,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3531, - "type": "incoming", - "meta": { "tradeId": "729:2243:sell:3531" }, - "id": 126 + "issued": 303, + "type": "outgoing", + "meta": { "tradeId": "739:1832:buy:303" }, + "id": 4 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 6, "engineParts": 0, "food": 0, - "fuel": 27, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -78913,16 +75785,16 @@ "tauMetal": 0, "water": 0 }, - "issued": 3549, - "type": "incoming", - "meta": { "tradeId": "729:1705:sell:3549" }, - "id": 127 + "issued": 306, + "type": "outgoing", + "meta": { "tradeId": "739:1831:buy:306" }, + "id": 5 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -78938,12 +75810,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 72 + "water": 0 }, - "issued": 3564, - "type": "incoming", - "meta": { "tradeId": "729:1703:sell:3564" }, - "id": 128 + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "739:1834:buy:309" }, + "id": 6 }, { "amount": { @@ -78965,77 +75837,104 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 160 }, - "issued": 3576, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "729:1706:sell:3576" }, - "id": 129 + "meta": { "tradeId": "739:1848:sell:309" }, + "id": 7 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 160, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 315, + "type": "outgoing", + "meta": { "tradeId": "739:1833:buy:315" }, + "id": 8 } ], "max": 181000, "availableWares": { "coolant": 0, - "drones": 13, - "electronics": 9, + "drones": 1637, + "electronics": 11912, "engineParts": 0, - "food": 50612, - "fuel": 13467, + "food": 45479, + "fuel": 10872, "fuelium": 0, - "gold": 809, + "gold": 1557, "goldOre": 0, - "hullPlates": 829, + "hullPlates": 6071, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 13422, + "silicon": 22150, "superconductors": 0, "tauMetal": 0, - "water": 13152 + "water": 9258 }, "stored": { "coolant": 0, - "drones": 13, - "electronics": 9, + "drones": 1637, + "electronics": 13504, "engineParts": 0, - "food": 50612, - "fuel": 13467, + "food": 45479, + "fuel": 10872, "fuelium": 0, - "gold": 809, + "gold": 1557, "goldOre": 0, - "hullPlates": 829, + "hullPlates": 6071, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 13422, + "silicon": 22150, "superconductors": 0, "tauMetal": 0, - "water": 13152 + "water": 9258 }, "quota": { "coolant": 0, - "drones": 599, - "electronics": 8526, + "drones": 2342, + "electronics": 19820, "engineParts": 0, - "food": 103705, - "fuel": 19081, + "food": 67570, + "fuel": 21442, "fuelium": 0, - "gold": 1382, + "gold": 2702, "goldOre": 0, - "hullPlates": 2765, + "hullPlates": 10811, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 20741, + "silicon": 40542, "superconductors": 0, "tauMetal": 0, - "water": 24197 + "water": 15766 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -79044,25 +75943,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [63.01656579199914, 77.11212421647119], - "drones": [1127.5513399160284, 1136.3894624139893], - "electronics": [384.1813742822215, 391.7122016740039], - "engineParts": [475.392980547388, 490.1280969956805], - "food": [16.437325281229068, 18.886575558457746], - "fuel": [55.75920300519253, 67.04711682477198], - "fuelium": [26.693415440801672, 42.26287146216669], - "gold": [716.0752126328573, 725.7423114934595], - "goldOre": [86.65523505745405, 105.80405959865985], - "hullPlates": [34.080469559719106, 47.46075111994291], - "hydrogen": [92.99335625196082, 98.72933654254241], - "ice": [21.961405907592123, 28.602812601481126], - "metals": [74.349667515802, 91.8845511478904], - "ore": [24.02814440211539, 34.66058187223366], - "silica": [17.361234062840754, 25.29687774569288], - "silicon": [30.479377322701687, 36], - "superconductors": [459.44590662389226, 474.1096458153001], - "tauMetal": [252.92120454332658, 264.0154421238181], - "water": [31.679685098636842, 35.9] + "coolant": [135.57350004753232, 155.53438274049154], + "drones": [1003, 1023.0600000000001], + "electronics": [302, 308.04], + "engineParts": [260.9927306901269, 269.6600479526459], + "food": [16.4571375212511, 17.4571375212511], + "fuel": [54.023852141551224, 63.608279140610165], + "fuelium": [53.836278473772204, 69.6086803655886], + "gold": [739.3099584714336, 746.6766381914762], + "goldOre": [48.75503921498566, 55.53870983569123], + "hullPlates": [48.572674186785854, 59.50033061615015], + "hydrogen": [39.398039253724576, 55.538094311880094], + "ice": [15.009901560977205, 30.897719855277263], + "metals": [85.2784713706391, 103.41289082579294], + "ore": [31.645362493496176, 39.792085739265794], + "silica": [49.39471046881079, 55.63041817431911], + "silicon": [19.0619062759977, 30.011111111111113], + "superconductors": [258.89254508557224, 272.8337888466156], + "tauMetal": [539.9442191693503, 550.872935230141], + "water": [25.322252448291593, 39.38873606010689] }, "lastPriceAdjust": { "commodities": { @@ -79091,116 +75990,116 @@ "offers": { "coolant": { "active": false, - "price": 69, + "price": 152, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1133, - "quantity": 13, + "price": 1020, + "quantity": 1637, "type": "sell" }, "electronics": { "active": true, - "price": 389, - "quantity": 0, + "price": 305, + "quantity": 11772, "type": "sell" }, "engineParts": { "active": false, - "price": 475, + "price": 269, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 18, - "quantity": 50612, + "price": 17, + "quantity": 45479, "type": "sell" }, "fuel": { "active": true, - "price": 65, - "quantity": 5614, + "price": 55, + "quantity": 10570, "type": "buy" }, "fuelium": { "active": false, - "price": 35, + "price": 69, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 719, - "quantity": 573, + "price": 744, + "quantity": 1145, "type": "buy" }, "goldOre": { "active": false, - "price": 100, + "price": 50, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 38, - "quantity": 1936, + "price": 54, + "quantity": 4740, "type": "buy" }, "hydrogen": { "active": false, - "price": 95, + "price": 47, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 26, + "price": 29, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 86, + "price": 101, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 30, + "price": 34, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 24, + "price": 54, "quantity": 0, "type": "buy" }, "silicon": { "active": true, - "price": 33, - "quantity": 7319, + "price": 29, + "quantity": 18392, "type": "buy" }, "superconductors": { "active": false, - "price": 469, + "price": 269, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 261, + "price": 542, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, - "quantity": 11045, + "price": 37, + "quantity": 6508, "type": "buy" } }, @@ -79208,17 +76107,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "gold", - "quantity": 160, - "price": 719, - "target": "THT Trader Freighter A", - "time": 3368 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -79233,7 +76122,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1707, 1706, 1705, 1704, 1703], + "ids": [1803, 1802, 1801, 1800, 1799], "mask": "BigInt:4294967296" }, "crew": { @@ -79247,15 +76136,15 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 150 }, + "drones": { "consumes": 0, "produces": 26 }, + "electronics": { "consumes": 70, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 2250 }, - "fuel": { "consumes": 414, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 238, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 120, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -79264,20 +76153,20 @@ "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 525, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 729, + "id": 739, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { @@ -79292,14 +76181,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 730, + "id": 740, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { @@ -79314,14 +76203,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 731, + "id": 741, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { @@ -79344,14 +76233,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 732, + "id": 742, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { @@ -79366,14 +76255,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 733, + "id": 743, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { @@ -79388,14 +76277,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 734, + "id": 744, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { @@ -79410,27 +76299,27 @@ } }, "cooldowns": { "timers": {} }, - "id": 735, + "id": 745, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, - "electronics": 0.7677595628415229, + "drones": 0.8445029239766078, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -79451,7 +76340,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -79474,21 +76363,21 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -79498,34 +76387,34 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 736, + "id": 746, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.8445029239766078, "electronics": 0, "engineParts": 0, - "food": 0.8387978142076284, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -79544,81 +76433,9 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 737, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 729, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.8387978142076284, "fuel": 0, "fuelium": 0, "gold": 0, @@ -79633,42 +76450,21 @@ "superconductors": 0, "tauMetal": 0, "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -79677,39 +76473,39 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 738, + "id": 747, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.30653916211293214, - "electronics": 0, + "drones": 0, + "electronics": 0.35964912280701045, "engineParts": 0, "food": 0, "fuel": 0, @@ -79730,7 +76526,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.16666666666665564, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -79753,21 +76549,21 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -79777,19 +76573,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 20, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 739, + "id": 748, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 729, + "id": 739, "mask": "BigInt:549755813888" }, "name": { @@ -79804,7 +76600,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8387978142076284, + "food": 0.7982456140350571, "fuel": 0, "fuelium": 0, "gold": 0, @@ -79875,29 +76671,29 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 740, + "id": 749, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 103, + "allocationIdCounter": 3, "allocations": [ { - "amount": 2816, - "issued": 3480, - "meta": { "tradeId": "517:1702:buy:3480" }, - "id": 101 + "amount": 10080, + "issued": 303, + "meta": { "tradeId": "750:1849:sell:303" }, + "id": 1 }, { - "amount": 2816, - "issued": 3549, - "meta": { "tradeId": "517:1699:buy:3549" }, - "id": 102 + "amount": 8320, + "issued": 1845, + "meta": { "tradeId": "591:1797:buy:1845" }, + "id": 2 } ], - "available": 740683, - "money": 746315, + "available": 885744, + "money": 904144, "name": "budget", "mask": "BigInt:16" }, @@ -79915,13 +76711,13 @@ }, "modules": { "name": "modules", - "ids": [742, 743, 744, 745, 746, 747, 748, 749, 750, 751, 752, 753], + "ids": [751, 752, 753, 754, 755, 756, 757, 758, 759, 760, 761], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [21.818494533508257, 10.112911476501104], + "coord": [-12.202682086071723, -5.353502515451616], "sector": 25, "moved": false, "mask": "BigInt:2199023255552" @@ -79937,35 +76733,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 151, + "allocationIdCounter": 3, "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3477, - "type": "outgoing", - "meta": { "tradeId": "741:1700:buy:3477" }, - "id": 145 - }, { "amount": { "coolant": 0, @@ -79973,7 +76742,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -79986,12 +76755,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3480, + "issued": 303, "type": "incoming", - "meta": { "tradeId": "741:1702:sell:3480" }, - "id": 146 + "meta": { "tradeId": "750:1849:sell:303" }, + "id": 1 }, { "amount": { @@ -80000,34 +76769,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3549, - "type": "incoming", - "meta": { "tradeId": "741:1699:sell:3549" }, - "id": 149 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -80042,75 +76784,75 @@ "tauMetal": 0, "water": 0 }, - "issued": 3567, - "type": "outgoing", - "meta": { "tradeId": "741:1698:buy:3567" }, - "id": 150 + "issued": 1845, + "type": "incoming", + "meta": { "tradeId": "750:1797:sell:1845" }, + "id": 2 } ], "max": 181000, "availableWares": { "coolant": 0, "drones": 0, - "electronics": 2, + "electronics": 0, "engineParts": 0, - "food": 60380, - "fuel": 18358, + "food": 65423, + "fuel": 7537, "fuelium": 0, - "gold": 395, + "gold": 0, "goldOre": 0, - "hullPlates": 728, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 16767, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 19298 + "water": 17269 }, "stored": { "coolant": 0, "drones": 0, - "electronics": 2, + "electronics": 0, "engineParts": 0, - "food": 60700, - "fuel": 18358, + "food": 65423, + "fuel": 7537, "fuelium": 0, - "gold": 395, + "gold": 0, "goldOre": 0, - "hullPlates": 728, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 16767, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 19298 + "water": 17269 }, "quota": { "coolant": 0, - "drones": 476, - "electronics": 6778, + "drones": 0, + "electronics": 0, "engineParts": 0, - "food": 109919, - "fuel": 18393, + "food": 134007, + "fuel": 15723, "fuelium": 0, - "gold": 1099, + "gold": 0, "goldOre": 0, - "hullPlates": 2198, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 16487, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 25647 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -80119,25 +76861,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [73.78606490735763, 85.00645803683796], - "drones": [918, 932.976418067227], - "electronics": [294.7649761703809, 302.00641307151], - "engineParts": [194.23191567180473, 208.89120842471854], - "food": [16, 18], - "fuel": [52.90524046796879, 62.101396614442685], - "fuelium": [67.34357784856343, 82.22046873617018], - "gold": [651.8377029985763, 657.9104135580919], - "goldOre": [46.71554587562071, 61.166614599571126], - "hullPlates": [45.07877545690137, 57.01242150424025], - "hydrogen": [40.00897051365999, 52.736067186136715], - "ice": [23.464367749444396, 41.404800188141465], - "metals": [65.14795862606964, 82.49555403547853], - "ore": [36.74066859028656, 42.15516298842445], - "silica": [29.84575317759154, 47.54222169273025], - "silicon": [25.83239043196742, 36], - "superconductors": [548.5059989517741, 565.7625526400245], - "tauMetal": [560.6465300361853, 575.2381664841627], - "water": [19.171011364576643, 35.3931340808044] + "coolant": [95.43622413513341, 107.46349711876621], + "drones": [1568.2160322684426, 1583.2057760649877], + "electronics": [165.11499065329704, 170.68751057621174], + "engineParts": [347.8984717862554, 367.0713509188471], + "food": [17, 18.94469096371925], + "fuel": [56.11038338840755, 61.19550099858193], + "fuelium": [28.5728619845529, 43.946043316096066], + "gold": [780.7056079352649, 791.4740828391884], + "goldOre": [92.91737108413281, 111.22639361196721], + "hullPlates": [65.14870736593181, 79.83660234399731], + "hydrogen": [70.04224209706318, 85.0945077357909], + "ice": [18.60137869229431, 31.30497588554136], + "metals": [78.1207163414804, 87.73642094065269], + "ore": [16.155667294596224, 28.109349476248546], + "silica": [19.11554593164539, 28.89915862441405], + "silicon": [17.685087703606495, 23.035553663802453], + "superconductors": [227.12236352032687, 242.68831123903857], + "tauMetal": [279.9532852829188, 298.1333382967429], + "water": [31.366732759749407, 40.215625] }, "lastPriceAdjust": { "commodities": { @@ -80166,116 +76908,116 @@ "offers": { "coolant": { "active": false, - "price": 78, + "price": 103, "quantity": 0, "type": "buy" }, "drones": { - "active": true, - "price": 924, + "active": false, + "price": 1573, "quantity": 0, - "type": "sell" + "type": "buy" }, "electronics": { - "active": true, - "price": 300, + "active": false, + "price": 167, "quantity": 0, - "type": "sell" + "type": "buy" }, "engineParts": { "active": false, - "price": 196, + "price": 358, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 17, - "quantity": 60380, + "price": 18, + "quantity": 65423, "type": "sell" }, "fuel": { "active": true, - "price": 53, - "quantity": 35, + "price": 56, + "quantity": 8186, "type": "buy" }, "fuelium": { "active": false, - "price": 72, + "price": 34, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 653, - "quantity": 704, + "active": false, + "price": 782, + "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 59, + "price": 110, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 46, - "quantity": 1470, + "active": false, + "price": 79, + "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 52, + "price": 77, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 23, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 76, + "price": 85, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 39, + "price": 25, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 32, + "price": 27, "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 35, + "active": false, + "price": 19, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 562, + "price": 242, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 566, + "price": 291, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 29, - "quantity": 6349, + "price": 32, + "quantity": 13999, "type": "buy" } }, @@ -80283,152 +77025,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 55, - "target": "THT Trader Courier B", - "time": 783 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 55, - "target": "THT Trader Courier B", - "time": 909 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 55, - "target": "THT Trader Freighter A", - "time": 972 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 55, - "target": "THT Trader Courier B", - "time": 978 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "THT Trader Large Freighter B", - "time": 1019 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 6, - "price": 728, - "target": "THT Trader Courier B", - "time": 1087 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "THT Trader Large Freighter B", - "time": 1100 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "THT Trader Large Freighter B", - "time": 1137 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "THT Trader Large Freighter B", - "time": 1199 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 5, - "price": 728, - "target": "THT Trader Large Freighter B", - "time": 1204 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 160, - "price": 728, - "target": "THT Trader Freighter A", - "time": 1226 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 55, - "target": "THT Trader Freighter A", - "time": 1283 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 55, - "target": "THT Trader Freighter A", - "time": 1319 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 1, - "price": 728, - "target": "THT Trader Courier B", - "time": 1869 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 1, - "price": 926, - "target": "THT Trader Large Freighter B", - "time": 2792 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 1, - "price": 924, - "target": "THT Trader Courier B", - "time": 3266 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -80443,7 +77040,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1702, 1701, 1700, 1699, 1698], + "ids": [1798, 1797], "mask": "BigInt:4294967296" }, "crew": { @@ -80457,37 +77054,37 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 150 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3000 }, - "fuel": { "consumes": 502, "produces": 0 }, + "food": { "consumes": 0, "produces": 3750 }, + "fuel": { "consumes": 440, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 700, "produces": 0 } + "water": { "consumes": 875, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 741, + "id": 750, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80502,14 +77099,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 742, + "id": 751, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80524,14 +77121,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 743, + "id": 752, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80554,14 +77151,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 744, + "id": 753, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80576,14 +77173,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 745, + "id": 754, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80598,14 +77195,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 746, + "id": 755, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80620,14 +77217,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 747, + "id": 756, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80642,7 +77239,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.318181818181797, + "food": 0.6282051282051135, "fuel": 0, "fuelium": 0, "gold": 0, @@ -80713,112 +77310,19 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 748, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 741, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Drone Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0.5834410774410776, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0.8333333333333235, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 25, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 749, + "id": 757, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -80826,9 +77330,9 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.863636363636359, + "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.6282051282051135, "fuel": 0, "fuelium": 0, "gold": 0, @@ -80850,7 +77354,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -80863,7 +77367,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -80871,12 +77375,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -80884,29 +77388,29 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 750, + "id": 758, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -80921,7 +77425,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.318181818181797, + "food": 0.6282051282051135, "fuel": 0, "fuelium": 0, "gold": 0, @@ -80992,14 +77496,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 751, + "id": 759, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -81014,7 +77518,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.318181818181797, + "food": 0.6282051282051135, "fuel": 0, "fuelium": 0, "gold": 0, @@ -81085,14 +77589,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 752, + "id": 760, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 741, + "id": 750, "mask": "BigInt:549755813888" }, "name": { @@ -81107,7 +77611,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.318181818181797, + "food": 0.6282051282051135, "fuel": 0, "fuelium": 0, "gold": 0, @@ -81178,16 +77682,16 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 753, + "id": 761, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 70, + "allocationIdCounter": 1, "allocations": [], - "available": 2060521, - "money": 2060521, + "available": 14621739, + "money": 14621739, "name": "budget", "mask": "BigInt:16" }, @@ -81205,14 +77709,14 @@ }, "modules": { "name": "modules", - "ids": [755, 756, 757, 758, 759, 760, 761, 762, 763, 764, 765], + "ids": [763, 764, 765, 766, 767, 768, 769, 770], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-6.099989731539395, -7.1836806336175485], - "sector": 9, + "coord": [-13.507285533380466, 11.341362296938954], + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, @@ -81227,180 +77731,71 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 145, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3405, - "type": "incoming", - "meta": { "tradeId": "754:1697:sell:3405" }, - "id": 138 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "incoming", - "meta": { "tradeId": "754:1696:sell:3501" }, - "id": 139 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "outgoing", - "meta": { "tradeId": "754:1735:buy:3519" }, - "id": 141 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "754:1726:buy:3558" }, - "id": 142 - } - ], + "allocationIdCounter": 6, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, - "drones": 185, - "electronics": 5970, + "drones": 11357, + "electronics": 25541, "engineParts": 0, - "food": 26605, - "fuel": 11189, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 25275, + "hullPlates": 44014, "hydrogen": 0, "ice": 0, - "metals": 10168, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 9994 + "water": 0 }, "stored": { "coolant": 0, - "drones": 185, - "electronics": 5970, + "drones": 11357, + "electronics": 25541, "engineParts": 0, - "food": 26605, - "fuel": 11189, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 25441, + "hullPlates": 44014, "hydrogen": 0, "ice": 0, - "metals": 10168, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 9994 + "water": 0 }, "quota": { "coolant": 0, - "drones": 2197, - "electronics": 5916, + "drones": 21787, + "electronics": 58657, "engineParts": 0, - "food": 42263, - "fuel": 23273, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 74947, + "hullPlates": 100555, "hydrogen": 0, "ice": 0, - "metals": 22540, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 9861 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -81409,25 +77804,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [112.80099387578686, 124.03190972747352], - "drones": [1200, 1224], - "electronics": [339.28110353784047, 354.0267405728344], - "engineParts": [210.77258796994283, 218.85470127629765], - "food": [17, 17.910188511848304], - "fuel": [44.868960160460865, 59.77117762134882], - "fuelium": [47.92025478991796, 53.03471072846555], - "gold": [918.3862471316932, 934.4298714745388], - "goldOre": [42.23599346259992, 52.65441650198314], - "hullPlates": [46, 48], - "hydrogen": [103.97504599063029, 120.3401104368997], - "ice": [19.298356168070153, 26.8593829191379], - "metals": [68.82836782112811, 79.44147671680444], - "ore": [35.850458311052854, 52.66880757917909], - "silica": [18.955518348091363, 33.38496636106092], - "silicon": [27.355878702495623, 37.86055680147322], - "superconductors": [328.93428301099925, 343.9491190065439], - "tauMetal": [273.2704371209051, 288.20957219532113], - "water": [33.56060515481289, 41.453125] + "coolant": [55.03294574715034, 65.10179285411172], + "drones": [951, 970.02], + "electronics": [342.54742624961756, 359.8563241921238], + "engineParts": [261.880128468182, 276.30863825018037], + "food": [7.507403216216496, 13.262264941462433], + "fuel": [58.91247210760349, 74.61437225463742], + "fuelium": [48.67012090665795, 62.28376780435263], + "gold": [714.4760368798713, 728.9083877189411], + "goldOre": [75.99862516034023, 87.10384514085963], + "hullPlates": [47.486884152567754, 56.068871658861326], + "hydrogen": [80.40777398321796, 99.2997125247816], + "ice": [23.373191171460356, 28.4873314229084], + "metals": [78.4776380955296, 86.50872535597371], + "ore": [22.583417983975277, 36.6595184467646], + "silica": [32.18664397680232, 44.50240206487044], + "silicon": [30.689679633229296, 41.93603144821168], + "superconductors": [328.413298093731, 342.07403172164675], + "tauMetal": [603.8527033261787, 616.2920362833534], + "water": [39.240678866023686, 47.500547796248256] }, "lastPriceAdjust": { "commodities": { @@ -81456,38 +77851,38 @@ "offers": { "coolant": { "active": false, - "price": 115, + "price": 62, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1202, - "quantity": 185, + "price": 962, + "quantity": 11357, "type": "sell" }, "electronics": { "active": true, - "price": 340, - "quantity": 0, + "price": 348, + "quantity": 33116, "type": "buy" }, "engineParts": { "active": false, - "price": 214, + "price": 263, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 17, - "quantity": 26605, - "type": "sell" + "active": false, + "price": 12, + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 53, - "quantity": 12084, + "active": false, + "price": 71, + "quantity": 0, "type": "buy" }, "fuelium": { @@ -81498,73 +77893,73 @@ }, "gold": { "active": false, - "price": 928, + "price": 724, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 50, + "price": 77, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 47, - "quantity": 24915, - "type": "sell" + "price": 55, + "quantity": 56541, + "type": "buy" }, "hydrogen": { "active": false, - "price": 108, + "price": 85, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 20, + "price": 23, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 69, - "quantity": 12372, + "active": false, + "price": 85, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 40, + "price": 30, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 31, + "price": 39, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 27, + "price": 36, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 340, + "price": 334, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 273, + "price": 613, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 36, + "active": false, + "price": 45, "quantity": 0, "type": "buy" } @@ -81573,7 +77968,58 @@ }, "journal": { "name": "journal", - "entries": [], + "entries": [ + { + "type": "trade", + "action": "sell", + "commodity": "drones", + "quantity": 160, + "price": 638, + "target": "THT Trader Freighter A", + "targetId": 2337, + "time": 145 + }, + { + "type": "trade", + "action": "sell", + "commodity": "drones", + "quantity": 940, + "price": 638, + "target": "THT Trader Large Freighter B", + "targetId": 2339, + "time": 145 + }, + { + "type": "trade", + "action": "sell", + "commodity": "drones", + "quantity": 940, + "price": 638, + "target": "THT Trader Large Freighter B", + "targetId": 2335, + "time": 2002 + }, + { + "type": "trade", + "action": "sell", + "commodity": "drones", + "quantity": 160, + "price": 638, + "target": "THT Trader Freighter A", + "targetId": 2338, + "time": 2002 + }, + { + "type": "trade", + "action": "sell", + "commodity": "drones", + "quantity": 940, + "price": 638, + "target": "THT Trader Large Freighter B", + "targetId": 2336, + "time": 2004 + } + ], "mask": "BigInt:4194304" }, "hitpoints": { @@ -81583,12 +78029,12 @@ }, "name": { "name": "name", - "value": "ACT Sector Alpha Factory", + "value": "ACT Ross 128 II Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1697, 1696, 1695, 1694], + "ids": [1796, 1795], "mask": "BigInt:4294967296" }, "crew": { @@ -81602,37 +78048,37 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 39 }, - "electronics": { "consumes": 105, "produces": 0 }, + "drones": { "consumes": 0, "produces": 26 }, + "electronics": { "consumes": 70, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 413, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 180, "produces": 1150 }, + "hullPlates": { "consumes": 120, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 754, + "id": 762, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -81647,14 +78093,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 755, + "id": 763, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -81669,14 +78115,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 756, + "id": 764, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -81699,14 +78145,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 757, + "id": 765, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -81721,14 +78167,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 758, + "id": 766, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -81743,14 +78189,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 759, + "id": 767, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -81765,200 +78211,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 760, + "id": 768, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 754, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Drone Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0.01849462365591359, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 1.6666666666666559, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 25, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 761, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 754, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Hull Plates Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.5591397849462143, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.333333333333247, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 13.333333333333247, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 12, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 762, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -81970,7 +78230,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.01849462365591359, + "drones": 0.7524836601307192, "electronics": 0, "engineParts": 0, "food": 0, @@ -81992,7 +78252,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 1.6666666666666559, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -82044,14 +78304,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 763, + "id": 769, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 754, + "id": 762, "mask": "BigInt:549755813888" }, "name": { @@ -82063,7 +78323,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.01849462365591359, + "drones": 0.7524836601307192, "electronics": 0, "engineParts": 0, "food": 0, @@ -82085,7 +78345,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 1.6666666666666559, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -82137,122 +78397,22 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 764, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 754, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.4516129032257843, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.7333333333333636, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.33333333333337656 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 765, + "id": 770, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 91, - "allocations": [ - { - "amount": 306, - "issued": 3558, - "meta": { "tradeId": "815:1692:buy:3558" }, - "id": 90 - } - ], - "available": 1160288, - "money": 1160594, + "allocationIdCounter": 1, + "allocations": [], + "available": 12642668, + "money": 12642668, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [1693], + "docked": [], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -82264,14 +78424,14 @@ }, "modules": { "name": "modules", - "ids": [767, 768, 769, 770, 771, 772, 773, 774], + "ids": [772, 773, 774, 775, 776, 777, 778, 779], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [6.864746813370587, -19.248520980989195], - "sector": 8, + "coord": [20.502112793271152, -9.356448347855745], + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, @@ -82286,102 +78446,20 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 91, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3384, - "type": "incoming", - "meta": { "tradeId": "766:1691:sell:3384" }, - "id": 84 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "incoming", - "meta": { "tradeId": "766:1690:sell:3540" }, - "id": 89 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "766:1692:sell:3558" }, - "id": 90 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, - "drones": 1348, - "electronics": 5404, + "drones": 13774, + "electronics": 24601, "engineParts": 0, - "food": 51382, - "fuel": 7770, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 3898, + "hullPlates": 56519, "hydrogen": 0, "ice": 0, "metals": 0, @@ -82390,19 +78468,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 18833 + "water": 0 }, "stored": { "coolant": 0, - "drones": 1348, - "electronics": 5404, + "drones": 13774, + "electronics": 24601, "engineParts": 0, - "food": 51382, - "fuel": 7770, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 3898, + "hullPlates": 56519, "hydrogen": 0, "ice": 0, "metals": 0, @@ -82411,19 +78489,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 18833 + "water": 0 }, "quota": { "coolant": 0, - "drones": 2099, - "electronics": 5651, + "drones": 21787, + "electronics": 58657, "engineParts": 0, - "food": 121097, - "fuel": 14208, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 9687, + "hullPlates": 100555, "hydrogen": 0, "ice": 0, "metals": 0, @@ -82432,7 +78510,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 28256 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -82441,25 +78519,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [89.52222349811672, 107.117067278699], - "drones": [1157, 1180.14], - "electronics": [339.00275754325105, 357.574522421672], - "engineParts": [451.5249828084616, 457.07867341687586], - "food": [16.094330095283127, 19.236846547353963], - "fuel": [65.18683223711199, 75.50424755996411], - "fuelium": [47.18446702171266, 67.04087957867301], - "gold": [648.6645798775531, 662.8998841846252], - "goldOre": [42.20030172854007, 50.734061339730104], - "hullPlates": [43.16019983431039, 49.12588547029139], - "hydrogen": [56.49158798635307, 67.3158270509411], - "ice": [10.4369531991541, 26.18762421164469], - "metals": [35.19973508950881, 43.71799227174719], - "ore": [15.848067684311594, 32.76535945840873], - "silica": [41.67933653874734, 53.58663892994879], - "silicon": [27.920686793994218, 45.08077894784543], - "superconductors": [539.8853341785774, 554.6805984521602], - "tauMetal": [459.0264456632108, 477.2046524379372], - "water": [37.61006548246363, 43] + "coolant": [128.28142061169217, 140.11670800165035], + "drones": [1205, 1229.1], + "electronics": [308.2659535008283, 327.0976275795906], + "engineParts": [456.61602957011195, 474.93836600229366], + "food": [20.272335639630185, 36.79536814035055], + "fuel": [38.435697149292395, 47.93167651568133], + "fuelium": [41.90011171830841, 60.475506454639984], + "gold": [925.0144330841288, 940.8236616913734], + "goldOre": [80.60126586489335, 87.53707378510904], + "hullPlates": [35.93739434152735, 52.699028426745635], + "hydrogen": [73.66756212357218, 90.74652761563786], + "ice": [14.678536327936506, 31.218679032097697], + "metals": [64.98973211113503, 80.84417341906955], + "ore": [17.584707242046672, 25.926077854567858], + "silica": [22.75254949559138, 33.71339283122059], + "silicon": [22.300048210712937, 33.12938066179167], + "superconductors": [392.7932817413813, 411.4617287735179], + "tauMetal": [647.8492286332607, 654.1923472404757], + "water": [20.324685584009185, 31.72530840386397] }, "lastPriceAdjust": { "commodities": { @@ -82488,116 +78566,116 @@ "offers": { "coolant": { "active": false, - "price": 90, + "price": 129, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1167, - "quantity": 1348, + "price": 1226, + "quantity": 13774, "type": "sell" }, "electronics": { "active": true, - "price": 354, - "quantity": 247, + "price": 325, + "quantity": 34056, "type": "buy" }, "engineParts": { "active": false, - "price": 451, + "price": 473, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 18, - "quantity": 51382, - "type": "sell" + "active": false, + "price": 32, + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 69, - "quantity": 6438, + "active": false, + "price": 47, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 56, + "price": 44, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 653, + "price": 926, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 42, + "price": 85, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 43, - "quantity": 5789, + "price": 36, + "quantity": 44036, "type": "buy" }, "hydrogen": { "active": false, - "price": 62, + "price": 76, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 13, + "price": 19, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 42, + "price": 73, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 17, + "price": 22, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 46, + "price": 23, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 34, + "price": 26, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 549, + "price": 400, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 473, + "price": 651, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 40, - "quantity": 9423, + "active": false, + "price": 20, + "quantity": 0, "type": "buy" } }, @@ -82605,17 +78683,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 404, - "target": "THT Trader Large Freighter B", - "time": 2218 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -82625,12 +78693,12 @@ }, "name": { "name": "name", - "value": "ACT Pontus Factory", + "value": "ACT Ross 128 II Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1693, 1692, 1691, 1690], + "ids": [1794, 1793], "mask": "BigInt:4294967296" }, "crew": { @@ -82644,15 +78712,15 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 26 }, + "electronics": { "consumes": 70, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 120, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -82661,20 +78729,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 766, + "id": 771, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { @@ -82689,14 +78757,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 767, + "id": 772, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { @@ -82711,14 +78779,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 768, + "id": 773, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { @@ -82741,14 +78809,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 769, + "id": 774, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { @@ -82763,14 +78831,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 770, + "id": 775, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { @@ -82785,14 +78853,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 771, + "id": 776, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { @@ -82807,14 +78875,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 772, + "id": 777, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { @@ -82826,7 +78894,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.37845878136200783, + "drones": 0.7524836601307192, "electronics": 0, "engineParts": 0, "food": 0, @@ -82900,29 +78968,29 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 773, + "id": 778, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 766, + "id": 771, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.7524836601307192, "electronics": 0, "engineParts": 0, - "food": 0.29569892473114656, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -82941,10 +79009,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -82957,22 +79025,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -82981,59 +79049,53 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 774, + "id": 779, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 36, + "allocationIdCounter": 5, "allocations": [ { - "amount": 47748, - "issued": 3234, - "meta": { "tradeId": "775:1684:sell:3234" }, - "id": 30 - }, - { - "amount": 95496, - "issued": 3324, - "meta": { "tradeId": "775:1680:sell:3324" }, - "id": 32 + "amount": 6080, + "issued": 300, + "meta": { "tradeId": "591:1789:buy:300" }, + "id": 1 }, { - "amount": 57782, - "issued": 3411, - "meta": { "tradeId": "775:1681:sell:3411" }, - "id": 33 + "amount": 6080, + "issued": 309, + "meta": { "tradeId": "591:1792:buy:309" }, + "id": 2 }, { - "amount": 7520, - "issued": 3429, - "meta": { "tradeId": "775:1685:sell:3429" }, - "id": 34 + "amount": 6080, + "issued": 312, + "meta": { "tradeId": "591:1790:buy:312" }, + "id": 3 }, { - "amount": 42720, - "issued": 3570, - "meta": { "tradeId": "631:1689:buy:3570" }, - "id": 35 + "amount": 6080, + "issued": 312, + "meta": { "tradeId": "591:1791:buy:312" }, + "id": 4 } ], - "available": 5013964, - "money": 5265230, + "available": 3813710, + "money": 3838030, "name": "budget", "mask": "BigInt:16" }, @@ -83051,14 +79113,14 @@ }, "modules": { "name": "modules", - "ids": [776, 777, 778, 779, 780, 781, 782], + "ids": [781, 782, 783, 784, 785, 786, 787, 788, 789, 790], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-11.165084639251848, 21.640717859172923], - "sector": 7, + "coord": [-8.56026480755543, -2.6522104851226764], + "sector": 6, "moved": false, "mask": "BigInt:2199023255552" }, @@ -83073,43 +79135,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, + "allocationIdCounter": 5, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 138, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3234, - "type": "incoming", - "meta": { "tradeId": "775:1684:sell:3234" }, - "id": 31 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -83124,19 +79159,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3309, + "issued": 300, "type": "incoming", - "meta": { "tradeId": "775:1688:sell:3309" }, - "id": 32 + "meta": { "tradeId": "780:1789:sell:300" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 276, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -83151,19 +79186,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3324, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "775:1680:sell:3324" }, - "id": 33 + "meta": { "tradeId": "780:1792:sell:309" }, + "id": 2 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 167, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -83178,10 +79213,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3411, + "issued": 312, "type": "incoming", - "meta": { "tradeId": "775:1681:sell:3411" }, - "id": 34 + "meta": { "tradeId": "780:1790:sell:312" }, + "id": 3 }, { "amount": { @@ -83190,34 +79225,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3429, - "type": "incoming", - "meta": { "tradeId": "775:1685:sell:3429" }, - "id": 35 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -83232,24 +79240,24 @@ "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 312, "type": "incoming", - "meta": { "tradeId": "775:1689:sell:3570" }, - "id": 36 + "meta": { "tradeId": "780:1791:sell:312" }, + "id": 4 } ], "max": 181000, "availableWares": { "coolant": 0, - "drones": 11042, - "electronics": 49983, + "drones": 2375, + "electronics": 5938, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 70512, + "fuel": 5225, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 50049, + "hullPlates": 12038, "hydrogen": 0, "ice": 0, "metals": 0, @@ -83258,19 +79266,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 8660 }, "stored": { "coolant": 0, - "drones": 11042, - "electronics": 49983, + "drones": 2375, + "electronics": 5938, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 70512, + "fuel": 5225, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 50049, + "hullPlates": 12038, "hydrogen": 0, "ice": 0, "metals": 0, @@ -83279,19 +79287,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 8660 }, "quota": { "coolant": 0, - "drones": 21787, - "electronics": 58657, + "drones": 5279, + "electronics": 14214, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 101533, + "fuel": 11913, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 100555, + "hullPlates": 24367, "hydrogen": 0, "ice": 0, "metals": 0, @@ -83300,7 +79308,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 23691 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -83309,25 +79317,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [96.19041623075279, 107.63823460518066], - "drones": [1280, 1305.6], - "electronics": [334.5035205301923, 346.86851599143597], - "engineParts": [414.540032473276, 425.20472375259055], - "food": [21.60790214626014, 38.15787930725206], - "fuel": [40.27216441660901, 56.77426375371577], - "fuelium": [61.91139834876474, 77.02327686078812], - "gold": [825.9689419533847, 845.3244380979005], - "goldOre": [74.88220283520283, 86.30554334906606], - "hullPlates": [41.055775672492175, 52.062486772626094], - "hydrogen": [86.65119857209535, 99.1246972342449], - "ice": [12.799495657851885, 26.984214504005354], - "metals": [86.45448005689275, 96.97667320723792], - "ore": [23.072302839262854, 30.261087712511646], - "silica": [33.70806744179093, 44.28487763358706], - "silicon": [35.001686468744076, 43.010907043624584], - "superconductors": [471.5188351030577, 481.5035698371185], - "tauMetal": [657.4681113830347, 670.7834705316247], - "water": [29.55325901398306, 40.440020499070876] + "coolant": [137.27178945822737, 146.11335139407538], + "drones": [914, 932.28], + "electronics": [284.5618424178938, 302.2652929853071], + "engineParts": [352.6502063598241, 368.74120037348985], + "food": [16.3327812789818, 17.186718255754904], + "fuel": [44.09061579976841, 61.59669854648751], + "fuelium": [34.87910152575601, 48.3934619932275], + "gold": [393.0479211726435, 403.48388055460987], + "goldOre": [54.359653368620386, 70.07421553301378], + "hullPlates": [38.09169998700012, 49.52278240641102], + "hydrogen": [38.35134881020911, 44.94968700936825], + "ice": [19.890582934863687, 38.44769836590713], + "metals": [74.42255530299045, 87.57821741716462], + "ore": [41.208986981551796, 53.48873030654828], + "silica": [31.35754443702991, 37.5549513452671], + "silicon": [32.24520817736663, 50.82070233473844], + "superconductors": [206.51357521577043, 224.99380050078116], + "tauMetal": [494.84625698245026, 512.9665560978523], + "water": [31.83244755653296, 43] }, "lastPriceAdjust": { "commodities": { @@ -83356,116 +79364,116 @@ "offers": { "coolant": { "active": false, - "price": 104, + "price": 137, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1283, - "quantity": 11042, + "price": 928, + "quantity": 2375, "type": "sell" }, "electronics": { "active": true, - "price": 346, - "quantity": 8674, + "price": 287, + "quantity": 8276, "type": "buy" }, "engineParts": { "active": false, - "price": 417, + "price": 356, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 22, - "quantity": 0, - "type": "buy" + "active": true, + "price": 16, + "quantity": 70512, + "type": "sell" }, "fuel": { - "active": false, - "price": 51, - "quantity": 0, + "active": true, + "price": 47, + "quantity": 6688, "type": "buy" }, "fuelium": { "active": false, - "price": 74, + "price": 38, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 841, + "price": 396, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 82, + "price": 66, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 47, - "quantity": 50506, + "price": 44, + "quantity": 12329, "type": "buy" }, "hydrogen": { "active": false, - "price": 91, + "price": 40, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 23, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 86, + "price": 78, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 27, + "price": 47, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 42, + "price": 33, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 37, + "price": 47, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 480, + "price": 222, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 667, + "price": 495, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 39, - "quantity": 0, + "active": true, + "price": 40, + "quantity": 15031, "type": "buy" } }, @@ -83473,17 +79481,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 940, - "price": 1074, - "target": "THT Trader Large Freighter B", - "time": 2365 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -83493,12 +79491,12 @@ }, "name": { "name": "name", - "value": "ACT Arges Factory", + "value": "ACT Gaia Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1689, 1688], + "ids": [1792, 1791, 1790, 1789], "mask": "BigInt:4294967296" }, "crew": { @@ -83512,15 +79510,15 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 39 }, + "electronics": { "consumes": 105, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 180, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -83529,20 +79527,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 775, + "id": 780, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 775, + "id": 780, "mask": "BigInt:549755813888" }, "name": { @@ -83557,14 +79555,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 776, + "id": 781, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 775, + "id": 780, "mask": "BigInt:549755813888" }, "name": { @@ -83579,14 +79577,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 777, + "id": 782, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 775, + "id": 780, "mask": "BigInt:549755813888" }, "name": { @@ -83609,14 +79607,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 778, + "id": 783, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 775, + "id": 780, "mask": "BigInt:549755813888" }, "name": { @@ -83631,14 +79629,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 779, + "id": 784, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 775, + "id": 780, "mask": "BigInt:549755813888" }, "name": { @@ -83653,14 +79651,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 780, + "id": 785, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 775, + "id": 780, "mask": "BigInt:549755813888" }, "name": { @@ -83675,14 +79673,107 @@ } }, "cooldowns": { "timers": {} }, - "id": 781, + "id": 786, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 775, + "id": 780, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.1419753086419311, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 787, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 780, "mask": "BigInt:549755813888" }, "name": { @@ -83694,7 +79785,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.09888888888888925, + "drones": 0.22646090534979443, "electronics": 0, "engineParts": 0, "food": 0, @@ -83768,569 +79859,29 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 782, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "budget": { - "allocationIdCounter": 162, - "allocations": [ - { - "amount": 2916, - "issued": 3507, - "meta": { "tradeId": "783:1755:sell:3507" }, - "id": 160 - } - ], - "available": 829500, - "money": 832416, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [784, 785, 786, 787, 788, 789, 790, 791], - "mask": "BigInt:68719476736" - }, - "position": { - "name": "position", - "angle": 0, - "coord": [8.866959577337255, -3.8601774980581602], - "sector": 25, - "moved": false, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 16761677, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fFactory", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 173, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3507, - "type": "incoming", - "meta": { "tradeId": "783:1686:sell:3507" }, - "id": 168 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3507, - "type": "incoming", - "meta": { "tradeId": "783:1755:sell:3507" }, - "id": 169 - } - ], - "max": 181000, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 81980, - "fuel": 11946, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 16097 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 81980, - "fuel": 11946, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 16097 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 134007, - "fuel": 15723, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 31268 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [113.10075162590137, 124.37766715260292], - "drones": [1519.1835761009474, 1531.5212345961268], - "electronics": [199.21581942152073, 215.06945924658513], - "engineParts": [350.47638171355857, 370.0458341652581], - "food": [15, 17], - "fuel": [44.43859176575292, 55.6889408007182], - "fuelium": [57.50434564998538, 66.07675227324869], - "gold": [497.3462710560344, 512.7055608234805], - "goldOre": [84.38534685892438, 90.62458320880233], - "hullPlates": [66.08929331673855, 81.43572027377131], - "hydrogen": [48.56830436749265, 63.497386106453256], - "ice": [20.196536149402224, 38.952076256586395], - "metals": [78.91685395150017, 94.9479902597679], - "ore": [23.765881307775338, 34.563636499488645], - "silica": [44.954472334654085, 55.742716239104745], - "silicon": [28.127251900788778, 47.076825927862544], - "superconductors": [491.71450481855544, 506.81514007471924], - "tauMetal": [566.1863515162179, 571.2433731324737], - "water": [31.71310954802237, 43] - }, - "lastPriceAdjust": { - "commodities": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 116, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": false, - "price": 1519, - "quantity": 0, - "type": "buy" - }, - "electronics": { - "active": false, - "price": 212, - "quantity": 0, - "type": "buy" - }, - "engineParts": { - "active": false, - "price": 352, - "quantity": 0, - "type": "buy" - }, - "food": { - "active": true, - "price": 16, - "quantity": 81980, - "type": "sell" - }, - "fuel": { - "active": true, - "price": 54, - "quantity": 3777, - "type": "buy" - }, - "fuelium": { - "active": false, - "price": 60, - "quantity": 0, - "type": "buy" - }, - "gold": { - "active": false, - "price": 508, - "quantity": 0, - "type": "buy" - }, - "goldOre": { - "active": false, - "price": 90, - "quantity": 0, - "type": "buy" - }, - "hullPlates": { - "active": false, - "price": 78, - "quantity": 0, - "type": "buy" - }, - "hydrogen": { - "active": false, - "price": 60, - "quantity": 0, - "type": "buy" - }, - "ice": { - "active": false, - "price": 36, - "quantity": 0, - "type": "buy" - }, - "metals": { - "active": false, - "price": 85, - "quantity": 0, - "type": "buy" - }, - "ore": { - "active": false, - "price": 30, - "quantity": 0, - "type": "buy" - }, - "silica": { - "active": false, - "price": 47, - "quantity": 0, - "type": "buy" - }, - "silicon": { - "active": false, - "price": 31, - "quantity": 0, - "type": "buy" - }, - "superconductors": { - "active": false, - "price": 494, - "quantity": 0, - "type": "buy" - }, - "tauMetal": { - "active": false, - "price": 569, - "quantity": 0, - "type": "buy" - }, - "water": { - "active": true, - "price": 42, - "quantity": 15171, - "type": "buy" - } - }, - "mask": "BigInt:34359738368" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 100000, "regen": 0, "value": 100000 }, - "mask": "BigInt:1048576" - }, - "name": { - "name": "name", - "value": "ACT Ross 128 I Factory", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [1687, 1686], - "mask": "BigInt:4294967296" - }, - "crew": { - "name": "crew", - "workers": { "current": 11.5, "max": 14 }, - "mood": 50, - "mask": "BigInt:140737488355328" - }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "compoundProduction": { - "name": "compoundProduction", - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 1500 }, - "fuel": { "consumes": 176, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 350, "produces": 0 } - }, - "mask": "BigInt:1024" - } - }, - "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 783, - "tags": ["selection", "facility"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 783, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 784, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 783, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Storage", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 1000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 785, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 783, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 786, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 783, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 787, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 783, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, "id": 788, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 783, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 789, - "tags": ["facilityModule", "facilityModuleType:storage"] + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 783, + "id": 780, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.22646090534979443, "electronics": 0, "engineParts": 0, - "food": 0.7121212121211471, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -84349,10 +79900,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -84365,22 +79916,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -84389,41 +79940,41 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 790, + "id": 789, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 783, + "id": 780, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.22646090534979443, "electronics": 0, "engineParts": 0, - "food": 0.7121212121211471, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -84442,10 +79993,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -84458,22 +80009,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -84482,28 +80033,35 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 791, + "id": 790, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 66, - "allocations": [], - "available": 317684, - "money": 317684, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 297980, + "issued": 3591, + "meta": { "tradeId": "726:1788:buy:3591" }, + "id": 1 + } + ], + "available": 2213412, + "money": 2511392, "name": "budget", "mask": "BigInt:16" }, @@ -84521,14 +80079,14 @@ }, "modules": { "name": "modules", - "ids": [793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803, 804], + "ids": [792, 793, 794, 795, 796, 797, 798, 799, 800, 801, 802, 803], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-19.210632091114853, 21.394749278246543], - "sector": 9, + "coord": [-11.212854693509316, -8.863155416845387], + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" }, @@ -84543,100 +80101,19 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 227, + "allocationIdCounter": 2, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "outgoing", - "meta": { "tradeId": "792:1713:buy:3483" }, - "id": 221 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 940, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3504, - "type": "outgoing", - "meta": { "tradeId": "792:1682:buy:3504" }, - "id": 222 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, + "electronics": 940, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3525, - "type": "outgoing", - "meta": { "tradeId": "792:1712:buy:3525" }, - "id": 224 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -84649,74 +80126,74 @@ "water": 0 }, "issued": 3591, - "type": "outgoing", - "meta": { "tradeId": "792:1745:buy:3591" }, - "id": 226 + "type": "incoming", + "meta": { "tradeId": "791:1788:sell:3591" }, + "id": 1 } ], "max": 181000, "availableWares": { "coolant": 0, - "drones": 1, - "electronics": 66, + "drones": 970, + "electronics": 1734, "engineParts": 0, - "food": 30995, - "fuel": 16760, + "food": 36398, + "fuel": 9503, "fuelium": 0, - "gold": 1688, + "gold": 0, "goldOre": 0, - "hullPlates": 13871, + "hullPlates": 33190, "hydrogen": 0, "ice": 0, - "metals": 13171, + "metals": 7741, "ore": 0, "silica": 0, - "silicon": 13967, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14781 + "water": 6874 }, "stored": { "coolant": 0, - "drones": 1, - "electronics": 66, + "drones": 970, + "electronics": 1734, "engineParts": 0, - "food": 31155, - "fuel": 16760, + "food": 36398, + "fuel": 9503, "fuelium": 0, - "gold": 1688, + "gold": 0, "goldOre": 0, - "hullPlates": 15131, + "hullPlates": 33190, "hydrogen": 0, "ice": 0, - "metals": 13171, + "metals": 7741, "ore": 0, "silica": 0, - "silicon": 13967, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14781 + "water": 6874 }, "quota": { "coolant": 0, - "drones": 405, - "electronics": 5771, + "drones": 1670, + "electronics": 4498, "engineParts": 0, - "food": 70191, - "fuel": 23053, + "food": 64260, + "fuel": 21462, "fuelium": 0, - "gold": 935, + "gold": 0, "goldOre": 0, - "hullPlates": 37747, + "hullPlates": 56977, "hydrogen": 0, "ice": 0, - "metals": 12478, + "metals": 17136, "ore": 0, "silica": 0, - "silicon": 14038, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 16377 + "water": 14994 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -84725,25 +80202,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [107.49333088283865, 115.31259172063162], - "drones": [1150.465152012763, 1155.8760255502316], - "electronics": [351.36892657693994, 357.8923062116435], - "engineParts": [384.2150223234337, 390.2142021829955], - "food": [15, 16.59160523650873], - "fuel": [51.026426056188825, 64.68851443988017], - "fuelium": [28.208361529597447, 40.57249600772094], - "gold": [690.4083835741712, 702.3943485164671], - "goldOre": [84.57688915630828, 95.52147041774936], - "hullPlates": [40, 40.816180829243166], - "hydrogen": [66.60911685123534, 85.64722268636768], - "ice": [15.249544883454261, 26.49494453573752], - "metals": [72.49498467951017, 82.8889395034722], - "ore": [31.305527313841882, 39.56865272473902], - "silica": [30.663197071813542, 46.849919675514286], - "silicon": [28.518799636240004, 36], - "superconductors": [371.47063712969907, 387.7725589974107], - "tauMetal": [393.52408042886725, 401.2158550587916], - "water": [34.50452159050594, 43] + "coolant": [78.97547641477527, 90.57354842161604], + "drones": [1122, 1144.44], + "electronics": [312.4195199511805, 325.2846102091653], + "engineParts": [264.4579553683667, 281.54946481526196], + "food": [13, 18.650867744118692], + "fuel": [47.606795207969014, 52.61237923508737], + "fuelium": [32.212688724864556, 49.184739092784426], + "gold": [927.5331306609582, 939.7972185008337], + "goldOre": [80.62152145014045, 97.49130867600661], + "hullPlates": [49, 51], + "hydrogen": [85.64064860684724, 100.75373740630887], + "ice": [18.808727824655328, 34.56028720257698], + "metals": [85.425, 87.425], + "ore": [23.888570684626757, 38.72040391785909], + "silica": [44.08185221810983, 63.916057846897225], + "silicon": [13.27002892252587, 31.19097893794072], + "superconductors": [247.98733044517732, 255.26887280986418], + "tauMetal": [285.3324476776182, 305.01550618254987], + "water": [35.24331827528142, 40.6495274194031] }, "lastPriceAdjust": { "commodities": { @@ -84772,67 +80249,67 @@ "offers": { "coolant": { "active": false, - "price": 108, + "price": 82, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1151, - "quantity": 1, + "price": 1122, + "quantity": 970, "type": "sell" }, "electronics": { "active": true, - "price": 352, - "quantity": 0, - "type": "sell" + "price": 321, + "quantity": 2764, + "type": "buy" }, "engineParts": { "active": false, - "price": 387, + "price": 266, "quantity": 0, "type": "buy" }, "food": { "active": true, "price": 15, - "quantity": 30995, + "quantity": 36398, "type": "sell" }, "fuel": { "active": true, - "price": 56, - "quantity": 6293, + "price": 48, + "quantity": 11959, "type": "buy" }, "fuelium": { "active": false, - "price": 29, + "price": 44, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 692, + "active": false, + "price": 938, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 92, + "price": 83, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 40, - "quantity": 13751, + "price": 49, + "quantity": 32830, "type": "sell" }, "hydrogen": { "active": false, - "price": 66, + "price": 96, "quantity": 0, "type": "buy" }, @@ -84844,44 +80321,44 @@ }, "metals": { "active": true, - "price": 74, - "quantity": 0, + "price": 86, + "quantity": 9395, "type": "buy" }, "ore": { "active": false, - "price": 34, + "price": 30, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 41, + "price": 61, "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 31, - "quantity": 71, + "active": false, + "price": 30, + "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 382, + "price": 252, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 397, + "price": 291, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 34, - "quantity": 1596, + "price": 35, + "quantity": 8120, "type": "buy" } }, @@ -84899,12 +80376,12 @@ }, "name": { "name": "name", - "value": "ACT Sector Alpha Factory", + "value": "ACT Ross 128 I Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1685, 1684, 1683, 1682, 1681, 1680], + "ids": [1788, 1787, 1786, 1785], "mask": "BigInt:4294967296" }, "crew": { @@ -84918,37 +80395,37 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 150 }, + "drones": { "consumes": 0, "produces": 39 }, + "electronics": { "consumes": 105, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 2250 }, - "fuel": { "consumes": 739, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 501, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 1150 }, + "hullPlates": { "consumes": 180, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 525, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 792, + "id": 791, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -84963,14 +80440,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 793, + "id": 792, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -84985,14 +80462,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 794, + "id": 793, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -85015,14 +80492,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 795, + "id": 794, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -85037,14 +80514,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 796, + "id": 795, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -85059,14 +80536,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 797, + "id": 796, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -85081,19 +80558,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 798, + "id": 797, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -85103,12 +80580,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.7380952380952222, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.48934550989339165, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -85125,20 +80602,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.833333333333245, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1.333333333333245, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.33333333333337656 } }, "name": "production", @@ -85148,45 +80625,45 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 799, + "id": 798, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -85196,12 +80673,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.5365296803652466, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.1984126984126764, "hydrogen": 0, "ice": 0, "metals": 0, @@ -85218,20 +80695,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 2.333333333333247, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 13.333333333333247, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -85241,40 +80718,40 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 800, + "id": 799, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -85286,7 +80763,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.2559665144596646, + "drones": 0.6074603174603174, "electronics": 0, "engineParts": 0, "food": 0, @@ -85308,7 +80785,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0.16666666666665564, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, "fuel": 0, @@ -85360,27 +80837,27 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 801, + "id": 800, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, - "electronics": 0.10730593607305083, + "drones": 0.6074603174603174, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -85401,7 +80878,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, "fuel": 0, @@ -85424,21 +80901,21 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -85448,19 +80925,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 802, + "id": 801, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { @@ -85475,7 +80952,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.5365296803652466, + "food": 0.7380952380952222, "fuel": 0, "fuelium": 0, "gold": 0, @@ -85497,7 +80974,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -85510,7 +80987,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0.33333333333337656 } }, "name": "production", @@ -85546,29 +81023,29 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 803, + "id": 802, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 792, + "id": 791, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.6074603174603174, "electronics": 0, "engineParts": 0, - "food": 0.5365296803652466, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -85587,10 +81064,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 1.6666666666666559, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -85603,22 +81080,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -85627,35 +81104,41 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 804, + "id": 803, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 47, + "allocationIdCounter": 3, "allocations": [ { - "amount": 3348, - "issued": 3579, - "meta": { "tradeId": "505:1679:buy:3579" }, - "id": 46 + "amount": 56160, + "issued": 870, + "meta": { "tradeId": "684:1783:buy:870" }, + "id": 1 + }, + { + "amount": 1974, + "issued": 2859, + "meta": { "tradeId": "684:1784:buy:2859" }, + "id": 2 } ], - "available": 949812, - "money": 953160, + "available": 3804946, + "money": 3863080, "name": "budget", "mask": "BigInt:16" }, @@ -85673,14 +81156,14 @@ }, "modules": { "name": "modules", - "ids": [806, 807, 808, 809, 810, 811, 812, 813, 814], + "ids": [805, 806, 807, 808, 809, 810, 811, 812, 813], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [2.648969330083599, -6.314783008127652], - "sector": 8, + "coord": [-2.0787622717162932, -12.161484637137956], + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, @@ -85695,42 +81178,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 51, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, - "fuel": 940, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3045, - "type": "incoming", - "meta": { "tradeId": "805:1678:sell:3045" }, - "id": 40 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, "fuel": 0, "fuelium": 0, "gold": 0, @@ -85746,46 +81202,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3447, - "type": "outgoing", - "meta": { "tradeId": "805:1677:buy:3447" }, - "id": 47 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6 - }, - "issued": 3564, + "issued": 870, "type": "incoming", - "meta": { "tradeId": "805:1676:sell:3564" }, - "id": 49 + "meta": { "tradeId": "804:1783:sell:870" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 6, "engineParts": 0, "food": 0, - "fuel": 54, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -85800,75 +81229,75 @@ "tauMetal": 0, "water": 0 }, - "issued": 3579, + "issued": 2859, "type": "incoming", - "meta": { "tradeId": "805:1679:sell:3579" }, - "id": 50 + "meta": { "tradeId": "804:1784:sell:2859" }, + "id": 2 } ], "max": 181000, "availableWares": { "coolant": 0, - "drones": 22, - "electronics": 3950, + "drones": 1350, + "electronics": 2960, "engineParts": 0, - "food": 60176, - "fuel": 9855, + "food": 0, + "fuel": 16563, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6059, + "hullPlates": 66085, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 12280, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 17902 + "water": 0 }, "stored": { "coolant": 0, - "drones": 22, - "electronics": 3950, + "drones": 1350, + "electronics": 2960, "engineParts": 0, - "food": 61116, - "fuel": 9855, + "food": 0, + "fuel": 16563, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6059, + "hullPlates": 66085, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 12280, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 17902 + "water": 0 }, "quota": { "coolant": 0, - "drones": 1102, - "electronics": 2968, + "drones": 2250, + "electronics": 6059, "engineParts": 0, - "food": 127225, - "fuel": 14927, + "food": 0, + "fuel": 28132, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 5089, + "hullPlates": 109933, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 34624, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 29686 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -85877,25 +81306,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [94.63776941275188, 111.53914125655692], - "drones": [1246, 1270.92], - "electronics": [333.7376101881663, 353.5082268898084], - "engineParts": [226.22606512915428, 245.04505931745868], - "food": [12.62906054939485, 19.1717932408208], - "fuel": [52.126620233117066, 66.8318760355999], - "fuelium": [42.61327345763641, 55.12514054795065], - "gold": [724.4318939970115, 734.7364423914531], - "goldOre": [51.89795955500022, 64.14531896814549], - "hullPlates": [39.43559335321756, 47.40848880165993], - "hydrogen": [65.10223792722599, 82.09720915312734], - "ice": [11.907094944976832, 25.523260164983444], - "metals": [55.051670729317266, 65.58671369666698], - "ore": [19.802166817525908, 37.9428238399892], - "silica": [49.18978780146131, 69.00934428735167], - "silicon": [33.83045842332716, 51.20270288944583], - "superconductors": [556.4154764724998, 575.461899638474], - "tauMetal": [557.9492792147936, 572.4688153421806], - "water": [25.755896556252154, 43] + "coolant": [139.6146999573542, 148.08411426419514], + "drones": [1181.512996658806, 1198.5928514965321], + "electronics": [338.7924056190446, 351.73500963394616], + "engineParts": [279.4164968898894, 284.8217867449617], + "food": [15.753722037777537, 31.788974978804326], + "fuel": [53.64778912779876, 58.94399078461444], + "fuelium": [71.54291405066891, 79.23234092695434], + "gold": [376.20168569909333, 382.91491504168624], + "goldOre": [38.582435912303026, 55.69902173600864], + "hullPlates": [43, 47.8036677886472], + "hydrogen": [37.505374286802116, 49.25981553121553], + "ice": [21.25468727546392, 29.13249662649642], + "metals": [94.36421615372919, 100], + "ore": [23.18223657501136, 37.85779661076242], + "silica": [28.793912129300647, 42.07883690301156], + "silicon": [32.50702607680812, 37.67484847008893], + "superconductors": [363.3305491506998, 380.6105750308177], + "tauMetal": [645.8151057455132, 654.81837276147], + "water": [14.934524417397764, 33.10677747753746] }, "lastPriceAdjust": { "commodities": { @@ -85924,80 +81353,80 @@ "offers": { "coolant": { "active": false, - "price": 95, + "price": 145, "quantity": 0, "type": "buy" }, "drones": { "active": true, - "price": 1257, - "quantity": 22, + "price": 1192, + "quantity": 1350, "type": "sell" }, "electronics": { "active": true, - "price": 347, - "quantity": 0, + "price": 344, + "quantity": 3099, "type": "buy" }, "engineParts": { "active": false, - "price": 235, + "price": 282, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 14, - "quantity": 60176, - "type": "sell" + "active": false, + "price": 29, + "quantity": 0, + "type": "buy" }, "fuel": { "active": true, - "price": 64, - "quantity": 5072, + "price": 56, + "quantity": 11569, "type": "buy" }, "fuelium": { "active": false, - "price": 45, + "price": 72, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 727, + "price": 379, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 64, + "price": 51, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 46, - "quantity": 0, - "type": "buy" + "price": 47, + "quantity": 65845, + "type": "sell" }, "hydrogen": { "active": false, - "price": 77, + "price": 38, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 22, + "price": 25, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 59, - "quantity": 0, + "active": true, + "price": 95, + "quantity": 22344, "type": "buy" }, "ore": { @@ -86008,32 +81437,32 @@ }, "silica": { "active": false, - "price": 52, + "price": 36, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 37, + "price": 34, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 570, + "price": 377, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 569, + "price": 649, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 36, - "quantity": 11784, + "active": false, + "price": 20, + "quantity": 0, "type": "buy" } }, @@ -86051,12 +81480,12 @@ }, "name": { "name": "name", - "value": "ACT Pontus Factory", + "value": "ACT Arges Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1679, 1678, 1677, 1676], + "ids": [1784, 1783, 1782], "mask": "BigInt:4294967296" }, "crew": { @@ -86070,37 +81499,37 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 26 }, + "electronics": { "consumes": 70, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 1500 }, - "fuel": { "consumes": 176, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 120, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 350, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 805, + "id": 804, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { @@ -86115,14 +81544,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 806, + "id": 805, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { @@ -86137,14 +81566,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 807, + "id": 806, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { @@ -86167,14 +81596,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 808, + "id": 807, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { @@ -86189,14 +81618,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 809, + "id": 808, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { @@ -86211,14 +81640,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 810, + "id": 809, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { @@ -86233,29 +81662,29 @@ } }, "cooldowns": { "timers": {} }, - "id": 811, + "id": 810, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.9105291005290995, "electronics": 0, "engineParts": 0, - "food": 0.611111111111108, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -86274,10 +81703,10 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -86290,22 +81719,22 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -86314,26 +81743,26 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 812, + "id": 811, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { @@ -86345,7 +81774,7 @@ "buffer": { "production": { "coolant": 0, - "drones": 0.96925925925926, + "drones": 0.9105291005290995, "electronics": 0, "engineParts": 0, "food": 0, @@ -86419,19 +81848,19 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 813, + "id": 812, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 805, + "id": 804, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -86441,12 +81870,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.611111111111108, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.8544973544973038, "hydrogen": 0, "ice": 0, "metals": 0, @@ -86463,20 +81892,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -86486,49 +81915,42 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 814, + "id": 813, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 103, - "allocations": [ - { - "amount": 1480, - "issued": 3579, - "meta": { "tradeId": "529:1674:buy:3579" }, - "id": 102 - } - ], - "available": 3151176, - "money": 3152656, + "allocationIdCounter": 1, + "allocations": [], + "available": 2499186, + "money": 2499186, "name": "budget", "mask": "BigInt:16" }, @@ -86546,14 +81968,14 @@ }, "modules": { "name": "modules", - "ids": [816, 817, 818, 819, 820, 821, 822, 823, 824], + "ids": [815, 816, 817, 818, 819, 820, 821, 822, 823, 824, 825, 826], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [0.03565318125632899, -5.3948329100925925], - "sector": 7, + "coord": [-23.768933603396267, 14.46252740028828], + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" }, @@ -86568,207 +81990,71 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 194, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3468, - "type": "outgoing", - "meta": { "tradeId": "815:2227:buy:3468" }, - "id": 182 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "incoming", - "meta": { "tradeId": "815:1673:sell:3540" }, - "id": 189 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "815:1692:buy:3558" }, - "id": 191 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 24, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3564, - "type": "incoming", - "meta": { "tradeId": "815:1672:sell:3564" }, - "id": 192 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "incoming", - "meta": { "tradeId": "815:1674:sell:3579" }, - "id": 193 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, - "drones": 9, - "electronics": 2390, + "drones": 0, + "electronics": 4507, "engineParts": 0, - "food": 369, - "fuel": 1971, + "food": 54931, + "fuel": 11044, "fuelium": 0, - "gold": 0, + "gold": 555, "goldOre": 0, - "hullPlates": 128, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1480, + "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 7403, "superconductors": 0, "tauMetal": 0, - "water": 1961 + "water": 10390 }, "stored": { "coolant": 0, - "drones": 9, - "electronics": 2390, + "drones": 0, + "electronics": 4507, "engineParts": 0, - "food": 369, - "fuel": 1971, + "food": 54931, + "fuel": 11044, "fuelium": 0, - "gold": 0, + "gold": 555, "goldOre": 0, - "hullPlates": 135, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1480, + "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 7403, "superconductors": 0, "tauMetal": 0, - "water": 1961 + "water": 10390 }, "quota": { "coolant": 0, - "drones": 785, - "electronics": 2114, + "drones": 0, + "electronics": 9675, "engineParts": 0, - "food": 45310, - "fuel": 24950, + "food": 96756, + "fuel": 21028, "fuelium": 0, - "gold": 0, + "gold": 1935, "goldOre": 0, - "hullPlates": 73100, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 24165, + "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 29027, "superconductors": 0, "tauMetal": 0, - "water": 10572 + "water": 22576 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -86777,25 +82063,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [66.06398416793436, 73.98891968966284], - "drones": [1334.7071083722126, 1361.4471083722126], - "electronics": [338.9318594974927, 344.6531574024998], - "engineParts": [184.61702536009884, 190.7819823592013], - "food": [16.966371918582794, 21.966371918582794], - "fuel": [41.274556285821234, 57.24251168149596], - "fuelium": [46.604514458973256, 54.04931869720964], - "gold": [914.1401396203156, 919.6257687779803], - "goldOre": [60.909758191906576, 80.329710790799], - "hullPlates": [50.90642815270731, 57.13258050090591], - "hydrogen": [46.59775608563837, 62.27168015343221], - "ice": [17.789913719196274, 32.38213270381442], - "metals": [69.12972005466207, 77.1593628245214], - "ore": [38.340321507891645, 47.38631452914303], - "silica": [23.11670066345141, 34.7505837925449], - "silicon": [21.553454264893368, 29.04495347099454], - "superconductors": [281.6317350100687, 296.5866518376735], - "tauMetal": [442.2358619310783, 455.95796828883135], - "water": [41.307649569556986, 43] + "coolant": [65.47961750801886, 72.16727153381117], + "drones": [1586.0370194475943, 1594.5247144797122], + "electronics": [280.4047297157623, 286.4847297157623], + "engineParts": [462.61657761350875, 472.01992983463845], + "food": [17, 18.7925453931606], + "fuel": [45.85750498226113, 56.407445499971985], + "fuelium": [50.32973592432181, 70.02792607602618], + "gold": [655.5805863519176, 665.0970129210732], + "goldOre": [78.41712557455196, 92.37001200485808], + "hullPlates": [43.14069827204528, 54.372136336890556], + "hydrogen": [65.35276385318879, 74.23892560415328], + "ice": [14.99178135706385, 21.05507617580604], + "metals": [94.76011455047785, 105.34529595652289], + "ore": [39.31647411071386, 52.64475723921447], + "silica": [46.58238626859458, 58.3059175392134], + "silicon": [23.907428466624168, 36], + "superconductors": [375.9328877931022, 382.7493335230998], + "tauMetal": [467.7438271905685, 483.80414528057264], + "water": [26.542279897952266, 40.8] }, "lastPriceAdjust": { "commodities": { @@ -86824,116 +82110,116 @@ "offers": { "coolant": { "active": false, - "price": 67, + "price": 71, "quantity": 0, "type": "buy" }, "drones": { - "active": true, - "price": 1343, - "quantity": 9, - "type": "sell" + "active": false, + "price": 1592, + "quantity": 0, + "type": "buy" }, "electronics": { "active": true, - "price": 341, - "quantity": 0, - "type": "buy" + "price": 283, + "quantity": 4507, + "type": "sell" }, "engineParts": { "active": false, - "price": 187, + "price": 468, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 21, - "quantity": 369, + "price": 18, + "quantity": 54931, "type": "sell" }, "fuel": { "active": true, - "price": 52, - "quantity": 22979, + "price": 48, + "quantity": 9984, "type": "buy" }, "fuelium": { "active": false, - "price": 49, + "price": 53, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 917, - "quantity": 0, + "active": true, + "price": 660, + "quantity": 1380, "type": "buy" }, "goldOre": { "active": false, - "price": 76, + "price": 82, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 51, - "quantity": 8, - "type": "sell" + "active": false, + "price": 54, + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 54, + "price": 71, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 18, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 71, - "quantity": 22685, + "active": false, + "price": 103, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 40, + "price": 50, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 27, + "price": 58, "quantity": 0, "type": "buy" }, "silicon": { - "active": false, - "price": 26, - "quantity": 0, + "active": true, + "price": 35, + "quantity": 21624, "type": "buy" }, "superconductors": { "active": false, - "price": 293, + "price": 379, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 445, + "price": 477, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 41, - "quantity": 8611, + "price": 33, + "quantity": 12186, "type": "buy" } }, @@ -86941,80 +82227,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 433, - "target": "THT Trader Courier B", - "time": 443 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 433, - "target": "THT Trader Courier B", - "time": 561 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 433, - "target": "THT Trader Freighter A", - "time": 618 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 433, - "target": "THT Trader Large Freighter B", - "time": 817 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 433, - "target": "THT Trader Courier B", - "time": 863 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 433, - "target": "THT Trader Freighter A", - "time": 869 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 433, - "target": "THT Trader Freighter A", - "time": 1117 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 6, - "price": 51, - "target": "THT Trader Courier B", - "time": 2871 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -87024,12 +82237,12 @@ }, "name": { "name": "name", - "value": "ACT Arges Factory", + "value": "ACT Sector Alpha Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1675, 1674, 1673, 1672], + "ids": [1781, 1780, 1779, 1778], "mask": "BigInt:4294967296" }, "crew": { @@ -87043,37 +82256,37 @@ "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 300 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 413, "produces": 0 }, + "food": { "consumes": 0, "produces": 3000 }, + "fuel": { "consumes": 652, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 60, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 900, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 700, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 815, + "id": 814, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { @@ -87088,14 +82301,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 816, + "id": 815, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { @@ -87110,14 +82323,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 817, + "id": 816, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { @@ -87140,14 +82353,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 818, + "id": 817, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { @@ -87162,14 +82375,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 819, + "id": 818, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { @@ -87184,14 +82397,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 820, + "id": 819, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { @@ -87206,14 +82419,107 @@ } }, "cooldowns": { "timers": {} }, - "id": 821, + "id": 820, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Electronics Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0.7677595628415229, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 20, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 821, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 814, "mask": "BigInt:549755813888" }, "name": { @@ -87228,7 +82534,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.25710594315244695, + "food": 0.8387978142076284, "fuel": 0, "fuelium": 0, "gold": 0, @@ -87250,7 +82556,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1.2666666666666893, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -87263,7 +82569,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.16666666666669894 + "water": 0.8333333333333774 } }, "name": "production", @@ -87306,12 +82612,12 @@ "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -87321,12 +82627,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.8387978142076284, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.6040482342808122, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -87343,20 +82649,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 8.166666666666599, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 6.666666666666599, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -87366,28 +82672,28 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 5, "mask": "BigInt:281474976710656" } }, @@ -87399,22 +82705,115 @@ "components": { "parent": { "name": "parent", - "id": 815, + "id": 814, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Drone Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0.5703066322136084, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.8387978142076284, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 824, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 814, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Electronics Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0.7677595628415229, + "engineParts": 0, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -87433,7 +82832,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 1.8333333333333248, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -87456,15 +82855,108 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 13 }, - "electronics": { "consumes": 35, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 20, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 825, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 814, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.8387978142076284, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 60, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -87473,28 +82965,28 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 25, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 824, + "id": 826, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 34, + "allocationIdCounter": 1, "allocations": [], - "available": 351465, - "money": 351465, + "available": 11473784, + "money": 11473784, "name": "budget", "mask": "BigInt:16" }, @@ -87512,19 +83004,19 @@ }, "modules": { "name": "modules", - "ids": [826, 827, 828, 829, 830, 831, 832, 833, 834, 835, 836], + "ids": [828, 829, 830, 831, 832, 833, 834], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-1.1432377038783486, 24.351414855794342], - "sector": 19, + "coord": [12.800857016127296, 3.104798011513271], + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 9778411, + "color": 16761677, "defaultScale": 1, "name": "render", "layer": "facility", @@ -87534,77 +83026,22 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 48, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 190, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3378, - "type": "incoming", - "meta": { "tradeId": "825:1899:sell:3378" }, - "id": 45 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3456, - "type": "incoming", - "meta": { "tradeId": "825:1898:sell:3456" }, - "id": 46 - } - ], - "max": 61000, + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, "availableWares": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 10819, + "electronics": 26501, "engineParts": 0, - "food": 5, - "fuel": 2471, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 44300, "hydrogen": 0, - "ice": 580, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -87615,17 +83052,17 @@ }, "stored": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 10819, + "electronics": 26501, "engineParts": 0, - "food": 5, - "fuel": 2471, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 44300, "hydrogen": 0, - "ice": 580, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -87636,24 +83073,24 @@ }, "quota": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 21787, + "electronics": 58657, "engineParts": 0, - "food": 31926, - "fuel": 3745, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 100555, "hydrogen": 0, - "ice": 10216, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 15111 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -87662,25 +83099,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [144.18777359946404, 160.22650700499835], - "drones": [1106.1420597409751, 1124.8046438535719], - "electronics": [331.47548871841803, 343.41746294305227], - "engineParts": [443.3489822982311, 462.31792032146234], - "food": [20.036633169147393, 22], - "fuel": [62.42436258014791, 74.74217376514272], - "fuelium": [37.766391477526945, 56.127522603157], - "gold": [944.0750868031823, 954.6169398182243], - "goldOre": [90.17310914798657, 97.32687535859296], - "hullPlates": [29.182137132352768, 38.46628522535822], - "hydrogen": [100.54420911587846, 111.95188688512675], - "ice": [27, 29], - "metals": [88.95059930773283, 104.47901186333529], - "ore": [32.51548584046168, 40.558705782555435], - "silica": [22.462449807614888, 31.632939402148054], - "silicon": [14.783456023141309, 32.241103251900896], - "superconductors": [538.7240904608308, 557.6718200204458], - "tauMetal": [439.11020316301347, 447.9179076321624], - "water": [36, 37.99907691540054] + "coolant": [110.68350936562487, 117.79842568423153], + "drones": [838, 854.76], + "electronics": [262.90562936079965, 271.12460879303694], + "engineParts": [190.23480382540913, 208.04915653121432], + "food": [15.202306919677802, 25.654608929421627], + "fuel": [44.23975891738641, 63.72013190559818], + "fuelium": [49.987200228698306, 57.76317229793503], + "gold": [461.49278081193825, 473.0534004186626], + "goldOre": [69.26986841019502, 79.95514550232538], + "hullPlates": [46.86445055727628, 53.15594202374765], + "hydrogen": [57.3848686726093, 69.0613662577545], + "ice": [16.70326119418934, 29.14666383424362], + "metals": [44.13958977834491, 64.10942557661193], + "ore": [27.027417816882352, 38.356957214381964], + "silica": [26.98071477779353, 42.923287535380595], + "silicon": [18.629600093362413, 35.1353081846671], + "superconductors": [254.14974483430154, 261.2093766896752], + "tauMetal": [398.85742268260435, 405.24541159451474], + "water": [24.792215029188498, 34.8386812518208] }, "lastPriceAdjust": { "commodities": { @@ -87709,91 +83146,91 @@ "offers": { "coolant": { "active": false, - "price": 158, + "price": 113, "quantity": 0, "type": "buy" }, "drones": { - "active": false, - "price": 1121, - "quantity": 0, - "type": "buy" + "active": true, + "price": 842, + "quantity": 10819, + "type": "sell" }, "electronics": { - "active": false, - "price": 332, - "quantity": 0, + "active": true, + "price": 266, + "quantity": 32156, "type": "buy" }, "engineParts": { "active": false, - "price": 457, + "price": 206, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 20, - "quantity": 5, - "type": "sell" + "active": false, + "price": 23, + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 69, - "quantity": 1274, + "active": false, + "price": 59, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 43, + "price": 53, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 949, + "price": 461, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 97, + "price": 75, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 35, - "quantity": 0, + "active": true, + "price": 52, + "quantity": 56255, "type": "buy" }, "hydrogen": { "active": false, - "price": 102, + "price": 67, "quantity": 0, "type": "buy" }, "ice": { - "active": true, - "price": 27, - "quantity": 9636, + "active": false, + "price": 16, + "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 92, + "price": 49, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 35, + "price": 28, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 29, + "price": 40, "quantity": 0, "type": "buy" }, @@ -87805,21 +83242,21 @@ }, "superconductors": { "active": false, - "price": 550, + "price": 260, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 443, + "price": 401, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 37, + "active": false, + "price": 30, "quantity": 0, - "type": "sell" + "type": "buy" } }, "mask": "BigInt:34359738368" @@ -87836,56 +83273,56 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti e Farming Facility", + "value": "ACT Pontus Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1899, 1898, 1911], + "ids": [1777, 1776], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 4.999999999999992, "max": 64 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 440, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 825, + "id": 827, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 827, "mask": "BigInt:549755813888" }, "name": { @@ -87900,14 +83337,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 826, + "id": 828, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 827, "mask": "BigInt:549755813888" }, "name": { @@ -87922,212 +83359,122 @@ } }, "cooldowns": { "timers": {} }, - "id": 827, + "id": 829, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 827, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 828, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 830, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 827, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 831, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 827, + "mask": "BigInt:549755813888" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 829, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 832, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 827, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 833, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 827, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.09888888888888925, "electronics": 0, "engineParts": 0, "food": 0, @@ -88149,7 +83496,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -88172,15 +83519,15 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -88189,48 +83536,408 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 830, + "cooldowns": { "timers": { "production": 1 } }, + "id": 834, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "parent": { - "name": "parent", - "id": 825, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 12890078, + "money": 12890078, + "name": "budget", + "mask": "BigInt:16" }, - "name": { + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [836, 837, 838, 839, 840, 841, 842], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-19.423513781835574, 10.510511923978463], + "sector": 26, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16761677, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 11029, + "electronics": 27013, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 47259, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 11029, + "electronics": 27013, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 47259, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 21787, + "electronics": 58657, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 100555, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [66.24735153863799, 86.09544090900397], + "drones": [1190, 1213.8], + "electronics": [320.1411626609607, 326.0098153037211], + "engineParts": [294.32506871095325, 313.7464867092356], + "food": [14.583378710602755, 25.652313053719176], + "fuel": [45.4639356954885, 57.87412755575831], + "fuelium": [46.577498977856976, 51.68927660046626], + "gold": [455.2569942876979, 472.21521436616445], + "goldOre": [87.28666660987656, 98.3565943758357], + "hullPlates": [39.07789098353962, 50.963632770773955], + "hydrogen": [98.60440268082716, 103.99784169940011], + "ice": [17.368873921055556, 25.457512305842133], + "metals": [57.79862265589097, 75.60865574511206], + "ore": [27.91804985811458, 43.44997469605633], + "silica": [32.979069796309375, 46.787947085143784], + "silicon": [33.861049086842755, 40.96926871203465], + "superconductors": [560.8134593482573, 571.3318342764902], + "tauMetal": [312.14818969006177, 329.05252454849585], + "water": [25.421072561350403, 40.647511202630355] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 78, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": true, + "price": 1197, + "quantity": 11029, + "type": "sell" + }, + "electronics": { + "active": true, + "price": 325, + "quantity": 31644, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 306, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": false, + "price": 21, + "quantity": 0, + "type": "buy" + }, + "fuel": { + "active": false, + "price": 47, + "quantity": 0, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 51, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 467, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 91, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": true, + "price": 49, + "quantity": 53296, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 100, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 17, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 74, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 39, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 42, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 35, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 561, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 317, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": false, + "price": 26, + "quantity": 0, + "type": "buy" + } + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { "name": "name", - "value": "Large Container", + "value": "ACT Ross 128 II Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1775, 1774], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 835, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 835, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "workers": 14, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 831, + "id": 836, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 835, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 837, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 835, "mask": "BigInt:549755813888" }, "name": { @@ -88253,234 +83960,92 @@ } }, "cooldowns": { "timers": {} }, - "id": 832, + "id": 838, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 835, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Habitation Dome", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 50, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 833, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 839, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 835, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.9999999999999967 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 4, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 834, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 840, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 835, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.8888888888888862, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.40000000000000124, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 1.0000000000000018 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 835, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 841, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 825, + "id": 835, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.09888888888888925, "electronics": 0, "engineParts": 0, "food": 0, @@ -88502,7 +84067,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -88525,15 +84090,15 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -88542,19 +84107,19 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 25, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 836, + "cooldowns": { "timers": { "production": 1 } }, + "id": 842, "tags": ["facilityModule", "facilityModuleType:production"] }, { @@ -88562,8 +84127,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 2196938, - "money": 2196938, + "available": 3203307, + "money": 3203307, "name": "budget", "mask": "BigInt:16" }, @@ -88581,70 +84146,42 @@ }, "modules": { "name": "modules", - "ids": [838, 839, 840, 841, 842, 843, 844, 845, 846, 847, 848], + "ids": [844, 845, 846, 847, 848, 849, 850, 851, 852, 853, 854, 855], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [10.372808343140713, -5.40354327625993], - "sector": 19, + "coord": [-18.54153011510385, -0.27676962062434995], + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 9778411, + "color": 16761677, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 28, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 190, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "outgoing", - "meta": { "tradeId": "837:1897:buy:3516" }, - "id": 27 - } - ], - "max": 81000, + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, "availableWares": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 2154, + "electronics": 3981, "engineParts": 0, - "food": 0, - "fuel": 31298, - "fuelium": 2, + "food": 55839, + "fuel": 4636, + "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 10346, "hydrogen": 0, "ice": 0, "metals": 0, @@ -88653,19 +84190,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 9287 }, "stored": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 2154, + "electronics": 3981, "engineParts": 0, - "food": 0, - "fuel": 31488, - "fuelium": 2, + "food": 55839, + "fuel": 4636, + "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 10346, "hydrogen": 0, "ice": 0, "metals": 0, @@ -88674,19 +84211,19 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 9287 }, "quota": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 3829, + "electronics": 10309, "engineParts": 0, - "food": 0, - "fuel": 43615, - "fuelium": 37384, + "food": 110455, + "fuel": 12960, + "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 17672, "hydrogen": 0, "ice": 0, "metals": 0, @@ -88695,7 +84232,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 25772 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -88704,25 +84241,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [102.72446853666341, 114.57448994386064], - "drones": [1442.2110446265333, 1457.1187627983986], - "electronics": [150.20817377803127, 161.23850842980818], - "engineParts": [207.19701490613355, 216.35973769201289], - "food": [14.268805895845961, 28.013279824651985], - "fuel": [56.31454731364185, 58.314547313641846], - "fuelium": [44.856673309078396, 62.50205762113817], - "gold": [518.3922557544547, 537.1121303231599], - "goldOre": [91.83734096471903, 101.37421097232266], - "hullPlates": [49.447487747459704, 68.14077196325016], - "hydrogen": [82.97420614740267, 100.54876371915], - "ice": [12.447245933287702, 22.086366269971755], - "metals": [61.74347018425469, 77.49759432473292], - "ore": [30.754276066888103, 41.11742097788516], - "silica": [41.32809035455419, 61.031771144551286], - "silicon": [30.8154485758309, 41.59411331565444], - "superconductors": [309.35638499509975, 321.976790111573], - "tauMetal": [515.4662422150502, 529.4153238770268], - "water": [24.725118704521137, 29.912789107457655] + "coolant": [87.13545688312735, 95.84464237932285], + "drones": [1348.324616624633, 1364.5075512396265], + "electronics": [303.44141166611024, 317.2426808052555], + "engineParts": [382.7597124210763, 392.1955145280176], + "food": [16, 18.72231690266822], + "fuel": [50.471432658947066, 63.44748895123412], + "fuelium": [49.05891495360602, 59.84758446297], + "gold": [734.8535513192717, 746.292334405278], + "goldOre": [79.79878207187052, 89.36339496011541], + "hullPlates": [41.4016999465345, 54.63209034323075], + "hydrogen": [79.05103966707168, 94.8381072869625], + "ice": [11.403380712602612, 22.732858860113776], + "metals": [55.802686378127376, 72.550194767666], + "ore": [32.394661868300496, 51.94480178847516], + "silica": [32.18217814176118, 39.20795691370548], + "silicon": [14.012955433555778, 26.31784322525447], + "superconductors": [529.4635942650564, 537.9652569955227], + "tauMetal": [390.17380892985716, 409.662070883317], + "water": [28.94401476630416, 37.65348837209302] }, "lastPriceAdjust": { "commodities": { @@ -88751,116 +84288,116 @@ "offers": { "coolant": { "active": false, - "price": 105, + "price": 91, "quantity": 0, "type": "buy" }, "drones": { - "active": false, - "price": 1444, - "quantity": 0, - "type": "buy" + "active": true, + "price": 1358, + "quantity": 2154, + "type": "sell" }, "electronics": { - "active": false, - "price": 160, - "quantity": 0, + "active": true, + "price": 315, + "quantity": 6328, "type": "buy" }, "engineParts": { "active": false, - "price": 210, + "price": 383, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 24, - "quantity": 0, - "type": "buy" + "active": true, + "price": 16, + "quantity": 55839, + "type": "sell" }, "fuel": { "active": true, - "price": 56, - "quantity": 31298, - "type": "sell" + "price": 51, + "quantity": 8324, + "type": "buy" }, "fuelium": { - "active": true, + "active": false, "price": 59, - "quantity": 37382, + "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 531, + "price": 742, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 98, + "price": 86, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 57, - "quantity": 0, + "active": true, + "price": 46, + "quantity": 7326, "type": "buy" }, "hydrogen": { "active": false, - "price": 90, + "price": 92, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 16, + "price": 18, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 63, + "price": 59, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 40, + "price": 41, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 58, + "price": 37, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 23, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 318, + "price": 535, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 521, + "price": 394, "quantity": 0, "type": "buy" }, "water": { - "active": false, + "active": true, "price": 29, - "quantity": 0, + "quantity": 16485, "type": "buy" } }, @@ -88878,12 +84415,12 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti e Mining Complex", + "value": "ACT Arges Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1897, 1910], + "ids": [1773, 1772, 1771, 1770], "mask": "BigInt:4294967296" }, "crew": { @@ -88892,20 +84429,20 @@ "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 52 }, + "electronics": { "consumes": 140, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 5600 }, - "fuelium": { "consumes": 4800, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 240, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -88914,20 +84451,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 837, + "id": 843, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { @@ -88942,14 +84479,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 838, + "id": 844, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { @@ -88964,52 +84501,126 @@ } }, "cooldowns": { "timers": {} }, - "id": 839, + "id": 845, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 846, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 843, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 840, + "id": 847, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 848, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 843, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 849, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 843, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.8020180180180173, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.30033670033656534, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -89027,7 +84638,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 1.6666666666666594, "engineParts": 0, "food": 0, "fuel": 0, @@ -89050,15 +84661,15 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -89069,51 +84680,29 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 25, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 841, + "cooldowns": { "timers": { "production": 1 } }, + "id": 850, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 837, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 842, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -89123,8 +84712,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0.30033670033656534, + "food": 0.27027027027024597, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -89145,7 +84734,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.5333333333333536, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -89158,7 +84747,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 4.333333333333362 } }, "name": "production", @@ -89168,9 +84757,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -89182,64 +84771,135 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 843, + "cooldowns": { "timers": { "production": 1 } }, + "id": 851, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0.8020180180180173, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 1.6666666666666594, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 25, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 844, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 852, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.8020180180180173, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.16902356902343385, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -89257,7 +84917,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 1.6666666666666594, "engineParts": 0, "food": 0, "fuel": 0, @@ -89280,15 +84940,15 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, @@ -89299,51 +84959,122 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 25, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 845, + "cooldowns": { "timers": { "production": 1 } }, + "id": 853, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0.8020180180180173, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 1.6666666666666594, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 25, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 846, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 854, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 837, + "id": 843, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -89353,8 +85084,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0.6228956228954896, + "food": 0.27027027027024597, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -89375,7 +85106,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.5333333333333536, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -89388,7 +85119,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 4.333333333333362 } }, "name": "production", @@ -89398,9 +85129,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -89412,58 +85143,35 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 847, + "cooldowns": { "timers": { "production": 1 } }, + "id": 855, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 837, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 848, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 1713617, - "money": 1713617, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 8320, + "issued": 2952, + "meta": { "tradeId": "591:1769:buy:2952" }, + "id": 1 + } + ], + "available": 875362, + "money": 883682, "name": "budget", "mask": "BigInt:16" }, @@ -89481,93 +85189,121 @@ }, "modules": { "name": "modules", - "ids": [850, 851, 852, 853, 854, 855, 856, 857, 858, 859, 860], + "ids": [857, 858, 859, 860, 861, 862, 863, 864], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-2.231750379793114, 8.04008369785046], - "sector": 19, + "coord": [0.28783214980682104, -16.58518024329775], + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 9778411, + "color": 16761677, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 71, - "allocations": [], - "max": 81000, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 2952, + "type": "incoming", + "meta": { "tradeId": "856:1769:sell:2952" }, + "id": 1 + } + ], + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 80071, + "fuel": 6209, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 7810, - "ore": 8467, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 16435 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 80071, + "fuel": 6209, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 7810, - "ore": 8467, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 16435 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 134007, + "fuel": 15723, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 27000, - "ore": 54000, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -89576,25 +85312,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [53.974523832620136, 73.49711586758195], - "drones": [1574.662941671672, 1580.9280866009567], - "electronics": [348.89932254106515, 356.36276303339963], - "engineParts": [387.22529640281743, 403.5093920053417], - "food": [7.6151599398854515, 21.79611788209066], - "fuel": [56.775376349072424, 66.14344481699845], - "fuelium": [32.98424768982183, 46.12734644212192], - "gold": [645.7343256836747, 658.2789301744297], - "goldOre": [37.72212261317501, 50.269706438984244], - "hullPlates": [59.96211589148159, 78.2398194768639], - "hydrogen": [59.34118271337903, 67.3861360094061], - "ice": [23.14843319574753, 41.62482582586], - "metals": [78.25549074187977, 84.19329766869043], - "ore": [36.78816239093531, 42], - "silica": [24.648381652638196, 39.13005485990605], - "silicon": [20.447026660689435, 30.101228168981002], - "superconductors": [193.08221223568592, 208.7528831007992], - "tauMetal": [461.1699717448223, 466.62401694868873], - "water": [33.10856554211735, 45.5318429878677] + "coolant": [89.61605025426616, 96.38513880322256], + "drones": [1549.1696946898194, 1564.8034997700863], + "electronics": [425.70551603779955, 443.83250105232383], + "engineParts": [196.29937403478075, 215.10535909922606], + "food": [16, 18.705176397734], + "fuel": [45.21078542618496, 59.47071228270968], + "fuelium": [37.96351773380304, 44.992288084171314], + "gold": [795.84901474551, 806.6274117144833], + "goldOre": [76.34751414099688, 90.93060883685877], + "hullPlates": [64.63339547659264, 72.86155283228051], + "hydrogen": [73.35974201448184, 80.91144225766836], + "ice": [26.60881767248513, 40.74299887238062], + "metals": [35.76822884905525, 44.3955740341943], + "ore": [22.21464227286476, 27.560359295502728], + "silica": [47.14141950763825, 66.96027463630375], + "silicon": [21.357573331066625, 26.88855780218836], + "superconductors": [435.31039855461336, 441.25592446775596], + "tauMetal": [372.14650599868656, 378.4683836529236], + "water": [26.66021529032955, 37.372093023255815] }, "lastPriceAdjust": { "commodities": { @@ -89623,116 +85359,116 @@ "offers": { "coolant": { "active": false, - "price": 56, + "price": 95, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1576, + "price": 1551, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 351, + "price": 441, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 402, + "price": 203, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 15, - "quantity": 0, - "type": "buy" + "active": true, + "price": 16, + "quantity": 80071, + "type": "sell" }, "fuel": { - "active": false, - "price": 60, - "quantity": 0, + "active": true, + "price": 46, + "quantity": 9514, "type": "buy" }, "fuelium": { "active": false, - "price": 37, + "price": 44, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 647, + "price": 805, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 46, + "price": 89, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 77, + "price": 65, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 66, + "price": 73, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 37, + "price": 31, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 82, - "quantity": 7810, - "type": "sell" + "active": false, + "price": 39, + "quantity": 0, + "type": "buy" }, "ore": { - "active": true, - "price": 37, - "quantity": 45533, + "active": false, + "price": 26, + "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 26, + "price": 54, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 22, + "price": 23, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 193, + "price": 438, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 464, + "price": 373, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 33, - "quantity": 0, + "active": true, + "price": 30, + "quantity": 14833, "type": "buy" } }, @@ -89750,21 +85486,21 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti e Mining Complex", + "value": "ACT Arges Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1896, 1909], + "ids": [1769, 1768], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 11.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -89772,34 +85508,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 2000 }, - "ore": { "consumes": 4000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 849, + "id": 856, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 849, + "id": 856, "mask": "BigInt:549755813888" }, "name": { @@ -89814,14 +85550,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 850, + "id": 857, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 849, + "id": 856, "mask": "BigInt:549755813888" }, "name": { @@ -89836,41 +85572,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 851, + "id": 858, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 849, + "id": 856, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 859, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 856, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 852, + "id": 860, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 849, + "id": 856, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 861, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 856, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 862, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 856, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -89880,7 +85690,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.7121212121211471, "fuel": 0, "fuelium": 0, "gold": 0, @@ -89888,7 +85698,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -89902,7 +85712,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -89910,12 +85720,12 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -89925,67 +85735,45 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 853, + "id": 863, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 849, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 854, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 849, + "id": 856, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -89995,7 +85783,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.7121212121211471, "fuel": 0, "fuelium": 0, "gold": 0, @@ -90003,7 +85791,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -90017,7 +85805,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -90025,12 +85813,12 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -90040,72 +85828,176 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 855, + "id": 864, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "parent": { - "name": "parent", - "id": 849, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 1534802, + "money": 1534802, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 856, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 849, - "mask": "BigInt:549755813888" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "name": { - "name": "name", - "value": "Refinery", - "mask": "BigInt:137438953472" + "modules": { + "name": "modules", + "ids": [866, 867, 868, 869, 870, 871, 872], + "mask": "BigInt:68719476736" }, - "production": { - "buffer": { - "production": { + "position": { + "name": "position", + "angle": 0, + "coord": [-2.1798381735404284, -3.307829776973062], + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16761677, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 134007, + "fuel": 15723, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 31268 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [120.37142415712609, 133.61005789532007], + "drones": [1827.4377919616882, 1835.8194093546654], + "electronics": [264.9558325990698, 275.0853189196716], + "engineParts": [171.7217066447114, 180.04551601185764], + "food": [12.070375140216193, 19.601101335254313], + "fuel": [28.850947901889025, 38.34931639172485], + "fuelium": [50.4605403479279, 70.36972361874673], + "gold": [640.1770624741005, 651.2222860316999], + "goldOre": [87.25146987974671, 103.14982972201018], + "hullPlates": [54.223794346509095, 65.83905132470707], + "hydrogen": [92.4481390100589, 110.50283077475606], + "ice": [25.607373412587183, 42.083132693161836], + "metals": [98.85951073799829, 107.44831560256519], + "ore": [23.890105423006506, 43.85004521027257], + "silica": [47.62003112502345, 65.49459406098728], + "silicon": [17.518260227297315, 29.923135620428454], + "superconductors": [366.48904406921827, 385.1440582727371], + "tauMetal": [324.7470220351807, 342.668136466401], + "water": [30.5322505164664, 35.82471105341196] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, @@ -90118,7 +86010,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -90126,96 +86018,333 @@ "tauMetal": 0, "water": 0 }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 31.33333333333298, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 132, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1831, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 269, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 172, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 15, + "quantity": 0, + "type": "sell" + }, + "fuel": { + "active": true, + "price": 30, + "quantity": 15723, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 66, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 641, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 101, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 63, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 105, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 37, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 103, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 42, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 59, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 17, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 376, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 341, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 34, + "quantity": 31268, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "ACT Sector Alpha Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1767, 1766], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 6.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 865, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 865, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 866, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 865, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 867, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 865, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 857, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 868, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 849, + "id": 865, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 858, + "id": 869, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 849, + "id": 865, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 870, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 865, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 871, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 865, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -90233,7 +86362,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -90255,7 +86384,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -90270,79 +86399,55 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 859, + "cooldowns": { "timers": { "production": 0 } }, + "id": 872, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 849, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 860, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { - "allocationIdCounter": 18, + "allocationIdCounter": 36, "allocations": [ { - "amount": 7790, - "issued": 3528, - "meta": { "tradeId": "885:1895:buy:3528" }, - "id": 17 + "amount": 715, + "issued": 1266, + "meta": { "tradeId": "885:1998:buy:1266" }, + "id": 34 + }, + { + "amount": 12350, + "issued": 1284, + "meta": { "tradeId": "885:1999:buy:1284" }, + "id": 35 } ], - "available": 2715980, - "money": 2723770, + "available": 286854, + "money": 299919, "name": "budget", "mask": "BigInt:16" }, @@ -90360,14 +86465,14 @@ }, "modules": { "name": "modules", - "ids": [862, 863, 864, 865, 866, 867, 868, 869, 870, 871, 872], + "ids": [874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-4.336284134098152, 22.428007493455446], - "sector": 20, + "coord": [19.179142969926843, 23.34082965079491], + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, @@ -90376,13 +86481,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 62, + "allocationIdCounter": 37, "allocations": [ { "amount": { @@ -90391,7 +86496,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 190, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -90406,10 +86511,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3528, + "issued": 1266, "type": "incoming", - "meta": { "tradeId": "861:1895:sell:3528" }, - "id": 60 + "meta": { "tradeId": "873:1998:sell:1266" }, + "id": 35 }, { "amount": { @@ -90418,9 +86523,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 190, "fuelium": 0, - "gold": 36, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -90433,26 +86538,26 @@ "tauMetal": 0, "water": 0 }, - "issued": 3534, - "type": "outgoing", - "meta": { "tradeId": "861:1882:buy:3534" }, - "id": 61 + "issued": 1284, + "type": "incoming", + "meta": { "tradeId": "873:1999:sell:1284" }, + "id": 36 } ], - "max": 81000, + "max": 61000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4184, + "fuel": 3110, "fuelium": 0, - "gold": 8, - "goldOre": 21123, + "gold": 0, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 10, "metals": 0, "ore": 0, "silica": 0, @@ -90467,13 +86572,13 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4184, + "fuel": 3110, "fuelium": 0, - "gold": 44, - "goldOre": 21123, + "gold": 0, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 10, "metals": 0, "ore": 0, "silica": 0, @@ -90487,21 +86592,21 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 7614, + "food": 31926, + "fuel": 3745, "fuelium": 0, - "gold": 8552, - "goldOre": 64833, + "gold": 0, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 10216, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 15111 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -90510,25 +86615,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [56.48093966206792, 70.20922894294773], - "drones": [680.7874233707701, 698.5240665061874], - "electronics": [370.8279915792142, 390.11926201178784], - "engineParts": [409.49685473080064, 422.31115212330025], - "food": [15.435604784985962, 35.28120923820832], - "fuel": [59.886649149465555, 69.09978455557092], - "fuelium": [34.88626795013812, 43.874252127229106], - "gold": [770.2858969971562, 782.7328278919434], - "goldOre": [56.16490029050816, 70.06113012756798], - "hullPlates": [55.024845660510465, 74.18894435050473], - "hydrogen": [97.93439809833504, 112.5891307255029], - "ice": [21.642709218562935, 30.72476285693184], - "metals": [71.72081806932148, 87.77275607451926], - "ore": [26.385845474714095, 35.405963915052595], - "silica": [46.24389479639172, 60.50299359728753], - "silicon": [15.309558022293032, 31.644784787763218], - "superconductors": [209.61290977036091, 229.28145770181442], - "tauMetal": [588.6581042930613, 604.5063965891284], - "water": [15.060858838296483, 32.83359540948895] + "coolant": [92.68546790375017, 101.7285880104848], + "drones": [615.8131682852197, 623.21010315746], + "electronics": [199.80759267016674, 219.40854955992054], + "engineParts": [357.1982142805241, 363.0094815113027], + "food": [15, 22], + "fuel": [50.30152810101943, 69.3534347165943], + "fuelium": [42.90345679635466, 62.383105318727694], + "gold": [499.11709723554293, 509.9871926556751], + "goldOre": [90.5997452131229, 97.66258950537457], + "hullPlates": [56.08536159894581, 74.26293361827055], + "hydrogen": [68.24805914353885, 82.3703678078675], + "ice": [22.234509791583807, 27], + "metals": [93.14770167386729, 99.29975583330551], + "ore": [18.745281685263762, 25.220484825493124], + "silica": [34.25494350803838, 39.33028798763], + "silicon": [20.301882863588173, 31.920700514771717], + "superconductors": [546.4059736669838, 563.837093771464], + "tauMetal": [375.72392227769734, 391.6813593685323], + "water": [34, 39.29911407151951] }, "lastPriceAdjust": { "commodities": { @@ -90557,117 +86662,117 @@ "offers": { "coolant": { "active": false, - "price": 59, + "price": 99, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 688, + "price": 621, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 382, + "price": 216, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 415, + "price": 360, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 31, + "active": true, + "price": 21, "quantity": 0, - "type": "buy" + "type": "sell" }, "fuel": { "active": true, - "price": 68, - "quantity": 3430, + "price": 66, + "quantity": 635, "type": "buy" }, "fuelium": { "active": false, - "price": 39, + "price": 43, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 774, - "quantity": 8, - "type": "sell" + "active": false, + "price": 500, + "quantity": 0, + "type": "buy" }, "goldOre": { - "active": true, - "price": 59, - "quantity": 43710, + "active": false, + "price": 92, + "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 62, + "price": 73, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 100, + "price": 72, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 23, - "quantity": 0, + "active": true, + "price": 24, + "quantity": 10206, "type": "buy" }, "metals": { "active": false, - "price": 86, + "price": 95, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 29, + "price": 22, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 53, + "price": 36, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 20, + "price": 24, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 219, + "price": 559, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 600, + "price": 379, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 21, + "active": true, + "price": 35, "quantity": 0, - "type": "buy" + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -90684,17 +86789,17 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti f Mining Complex", + "value": "TAU The Hive Farming Facility", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1895, 1908], + "ids": [1999, 1998, 2011], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 4.999999999999992, "max": 64 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -90706,34 +86811,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 552, "produces": 0 }, + "food": { "consumes": 0, "produces": 3750 }, + "fuel": { "consumes": 440, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 620 }, - "goldOre": { "consumes": 4700, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 875, "produces": 900 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 861, + "id": 873, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { @@ -90748,14 +86853,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 862, + "id": 874, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { @@ -90770,41 +86875,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 863, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 861, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 864, + "id": 875, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -90817,7 +86900,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -90836,10 +86919,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -90859,11 +86942,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -90873,53 +86956,31 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 865, + "cooldowns": { "timers": { "production": 0 } }, + "id": 876, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 861, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 866, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -90932,7 +86993,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -90951,10 +87012,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -90974,11 +87035,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -90988,53 +87049,31 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 867, + "cooldowns": { "timers": { "production": 0 } }, + "id": 877, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 861, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 868, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -91047,7 +87086,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -91066,10 +87105,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -91089,11 +87128,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -91103,53 +87142,105 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 869, + "cooldowns": { "timers": { "production": 0 } }, + "id": 878, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 870, + "id": 879, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 880, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 873, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Habitation Dome", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 50, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 881, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 873, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -91162,7 +87253,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -91173,7 +87264,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.7999999999999994 }, "consumption": { "coolant": 0, @@ -91181,10 +87272,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -91205,10 +87296,103 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 882, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 873, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -91218,58 +87402,121 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 871, + "cooldowns": { "timers": { "production": 0 } }, + "id": 883, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 861, + "id": 873, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 872, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 884, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1080020, - "money": 1080020, + "available": 2176850, + "money": 2176850, "name": "budget", "mask": "BigInt:16" }, @@ -91287,14 +87534,14 @@ }, "modules": { "name": "modules", - "ids": [874, 875, 876, 877, 878, 879, 880, 881, 882, 883, 884], + "ids": [886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-11.278147502410956, 5.1508349871995085], - "sector": 20, + "coord": [4.075045703931682, 19.5403176690672], + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, @@ -91309,8 +87556,252 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 38, - "allocations": [], + "allocationIdCounter": 11, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 11, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1266, + "type": "outgoing", + "meta": { "tradeId": "885:1998:buy:1266" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1272, + "type": "outgoing", + "meta": { "tradeId": "885:1992:buy:1272" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 11, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1275, + "type": "outgoing", + "meta": { "tradeId": "885:1986:buy:1275" }, + "id": 4 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1278, + "type": "outgoing", + "meta": { "tradeId": "885:1977:buy:1278" }, + "id": 5 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 11, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1281, + "type": "outgoing", + "meta": { "tradeId": "885:2000:buy:1281" }, + "id": 6 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1284, + "type": "outgoing", + "meta": { "tradeId": "885:1999:buy:1284" }, + "id": 7 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1290, + "type": "outgoing", + "meta": { "tradeId": "885:2001:buy:1290" }, + "id": 8 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1290, + "type": "outgoing", + "meta": { "tradeId": "885:2002:buy:1290" }, + "id": 9 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1374, + "type": "outgoing", + "meta": { "tradeId": "885:1985:buy:1374" }, + "id": 10 + } + ], "max": 81000, "availableWares": { "coolant": 0, @@ -91318,20 +87809,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 33683, + "fuelium": 1974, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 225, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 27101 + "water": 0 }, "stored": { "coolant": 0, @@ -91339,20 +87830,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 34856, + "fuelium": 1974, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 225, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 27101 + "water": 0 }, "quota": { "coolant": 0, @@ -91360,20 +87851,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 43615, + "fuelium": 37384, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 46285, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 34714 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -91382,25 +87873,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [113.27705055821077, 128.06212538952687], - "drones": [670.573584524458, 677.4768047051904], - "electronics": [365.95239094412784, 381.29774818849086], - "engineParts": [281.9448071912665, 291.1530004159039], - "food": [7.731222317518076, 14.210216480915463], - "fuel": [76.86264393555447, 90.16595155590323], - "fuelium": [28.6126209087227, 36.72653064639751], - "gold": [533.912637086939, 552.4224105204507], - "goldOre": [53.37066385263684, 64.35666760527238], - "hullPlates": [43.81884269668046, 54.86927708531883], - "hydrogen": [71.91540363830075, 86.92444699463721], - "ice": [19.511219624061702, 27], - "metals": [51.50564928358236, 56.61471451156107], - "ore": [30.976210579401844, 42.05230673172254], - "silica": [18.273264185045257, 37.78785358474764], - "silicon": [28.005653426137215, 38.360957541393674], - "superconductors": [465.29426529448864, 480.50259409920295], - "tauMetal": [392.28520759571234, 403.70650494219336], - "water": [31, 33.96505603767804] + "coolant": [69.02491864014262, 84.57388343381405], + "drones": [1326.8935608329973, 1336.6402361230928], + "electronics": [360.31243417390897, 372.8923767579324], + "engineParts": [443.20307583930423, 454.31203561140006], + "food": [11.543796775897562, 29.60444343269517], + "fuel": [55, 61.5709730178962], + "fuelium": [60.293757691840064, 66.29061001601355], + "gold": [374.97785255723693, 386.77479075447684], + "goldOre": [65.22112703138393, 72.63663741311176], + "hullPlates": [42.11258919012638, 49.71398457699634], + "hydrogen": [65.72139119817966, 74.16126314066418], + "ice": [11.687383639124398, 21.863800093516733], + "metals": [91.89770872838818, 105.00570375504621], + "ore": [22.44454997668121, 40.78501021658377], + "silica": [25.73733115796222, 33.96409360290285], + "silicon": [21.5109024887767, 27.98402815626611], + "superconductors": [416.6705208788651, 427.1758292045108], + "tauMetal": [582.3439760033878, 588.5923955344974], + "water": [41.28210000824596, 59.31946853575818] }, "lastPriceAdjust": { "commodities": { @@ -91429,117 +87920,117 @@ "offers": { "coolant": { "active": false, - "price": 113, + "price": 72, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 676, + "price": 1331, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 369, + "price": 367, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 285, + "price": 443, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 11, + "price": 23, "quantity": 0, "type": "buy" }, "fuel": { - "active": false, - "price": 82, - "quantity": 0, - "type": "buy" + "active": true, + "price": 57, + "quantity": 33683, + "type": "sell" }, "fuelium": { - "active": false, - "price": 33, - "quantity": 0, + "active": true, + "price": 65, + "quantity": 35410, "type": "buy" }, "gold": { "active": false, - "price": 550, + "price": 376, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 62, + "price": 70, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 44, + "price": 46, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 75, + "price": 65, "quantity": 0, "type": "buy" }, "ice": { - "active": true, - "price": 23, - "quantity": 46060, + "active": false, + "price": 19, + "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 52, + "price": 99, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 31, + "price": 22, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 22, + "price": 33, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 25, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 465, + "price": 422, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 393, + "price": 583, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 32, - "quantity": 27101, - "type": "sell" + "active": false, + "price": 53, + "quantity": 0, + "type": "buy" } }, "mask": "BigInt:34359738368" @@ -91556,12 +88047,12 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti f Mining Complex", + "value": "TAU Tau Ceti e Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1894, 1907], + "ids": [1997, 2010], "mask": "BigInt:4294967296" }, "crew": { @@ -91579,33 +88070,33 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 5600 }, + "fuelium": { "consumes": 4800, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 4800, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 3600 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 873, + "id": 885, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { @@ -91620,14 +88111,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 874, + "id": 886, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { @@ -91642,14 +88133,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 875, + "id": 887, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { @@ -91664,19 +88155,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 876, + "id": 888, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -91687,7 +88178,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -91700,7 +88191,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.4313725490196738 + "water": 0 }, "consumption": { "coolant": 0, @@ -91732,39 +88223,39 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 877, + "cooldowns": { "timers": { "production": 1 } }, + "id": 889, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { @@ -91779,19 +88270,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 878, + "id": 890, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -91802,7 +88293,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -91815,7 +88306,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.45882352941183413 + "water": 0 }, "consumption": { "coolant": 0, @@ -91847,39 +88338,39 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 879, + "cooldowns": { "timers": { "production": 1 } }, + "id": 891, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { @@ -91894,19 +88385,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 880, + "id": 892, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -91917,7 +88408,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -91930,7 +88421,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.48627450980399445 + "water": 0 }, "consumption": { "coolant": 0, @@ -91962,39 +88453,39 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 881, + "cooldowns": { "timers": { "production": 1 } }, + "id": 893, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { @@ -92009,19 +88500,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 882, + "id": 894, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -92032,7 +88523,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -92045,7 +88536,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.48627450980399445 + "water": 0 }, "consumption": { "coolant": 0, @@ -92077,39 +88568,39 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 883, + "cooldowns": { "timers": { "production": 1 } }, + "id": 895, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 873, + "id": 885, "mask": "BigInt:549755813888" }, "name": { @@ -92132,7 +88623,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 884, + "id": 896, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -92140,8 +88631,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1628027, - "money": 1628027, + "available": 1816236, + "money": 1816236, "name": "budget", "mask": "BigInt:16" }, @@ -92159,14 +88650,14 @@ }, "modules": { "name": "modules", - "ids": [886, 887, 888, 889, 890, 891, 892, 893, 894, 895, 896], + "ids": [898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-7.319966910537897, -15.413033840935093], - "sector": 21, + "coord": [-8.430373473574349, 8.789835362265274], + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, @@ -92181,7 +88672,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 206, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -92190,88 +88681,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 190, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3528, - "type": "outgoing", - "meta": { "tradeId": "885:1895:buy:3528" }, - "id": 202 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 190, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "outgoing", - "meta": { "tradeId": "885:1880:buy:3540" }, - "id": 203 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3570, - "type": "outgoing", - "meta": { "tradeId": "885:1892:buy:3570" }, - "id": 204 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -92279,17 +88689,17 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 210, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3579, - "type": "outgoing", - "meta": { "tradeId": "885:1893:buy:3579" }, - "id": 205 + "issued": 180, + "type": "incoming", + "meta": { "tradeId": "897:2009:sell:180" }, + "id": 1 } ], "max": 81000, @@ -92299,15 +88709,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 10938, - "fuelium": 39, + "fuel": 0, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, + "metals": 21057, + "ore": 1917, "silica": 0, "silicon": 0, "superconductors": 0, @@ -92320,15 +88730,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 11340, - "fuelium": 39, + "fuel": 0, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, + "metals": 21057, + "ore": 1917, "silica": 0, "silicon": 0, "superconductors": 0, @@ -92341,15 +88751,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 43615, - "fuelium": 37384, + "fuel": 0, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, + "metals": 27000, + "ore": 54000, "silica": 0, "silicon": 0, "superconductors": 0, @@ -92363,25 +88773,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [141.03428633940695, 148.39847228718858], - "drones": [1464.564785117083, 1477.3125397359152], - "electronics": [298.37769064231156, 311.8318294562388], - "engineParts": [196.5159920425912, 205.45237943381196], - "food": [19.798579402744586, 38.35044636894807], - "fuel": [39, 43.379341232721956], - "fuelium": [38.61877740680367, 48.052759282301906], - "gold": [366.2113870500746, 380.6452609478495], - "goldOre": [52.64282505186354, 68.0144584722851], - "hullPlates": [66.55867764272074, 86.07565482953942], - "hydrogen": [94.75484677734927, 109.41720931519491], - "ice": [16.630294735138477, 23.100781419834142], - "metals": [88.41841976548737, 95.51351862692896], - "ore": [21.419450513076228, 28.990242448886338], - "silica": [18.60920554630113, 25.999197997591725], - "silicon": [24.852664236251915, 37.89610616176913], - "superconductors": [305.0396878980438, 314.5514530918236], - "tauMetal": [445.5283799404905, 451.7507379692949], - "water": [32.39185862006286, 42.330860526393415] + "coolant": [119.45695628955949, 126.42448540061129], + "drones": [869.6595894773609, 877.1857207064609], + "electronics": [170.38444249113934, 185.51864550284853], + "engineParts": [431.5562805099023, 441.5589796630259], + "food": [15.362532623599057, 28.240226258696637], + "fuel": [61.90550784374572, 70.32798832639222], + "fuelium": [54.47061941625433, 61.51472240427407], + "gold": [893.2860972964459, 899.636862306221], + "goldOre": [54.30810211184212, 73.00994604967899], + "hullPlates": [63.020089970457924, 81.25558924941194], + "hydrogen": [59.04985947121615, 67.44057993786463], + "ice": [9.983306245621906, 20.244811439859724], + "metals": [70, 72], + "ore": [35.010380022722984, 42], + "silica": [43.56428126315204, 55.777974519743445], + "silicon": [30.882612799199883, 47.30900019684631], + "superconductors": [286.9629808101609, 305.194461238672], + "tauMetal": [285.9381746075823, 304.72886106458776], + "water": [41.72419516197323, 55.56561733417296] }, "lastPriceAdjust": { "commodities": { @@ -92410,115 +88820,115 @@ "offers": { "coolant": { "active": false, - "price": 147, + "price": 126, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1474, + "price": 874, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 305, + "price": 177, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 199, + "price": 440, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 25, + "price": 24, "quantity": 0, "type": "buy" }, "fuel": { - "active": true, - "price": 41, - "quantity": 10938, - "type": "sell" + "active": false, + "price": 69, + "quantity": 0, + "type": "buy" }, "fuelium": { - "active": true, - "price": 42, - "quantity": 37345, + "active": false, + "price": 58, + "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 370, + "price": 898, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 56, + "price": 63, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 69, + "price": 77, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 101, + "price": 59, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 18, + "price": 15, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 92, - "quantity": 0, - "type": "buy" + "active": true, + "price": 71, + "quantity": 21057, + "type": "sell" }, "ore": { - "active": false, - "price": 21, - "quantity": 0, + "active": true, + "price": 36, + "quantity": 52083, "type": "buy" }, "silica": { "active": false, - "price": 22, + "price": 55, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 33, + "price": 43, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 306, + "price": 294, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 451, + "price": 289, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 41, + "price": 53, "quantity": 0, "type": "buy" } @@ -92537,12 +88947,12 @@ }, "name": { "name": "name", - "value": "TAU The Hive Mining Complex", + "value": "TAU Tau Ceti e Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1893, 1906], + "ids": [1996, 2009], "mask": "BigInt:4294967296" }, "crew": { @@ -92560,15 +88970,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 5600 }, - "fuelium": { "consumes": 4800, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 2000 }, + "ore": { "consumes": 4000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -92579,14 +88989,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 885, + "id": 897, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { @@ -92601,14 +89011,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 886, + "id": 898, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { @@ -92623,14 +89033,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 887, + "id": 899, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { @@ -92645,19 +89055,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 888, + "id": 900, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -92668,14 +89078,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.6228956228954896, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -92697,7 +89107,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -92713,22 +89123,22 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -92737,15 +89147,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 889, + "cooldowns": { "timers": { "production": 1 } }, + "id": 901, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { @@ -92760,19 +89170,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 890, + "id": 902, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -92783,14 +89193,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.5306397306395993, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -92812,7 +89222,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -92828,22 +89238,22 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -92852,15 +89262,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 891, + "cooldowns": { "timers": { "production": 1 } }, + "id": 903, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { @@ -92875,19 +89285,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 892, + "id": 904, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -92898,14 +89308,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.5306397306395993, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -92927,7 +89337,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -92943,22 +89353,22 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -92967,15 +89377,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 893, + "cooldowns": { "timers": { "production": 1 } }, + "id": 905, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { @@ -92990,19 +89400,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 894, + "id": 906, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -93013,14 +89423,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.5306397306395993, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -93042,7 +89452,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -93058,22 +89468,22 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -93082,15 +89492,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 895, + "cooldowns": { "timers": { "production": 1 } }, + "id": 907, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 885, + "id": 897, "mask": "BigInt:549755813888" }, "name": { @@ -93113,23 +89523,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 896, + "id": 908, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 67, - "allocations": [ - { - "amount": 451, - "issued": 3570, - "meta": { "tradeId": "885:1892:buy:3570" }, - "id": 66 - } - ], - "available": 3052548, - "money": 3052999, + "allocationIdCounter": 1, + "allocations": [], + "available": 3870727, + "money": 3870727, "name": "budget", "mask": "BigInt:16" }, @@ -93147,14 +89550,14 @@ }, "modules": { "name": "modules", - "ids": [898, 899, 900, 901, 902, 903, 904, 905, 906, 907, 908], + "ids": [910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-24.213909273594236, 34.73171529878885], - "sector": 21, + "coord": [-17.26388788555744, 11.606009187462739], + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, @@ -93169,7 +89572,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 150, + "allocationIdCounter": 8, "allocations": [ { "amount": { @@ -93178,9 +89581,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 11, + "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -93193,10 +89596,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3570, - "type": "incoming", - "meta": { "tradeId": "897:1892:sell:3570" }, - "id": 148 + "issued": 636, + "type": "outgoing", + "meta": { "tradeId": "909:1983:buy:636" }, + "id": 1 }, { "amount": { @@ -93207,8 +89610,8 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, - "goldOre": 210, + "gold": 11, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -93220,10 +89623,145 @@ "tauMetal": 0, "water": 0 }, - "issued": 3597, - "type": "incoming", - "meta": { "tradeId": "897:1905:sell:3597" }, - "id": 149 + "issued": 636, + "type": "outgoing", + "meta": { "tradeId": "909:1984:buy:636" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 11, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 660, + "type": "outgoing", + "meta": { "tradeId": "909:1973:buy:660" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 675, + "type": "outgoing", + "meta": { "tradeId": "909:1976:buy:675" }, + "id": 4 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 678, + "type": "outgoing", + "meta": { "tradeId": "909:1975:buy:678" }, + "id": 5 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 684, + "type": "outgoing", + "meta": { "tradeId": "909:1981:buy:684" }, + "id": 6 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 699, + "type": "outgoing", + "meta": { "tradeId": "909:1974:buy:699" }, + "id": 7 } ], "max": 81000, @@ -93233,10 +89771,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1769, + "fuel": 797, "fuelium": 0, - "gold": 14, - "goldOre": 12132, + "gold": 3268, + "goldOre": 12644, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -93254,10 +89792,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1769, + "fuel": 797, "fuelium": 0, - "gold": 14, - "goldOre": 12132, + "gold": 4240, + "goldOre": 12644, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -93297,25 +89835,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [117.20737866145443, 133.97466423480768], - "drones": [1102.2510566600777, 1112.4735432148311], - "electronics": [410.3281617954726, 419.73218194365495], - "engineParts": [222.91031608654356, 239.01996206634894], - "food": [16.572200353644547, 29.32456278339277], - "fuel": [44.16840914138351, 62.8765758502198], - "fuelium": [28.699573008203057, 34.9977456925647], - "gold": [529, 539.58], - "goldOre": [52.1892113920059, 61.92449362482603], - "hullPlates": [65.54607909069736, 83.14441254525951], - "hydrogen": [43.78937297893431, 48.80895207992396], - "ice": [21.17677857500674, 30.060156137447123], - "metals": [70.92294847275971, 80.01873806762487], - "ore": [17.48690043322916, 26.77481967503341], - "silica": [47.16984531718421, 57.44132926048492], - "silicon": [20.97229236209947, 35.8792260843804], - "superconductors": [323.58097301924397, 342.39276514897335], - "tauMetal": [567.2073448463109, 578.256791213574], - "water": [39.59391948572146, 52.04436337165056] + "coolant": [131.92783334678984, 145.55243693063807], + "drones": [1069.985728814669, 1078.6812108913425], + "electronics": [255.27126088565248, 267.0752999887322], + "engineParts": [223.51425430075835, 237.7753875361995], + "food": [11.218626722917108, 20.307341279423508], + "fuel": [42.1827081723923, 54.2238887989597], + "fuelium": [60.410553704227354, 71.89823917034172], + "gold": [646, 653.1074915827033], + "goldOre": [68.75370893107534, 77.8931721540686], + "hullPlates": [34.28888599123353, 45.119265974897694], + "hydrogen": [56.74262535534949, 63.15882445112591], + "ice": [10.107466465444624, 18.341528985100354], + "metals": [40.33853843135684, 47.98158853337486], + "ore": [25.347115704313424, 32.58747796653047], + "silica": [28.8621456241548, 36.54668618983044], + "silicon": [23.330170193536834, 30.954054600003833], + "superconductors": [287.38686522518856, 298.861717382061], + "tauMetal": [495.15983870489407, 507.0318237468899], + "water": [15.797034682260321, 22.837349060250865] }, "lastPriceAdjust": { "commodities": { @@ -93344,115 +89882,115 @@ "offers": { "coolant": { "active": false, - "price": 127, + "price": 142, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1106, + "price": 1073, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 413, + "price": 265, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 225, + "price": 232, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 18, + "price": 12, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 57, - "quantity": 5845, + "price": 44, + "quantity": 6817, "type": "buy" }, "fuelium": { "active": false, - "price": 30, + "price": 61, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 532, - "quantity": 14, + "price": 649, + "quantity": 3268, "type": "sell" }, "goldOre": { "active": true, - "price": 53, - "quantity": 52701, + "price": 71, + "quantity": 52189, "type": "buy" }, "hullPlates": { "active": false, - "price": 75, + "price": 43, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 46, + "price": 59, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 28, + "price": 16, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 75, + "price": 41, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 23, + "price": 30, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 57, + "price": 35, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 28, + "price": 30, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 327, + "price": 289, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 572, + "price": 504, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 45, + "price": 22, "quantity": 0, "type": "buy" } @@ -93471,12 +90009,12 @@ }, "name": { "name": "name", - "value": "TAU The Hive Mining Complex", + "value": "TAU Tau Ceti f Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1892, 1905], + "ids": [1995, 2008], "mask": "BigInt:4294967296" }, "crew": { @@ -93513,14 +90051,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 897, + "id": 909, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93535,14 +90073,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 898, + "id": 910, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93557,14 +90095,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 899, + "id": 911, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93579,14 +90117,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 900, + "id": 912, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93672,14 +90210,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 901, + "id": 913, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93694,14 +90232,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 902, + "id": 914, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93787,14 +90325,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 903, + "id": 915, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93809,14 +90347,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 904, + "id": 916, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93902,14 +90440,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 905, + "id": 917, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -93924,14 +90462,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 906, + "id": 918, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -94017,14 +90555,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 907, + "id": 919, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 897, + "id": 909, "mask": "BigInt:549755813888" }, "name": { @@ -94047,7 +90585,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 908, + "id": 920, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -94055,8 +90593,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 936280, - "money": 936280, + "available": 1156925, + "money": 1156925, "name": "budget", "mask": "BigInt:16" }, @@ -94074,14 +90612,14 @@ }, "modules": { "name": "modules", - "ids": [910, 911, 912, 913, 914, 915, 916, 917, 918, 919, 920], + "ids": [922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [32.79309482962776, -23.598492348380482], - "sector": 21, + "coord": [12.868823327000824, -8.316407642823872], + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, @@ -94096,7 +90634,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 154, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -94111,46 +90649,19 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 210, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "909:1887:buy:3558" }, - "id": 151 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 + "water": 0 }, - "issued": 3576, - "type": "outgoing", - "meta": { "tradeId": "909:1877:buy:3576" }, - "id": 152 + "issued": 432, + "type": "incoming", + "meta": { "tradeId": "921:2007:sell:432" }, + "id": 1 }, { "amount": { @@ -94172,12 +90683,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24 + "water": 11 }, - "issued": 3585, + "issued": 3378, "type": "outgoing", - "meta": { "tradeId": "909:1888:buy:3585" }, - "id": 153 + "meta": { "tradeId": "921:1994:buy:3378" }, + "id": 2 } ], "max": 81000, @@ -94193,14 +90704,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 9966, + "ice": 8, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13351 + "water": 31576 }, "stored": { "coolant": 0, @@ -94214,14 +90725,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 9966, + "ice": 8, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13589 + "water": 31587 }, "quota": { "coolant": 0, @@ -94251,25 +90762,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [121.49991799063552, 140.20607242272206], - "drones": [1156.7388805153823, 1169.8584416934646], - "electronics": [263.9946911028736, 277.08302575074083], - "engineParts": [441.23286877469684, 455.5702306565743], - "food": [9.977510372082635, 27.119509613656746], - "fuel": [71.53104042331162, 83.78462705270613], - "fuelium": [68.51359014736983, 78.37692943319117], - "gold": [669.7637364741204, 686.4457543226262], - "goldOre": [35.55431308609931, 41.937323930059506], - "hullPlates": [36.56020784317857, 43.148788536643785], - "hydrogen": [40.25672875305622, 57.02348111610463], - "ice": [24.8, 26.8], - "metals": [60.206552481674024, 78.47470414453431], - "ore": [27.67195110299848, 45.00877581721558], - "silica": [34.89548561394682, 48.58812967136825], - "silicon": [31.61239153440125, 39.80048116227785], - "superconductors": [317.10213167041945, 331.05515969584235], - "tauMetal": [581.6283119519859, 589.5439716416505], - "water": [34.97082422875875, 36.580621428735704] + "coolant": [104.82673287165676, 117.52880360494032], + "drones": [1767.5015860240076, 1780.5285290801319], + "electronics": [360.5371804161497, 374.78254126173795], + "engineParts": [191.38770645755494, 200.93935468014132], + "food": [21.96247491713987, 32.49962442881903], + "fuel": [66.5874304305488, 79.79403106705938], + "fuelium": [25.604220517783958, 43.39785353194656], + "gold": [439.59890559807735, 445.3185793188618], + "goldOre": [94.85703649856379, 104.73864712446925], + "hullPlates": [60.869946989762624, 77.59986223796632], + "hydrogen": [40.94824574957707, 53.61569861287401], + "ice": [21.568214265963924, 27], + "metals": [48.5737838671933, 60.398201015738366], + "ore": [19.36816959243493, 30.333332232199098], + "silica": [47.85176963727701, 62.21394983635504], + "silicon": [17.3089183119533, 34.02176126979527], + "superconductors": [262.2485897430603, 280.6683030103532], + "tauMetal": [307.8089520640666, 318.26615455474104], + "water": [34, 36] }, "lastPriceAdjust": { "commodities": { @@ -94298,116 +90809,116 @@ "offers": { "coolant": { "active": false, - "price": 130, + "price": 111, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1162, + "price": 1775, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 267, + "price": 362, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 441, + "price": 193, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 18, + "price": 21, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 81, + "price": 69, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 73, + "price": 41, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 683, + "price": 441, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 36, + "price": 97, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 38, + "price": 69, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 55, + "price": 49, "quantity": 0, "type": "buy" }, "ice": { "active": true, "price": 25, - "quantity": 36319, + "quantity": 46277, "type": "buy" }, "metals": { "active": false, - "price": 61, + "price": 49, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 35, + "price": 29, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 48, + "price": 51, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 32, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 320, + "price": 279, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 588, + "price": 313, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, - "quantity": 13351, + "price": 34, + "quantity": 31576, "type": "sell" } }, @@ -94425,12 +90936,12 @@ }, "name": { "name": "name", - "value": "TAU The Hive Mining Complex", + "value": "TAU Tau Ceti f Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1891, 1904], + "ids": [1994, 2007], "mask": "BigInt:4294967296" }, "crew": { @@ -94467,14 +90978,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 909, + "id": 921, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94489,14 +91000,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 910, + "id": 922, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94511,14 +91022,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 911, + "id": 923, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94533,14 +91044,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 912, + "id": 924, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94569,7 +91080,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.38823529411773094 }, "consumption": { "coolant": 0, @@ -94616,7 +91127,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -94625,15 +91136,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 913, + "cooldowns": { "timers": { "production": 0 } }, + "id": 925, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94648,14 +91159,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 914, + "id": 926, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94684,7 +91195,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.38823529411773094 }, "consumption": { "coolant": 0, @@ -94731,7 +91242,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -94740,15 +91251,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 915, + "cooldowns": { "timers": { "production": 0 } }, + "id": 927, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94763,14 +91274,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 916, + "id": 928, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94799,7 +91310,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.44705882352949544 }, "consumption": { "coolant": 0, @@ -94846,7 +91357,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -94855,15 +91366,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 917, + "cooldowns": { "timers": { "production": 0 } }, + "id": 929, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94878,14 +91389,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 918, + "id": 930, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -94914,7 +91425,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0.44705882352949544 }, "consumption": { "coolant": 0, @@ -94961,7 +91472,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -94970,15 +91481,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 919, + "cooldowns": { "timers": { "production": 0 } }, + "id": 931, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 909, + "id": 921, "mask": "BigInt:549755813888" }, "name": { @@ -95001,7 +91512,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 920, + "id": 932, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -95009,8 +91520,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1269708, - "money": 1269708, + "available": 2199010, + "money": 2199010, "name": "budget", "mask": "BigInt:16" }, @@ -95028,13 +91539,13 @@ }, "modules": { "name": "modules", - "ids": [922, 923, 924, 925, 926, 927, 928, 929, 930, 931, 932], + "ids": [934, 935, 936, 937, 938, 939, 940, 941, 942, 943, 944], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [3.770425845204736, -1.5084659985511912], + "coord": [4.5734309683317385, 11.062941307294027], "sector": 21, "moved": false, "mask": "BigInt:2199023255552" @@ -95050,7 +91561,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 38, + "allocationIdCounter": 259, "allocations": [ { "amount": { @@ -95060,13 +91571,13 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 210, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 11, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -95074,10 +91585,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3534, - "type": "outgoing", - "meta": { "tradeId": "921:1890:buy:3534" }, - "id": 37 + "issued": 252, + "type": "incoming", + "meta": { "tradeId": "933:2006:sell:252" }, + "id": 21 } ], "max": 81000, @@ -95087,15 +91598,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 1282, + "fuelium": 1224, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 13378, - "ore": 14374, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -95108,15 +91619,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 1282, + "fuelium": 1224, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 13389, - "ore": 14374, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -95129,15 +91640,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 43615, + "fuelium": 37384, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 27000, - "ore": 54000, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -95151,25 +91662,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [143.97968853287892, 160.5643440990293], - "drones": [1009.1794629356202, 1028.5339276372938], - "electronics": [377.5824012959637, 392.2806449848988], - "engineParts": [351.98508080221416, 363.4915565866198], - "food": [10.705724794982693, 24.341881054708644], - "fuel": [71.3224732905079, 85.58861343865586], - "fuelium": [68.36102309692647, 85.71145349202642], - "gold": [935.6438697698887, 953.6209195729909], - "goldOre": [41.90465060841445, 50.646413350952315], - "hullPlates": [55.925553785801505, 73.67374770696594], - "hydrogen": [86.14504579099219, 100.65569547691913], - "ice": [26.087208178676935, 32.79323170509976], - "metals": [75.58232376390237, 86.11545575470754], - "ore": [31.552770542676974, 42], - "silica": [27.954595000718864, 41.355471977822475], - "silicon": [19.658693983406163, 31.23740277742008], - "superconductors": [481.99686460798125, 490.08851855835536], - "tauMetal": [620.2936068539858, 631.8453593974207], - "water": [37.42243929552479, 53.21090946264158] + "coolant": [121.09282810031257, 140.26451804978143], + "drones": [1281.6997427779556, 1292.3927746128], + "electronics": [383.04915897771787, 394.6028757456123], + "engineParts": [459.5151540395753, 466.00971430064084], + "food": [12.518121740398566, 26.123098308090462], + "fuel": [59.960839160839164, 61.960839160839164], + "fuelium": [56.28709905304193, 70.98912995867354], + "gold": [702.911679270519, 715.5285866290774], + "goldOre": [94.85865850237775, 100.55756144348949], + "hullPlates": [26.644233045703547, 32.13033367570736], + "hydrogen": [36.439126039634075, 54.61949723319904], + "ice": [16.621508347017134, 31.528865518719435], + "metals": [73.68109331287539, 87.42034324324024], + "ore": [41.36102294634539, 58.95903619419465], + "silica": [34.82760601581538, 41.70285432751691], + "silicon": [18.529163946096467, 32.95744042627638], + "superconductors": [488.18464760824764, 498.629573673977], + "tauMetal": [272.4838948272991, 280.38158666743595], + "water": [28.09709846493763, 36.54513901156783] }, "lastPriceAdjust": { "commodities": { @@ -95198,115 +91709,115 @@ "offers": { "coolant": { "active": false, - "price": 144, + "price": 125, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1019, + "price": 1286, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 378, + "price": 386, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 354, + "price": 464, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 19, + "price": 23, "quantity": 0, "type": "buy" }, "fuel": { - "active": false, - "price": 77, - "quantity": 0, - "type": "buy" + "active": true, + "price": 60, + "quantity": 1282, + "type": "sell" }, "fuelium": { - "active": false, - "price": 77, - "quantity": 0, + "active": true, + "price": 64, + "quantity": 36160, "type": "buy" }, "gold": { "active": false, - "price": 940, + "price": 710, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 46, + "price": 98, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 60, + "price": 29, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 94, + "price": 46, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 28, + "price": 31, "quantity": 0, "type": "buy" }, "metals": { - "active": true, + "active": false, "price": 83, - "quantity": 13378, - "type": "sell" + "quantity": 0, + "type": "buy" }, "ore": { - "active": true, - "price": 33, - "quantity": 39626, + "active": false, + "price": 45, + "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 38, + "price": 40, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 27, + "price": 23, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 489, + "price": 495, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 628, + "price": 275, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 43, + "price": 35, "quantity": 0, "type": "buy" } @@ -95330,7 +91841,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1890, 1903], + "ids": [1993, 2006], "mask": "BigInt:4294967296" }, "crew": { @@ -95348,15 +91859,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 5600 }, + "fuelium": { "consumes": 4800, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 2000 }, - "ore": { "consumes": 4000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -95367,14 +91878,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 921, + "id": 933, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { @@ -95389,14 +91900,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 922, + "id": 934, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { @@ -95411,14 +91922,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 923, + "id": 935, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { @@ -95433,19 +91944,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 924, + "id": 936, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -95456,14 +91967,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -95485,7 +91996,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -95501,15 +92012,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -95526,14 +92037,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 925, + "id": 937, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { @@ -95548,19 +92059,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 926, + "id": 938, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -95571,14 +92082,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -95600,7 +92111,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -95616,15 +92127,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -95641,14 +92152,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 927, + "id": 939, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { @@ -95663,19 +92174,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 928, + "id": 940, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -95686,14 +92197,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -95715,7 +92226,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -95731,15 +92242,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -95756,14 +92267,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 929, + "id": 941, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { @@ -95778,19 +92289,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 930, + "id": 942, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -95801,14 +92312,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.01010101010086828, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -95830,7 +92341,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -95846,15 +92357,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -95871,14 +92382,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 931, + "id": 943, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 921, + "id": 933, "mask": "BigInt:549755813888" }, "name": { @@ -95901,16 +92412,23 @@ } }, "cooldowns": { "timers": {} }, - "id": 932, + "id": 944, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 19, - "allocations": [], - "available": 293549, - "money": 293549, + "allocationIdCounter": 14, + "allocations": [ + { + "amount": 12350, + "issued": 1272, + "meta": { "tradeId": "885:1992:buy:1272" }, + "id": 13 + } + ], + "available": 5366281, + "money": 5378631, "name": "budget", "mask": "BigInt:16" }, @@ -95928,14 +92446,14 @@ }, "modules": { "name": "modules", - "ids": [934, 935, 936, 937, 938, 939], + "ids": [946, 947, 948, 949, 950, 951, 952, 953, 954, 955, 956], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-5.006428950274633, -4.043331776770607], - "sector": 19, + "coord": [5.888159757782512, -22.43489664908205], + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, @@ -95944,13 +92462,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 93, "allocations": [ { "amount": { @@ -95959,7 +92477,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 190, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -95972,25 +92490,25 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 11 + "water": 0 }, - "issued": 3420, + "issued": 1272, "type": "incoming", - "meta": { "tradeId": "933:1889:sell:3420" }, - "id": 18 + "meta": { "tradeId": "945:1992:sell:1272" }, + "id": 58 } ], - "max": 20000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 7060, - "fuel": 0, + "food": 0, + "fuel": 2811, "fuelium": 0, - "gold": 0, - "goldOre": 0, + "gold": 4, + "goldOre": 6110, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -96000,18 +92518,18 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2520 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 7060, - "fuel": 0, + "food": 0, + "fuel": 2811, "fuelium": 0, - "gold": 0, - "goldOre": 0, + "gold": 4, + "goldOre": 6110, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -96021,18 +92539,18 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2520 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, - "fuel": 0, + "food": 0, + "fuel": 7614, "fuelium": 0, - "gold": 0, - "goldOre": 0, + "gold": 8552, + "goldOre": 64833, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -96042,7 +92560,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -96051,25 +92569,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [84.38969651932246, 99.63421452700995], - "drones": [1201.9363076590303, 1213.5163238837106], - "electronics": [449.0774725845634, 467.5393734136441], - "engineParts": [275.87508133909785, 289.0597334852969], - "food": [17.920027656093744, 22], - "fuel": [53.370543515025894, 70.89966397345353], - "fuelium": [44.59980746422812, 49.85609843713539], - "gold": [504.6710431106092, 518.608086086791], - "goldOre": [85.81202270511547, 95.59195206805333], - "hullPlates": [54.29316981216859, 59.69610995568778], - "hydrogen": [57.544867011060894, 70.82102341655093], - "ice": [11.898675577114464, 22.600312910643428], - "metals": [82.0483436087786, 94.0354690074586], - "ore": [40.21522715654157, 45.457761951228164], - "silica": [48.500446850869665, 65.28673267483742], - "silicon": [31.13676037274481, 44.45192370339594], - "superconductors": [416.69924117272024, 431.9299913306843], - "tauMetal": [634.5162042921622, 648.3550581840024], - "water": [39.78523158304427, 43] + "coolant": [131.07594972913859, 140.4549835390029], + "drones": [1630.9853209444682, 1642.984764126029], + "electronics": [361.25577524827673, 366.7354945185333], + "engineParts": [418.131935310361, 437.8278861615523], + "food": [8.541769526872699, 18.259787457753912], + "fuel": [57.526993478657424, 67.46334221272669], + "fuelium": [38.39391231906308, 47.930656208595636], + "gold": [754.9405558154039, 770.0405558154039], + "goldOre": [78.82584160293167, 91.98516832058633], + "hullPlates": [51.61529261755709, 64.44066351611795], + "hydrogen": [91.31309165870255, 99.86603190576832], + "ice": [25.565997419651957, 38.690676809984986], + "metals": [53.609403524599244, 65.03452079305589], + "ore": [38.23742766873916, 54.36551227785031], + "silica": [26.196835663594925, 44.31409427169197], + "silicon": [23.11107146271653, 39.01289463521044], + "superconductors": [299.7538246695759, 318.66491489111246], + "tauMetal": [347.0105013041211, 360.9961058830644], + "water": [29.813037745511146, 38.123477290291845] }, "lastPriceAdjust": { "commodities": { @@ -96098,116 +92616,116 @@ "offers": { "coolant": { "active": false, - "price": 88, + "price": 136, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1208, + "price": 1640, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 456, + "price": 361, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 278, + "price": 422, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 21, - "quantity": 6273, + "active": false, + "price": 10, + "quantity": 0, "type": "buy" }, "fuel": { - "active": false, - "price": 63, - "quantity": 0, + "active": true, + "price": 58, + "quantity": 4803, "type": "buy" }, "fuelium": { "active": false, - "price": 49, + "price": 47, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 506, - "quantity": 0, - "type": "buy" + "active": true, + "price": 769, + "quantity": 4, + "type": "sell" }, "goldOre": { - "active": false, - "price": 87, - "quantity": 0, + "active": true, + "price": 89, + "quantity": 58723, "type": "buy" }, "hullPlates": { "active": false, - "price": 55, + "price": 59, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 63, + "price": 92, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 12, + "price": 29, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 92, + "price": 54, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 43, + "price": 46, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 62, + "price": 38, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 36, + "price": 28, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 426, + "price": 300, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 638, + "price": 357, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 40, - "quantity": 4146, + "active": false, + "price": 35, + "quantity": 0, "type": "buy" } }, @@ -96225,17 +92743,17 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti e Hub", + "value": "TAU The Hive Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1889], + "ids": [1992, 2005], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -96247,11 +92765,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 256, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 552, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 620 }, + "goldOre": { "consumes": 4700, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -96261,25 +92779,91 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 128, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 933, + "id": 945, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 933, + "id": 945, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 946, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 945, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 947, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 945, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 948, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 945, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -96292,7 +92876,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.19335154826957623, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -96310,11 +92894,11 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.3333333333333499, - "fuel": 0, + "food": 0, + "fuel": 4.600000000000053, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 4.16666666666702, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -96324,7 +92908,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.666666666666675 + "water": 0 } }, "name": "production", @@ -96334,11 +92918,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 256, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -96348,43 +92932,141 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 128, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 934, - "tags": ["facilityModule", "facilityModuleType:hub"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 949, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 933, + "id": 945, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 14, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 935, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 950, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 933, + "id": 945, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 951, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 945, "mask": "BigInt:549755813888" }, "name": { @@ -96399,74 +93081,222 @@ } }, "cooldowns": { "timers": {} }, - "id": 936, + "id": 952, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 933, + "id": 945, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 953, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 945, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, "cooldowns": { "timers": {} }, - "id": 937, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 954, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 933, + "id": 945, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 938, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 955, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 933, + "id": 945, "mask": "BigInt:549755813888" }, "name": { @@ -96489,23 +93319,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 939, + "id": 956, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 15, - "allocations": [ - { - "amount": 840, - "issued": 3585, - "meta": { "tradeId": "909:1888:buy:3585" }, - "id": 14 - } - ], - "available": 155714, - "money": 156554, + "allocationIdCounter": 1, + "allocations": [], + "available": 1050845, + "money": 1050845, "name": "budget", "mask": "BigInt:16" }, @@ -96523,14 +93346,14 @@ }, "modules": { "name": "modules", - "ids": [941, 942, 943, 944, 945, 946], + "ids": [958, 959, 960, 961, 962, 963, 964, 965, 966, 967, 968], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-3.7797810074239013, 0.8735795339046675], - "sector": 20, + "coord": [-13.095192324236942, 1.833017975463556], + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, @@ -96539,13 +93362,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, + "allocationIdCounter": 115, "allocations": [ { "amount": { @@ -96567,77 +93390,131 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24 + "water": 190 + }, + "issued": 3561, + "type": "outgoing", + "meta": { "tradeId": "957:1978:buy:3561" }, + "id": 112 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 190 + }, + "issued": 3576, + "type": "outgoing", + "meta": { "tradeId": "957:1991:buy:3576" }, + "id": 113 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 210, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, "issued": 3585, "type": "incoming", - "meta": { "tradeId": "940:1888:sell:3585" }, - "id": 14 + "meta": { "tradeId": "957:2004:sell:3585" }, + "id": 114 } ], - "max": 20000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4955, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 482, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6642 + "water": 15629 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4955, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 482, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6642 + "water": 16009 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 46285, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 34714 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -96646,25 +93523,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [90.86455609836617, 99.40764998005507], - "drones": [1687.4503808994548, 1693.0495846317797], - "electronics": [427.91290854425705, 432.91718027449963], - "engineParts": [446.87364553370026, 456.9435785291437], - "food": [18.17921137529701, 22], - "fuel": [75.22993350456449, 86.60607450607692], - "fuelium": [38.82467881548469, 48.68304422267228], - "gold": [876.3915298387188, 891.8619986717682], - "goldOre": [32.68767816620277, 46.452589254131446], - "hullPlates": [38.19624638215295, 47.34147532284314], - "hydrogen": [95.841971884126, 114.99527492457176], - "ice": [18.520556571664304, 37.200142845239135], - "metals": [82.27966066961696, 91.05759518513226], - "ore": [35.988604497724694, 50.664407470400256], - "silica": [22.646946699298066, 40.35921422608632], - "silicon": [29.725196967588992, 41.06439893923776], - "superconductors": [553.5444575925262, 563.9955683626811], - "tauMetal": [402.9509886992546, 420.5094975884121], - "water": [35.07331756428869, 43] + "coolant": [109.12078991328161, 122.09865667458693], + "drones": [985.6588732035711, 1000.5498090418738], + "electronics": [423.62186972548403, 436.63064191088637], + "engineParts": [307.3138956248172, 323.1601635624905], + "food": [20.377249854830044, 39.38628312596204], + "fuel": [73.97948920483694, 91.46683289713121], + "fuelium": [29.937918012032476, 46.29500924658295], + "gold": [419.6155638360742, 432.5343881894493], + "goldOre": [65.648566000789, 78.08012132049257], + "hullPlates": [37.796495121486835, 56.79771841820286], + "hydrogen": [73.54147855229391, 88.94471281130538], + "ice": [21.912936004838286, 27], + "metals": [75.75131393606475, 85.23569544795578], + "ore": [33.782573383078315, 45.285671638583565], + "silica": [18.37406228439244, 26.66179094153661], + "silicon": [23.155309898051705, 38.96200174424765], + "superconductors": [437.07954001519164, 442.3980548627581], + "tauMetal": [341.6353925492556, 346.85271431055423], + "water": [31, 37.50015585926053] }, "lastPriceAdjust": { "commodities": { @@ -96693,117 +93570,117 @@ "offers": { "coolant": { "active": false, - "price": 96, + "price": 110, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1688, + "price": 990, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 428, + "price": 429, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 453, + "price": 308, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 18, - "quantity": 8378, + "active": false, + "price": 23, + "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 76, + "price": 77, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 47, + "price": 35, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 888, + "price": 420, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 35, + "price": 73, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 40, + "price": 48, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 99, + "price": 80, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 18, - "quantity": 0, + "active": true, + "price": 23, + "quantity": 45803, "type": "buy" }, "metals": { "active": false, - "price": 88, + "price": 79, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 38, + "price": 44, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 27, + "price": 21, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 34, + "price": 24, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 563, + "price": 440, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 416, + "price": 342, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, - "quantity": 24, - "type": "buy" + "price": 32, + "quantity": 15629, + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -96820,17 +93697,17 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti f Hub", + "value": "TAU The Hive Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1888], + "ids": [1991, 2004], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -96842,39 +93719,105 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 4800, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 0, "produces": 3600 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 940, + "id": 957, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 940, + "id": 957, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 958, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 957, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 959, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 957, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 960, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 957, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -96898,14 +93841,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.5999999999999996, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -96919,7 +93862,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7999999999999998 + "water": 0 } }, "name": "production", @@ -96929,581 +93872,298 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, "produced": true, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 941, - "tags": ["facilityModule", "facilityModuleType:hub"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 961, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 940, + "id": 957, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 14, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 942, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 962, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 940, + "id": 957, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Water Production", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8235294117647598 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 943, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 963, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 940, + "id": 957, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 944, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 964, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 940, + "id": 957, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Water Production", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8235294117647598 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 945, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 965, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 940, + "id": 957, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 946, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 966, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { - "budget": { - "allocationIdCounter": 32, - "allocations": [ - { - "amount": 1188, - "issued": 3501, - "meta": { "tradeId": "947:1894:sell:3501" }, - "id": 30 - }, - { - "amount": 840, - "issued": 3558, - "meta": { "tradeId": "909:1887:buy:3558" }, - "id": 31 - } - ], - "available": 166026, - "money": 168054, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [948, 949, 950, 951, 952, 953], - "mask": "BigInt:68719476736" + "parent": { + "name": "parent", + "id": 957, + "mask": "BigInt:549755813888" }, - "position": { - "name": "position", - "angle": 0, - "coord": [7.655723913731926, 5.715158460865048], - "sector": 21, - "moved": false, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 9778411, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fHub", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 32, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 33 - }, - "issued": 3501, - "type": "incoming", - "meta": { "tradeId": "947:1894:sell:3501" }, - "id": 30 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 24 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "947:1887:sell:3558" }, - "id": 31 - } - ], - "max": 20000, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 5159, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6636 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 5159, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6636 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 13333, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6666 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [88.7792557104368, 95.45143496510042], - "drones": [1126.1264627715154, 1132.080056121878], - "electronics": [414.9625477612106, 427.36696083713787], - "engineParts": [355.9127752870787, 362.2428553507122], - "food": [18.402218339741935, 22], - "fuel": [31.21177025330979, 50.36170589957743], - "fuelium": [36.66615666733489, 46.261249723707536], - "gold": [766.0183559147902, 779.840893133441], - "goldOre": [93.49122277641389, 98.51886063104392], - "hullPlates": [31.62397316813662, 50.74282771349432], - "hydrogen": [86.93344722583913, 93.24249598991035], - "ice": [21.360632962001723, 32.94425012628164], - "metals": [33.6745391415349, 45.02132290476354], - "ore": [35.46779060745676, 41.82289198367957], - "silica": [43.25170212210102, 62.91223793767126], - "silicon": [28.807698112728534, 39.52210075571192], - "superconductors": [428.09207352446765, 440.4118517037167], - "tauMetal": [354.38603684806174, 374.2061090356341], - "water": [34.32959365447936, 39.370000000000005] - }, - "lastPriceAdjust": { - "commodities": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 89, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": false, - "price": 1126, - "quantity": 0, - "type": "buy" - }, - "electronics": { - "active": false, - "price": 419, - "quantity": 0, - "type": "buy" - }, - "engineParts": { - "active": false, - "price": 361, - "quantity": 0, - "type": "buy" - }, - "food": { - "active": true, - "price": 21, - "quantity": 8174, - "type": "buy" - }, - "fuel": { - "active": false, - "price": 48, - "quantity": 0, - "type": "buy" - }, - "fuelium": { - "active": false, - "price": 39, - "quantity": 0, - "type": "buy" - }, - "gold": { - "active": false, - "price": 766, - "quantity": 0, - "type": "buy" - }, - "goldOre": { - "active": false, - "price": 95, - "quantity": 0, - "type": "buy" - }, - "hullPlates": { - "active": false, - "price": 40, - "quantity": 0, - "type": "buy" - }, - "hydrogen": { - "active": false, - "price": 92, - "quantity": 0, - "type": "buy" - }, - "ice": { - "active": false, - "price": 24, - "quantity": 0, - "type": "buy" - }, - "metals": { - "active": false, - "price": 36, - "quantity": 0, - "type": "buy" - }, - "ore": { - "active": false, - "price": 37, - "quantity": 0, - "type": "buy" - }, - "silica": { - "active": false, - "price": 51, - "quantity": 0, - "type": "buy" - }, - "silicon": { - "active": false, - "price": 31, - "quantity": 0, - "type": "buy" - }, - "superconductors": { - "active": false, - "price": 433, - "quantity": 0, - "type": "buy" - }, - "tauMetal": { - "active": false, - "price": 369, - "quantity": 0, - "type": "buy" - }, - "water": { - "active": true, - "price": 36, - "quantity": 30, - "type": "buy" - } - }, - "mask": "BigInt:34359738368" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 100000, "regen": 0, "value": 100000 }, - "mask": "BigInt:1048576" - }, - "name": { - "name": "name", - "value": "TAU The Hive Hub", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [1887], - "mask": "BigInt:4294967296" - }, - "crew": { - "name": "crew", - "workers": { "current": 3.5, "max": 14 }, - "mood": 50, - "mask": "BigInt:140737488355328" - }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, - "compoundProduction": { - "name": "compoundProduction", - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 312, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 156, "produces": 0 } - }, - "mask": "BigInt:1024" - } - }, - "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 947, - "tags": ["selection", "facility"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 947, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Sector Hub", - "mask": "BigInt:137438953472" + "name": { + "name": "name", + "value": "Water Production", + "mask": "BigInt:137438953472" }, "production": { "buffer": { @@ -97526,14 +94186,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.6645352591003757e-14, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -97547,7 +94207,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.0000000000000133 + "water": 0 } }, "name": "production", @@ -97557,139 +94217,40 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 312, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 156, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, "produced": true, "mask": "BigInt:1099511627776" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 948, - "tags": ["facilityModule", "facilityModuleType:hub"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 947, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 949, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 947, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 950, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 947, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 951, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 947, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 952, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 967, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 947, + "id": 957, "mask": "BigInt:549755813888" }, "name": { @@ -97712,16 +94273,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 953, + "id": 968, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 81, + "allocationIdCounter": 1, "allocations": [], - "available": 4123096, - "money": 4123096, + "available": 1692535, + "money": 1692535, "name": "budget", "mask": "BigInt:16" }, @@ -97739,14 +94300,14 @@ }, "modules": { "name": "modules", - "ids": [955, 956, 957, 958, 959, 960, 961, 962, 963, 964, 965, 966], + "ids": [970, 971, 972, 973, 974, 975, 976, 977, 978, 979, 980], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-2.034314573553015, 12.430357391784554], - "sector": 19, + "coord": [8.36137951540884, -0.7501531182169305], + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, @@ -97755,13 +94316,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 104, + "allocationIdCounter": 72, "allocations": [ { "amount": { @@ -97778,121 +94339,40 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3312, - "type": "incoming", - "meta": { "tradeId": "954:1884:sell:3312" }, - "id": 96 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3327, - "type": "incoming", - "meta": { "tradeId": "954:1885:sell:3327" }, - "id": 97 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3360, - "type": "incoming", - "meta": { "tradeId": "954:1886:sell:3360" }, - "id": 99 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, + "ore": 210, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, - "issued": 3381, + "issued": 3588, "type": "incoming", - "meta": { "tradeId": "954:1883:sell:3381" }, - "id": 100 + "meta": { "tradeId": "969:2003:sell:3588" }, + "id": 71 } ], - "max": 181000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 20473, + "fuel": 0, "fuelium": 0, - "gold": 11517, + "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 15450, + "hydrogen": 0, "ice": 0, - "metals": 19487, - "ore": 0, + "metals": 14675, + "ore": 9297, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 20249, - "water": 17860 + "tauMetal": 0, + "water": 0 }, "stored": { "coolant": 0, @@ -97900,20 +94380,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 20473, + "fuel": 0, "fuelium": 0, - "gold": 11517, + "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 15450, + "hydrogen": 0, "ice": 0, - "metals": 19487, - "ore": 0, + "metals": 14675, + "ore": 9297, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 20249, - "water": 17860 + "tauMetal": 0, + "water": 0 }, "quota": { "coolant": 0, @@ -97921,20 +94401,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 42229, + "fuel": 0, "fuelium": 0, - "gold": 13604, + "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 24488, + "hydrogen": 0, "ice": 0, - "metals": 34012, - "ore": 0, + "metals": 27000, + "ore": 54000, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 34012, - "water": 32651 + "tauMetal": 0, + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -97943,25 +94423,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [130.30129306740798, 146.0906680860202], - "drones": [697.2282271853882, 716.0570375867842], - "electronics": [422.0509915655287, 429.81076735487613], - "engineParts": [205.35930463691435, 222.8084217873385], - "food": [16.479761357560665, 34.44279608500395], - "fuel": [44.99652295315591, 60.21370592068639], - "fuelium": [35.658667649073664, 49.97149222292575], - "gold": [585.525954424502, 591.9243015492791], - "goldOre": [91.72629869921664, 105.21764412897953], - "hullPlates": [26.39345194730422, 34.48485100759432], - "hydrogen": [68, 70], - "ice": [16.701100792282467, 24.054340904610115], - "metals": [82.95928040463875, 100], - "ore": [20.741706587728746, 30.814518642067384], - "silica": [27.677900262887405, 41.65959173203416], - "silicon": [23.706421099447525, 31.189578939283656], - "superconductors": [502.1450782146676, 509.4550658234393], - "tauMetal": [371, 378.42], - "water": [31.936864918857257, 39.69978935332602] + "coolant": [80.98626215995554, 94.57177261255211], + "drones": [1132.2470120519276, 1146.6499693482099], + "electronics": [340.6558512968179, 346.816837988766], + "engineParts": [324.8572673359934, 337.5418844667844], + "food": [9.07515399167787, 23.46902037424821], + "fuel": [47.30797590216168, 66.75398334652891], + "fuelium": [31.77592882019368, 50.64031469961733], + "gold": [772.1680435651308, 779.4264335065124], + "goldOre": [74.72661122623816, 81.72232366846517], + "hullPlates": [48.447326925506275, 55.79575095548178], + "hydrogen": [95.1373679065166, 110.70755893620073], + "ice": [20.245692578471797, 30.870234596266855], + "metals": [73.50674750552507, 75.50674750552507], + "ore": [35.89714479269104, 42], + "silica": [17.382600275203153, 33.035775847140144], + "silicon": [20.249270513274645, 34.53576143315766], + "superconductors": [538.963862526191, 554.7870064797306], + "tauMetal": [221.4849670994468, 229.42658588642428], + "water": [23.44932808648353, 35.78021922547715] }, "lastPriceAdjust": { "commodities": { @@ -97990,116 +94470,116 @@ "offers": { "coolant": { "active": false, - "price": 134, + "price": 91, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 713, + "price": 1141, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 426, + "price": 342, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 213, + "price": 329, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 31, + "price": 19, "quantity": 0, "type": "buy" }, "fuel": { - "active": true, - "price": 53, - "quantity": 21756, + "active": false, + "price": 50, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 47, + "price": 34, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 589, - "quantity": 2087, + "active": false, + "price": 774, + "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 98, + "price": 76, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 34, + "price": 55, "quantity": 0, "type": "buy" }, "hydrogen": { - "active": true, - "price": 68, - "quantity": 15450, - "type": "sell" + "active": false, + "price": 107, + "quantity": 0, + "type": "buy" }, "ice": { "active": false, - "price": 21, + "price": 29, "quantity": 0, "type": "buy" }, "metals": { "active": true, - "price": 84, - "quantity": 14525, - "type": "buy" + "price": 73, + "quantity": 14675, + "type": "sell" }, "ore": { - "active": false, - "price": 26, - "quantity": 0, + "active": true, + "price": 39, + "quantity": 44703, "type": "buy" }, "silica": { "active": false, - "price": 28, + "price": 24, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 30, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 509, + "price": 550, "quantity": 0, "type": "buy" }, "tauMetal": { - "active": true, - "price": 377, - "quantity": 20249, - "type": "sell" + "active": false, + "price": 225, + "quantity": 0, + "type": "buy" }, "water": { - "active": true, - "price": 37, - "quantity": 14791, + "active": false, + "price": 27, + "quantity": 0, "type": "buy" } }, @@ -98117,12 +94597,12 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti e Factory", + "value": "TAU The Hive Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1886, 1885, 1884, 1883], + "ids": [1990, 2003], "mask": "BigInt:4294967296" }, "crew": { @@ -98140,33 +94620,33 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 1552, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 500, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 900 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 1250, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 2000 }, + "ore": { "consumes": 4000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 1250 }, - "water": { "consumes": 1200, "produces": 0 } + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 954, + "id": 969, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { @@ -98181,14 +94661,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 955, + "id": 970, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { @@ -98203,115 +94683,41 @@ } }, "cooldowns": { "timers": {} }, - "id": 956, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 954, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 957, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 954, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 958, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 954, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 959, + "id": 971, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 960, + "id": 972, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Tau-Metal Factory", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -98329,12 +94735,12 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0.05808080808074134, + "tauMetal": 0, "water": 0 }, "consumption": { @@ -98345,13 +94751,13 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.3333333333332451, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 3.83333333333351, - "ore": 0, + "metals": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -98367,39 +94773,66 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 600, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 250, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 625, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 625 }, + "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 961, + "id": 973, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hydrogen Factory", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 974, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 969, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -98415,9 +94848,9 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.3409090909090913, + "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -98431,7 +94864,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -98439,7 +94872,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -98455,20 +94888,20 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" @@ -98480,19 +94913,41 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 962, + "id": 975, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hydrogen Factory", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 976, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 969, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -98508,9 +94963,9 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.3409090909090913, + "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -98524,7 +94979,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -98532,7 +94987,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -98548,20 +95003,20 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" @@ -98573,19 +95028,41 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 963, + "id": 977, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hydrogen Factory", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 978, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 969, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -98601,9 +95078,9 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.3409090909090913, + "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -98617,7 +95094,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -98625,7 +95102,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -98641,20 +95118,20 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" @@ -98666,24 +95143,180 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 964, + "id": 979, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 969, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hydrogen Factory", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 980, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 273092, + "money": 273092, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [982, 983, 984, 985, 986, 987], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-4.746485162821631, -4.929034019495933], + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9778411, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fHub", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 4736, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 2974 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 4736, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 2974 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 13333, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6666 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [121.76590125443566, 132.42653193314146], + "drones": [1654.2916485523285, 1670.6212451663123], + "electronics": [363.17468963750554, 374.0023538280343], + "engineParts": [293.8366096855955, 304.2938042074626], + "food": [13.074739334673923, 22], + "fuel": [27.922544632689753, 39.57110273094919], + "fuelium": [28.62320994746497, 42.87009117143853], + "gold": [375.36922275038364, 388.30591672919525], + "goldOre": [40.60815723072888, 50.72218549124007], + "hullPlates": [62.137225040786085, 80.76545990915605], + "hydrogen": [66.16848916806282, 83.5848603225579], + "ice": [20.682274606548564, 36.07546263253816], + "metals": [98.23353513077895, 107.79128737205025], + "ore": [40.80566212427206, 50.80621868895927], + "silica": [23.805434355999672, 37.640788254825615], + "silicon": [25.98503105644915, 38.09505831620348], + "superconductors": [530.9826505502267, 549.1421366332657], + "tauMetal": [553.6824126637309, 571.0624923224264], + "water": [34.252998357093546, 43] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, @@ -98694,7 +95327,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.3409090909090913, + "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, @@ -98704,42 +95337,167 @@ "tauMetal": 0, "water": 0 }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 126, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1668, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 365, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 302, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 17, + "quantity": 8597, + "type": "buy" + }, + "fuel": { + "active": false, + "price": 32, + "quantity": 0, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 35, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 378, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 45, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 73, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 74, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 27, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 103, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 46, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 36, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 33, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 533, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 567, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 35, + "quantity": 3692, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "TAU Tau Ceti e Hub", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1989], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 3.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 164, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -98747,31 +95505,25 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "water": { "consumes": 82, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" + "mask": "BigInt:1024" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 965, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 981, + "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 954, + "id": 981, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Tau-Metal Factory", + "value": "Sector Hub", "mask": "BigInt:137438953472" }, "production": { @@ -98794,7 +95546,7 @@ "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0.05808080808074134, + "tauMetal": 0, "water": 0 }, "consumption": { @@ -98802,21 +95554,21 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 4.59999999999999, "fuel": 0, "fuelium": 0, - "gold": 0.3333333333332451, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 3.83333333333351, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 2.799999999999995 } }, "name": "production", @@ -98826,62 +95578,171 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 600, "produces": 0 }, + "food": { "consumes": 164, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 250, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 625, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 625 }, - "water": { "consumes": 0, "produces": 0 } + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 82, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 966, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 982, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 981, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 983, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 981, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 984, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 981, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 985, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 981, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 986, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 981, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 987, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 124, - "allocations": [ - { - "amount": 27864, - "issued": 3534, - "meta": { "tradeId": "861:1882:buy:3534" }, - "id": 120 - }, - { - "amount": 1023, - "issued": 3534, - "meta": { "tradeId": "967:1890:sell:3534" }, - "id": 121 - }, - { - "amount": 7790, - "issued": 3540, - "meta": { "tradeId": "885:1880:buy:3540" }, - "id": 122 - }, - { - "amount": 17670, - "issued": 3546, - "meta": { "tradeId": "967:1896:sell:3546" }, - "id": 123 - } - ], - "available": 3638630, - "money": 3692977, + "allocationIdCounter": 1, + "allocations": [], + "available": 217275, + "money": 217275, "name": "budget", "mask": "BigInt:16" }, @@ -98899,14 +95760,14 @@ }, "modules": { "name": "modules", - "ids": [968, 969, 970, 971, 972, 973, 974, 975, 976, 977, 978, 979], + "ids": [989, 990, 991, 992, 993, 994], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-18.027212574429974, 5.599245480904791], - "sector": 19, + "coord": [6.740340134429815, 7.948296229084718], + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, @@ -98915,267 +95776,77 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fHub", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 151, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 11, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "incoming", - "meta": { "tradeId": "967:1879:sell:3483" }, - "id": 144 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 11, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3486, - "type": "incoming", - "meta": { "tradeId": "967:1881:sell:3486" }, - "id": 145 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 11, - "water": 0 - }, - "issued": 3519, - "type": "outgoing", - "meta": { "tradeId": "967:1901:buy:3519" }, - "id": 146 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 36, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3534, - "type": "incoming", - "meta": { "tradeId": "967:1882:sell:3534" }, - "id": 147 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 11, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3534, - "type": "incoming", - "meta": { "tradeId": "967:1890:sell:3534" }, - "id": 148 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 190, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "incoming", - "meta": { "tradeId": "967:1880:sell:3540" }, - "id": 149 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 190, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3546, - "type": "incoming", - "meta": { "tradeId": "967:1896:sell:3546" }, - "id": 150 - } - ], - "max": 181000, + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 12079, + "food": 6784, + "fuel": 0, "fuelium": 0, - "gold": 7163, + "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 23625, + "hydrogen": 0, "ice": 0, - "metals": 18696, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 10425, - "water": 24532 + "tauMetal": 0, + "water": 4054 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 12079, + "food": 6784, + "fuel": 0, "fuelium": 0, - "gold": 7163, + "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 23625, + "hydrogen": 0, "ice": 0, - "metals": 18696, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 10436, - "water": 24532 + "tauMetal": 0, + "water": 4054 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 36445, + "food": 13333, + "fuel": 0, "fuelium": 0, - "gold": 8760, + "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 39424, + "hydrogen": 0, "ice": 0, - "metals": 21902, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 21902, - "water": 52565 + "tauMetal": 0, + "water": 6666 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -99184,25 +95855,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [100.05867179340594, 113.59041494029324], - "drones": [1253.1161836712963, 1260.2209598332904], - "electronics": [254.28707903909418, 270.7727880522763], - "engineParts": [346.61412576667885, 351.82684893548844], - "food": [16.93708057149042, 24.51831614135832], - "fuel": [44.67348631898122, 61.632566687870046], - "fuelium": [38.30752165650657, 53.690815353739794], - "gold": [690.4368576761017, 697.8898553218971], - "goldOre": [70.9111408940555, 90.5890179505117], - "hullPlates": [50.63400554623521, 57.13351680716992], - "hydrogen": [68, 70], - "ice": [24.445685481499424, 32.76197455191391], - "metals": [90.73551325687998, 100], - "ore": [37.67526430726269, 53.88394349063993], - "silica": [25.782101777632434, 42.42231933397945], - "silicon": [28.08812741887107, 37.94794432423565], - "superconductors": [531.2185507529134, 545.8543771554637], - "tauMetal": [421, 429.42], - "water": [27.777571705503345, 41.651612903225804] + "coolant": [55.43194401143714, 62.60803183947236], + "drones": [1331.5584495188114, 1346.6772206155351], + "electronics": [265.919245544759, 276.2019501309043], + "engineParts": [261.0238905747186, 266.5994922486713], + "food": [14.265824854092525, 19.014285714285712], + "fuel": [26.717114068291707, 42.61986504394577], + "fuelium": [25.068975035825776, 41.533285599549174], + "gold": [359.6155846248581, 365.28152978128696], + "goldOre": [74.13845418579285, 92.2887991653482], + "hullPlates": [54.18887254357382, 71.13204387891933], + "hydrogen": [64.88842117442334, 71.10697019039732], + "ice": [19.097262248557268, 33.96820695947058], + "metals": [62.19435751723279, 77.90932659047512], + "ore": [34.72061296023063, 40.39720151778822], + "silica": [18.195566953225477, 33.82802700164042], + "silicon": [24.89232524651868, 38.679534630455024], + "superconductors": [463.01888864264276, 480.49531841990273], + "tauMetal": [264.5282280269738, 280.9007754643144], + "water": [32.538254064226784, 43] }, "lastPriceAdjust": { "commodities": { @@ -99231,55 +95902,55 @@ "offers": { "coolant": { "active": false, - "price": 100, + "price": 58, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1253, + "price": 1344, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 257, + "price": 276, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 350, + "price": 263, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 19, - "quantity": 0, + "active": true, + "price": 18, + "quantity": 6549, "type": "buy" }, "fuel": { - "active": true, - "price": 51, - "quantity": 24366, + "active": false, + "price": 33, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 47, + "price": 29, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 697, - "quantity": 1597, + "active": false, + "price": 360, + "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 88, + "price": 78, "quantity": 0, "type": "buy" }, @@ -99290,57 +95961,57 @@ "type": "buy" }, "hydrogen": { - "active": true, - "price": 69, - "quantity": 23625, - "type": "sell" + "active": false, + "price": 70, + "quantity": 0, + "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 32, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 93, - "quantity": 3206, + "active": false, + "price": 63, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 49, + "price": 39, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 35, + "price": 25, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 31, + "price": 36, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 532, + "price": 470, "quantity": 0, "type": "buy" }, "tauMetal": { - "active": true, - "price": 426, - "quantity": 10425, - "type": "sell" + "active": false, + "price": 275, + "quantity": 0, + "type": "buy" }, "water": { "active": true, - "price": 41, - "quantity": 28033, + "price": 39, + "quantity": 2612, "type": "buy" } }, @@ -99358,17 +96029,17 @@ }, "name": { "name": "name", - "value": "TAU Tau Ceti e Factory", + "value": "TAU Tau Ceti f Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1882, 1881, 1880, 1879], + "ids": [1988], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 3.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -99380,34 +96051,122 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 1040, "produces": 0 }, + "food": { "consumes": 164, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 250, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 1125 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 625, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 625 }, - "water": { "consumes": 1500, "produces": 0 } + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 82, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 967, + "id": 988, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 988, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Sector Hub", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 4.59999999999999, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 2.799999999999995 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 164, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 82, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 989, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 988, "mask": "BigInt:549755813888" }, "name": { @@ -99422,36 +96181,36 @@ } }, "cooldowns": { "timers": {} }, - "id": 968, + "id": 990, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 988, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Storage", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 1000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 969, + "id": 991, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 988, "mask": "BigInt:549755813888" }, "name": { @@ -99474,183 +96233,238 @@ } }, "cooldowns": { "timers": {} }, - "id": 970, + "id": 992, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 988, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 971, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 993, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 988, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 972, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 994, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { - "parent": { - "name": "parent", - "id": 967, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 47, + "allocations": [], + "available": 188643, + "money": 188643, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 973, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 967, - "mask": "BigInt:549755813888" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "name": { - "name": "name", - "value": "Hydrogen Factory", - "mask": "BigInt:137438953472" + "modules": { + "name": "modules", + "ids": [996, 997, 998, 999, 1000, 1001], + "mask": "BigInt:68719476736" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0.46951219512194875, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 + "position": { + "name": "position", + "angle": 0, + "coord": [-3.755536889951613, -8.961911140425158], + "sector": 21, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9778411, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fHub", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 47, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 27 + }, + "issued": 3558, + "type": "incoming", + "meta": { "tradeId": "995:1987:sell:3558" }, + "id": 46 } + ], + "max": 20000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 4067, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6630 }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 4067, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6630 }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 974, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 967, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Hydrogen Factory", - "mask": "BigInt:137438953472" + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 13333, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6666 + }, + "name": "storage", + "mask": "BigInt:35184372088832" }, - "production": { - "buffer": { - "production": { + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [49.9071716818705, 55.11655796442103], + "drones": [938.5293276775185, 956.1337089930502], + "electronics": [314.1005458873132, 333.0148742059246], + "engineParts": [237.71424182768158, 249.33556937015064], + "food": [18.777074174032315, 22], + "fuel": [42.589875888802666, 60.773263033601566], + "fuelium": [26.857570789912273, 34.2180919793476], + "gold": [769.9115615750959, 779.7557984701377], + "goldOre": [43.37583487332405, 58.76168796050728], + "hullPlates": [66.67860717266095, 84.07954201682075], + "hydrogen": [71.3637273875511, 82.78197454326289], + "ice": [18.747011910500238, 30.12943553080498], + "metals": [58.31698186260127, 77.82233908401724], + "ore": [35.89363527493541, 52.81629468454154], + "silica": [38.460901153140306, 47.090363168645524], + "silicon": [29.019664448932858, 45.375928754098496], + "superconductors": [265.5794627670689, 280.3500748332468], + "tauMetal": [366.01310408455197, 372.6780599420329], + "water": [23.89384130803069, 38.7375] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, @@ -99661,27 +96475,6 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.46951219512194875, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -99691,22 +96484,168 @@ "superconductors": 0, "tauMetal": 0, "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 54, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 950, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 326, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 238, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 21, + "quantity": 9266, + "type": "buy" + }, + "fuel": { + "active": false, + "price": 44, + "quantity": 0, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 32, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 777, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 46, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 76, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 79, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 23, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 65, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 41, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 45, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 40, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 275, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 372, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 32, + "quantity": 36, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "TAU The Hive Hub", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1987], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 3.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 496, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -99714,31 +96653,25 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "water": { "consumes": 248, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" + "mask": "BigInt:1024" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 975, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 995, + "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 995, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hydrogen Factory", + "value": "Sector Hub", "mask": "BigInt:137438953472" }, "production": { @@ -99754,7 +96687,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.46951219512194875, + "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, @@ -99769,8 +96702,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, + "food": 1.4000000000001016, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -99783,7 +96716,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 5.200000000000051 } }, "name": "production", @@ -99793,13 +96726,13 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 496, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -99807,36 +96740,359 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "water": { "consumes": 248, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 996, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 995, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 997, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 995, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 998, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 995, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 976, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 999, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 995, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Tau-Metal Factory", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1000, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 995, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1001, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 43, + "allocations": [ + { + "amount": 715, + "issued": 1275, + "meta": { "tradeId": "885:1986:buy:1275" }, + "id": 40 + }, + { + "amount": 12350, + "issued": 1374, + "meta": { "tradeId": "885:1985:buy:1374" }, + "id": 42 + } + ], + "available": 1865012, + "money": 1878077, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [1003, 1004, 1005, 1006, 1007, 1008, 1009, 1010], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [7.083463657307277, 3.1710562335182146], + "sector": 21, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9778411, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 43, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 11, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1275, + "type": "incoming", + "meta": { "tradeId": "1002:1986:sell:1275" }, + "id": 40 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1374, + "type": "incoming", + "meta": { "tradeId": "1002:1985:sell:1374" }, + "id": 42 + } + ], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 14614, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 46260, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 54743 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 14614, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 46260, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 54743 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 25983, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 66435, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 88580 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [101.1860497833878, 112.21656084221385], + "drones": [1465.9636467762791, 1481.3837056093246], + "electronics": [219.03603468938707, 228.06744076051083], + "engineParts": [191.86887223467033, 206.58825532770246], + "food": [13.262851046713457, 26.424784817080575], + "fuel": [56.09354907102106, 63.222912047971704], + "fuelium": [41.695866866665426, 49.656104823027505], + "gold": [349.33878167141984, 361.2654078827788], + "goldOre": [70.36595827864232, 86.52461450534207], + "hullPlates": [44.57713730919686, 55.986203053417285], + "hydrogen": [72, 74], + "ice": [11.003383248356215, 28.576234302645183], + "metals": [65.32953493237122, 71.60848317111937], + "ore": [25.999177331886806, 39.325970650043566], + "silica": [24.199503426447205, 34.27180403086061], + "silicon": [29.81982899435773, 41.193665208539784], + "superconductors": [517.1509806591953, 535.8544148638206], + "tauMetal": [409.42168000203753, 414.9640915050277], + "water": [34.41095991993505, 41.00625] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, @@ -99854,67 +97110,331 @@ "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0.7486449864498121, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0.3333333333332451, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 3.83333333333351, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, "tauMetal": 0, "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 107, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1477, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 221, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 203, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": false, + "price": 13, + "quantity": 0, + "type": "buy" + }, + "fuel": { + "active": true, + "price": 61, + "quantity": 11369, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 47, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 354, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 71, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 55, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": true, + "price": 73, + "quantity": 46260, + "type": "sell" + }, + "ice": { + "active": false, + "price": 21, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 68, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 33, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 27, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 32, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 523, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 410, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 35, + "quantity": 33837, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "TAU The Hive Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1986, 1985], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 600, "produces": 0 }, + "fuel": { "consumes": 176, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 250, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 450 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 625, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 625 }, - "water": { "consumes": 0, "produces": 0 } + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 600, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" + "mask": "BigInt:1024" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 977, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1002, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1002, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1003, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1002, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1004, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1002, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1005, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1002, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1006, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1002, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1007, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1002, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1008, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 1002, "mask": "BigInt:549755813888" }, "name": { @@ -99935,7 +97455,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.46951219512194875, + "hydrogen": 0.95588235294119, "ice": 0, "metals": 0, "ore": 0, @@ -100000,14 +97520,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 978, + "id": 1009, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 967, + "id": 1002, "mask": "BigInt:549755813888" }, "name": { @@ -100028,7 +97548,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.46951219512194875, + "hydrogen": 0.95588235294119, "ice": 0, "metals": 0, "ore": 0, @@ -100093,41 +97613,53 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 979, + "id": 1010, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 125, + "allocationIdCounter": 118, "allocations": [ { - "amount": 7790, - "issued": 3495, - "meta": { "tradeId": "980:1891:sell:3495" }, - "id": 121 + "amount": 90440, + "issued": 636, + "meta": { "tradeId": "909:1983:buy:636" }, + "id": 24 }, { - "amount": 6650, - "issued": 3576, - "meta": { "tradeId": "909:1877:buy:3576" }, - "id": 123 + "amount": 5236, + "issued": 636, + "meta": { "tradeId": "909:1984:buy:636" }, + "id": 25 + }, + { + "amount": 90440, + "issued": 684, + "meta": { "tradeId": "909:1981:buy:684" }, + "id": 28 + }, + { + "amount": 572, + "issued": 3564, + "meta": { "tradeId": "1011:1993:sell:3564" }, + "id": 116 }, { - "amount": 561, - "issued": 3579, - "meta": { "tradeId": "980:1893:sell:3579" }, - "id": 124 + "amount": 6650, + "issued": 3576, + "meta": { "tradeId": "1011:1991:sell:3576" }, + "id": 117 } ], - "available": 4404454, - "money": 4419455, + "available": 7689434, + "money": 7882772, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [1878], + "docked": [], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -100139,13 +97671,16 @@ }, "modules": { "name": "modules", - "ids": [981, 982, 983, 984, 985, 986, 987, 988, 989, 990, 991], + "ids": [ + 1012, 1013, 1014, 1015, 1016, 1017, 1018, 1019, 1020, 1021, 1022, + 1023 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-21.056661544414318, 6.745065089001756], + "coord": [-19.716448571227257, -12.323623186008392], "sector": 21, "moved": false, "mask": "BigInt:2199023255552" @@ -100161,7 +97696,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 125, + "allocationIdCounter": 118, "allocations": [ { "amount": { @@ -100172,7 +97707,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -100183,12 +97718,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, - "issued": 3477, + "issued": 636, "type": "incoming", - "meta": { "tradeId": "980:1878:sell:3477" }, - "id": 119 + "meta": { "tradeId": "1011:1983:sell:636" }, + "id": 24 }, { "amount": { @@ -100199,7 +97734,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 11, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -100210,12 +97745,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, - "issued": 3495, + "issued": 636, "type": "incoming", - "meta": { "tradeId": "980:1891:sell:3495" }, - "id": 121 + "meta": { "tradeId": "1011:1984:sell:636" }, + "id": 25 }, { "amount": { @@ -100226,7 +97761,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -100237,12 +97772,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, - "issued": 3576, + "issued": 684, + "type": "incoming", + "meta": { "tradeId": "1011:1981:sell:684" }, + "id": 28 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 8, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3555, "type": "incoming", - "meta": { "tradeId": "980:1877:sell:3576" }, - "id": 123 + "meta": { "tradeId": "1011:1982:sell:3555" }, + "id": 115 }, { "amount": { @@ -100266,10 +97828,37 @@ "tauMetal": 0, "water": 0 }, - "issued": 3579, + "issued": 3564, + "type": "incoming", + "meta": { "tradeId": "1011:1993:sell:3564" }, + "id": 116 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 190 + }, + "issued": 3576, "type": "incoming", - "meta": { "tradeId": "980:1893:sell:3579" }, - "id": 124 + "meta": { "tradeId": "1011:1991:sell:3576" }, + "id": 117 } ], "max": 181000, @@ -100279,20 +97868,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 5968, + "fuel": 16033, "fuelium": 0, - "gold": 0, + "gold": 6656, "goldOre": 0, "hullPlates": 0, - "hydrogen": 985, + "hydrogen": 15688, "ice": 0, - "metals": 0, + "metals": 11558, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, - "water": 5890 + "tauMetal": 19103, + "water": 19529 }, "stored": { "coolant": 0, @@ -100300,20 +97889,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 5968, + "fuel": 16033, "fuelium": 0, - "gold": 0, + "gold": 6656, "goldOre": 0, "hullPlates": 0, - "hydrogen": 985, + "hydrogen": 15688, "ice": 0, - "metals": 0, + "metals": 11558, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, - "water": 5890 + "tauMetal": 19103, + "water": 19529 }, "quota": { "coolant": 0, @@ -100321,20 +97910,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 25983, + "fuel": 42229, "fuelium": 0, - "gold": 0, + "gold": 13604, "goldOre": 0, "hullPlates": 0, - "hydrogen": 66435, + "hydrogen": 24488, "ice": 0, - "metals": 0, + "metals": 34012, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, - "water": 88580 + "tauMetal": 34012, + "water": 32651 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -100343,25 +97932,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [53.76259997657578, 67.31536719843648], - "drones": [1464.5105627048624, 1476.1172387420536], - "electronics": [190.66047610595373, 196.50028625292006], - "engineParts": [388.6298454771072, 398.5658750696236], - "food": [17.282933135082516, 31.846897507256394], - "fuel": [42.076322486332224, 58.07749105282072], - "fuelium": [25.601203724848364, 30.860939551230594], - "gold": [383.3778579467058, 402.3666098986822], - "goldOre": [72.81030478841407, 78.43191881426945], - "hullPlates": [47.61988380438059, 66.31871537506271], - "hydrogen": [75, 77], - "ice": [21.397949120650168, 31.87281792111208], - "metals": [62.51487627524537, 72.3630878274322], - "ore": [40.07420901364084, 51.882177778624026], - "silica": [21.94590715101588, 40.67356042495217], - "silicon": [33.31019701437594, 42.96914712872611], - "superconductors": [276.3894931755635, 294.8827803256411], - "tauMetal": [636.4088047824173, 650.0612089185912], - "water": [34.25455803854018, 43] + "coolant": [142.60310001489012, 154.19783303458632], + "drones": [1624.2515037058893, 1638.8649010675679], + "electronics": [321.23805640699555, 340.51806937951005], + "engineParts": [451.7328129589715, 466.1957336863707], + "food": [14.226134072931547, 29.7228838610624], + "fuel": [49.594887328988484, 66.09052314207177], + "fuelium": [34.97516729726212, 52.58685556925331], + "gold": [627.9634558864642, 635.8812271882298], + "goldOre": [73.59857874636266, 79.78632117971645], + "hullPlates": [48.05649774010287, 63.213652725746286], + "hydrogen": [65.04612645477968, 73.36167456418491], + "ice": [10.490917377016334, 21.368459686022007], + "metals": [72.28909534384753, 80.9295092180716], + "ore": [31.87120657186478, 45.48963955205615], + "silica": [46.108817094375425, 63.669733861684065], + "silicon": [27.59846298660455, 43.03690660124362], + "superconductors": [458.19101177850825, 471.3094533501088], + "tauMetal": [379, 386.58], + "water": [33.092950726503666, 39.85221551987092] }, "lastPriceAdjust": { "commodities": { @@ -100390,116 +97979,116 @@ "offers": { "coolant": { "active": false, - "price": 62, + "price": 152, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1469, + "price": 1626, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 194, + "price": 323, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 393, + "price": 453, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 24, + "price": 22, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 51, - "quantity": 20015, + "price": 52, + "quantity": 26196, "type": "buy" }, "fuelium": { "active": false, - "price": 30, + "price": 41, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 389, - "quantity": 0, + "active": true, + "price": 631, + "quantity": 6948, "type": "buy" }, "goldOre": { "active": false, - "price": 76, + "price": 74, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 48, + "price": 56, "quantity": 0, "type": "buy" }, "hydrogen": { "active": true, - "price": 76, - "quantity": 985, + "price": 67, + "quantity": 15688, "type": "sell" }, "ice": { "active": false, - "price": 26, + "price": 13, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 66, - "quantity": 0, + "active": true, + "price": 76, + "quantity": 22454, "type": "buy" }, "ore": { "active": false, - "price": 40, + "price": 34, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 24, + "price": 56, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 42, + "price": 28, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 285, + "price": 464, "quantity": 0, "type": "buy" }, "tauMetal": { - "active": false, - "price": 649, - "quantity": 0, - "type": "buy" + "active": true, + "price": 382, + "quantity": 19103, + "type": "sell" }, "water": { "active": true, - "price": 41, - "quantity": 82690, + "price": 35, + "quantity": 13122, "type": "buy" } }, @@ -100522,7 +98111,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1878, 1877], + "ids": [1984, 1983, 1982, 1981], "mask": "BigInt:4294967296" }, "crew": { @@ -100540,33 +98129,33 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 440, "produces": 0 }, + "fuel": { "consumes": 1552, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 500, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 1125 }, + "hydrogen": { "consumes": 0, "produces": 900 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 1250, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 1500, "produces": 0 } + "tauMetal": { "consumes": 0, "produces": 1250 }, + "water": { "consumes": 1200, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 980, + "id": 1011, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100581,14 +98170,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 981, + "id": 1012, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100603,14 +98192,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 982, + "id": 1013, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100633,14 +98222,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 983, + "id": 1014, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100655,14 +98244,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 984, + "id": 1015, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100677,14 +98266,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 985, + "id": 1016, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100699,14 +98288,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 986, + "id": 1017, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100727,7 +98316,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.7654471544715427, + "hydrogen": 0.3409090909090913, "ice": 0, "metals": 0, "ore": 0, @@ -100743,7 +98332,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.8666666666666942, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -100792,19 +98381,19 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 987, + "id": 1018, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hydrogen Factory", + "value": "Tau-Metal Factory", "mask": "BigInt:137438953472" }, "production": { @@ -100820,14 +98409,14 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.7654471544715427, + "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, + "tauMetal": 0.05808080808074134, "water": 0 }, "consumption": { @@ -100836,14 +98425,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.8666666666666942, + "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.3333333333332451, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 3.83333333333351, "ore": 0, "silica": 0, "silicon": 0, @@ -100860,39 +98449,34 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "fuel": { "consumes": 600, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 250, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 225 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 625, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 300, "produces": 0 } + "tauMetal": { "consumes": 0, "produces": 625 }, + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 988, + "id": 1019, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -100913,7 +98497,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.7654471544715427, + "hydrogen": 0.3409090909090913, "ice": 0, "metals": 0, "ore": 0, @@ -100929,7 +98513,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.8666666666666942, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -100978,14 +98562,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 989, + "id": 1020, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { @@ -101006,7 +98590,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.7654471544715427, + "hydrogen": 0.3409090909090913, "ice": 0, "metals": 0, "ore": 0, @@ -101022,7 +98606,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.8666666666666942, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -101071,19 +98655,19 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 990, + "id": 1021, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 980, + "id": 1011, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hydrogen Factory", + "value": "Tau-Metal Factory", "mask": "BigInt:137438953472" }, "production": { @@ -101099,14 +98683,14 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0.7654471544715427, + "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, + "tauMetal": 0.05808080808074134, "water": 0 }, "consumption": { @@ -101115,14 +98699,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.8666666666666942, + "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.3333333333332451, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 3.83333333333351, "ore": 0, "silica": 0, "silicon": 0, @@ -101139,7 +98723,95 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 88, "produces": 0 }, + "fuel": { "consumes": 600, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 250, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 625, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 625 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1022, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1011, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hydrogen Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0.3409090909090913, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -101164,16 +98836,16 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 991, + "id": 1023, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 11, + "allocationIdCounter": 1, "allocations": [], - "available": 134820, - "money": 134820, + "available": 2648618, + "money": 2648618, "name": "budget", "mask": "BigInt:16" }, @@ -101191,19 +98863,19 @@ }, "modules": { "name": "modules", - "ids": [993, 994, 995, 996, 997, 998, 999, 1000, 1001, 1002, 1003], + "ids": [1025, 1026, 1027, 1028, 1029, 1030, 1031], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-22.439591860590866, -7.623118507887554], - "sector": 14, + "coord": [10.249708924020304, -7.122958205616598], + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 4388323, + "color": 9778411, "defaultScale": 1, "name": "render", "layer": "facility", @@ -101213,29 +98885,29 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 1, "allocations": [], - "max": 61000, + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 5005, + "fuel": 12226, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, - "ice": 8, + "hydrogen": 44845, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4 + "water": 39126 }, "stored": { "coolant": 0, @@ -101243,41 +98915,41 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 5005, + "fuel": 12226, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, - "ice": 8, + "hydrogen": 44845, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4 + "water": 39126 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 31926, - "fuel": 3745, + "food": 0, + "fuel": 25983, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, - "ice": 10216, + "hydrogen": 66435, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 15111 + "water": 88580 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -101286,25 +98958,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [98.6276523690051, 113.43131977296852], - "drones": [966.8155710598039, 978.897775614255], - "electronics": [193.13464885481704, 209.5263963217568], - "engineParts": [455.92070363617273, 469.9238087647331], - "food": [15, 22], - "fuel": [60.66469091087177, 72.25801814991694], - "fuelium": [48.32991614488204, 53.43160952070213], - "gold": [897.4668667714699, 913.1022991374466], - "goldOre": [49.76699984901011, 68.78019856882115], - "hullPlates": [52.92327937281961, 65.74164080816908], - "hydrogen": [55.37611533971664, 68.11351577828732], - "ice": [17.826885851108255, 27], - "metals": [39.5939848065229, 46.67132292075604], - "ore": [33.45262227221107, 51.51644248482223], - "silica": [48.78724545348552, 65.92311726208322], - "silicon": [34.25992345305382, 45.4115574415591], - "superconductors": [417.2573007183618, 425.1605228726115], - "tauMetal": [297.7091569782772, 311.24061909813304], - "water": [33.13189939264608, 42.99952515795827] + "coolant": [86.78403150106193, 100.09960784567427], + "drones": [903.1827718336307, 918.1169390060228], + "electronics": [411.1639467268307, 418.4357796814009], + "engineParts": [289.6151566972105, 301.1447642125026], + "food": [11.968405951297363, 17.79525430524777], + "fuel": [50.28500566557675, 60.7654707167936], + "fuelium": [60.01465760624854, 79.7753152957063], + "gold": [390.39481200514047, 405.12224491514786], + "goldOre": [95.90333189314345, 103.6753993096435], + "hullPlates": [26.543882308658702, 46.53189041732384], + "hydrogen": [72, 74], + "ice": [17.043957065134613, 26.093331067681497], + "metals": [64.96700457508958, 80.64054786219022], + "ore": [15.316790023748524, 28.225046936565004], + "silica": [35.96894800266995, 44.36759532652675], + "silicon": [33.49286064563465, 48.001154542760624], + "superconductors": [274.27137482491787, 285.08339361179793], + "tauMetal": [661.3295092480691, 666.4394675494243], + "water": [35.0334173720079, 42.93888888888889] }, "lastPriceAdjust": { "commodities": { @@ -101333,117 +99005,117 @@ "offers": { "coolant": { "active": false, - "price": 111, + "price": 92, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 973, + "price": 911, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 195, + "price": 413, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 457, + "price": 297, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 16, + "active": false, + "price": 13, "quantity": 0, - "type": "sell" + "type": "buy" }, "fuel": { "active": true, - "price": 63, - "quantity": 0, + "price": 60, + "quantity": 13757, "type": "buy" }, "fuelium": { "active": false, - "price": 49, + "price": 72, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 901, + "price": 402, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 55, + "price": 99, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 57, + "price": 39, "quantity": 0, "type": "buy" }, "hydrogen": { - "active": false, - "price": 58, - "quantity": 0, - "type": "buy" + "active": true, + "price": 73, + "quantity": 44845, + "type": "sell" }, "ice": { - "active": true, - "price": 21, - "quantity": 10208, + "active": false, + "price": 20, + "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 46, + "price": 79, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 47, + "price": 19, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 51, + "price": 40, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 40, + "price": 42, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 423, + "price": 279, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 309, + "price": 662, "quantity": 0, "type": "buy" }, "water": { "active": true, "price": 37, - "quantity": 0, - "type": "sell" + "quantity": 49454, + "type": "buy" } }, "mask": "BigInt:34359738368" @@ -101460,21 +99132,21 @@ }, "name": { "name": "name", - "value": "FFW Juno IV Farming Facility", + "value": "TAU Tau Ceti e Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2002, 2001, 2012], + "ids": [1980, 1979], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 4.999999999999992, "max": 64 }, + "workers": { "current": 9.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -101482,34 +99154,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 440, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 900 } + "water": { "consumes": 300, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 992, + "id": 1024, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1024, "mask": "BigInt:549755813888" }, "name": { @@ -101524,14 +99196,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 993, + "id": 1025, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1024, "mask": "BigInt:549755813888" }, "name": { @@ -101546,112 +99218,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 994, + "id": 1026, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1024, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 995, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1027, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1024, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1028, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1024, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1029, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1024, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1030, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1024, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -101667,7 +99342,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 0.7499999999999822, "ice": 0, "metals": 0, "ore": 0, @@ -101683,7 +99358,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -101706,13 +99381,13 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -101720,57 +99395,230 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 300, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 996, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1031, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "parent": { - "name": "parent", - "id": 992, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 100, + "allocations": [ + { + "amount": 12350, + "issued": 1278, + "meta": { "tradeId": "885:1977:buy:1278" }, + "id": 40 + }, + { + "amount": 6080, + "issued": 3561, + "meta": { "tradeId": "957:1978:buy:3561" }, + "id": 99 + } + ], + "available": 1243645, + "money": 1262075, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [1033, 1034, 1035, 1036, 1037, 1038, 1039, 1040], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [22.617638791716885, 10.533610672716684], + "sector": 21, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9778411, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 100, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1278, + "type": "incoming", + "meta": { "tradeId": "1032:1977:sell:1278" }, + "id": 40 }, - "consumption": { + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 190 + }, + "issued": 3561, + "type": "incoming", + "meta": { "tradeId": "1032:1978:sell:3561" }, + "id": 99 + } + ], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 25965, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 32132, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 53934 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 25965, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 32132, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 53934 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 25983, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 66435, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 88580 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [118.01309038284028, 136.5299114253437], + "drones": [838.1487402120324, 845.1413295349437], + "electronics": [149.09563298067246, 156.60413092028315], + "engineParts": [172.76480306511604, 188.50856634254603], + "food": [13.695336185952794, 25.67272075775514], + "fuel": [48.15182076652748, 66.27161123415625], + "fuelium": [51.04334233885554, 64.07749078643383], + "gold": [414.84805880368805, 430.6426215717109], + "goldOre": [35.39252155900632, 45.510090664207695], + "hullPlates": [54.90327482128122, 69.99109173468707], + "hydrogen": [77, 82.73815165781919], + "ice": [22.75157285284864, 36.359683297026635], + "metals": [63.18397384280432, 78.75061139199596], + "ore": [41.255504288932485, 52.155353381787535], + "silica": [34.33812422461452, 47.36407294097843], + "silicon": [17.829807264506194, 23.229920129157716], + "superconductors": [404.10557392002886, 413.6727294986819], + "tauMetal": [432.9473330230371, 443.0869472427061], + "water": [36.24515621608172, 36.46875] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, @@ -101790,22 +99638,168 @@ "superconductors": 0, "tauMetal": 0, "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 129, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 842, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 155, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 184, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": false, + "price": 25, + "quantity": 0, + "type": "buy" + }, + "fuel": { + "active": true, + "price": 53, + "quantity": 18, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 61, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 416, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 39, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 64, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": true, + "price": 77, + "quantity": 32132, + "type": "sell" + }, + "ice": { + "active": false, + "price": 36, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 73, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 46, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 41, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 21, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 410, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 439, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 36, + "quantity": 34646, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "TAU The Hive Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1978, 1977], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 176, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 450 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -101813,48 +99807,64 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 600, "produces": 0 } }, - "produced": false, - "mask": "BigInt:1099511627776" + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1032, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1032, + "mask": "BigInt:549755813888" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 997, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1033, + "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1032, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Basic Storage", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 1000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 998, + "id": 1034, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1032, "mask": "BigInt:549755813888" }, "name": { @@ -101877,134 +99887,85 @@ } }, "cooldowns": { "timers": {} }, - "id": 999, + "id": 1035, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1032, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Habitation Dome", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 50, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1000, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 1036, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1032, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8666666666666643 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } - }, - "produced": false, - "mask": "BigInt:1099511627776" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1037, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1032, + "mask": "BigInt:549755813888" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 4, - "mask": "BigInt:281474976710656" + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1001, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1038, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1032, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -102020,7 +99981,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 0.95588235294119, "ice": 0, "metals": 0, "ore": 0, @@ -102036,7 +99997,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -102059,13 +100020,13 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -102073,31 +100034,31 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 300, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1002, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1039, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 992, + "id": 1032, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -102113,7 +100074,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 0.95588235294119, "ice": 0, "metals": 0, "ore": 0, @@ -102129,7 +100090,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -102152,13 +100113,13 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -102166,34 +100127,65 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 300, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1003, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1040, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 965814, - "money": 965814, + "allocationIdCounter": 89, + "allocations": [ + { + "amount": 5236, + "issued": 660, + "meta": { "tradeId": "909:1973:buy:660" }, + "id": 28 + }, + { + "amount": 90440, + "issued": 675, + "meta": { "tradeId": "909:1976:buy:675" }, + "id": 29 + }, + { + "amount": 90440, + "issued": 678, + "meta": { "tradeId": "909:1975:buy:678" }, + "id": 31 + }, + { + "amount": 90440, + "issued": 699, + "meta": { "tradeId": "909:1974:buy:699" }, + "id": 32 + }, + { + "amount": 418, + "issued": 3378, + "meta": { "tradeId": "1041:1994:sell:3378" }, + "id": 82 + } + ], + "available": 5103484, + "money": 5380458, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [], + "docked": [1990], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -102206,30 +100198,31 @@ "modules": { "name": "modules", "ids": [ - 1005, 1006, 1007, 1008, 1009, 1010, 1011, 1012, 1013, 1014, 1015 + 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051, 1052, + 1053 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [16.639432431451105, -18.69379111032922], - "sector": 13, + "coord": [3.5115252426062007, 15.553324480282363], + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 4388323, + "color": 9778411, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 255, + "allocationIdCounter": 89, "allocations": [ { "amount": { @@ -102240,7 +100233,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 11, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -102251,12 +100244,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 98 + "water": 0 }, - "issued": 3336, - "type": "outgoing", - "meta": { "tradeId": "1004:1980:buy:3336" }, - "id": 238 + "issued": 660, + "type": "incoming", + "meta": { "tradeId": "1041:1973:sell:660" }, + "id": 28 }, { "amount": { @@ -102267,7 +100260,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -102278,12 +100271,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 86 + "water": 0 }, - "issued": 3522, - "type": "outgoing", - "meta": { "tradeId": "1004:1985:buy:3522" }, - "id": 250 + "issued": 675, + "type": "incoming", + "meta": { "tradeId": "1041:1976:sell:675" }, + "id": 29 }, { "amount": { @@ -102294,7 +100287,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -102305,12 +100298,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3597, - "type": "outgoing", - "meta": { "tradeId": "1004:1976:buy:3597" }, - "id": 253 + "issued": 678, + "type": "incoming", + "meta": { "tradeId": "1041:1975:sell:678" }, + "id": 31 }, { "amount": { @@ -102321,11 +100314,11 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 32, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -102334,33 +100327,60 @@ "tauMetal": 0, "water": 0 }, - "issued": 3597, + "issued": 699, + "type": "incoming", + "meta": { "tradeId": "1041:1974:sell:699" }, + "id": 32 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 11 + }, + "issued": 3378, "type": "incoming", - "meta": { "tradeId": "1004:2011:sell:3597" }, - "id": 254 + "meta": { "tradeId": "1041:1994:sell:3378" }, + "id": 82 } ], - "max": 81000, + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 19239, "fuelium": 0, - "gold": 0, + "gold": 6458, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, - "ice": 8612, - "metals": 0, + "hydrogen": 25604, + "ice": 0, + "metals": 7275, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, - "water": 0 + "tauMetal": 14818, + "water": 21980 }, "stored": { "coolant": 0, @@ -102368,20 +100388,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 19239, "fuelium": 0, - "gold": 0, + "gold": 6458, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, - "ice": 8612, - "metals": 0, + "hydrogen": 25604, + "ice": 0, + "metals": 7275, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, - "water": 272 + "tauMetal": 14818, + "water": 21980 }, "quota": { "coolant": 0, @@ -102389,20 +100409,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 36445, "fuelium": 0, - "gold": 0, + "gold": 8760, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, - "ice": 46285, - "metals": 0, + "hydrogen": 39424, + "ice": 0, + "metals": 21902, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 0, - "water": 34714 + "tauMetal": 21902, + "water": 52565 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -102411,25 +100431,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [124.0837927921956, 134.77304513572346], - "drones": [1094.0841476932515, 1112.3216384120815], - "electronics": [151.04761536216964, 162.45149720343395], - "engineParts": [312.1601382644411, 319.72497988236535], - "food": [19.7855749123167, 37.7119224743656], - "fuel": [28.49903243661085, 34.559252002761816], - "fuelium": [40.30375701305732, 58.976062362017316], - "gold": [367.49518662597325, 378.6733159530613], - "goldOre": [84.59910300241015, 91.5586196014683], - "hullPlates": [59.99179609961486, 69.35733110319808], - "hydrogen": [52.70889621346319, 64.73237727121092], - "ice": [22.37844516571748, 27], - "metals": [60.23661472234767, 75.13268690635465], - "ore": [34.75835376055875, 44.191444128286], - "silica": [31.078111219386887, 40.74339995755206], - "silicon": [18.935890166742276, 30.58998751824005], - "superconductors": [469.81423242289185, 481.69097248024445], - "tauMetal": [608.9038138638414, 625.7712833830597], - "water": [35, 37] + "coolant": [119.8668341520529, 132.47055298977037], + "drones": [712.3443806916536, 718.2844273208959], + "electronics": [438.4308857679248, 450.87890986357274], + "engineParts": [383.3558759239728, 400.1070571588489], + "food": [16.67358091955196, 26.10041556992234], + "fuel": [47.4582284148443, 59.03646396475189], + "fuelium": [50.98211728644736, 58.45771515160669], + "gold": [795.3544690889539, 808.2195657406523], + "goldOre": [82.57160761888599, 97.9232736379124], + "hullPlates": [47.10641113332717, 55.412727085193985], + "hydrogen": [73.131704883658, 75.131704883658], + "ice": [13.26262626457332, 25.73674499705062], + "metals": [78.3565512806267, 85.8445420899816], + "ore": [18.903022614209082, 37.54494772108002], + "silica": [29.799945774789382, 41.559381079049594], + "silicon": [31.29242744277155, 48.519917356753325], + "superconductors": [297.130437790634, 302.84366733114075], + "tauMetal": [462, 471.24], + "water": [33.78779501764867, 43] }, "lastPriceAdjust": { "commodities": { @@ -102458,25 +100478,25 @@ "offers": { "coolant": { "active": false, - "price": 131, + "price": 128, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1096, + "price": 717, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 154, + "price": 449, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 313, + "price": 398, "quantity": 0, "type": "buy" }, @@ -102487,9 +100507,9 @@ "type": "buy" }, "fuel": { - "active": false, - "price": 28, - "quantity": 0, + "active": true, + "price": 58, + "quantity": 17206, "type": "buy" }, "fuelium": { @@ -102499,44 +100519,44 @@ "type": "buy" }, "gold": { - "active": false, - "price": 372, - "quantity": 0, + "active": true, + "price": 803, + "quantity": 2302, "type": "buy" }, "goldOre": { "active": false, - "price": 87, + "price": 88, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 69, + "price": 49, "quantity": 0, "type": "buy" }, "hydrogen": { + "active": true, + "price": 73, + "quantity": 25604, + "type": "sell" + }, + "ice": { "active": false, - "price": 52, + "price": 24, "quantity": 0, "type": "buy" }, - "ice": { - "active": true, - "price": 26, - "quantity": 37673, - "type": "buy" - }, "metals": { - "active": false, - "price": 72, - "quantity": 0, + "active": true, + "price": 85, + "quantity": 14627, "type": "buy" }, "ore": { "active": false, - "price": 42, + "price": 33, "quantity": 0, "type": "buy" }, @@ -102548,107 +100568,34 @@ }, "silicon": { "active": false, - "price": 30, + "price": 45, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 478, + "price": 302, "quantity": 0, "type": "buy" }, "tauMetal": { - "active": false, - "price": 620, - "quantity": 0, - "type": "buy" + "active": true, + "price": 462, + "quantity": 14818, + "type": "sell" }, "water": { "active": true, - "price": 35, - "quantity": 0, - "type": "sell" + "price": 38, + "quantity": 30585, + "type": "buy" } }, "mask": "BigInt:34359738368" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 615 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 633 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 641 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "THT Trader Large Freighter B", - "time": 831 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "THT Trader Freighter A", - "time": 858 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 27, - "target": "THT Trader Freighter A", - "time": 1090 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 27, - "target": "THT Trader Large Freighter B", - "time": 1210 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 74, - "price": 28, - "target": "THT Trader Freighter A", - "time": 2753 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -102658,12 +100605,12 @@ }, "name": { "name": "name", - "value": "FFW Juno III Mining Complex", + "value": "TAU The Hive Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2000, 2011], + "ids": [1976, 1975, 1974, 1973], "mask": "BigInt:4294967296" }, "crew": { @@ -102672,7 +100619,7 @@ "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -102681,33 +100628,33 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 1040, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 250, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 4800, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 1125 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 625, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 3600 } + "tauMetal": { "consumes": 0, "produces": 625 }, + "water": { "consumes": 1500, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1004, + "id": 1041, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { @@ -102722,14 +100669,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1005, + "id": 1042, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { @@ -102744,41 +100691,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1006, + "id": 1043, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1044, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1041, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1007, + "id": 1045, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1046, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1041, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1047, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1041, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -102794,7 +100815,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 0.46951219512194875, "ice": 0, "metals": 0, "ore": 0, @@ -102802,7 +100823,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -102810,7 +100831,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -102834,66 +100855,44 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 300, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1008, + "id": 1048, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1004, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1009, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -102909,7 +100908,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 0.46951219512194875, "ice": 0, "metals": 0, "ore": 0, @@ -102917,7 +100916,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -102925,7 +100924,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -102949,66 +100948,44 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 300, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1010, + "id": 1049, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1004, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1011, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -103024,7 +101001,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 0.46951219512194875, "ice": 0, "metals": 0, "ore": 0, @@ -103032,7 +101009,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -103040,7 +101017,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -103064,66 +101041,137 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 300, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1012, + "id": 1050, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0.46951219512194875, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 300, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1013, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1051, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -103139,7 +101187,7 @@ "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 0.46951219512194875, "ice": 0, "metals": 0, "ore": 0, @@ -103147,7 +101195,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -103155,7 +101203,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -103179,71 +101227,129 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 300, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1014, + "id": 1052, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1004, + "id": 1041, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Tau-Metal Factory", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0.7486449864498121, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.3333333333332451, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 3.83333333333351, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 600, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 250, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 625, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 625 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" } }, - "cooldowns": { "timers": {} }, - "id": 1015, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1053, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 2172890, - "money": 2172890, + "available": 5252168, + "money": 5252168, "name": "budget", "mask": "BigInt:16" }, @@ -103261,33 +101367,31 @@ }, "modules": { "name": "modules", - "ids": [ - 1017, 1018, 1019, 1020, 1021, 1022, 1023, 1024, 1025, 1026, 1027 - ], + "ids": [1055, 1056, 1057, 1058, 1059, 1060, 1061], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [17.996371602992678, -24.730378510476417], - "sector": 14, + "coord": [18.391251321090756, -21.602540567018586], + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 4388323, + "color": 9778411, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 119, + "allocationIdCounter": 1, "allocations": [], - "max": 81000, + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, @@ -103295,7 +101399,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 12, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -103316,7 +101420,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 12, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -103336,12 +101440,12 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 43615, - "fuelium": 37384, + "fuel": 25983, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, - "hydrogen": 0, + "hydrogen": 66435, "ice": 0, "metals": 0, "ore": 0, @@ -103349,7 +101453,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 88580 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -103358,25 +101462,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [51.517954632287946, 68.32742353382], - "drones": [1376.7108830589355, 1388.0031548907436], - "electronics": [183.99555262379, 189.11576036674853], - "engineParts": [361.26127161783734, 371.8244780444791], - "food": [13.183572787589672, 31.175703380630736], - "fuel": [52.96657113378425, 54.96657113378425], - "fuelium": [52.80914610219676, 68.57137600947588], - "gold": [881.1915054754504, 889.9790084434643], - "goldOre": [85.4596172919797, 96.99832224172934], - "hullPlates": [59.20070117288915, 70.374529759328], - "hydrogen": [52.06636714697409, 67.56727643264233], - "ice": [17.381851929474728, 35.255947215705746], - "metals": [45.32495567949319, 57.05780360991734], - "ore": [16.778421252281603, 32.688516964177765], - "silica": [28.52593370487027, 34.212857958488264], - "silicon": [34.11146472492042, 41.67996422424944], - "superconductors": [459.71074201349734, 467.38626003726654], - "tauMetal": [654.94079708081, 660.2858930199264], - "water": [21.54275556277961, 41.53488079241701] + "coolant": [127.36843957179535, 146.85071767304035], + "drones": [1815.8190819248016, 1823.4806837092942], + "electronics": [442.90243004086017, 456.42161881039164], + "engineParts": [187.46733835083674, 194.8350067476559], + "food": [18.613513019887222, 30.010281393370736], + "fuel": [67.0907180588297, 77], + "fuelium": [69.72237485122776, 84.24112144729735], + "gold": [654.6803937553257, 666.2699885662142], + "goldOre": [93.10885029875017, 108.12582990452943], + "hullPlates": [51.751624153016024, 60.77143277560112], + "hydrogen": [83, 84], + "ice": [23.624886652435094, 29.105745845206005], + "metals": [47.25365282338332, 67.07380427586644], + "ore": [17.975906062790088, 30.606925670560003], + "silica": [31.197354028909086, 45.326466707082886], + "silicon": [22.99600228912967, 30.69539474954184], + "superconductors": [532.7608662806958, 542.8181627113345], + "tauMetal": [583.6985955137609, 595.1610112955353], + "water": [37.081695271567334, 43] }, "lastPriceAdjust": { "commodities": { @@ -103405,69 +101509,69 @@ "offers": { "coolant": { "active": false, - "price": 62, + "price": 130, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1378, + "price": 1818, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 184, + "price": 444, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 368, + "price": 193, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 22, + "price": 24, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 54, - "quantity": 0, - "type": "sell" + "price": 76, + "quantity": 25983, + "type": "buy" }, "fuelium": { - "active": true, - "price": 58, - "quantity": 37372, + "active": false, + "price": 77, + "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 885, + "price": 655, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 91, + "price": 104, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 66, + "price": 56, "quantity": 0, "type": "buy" }, "hydrogen": { - "active": false, - "price": 54, + "active": true, + "price": 83, "quantity": 0, - "type": "buy" + "type": "sell" }, "ice": { "active": false, @@ -103477,44 +101581,44 @@ }, "metals": { "active": false, - "price": 51, + "price": 53, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 17, + "price": 23, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 32, + "price": 44, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 27, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 463, + "price": 537, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 656, + "price": 585, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 23, - "quantity": 0, + "active": true, + "price": 37, + "quantity": 88580, "type": "buy" } }, @@ -103522,89 +101626,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 40, - "target": "THT Trader Courier B", - "time": 1056 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "THT Trader Freighter A", - "time": 1485 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 40, - "target": "THT Trader Large Freighter B", - "time": 1593 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "THT Trader Freighter A", - "time": 1642 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "THT Trader Freighter A", - "time": 1643 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "THT Trader Freighter A", - "time": 1646 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "THT Trader Freighter A", - "time": 1669 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 40, - "target": "THT Trader Large Freighter B", - "time": 1674 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 40, - "target": "THT Trader Large Freighter B", - "time": 1886 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -103614,21 +101636,21 @@ }, "name": { "name": "name", - "value": "FFW Juno IV Mining Complex", + "value": "TAU Tau Ceti f Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1999, 2010], + "ids": [1972, 1971], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 9.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -103637,12 +101659,12 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 5600 }, - "fuelium": { "consumes": 4800, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -103650,20 +101672,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 300, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1016, + "id": 1054, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1016, + "id": 1054, "mask": "BigInt:549755813888" }, "name": { @@ -103678,14 +101700,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1017, + "id": 1055, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1016, + "id": 1054, "mask": "BigInt:549755813888" }, "name": { @@ -103700,386 +101722,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1018, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1016, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1019, + "id": 1056, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1016, + "id": 1054, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.26801346801333636, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1020, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1057, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1016, + "id": 1054, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1021, + "id": 1058, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1016, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Fuelium Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.26801346801333636, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1022, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1016, + "id": 1054, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1023, + "id": 1059, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1016, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Fuelium Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.17575757575744788, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1024, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1016, + "id": 1054, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1025, + "id": 1060, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1016, + "id": 1054, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Hydrogen Factory", "mask": "BigInt:137438953472" }, "production": { @@ -104090,7 +101841,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.04444444444431639, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -104135,12 +101886,12 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 225 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, @@ -104148,7 +101899,7 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 300, "produces": 0 } }, "produced": false, "mask": "BigInt:1099511627776" @@ -104160,46 +101911,16 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1026, + "id": 1061, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 1016, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1027, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1835936, - "money": 1835936, + "available": 513805, + "money": 513805, "name": "budget", "mask": "BigInt:16" }, @@ -104218,15 +101939,15 @@ "modules": { "name": "modules", "ids": [ - 1029, 1030, 1031, 1032, 1033, 1034, 1035, 1036, 1037, 1038, 1039 + 1063, 1064, 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [16.231284105097735, -3.8119758223247544], - "sector": 14, + "coord": [-23.664428624889197, 10.249718193344856], + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, @@ -104235,43 +101956,15 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 107, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3573, - "type": "outgoing", - "meta": { "tradeId": "1028:1984:buy:3573" }, - "id": 105 - } - ], - "max": 81000, + "allocationIdCounter": 1, + "allocations": [], + "max": 61000, "availableWares": { "coolant": 0, "drones": 0, @@ -104285,8 +101978,8 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 2699, - "ore": 5576, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -104306,9 +101999,9 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 2859, - "ore": 5576, - "silica": 0, + "metals": 0, + "ore": 0, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -104319,21 +102012,21 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 31926, + "fuel": 3745, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, - "metals": 27000, - "ore": 54000, + "ice": 10216, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 15111 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -104342,25 +102035,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [117.20596440427528, 127.10426261492069], - "drones": [948.4595633137851, 962.4181871374998], - "electronics": [189.68438268162149, 195.287116952541], - "engineParts": [183.4080271089998, 193.89747147266286], - "food": [21.346810094026257, 29.28378083919194], - "fuel": [67.02166641477514, 79.01236010230657], - "fuelium": [52.12634985548283, 66.64598271869735], - "gold": [858.5864219410652, 864.8080059236455], - "goldOre": [47.050244918747595, 52.5198612915471], - "hullPlates": [31.774149377898226, 49.68704806470146], - "hydrogen": [58.25288697592087, 70.62578562713962], - "ice": [9.940070365254726, 29.515863256972814], - "metals": [95.37431034800336, 97.37431034800336], - "ore": [33.83360342105372, 42], - "silica": [19.090926240947674, 32.24045775023881], - "silicon": [33.929233423435484, 46.169623841224286], - "superconductors": [251.66447483639212, 260.1725383695886], - "tauMetal": [299.98775921009525, 307.0863128835484], - "water": [37.96580842952703, 49.038393658463946] + "coolant": [130.38832683758045, 146.25790331584216], + "drones": [917.9221895273656, 923.9879770682243], + "electronics": [230.14095725146595, 245.98113224982484], + "engineParts": [415.5414071008518, 423.5368930786861], + "food": [21.515633027504954, 22], + "fuel": [68.29491893247615, 77], + "fuelium": [64.39547480138354, 76.8712312860852], + "gold": [517.5989716159701, 530.8790199082264], + "goldOre": [59.594529952814895, 69.24324966648251], + "hullPlates": [44.09984178967299, 58.92933073686655], + "hydrogen": [57.25920969417538, 65.5777687269093], + "ice": [19.499583767218788, 27], + "metals": [34.240572707281856, 41.54075488236436], + "ore": [39.78252366578385, 58.24791185360044], + "silica": [19.399867415012157, 35.72746202068503], + "silicon": [23.023321122652156, 38.04338984561385], + "superconductors": [303.4049316249952, 320.8497160902914], + "tauMetal": [361.96519152294155, 370.934500920843], + "water": [34, 37.605693376198715] }, "lastPriceAdjust": { "commodities": { @@ -104389,117 +102082,117 @@ "offers": { "coolant": { "active": false, - "price": 118, + "price": 133, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 952, + "price": 923, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 192, + "price": 243, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 183, + "price": 416, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 29, + "active": true, + "price": 21, "quantity": 0, - "type": "buy" + "type": "sell" }, "fuel": { - "active": false, - "price": 72, - "quantity": 0, + "active": true, + "price": 69, + "quantity": 3745, "type": "buy" }, "fuelium": { "active": false, - "price": 62, + "price": 73, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 863, + "price": 526, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 49, + "price": 66, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 42, + "price": 54, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 58, + "price": 60, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 19, - "quantity": 0, + "active": true, + "price": 25, + "quantity": 10216, "type": "buy" }, "metals": { - "active": true, - "price": 97, - "quantity": 2699, - "type": "sell" + "active": false, + "price": 37, + "quantity": 0, + "type": "buy" }, "ore": { - "active": true, - "price": 38, - "quantity": 48424, + "active": false, + "price": 53, + "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 24, + "price": 28, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 44, + "price": 37, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 256, + "price": 306, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 304, + "price": 368, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 46, + "active": true, + "price": 36, "quantity": 0, - "type": "buy" + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -104516,17 +102209,17 @@ }, "name": { "name": "name", - "value": "FFW Juno IV Mining Complex", + "value": "FFW Teegarden's Star II Farming Facility", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1998, 2009], + "ids": [2109, 2108, 2119], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 4.999999999999992, "max": 64 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -104538,34 +102231,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 3750 }, + "fuel": { "consumes": 440, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 2000 }, - "ore": { "consumes": 4000, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 875, "produces": 900 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1028, + "id": 1062, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { @@ -104580,14 +102273,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1029, + "id": 1063, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { @@ -104602,41 +102295,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1030, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1028, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1031, + "id": 1064, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -104654,7 +102325,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -104676,7 +102347,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -104691,67 +102362,45 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1032, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1065, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1033, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1028, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -104769,7 +102418,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -104791,7 +102440,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -104806,67 +102455,45 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1034, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1066, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1028, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1035, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -104884,7 +102511,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -104906,7 +102533,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -104921,67 +102548,119 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1036, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1067, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1037, + "id": 1068, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1069, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1062, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Habitation Dome", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 50, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1070, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1062, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -104999,7 +102678,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -105021,7 +102700,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -105043,65 +102722,221 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1071, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1062, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1038, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1072, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1028, + "id": 1062, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1039, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1073, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 960785, - "money": 960785, + "available": 1110350, + "money": 1110350, "name": "budget", "mask": "BigInt:16" }, @@ -105120,15 +102955,15 @@ "modules": { "name": "modules", "ids": [ - 1041, 1042, 1043, 1044, 1045, 1046, 1047, 1048, 1049, 1050, 1051 + 1075, 1076, 1077, 1078, 1079, 1080, 1081, 1082, 1083, 1084, 1085 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [17.887852379421552, 12.812676292288803], - "sector": 14, + "coord": [5.6583136971717085, -1.6031827574962891], + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, @@ -105143,8 +102978,117 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, - "allocations": [], + "allocationIdCounter": 5, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 160 + }, + "issued": 312, + "type": "outgoing", + "meta": { "tradeId": "1074:2099:buy:312" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6 + }, + "issued": 1878, + "type": "outgoing", + "meta": { "tradeId": "1074:2087:buy:1878" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 160 + }, + "issued": 2364, + "type": "outgoing", + "meta": { "tradeId": "1074:2094:buy:2364" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 160 + }, + "issued": 2442, + "type": "outgoing", + "meta": { "tradeId": "1074:2093:buy:2442" }, + "id": 4 + } + ], "max": 81000, "availableWares": { "coolant": 0, @@ -105158,14 +103102,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 31, "metals": 0, "ore": 0, - "silica": 1484, - "silicon": 27080, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 27265 }, "stored": { "coolant": 0, @@ -105179,14 +103123,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 31, "metals": 0, "ore": 0, - "silica": 1484, - "silicon": 27080, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 27751 }, "quota": { "coolant": 0, @@ -105200,14 +103144,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 46285, "metals": 0, "ore": 0, - "silica": 30375, - "silicon": 50625, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 34714 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -105216,25 +103160,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [90.67944959840997, 108.36363045860489], - "drones": [1240.130085492331, 1247.3133840644532], - "electronics": [342.72281537693823, 361.15947826438673], - "engineParts": [276.0037040421244, 291.8310224198323], - "food": [19.660248441847365, 30.753101666704143], - "fuel": [33.08888907686756, 38.429502709567714], - "fuelium": [25.02920628978082, 32.49427199054551], - "gold": [513.9909851208492, 531.9188147390657], - "goldOre": [62.35773597484177, 74.88391541343465], - "hullPlates": [52.87329837821726, 64.32827581552132], - "hydrogen": [82.83197276464266, 87.98671098714425], - "ice": [24.00249398625092, 40.14779226565352], - "metals": [92.02889670353872, 110.52115316771456], - "ore": [27.728397593684228, 43.226210281330495], - "silica": [34.19692597364856, 44.45283964894499], - "silicon": [22.901974566138428, 29.732694280072025], - "superconductors": [408.4597048547687, 413.6453260037417], - "tauMetal": [383.46307067614185, 400.5013281418708], - "water": [40.101341593735455, 55.48845437392126] + "coolant": [140.10775967562256, 148.19893595389524], + "drones": [1753.834183397393, 1760.7515466900818], + "electronics": [328.1675691132741, 347.38910566722353], + "engineParts": [212.94382228179407, 226.4261466927505], + "food": [12.16196833695386, 20.31649699425551], + "fuel": [73.014751859461, 79.68874385995495], + "fuelium": [42.9415621375109, 55.30843764860029], + "gold": [853.5342937345509, 868.4013573051928], + "goldOre": [39.81146496954821, 56.470133739205956], + "hullPlates": [35.93066470090692, 55.60723263942249], + "hydrogen": [101.0431484805844, 108.3973984747798], + "ice": [23.472849831314647, 27], + "metals": [53.616697156599415, 67.75889814571501], + "ore": [37.22729635390148, 54.09831158348824], + "silica": [42.5673026475457, 50.68236283439024], + "silicon": [32.330854498672814, 39.55547230308446], + "superconductors": [299.7588529137247, 313.8774162652402], + "tauMetal": [621.3388267812475, 627.3440218105259], + "water": [34, 36] }, "lastPriceAdjust": { "commodities": { @@ -105263,117 +103207,117 @@ "offers": { "coolant": { "active": false, - "price": 93, + "price": 146, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1245, + "price": 1758, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 351, + "price": 339, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 283, + "price": 214, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 23, + "price": 16, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 35, + "price": 75, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 26, + "price": 50, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 526, + "price": 859, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 70, + "price": 46, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 55, + "price": 48, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 86, + "price": 103, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 27, - "quantity": 0, + "active": true, + "price": 25, + "quantity": 46254, "type": "buy" }, "metals": { "active": false, - "price": 100, + "price": 66, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 31, + "price": 53, "quantity": 0, "type": "buy" }, "silica": { - "active": true, - "price": 35, - "quantity": 28891, + "active": false, + "price": 47, + "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 23, - "quantity": 27080, - "type": "sell" + "active": false, + "price": 39, + "quantity": 0, + "type": "buy" }, "superconductors": { "active": false, - "price": 408, + "price": 303, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 387, + "price": 624, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 52, - "quantity": 0, - "type": "buy" + "active": true, + "price": 35, + "quantity": 27265, + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -105390,12 +103334,12 @@ }, "name": { "name": "name", - "value": "FFW Juno IV Mining Complex", + "value": "FFW Juno III Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1997, 2008], + "ids": [2107, 2118], "mask": "BigInt:4294967296" }, "crew": { @@ -105419,27 +103363,27 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 4800, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 3600, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 6000 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 0, "produces": 3600 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1040, + "id": 1074, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { @@ -105454,14 +103398,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1041, + "id": 1075, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { @@ -105476,14 +103420,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1042, + "id": 1076, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { @@ -105498,19 +103442,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1043, + "id": 1077, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -105531,10 +103475,10 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, @@ -105572,33 +103516,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 4, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1044, + "id": 1078, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { @@ -105613,19 +103557,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1045, + "id": 1079, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -105646,10 +103590,10 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, @@ -105687,33 +103631,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 4, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1046, + "id": 1080, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { @@ -105728,19 +103672,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1047, + "id": 1081, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -105761,10 +103705,10 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8509803921569201 }, "consumption": { "coolant": 0, @@ -105802,33 +103746,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1048, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1082, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { @@ -105843,19 +103787,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1049, + "id": 1083, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -105876,10 +103820,10 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8509803921569201 }, "consumption": { "coolant": 0, @@ -105917,33 +103861,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1050, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1084, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1040, + "id": 1074, "mask": "BigInt:549755813888" }, "name": { @@ -105966,7 +103910,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 1051, + "id": 1085, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -105974,8 +103918,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1504704, - "money": 1504704, + "available": 2283661, + "money": 2283661, "name": "budget", "mask": "BigInt:16" }, @@ -105994,15 +103938,15 @@ "modules": { "name": "modules", "ids": [ - 1053, 1054, 1055, 1056, 1057, 1058, 1059, 1060, 1061, 1062, 1063 + 1087, 1088, 1089, 1090, 1091, 1092, 1093, 1094, 1095, 1096, 1097 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [9.302659101648956, 38.439479699266634], - "sector": 18, + "coord": [19.187725918353294, 10.826251162905598], + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, @@ -106017,7 +103961,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 83, + "allocationIdCounter": 161, "allocations": [ { "amount": { @@ -106026,68 +103970,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "outgoing", - "meta": { "tradeId": "1052:1975:buy:3447" }, - "id": 78 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "outgoing", - "meta": { "tradeId": "1052:1987:buy:3516" }, - "id": 81 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, + "fuel": 48, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -106095,10 +103985,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3567, + "issued": 3576, "type": "outgoing", - "meta": { "tradeId": "1052:1977:buy:3567" }, - "id": 82 + "meta": { "tradeId": "1086:2111:buy:3576" }, + "id": 160 } ], "max": 81000, @@ -106109,14 +103999,14 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 13, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 10920, - "ore": 7107, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -106129,15 +104019,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 48, + "fuelium": 13, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 11400, - "ore": 7107, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -106150,15 +104040,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 43615, + "fuelium": 37384, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 27000, - "ore": 54000, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -106172,25 +104062,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [78.95712987273713, 90.1417447920129], - "drones": [1356.1003596489834, 1370.540656499071], - "electronics": [180.92288780728052, 185.98847364340358], - "engineParts": [473.27567220950016, 487.43400812062396], - "food": [7.519965015153403, 25.527590979123502], - "fuel": [75.82474054558027, 95.07036978180695], - "fuelium": [51.75678022270963, 62.5464499045588], - "gold": [919.4268342652637, 926.1260863064653], - "goldOre": [63.66685283025889, 80.11135979193753], - "hullPlates": [43.227317262340094, 56.81721433348454], - "hydrogen": [40.35658415168419, 49.68561811613161], - "ice": [16.064484056338024, 21.29437810309924], - "metals": [58.841464039893154, 60.848126382349506], - "ore": [29.50004342011115, 42], - "silica": [26.022721910623275, 32.878977535894755], - "silicon": [21.501640821872172, 29.14020830359379], - "superconductors": [469.36953333329757, 482.7443581101876], - "tauMetal": [450.263766629717, 463.81281180414305], - "water": [26.215875671655752, 41.137355231542905] + "coolant": [73.60233016011804, 83.81750399095978], + "drones": [1754.042495689759, 1769.9368164095504], + "electronics": [419.2339962448961, 432.09004911140113], + "engineParts": [358.63460422124933, 373.24532591200193], + "food": [14.321393221149595, 27.267479570303955], + "fuel": [53.573492187683804, 65.0733095378188], + "fuelium": [53.1642194372461, 69.81045795030322], + "gold": [544.0220388149305, 555.5319107020406], + "goldOre": [45.362401616968, 53.185634194469856], + "hullPlates": [64.52989954401136, 82.39974390289484], + "hydrogen": [57.846701599710165, 69.7356776528208], + "ice": [16.31457512879073, 27.800399387673018], + "metals": [56.18380513436691, 75.14167079096299], + "ore": [40.69086850785051, 46.82666249359863], + "silica": [20.729591152299058, 39.21050411859085], + "silicon": [27.290809562390155, 42.6572243409515], + "superconductors": [402.7991939272051, 418.7218621999262], + "tauMetal": [409.1104355473753, 428.6977955006299], + "water": [19.805168212792967, 32.47274063164829] }, "lastPriceAdjust": { "commodities": { @@ -106219,115 +104109,115 @@ "offers": { "coolant": { "active": false, - "price": 85, + "price": 77, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1365, + "price": 1763, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 181, + "price": 420, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 480, + "price": 360, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 25, + "price": 23, "quantity": 0, "type": "buy" }, "fuel": { - "active": false, - "price": 89, + "active": true, + "price": 54, "quantity": 0, - "type": "buy" + "type": "sell" }, "fuelium": { - "active": false, + "active": true, "price": 61, - "quantity": 0, + "quantity": 37371, "type": "buy" }, "gold": { "active": false, - "price": 922, + "price": 548, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 75, + "price": 49, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 53, + "price": 67, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 45, + "price": 63, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 17, + "price": 26, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 60, - "quantity": 10920, - "type": "sell" + "active": false, + "price": 58, + "quantity": 0, + "type": "buy" }, "ore": { - "active": true, - "price": 32, - "quantity": 46893, + "active": false, + "price": 41, + "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 29, + "price": 23, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 25, + "price": 42, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 471, + "price": 416, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 452, + "price": 420, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 33, + "price": 28, "quantity": 0, "type": "buy" } @@ -106346,12 +104236,12 @@ }, "name": { "name": "name", - "value": "FFW Teegarden's Star II Mining Complex", + "value": "FFW Juno IV Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1996, 2007], + "ids": [2106, 2117], "mask": "BigInt:4294967296" }, "crew": { @@ -106369,15 +104259,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 5600 }, + "fuelium": { "consumes": 4800, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 2000 }, - "ore": { "consumes": 4000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -106388,14 +104278,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1052, + "id": 1086, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { @@ -106410,14 +104300,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1053, + "id": 1087, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { @@ -106432,14 +104322,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1054, + "id": 1088, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { @@ -106454,19 +104344,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1055, + "id": 1089, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -106477,14 +104367,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.08282828282816723, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -106506,7 +104396,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -106522,15 +104412,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -106547,14 +104437,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1056, + "id": 1090, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { @@ -106569,19 +104459,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1057, + "id": 1091, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -106592,14 +104482,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.36565656565644744, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -106621,7 +104511,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -106637,15 +104527,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -106662,14 +104552,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1058, + "id": 1092, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { @@ -106684,19 +104574,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1059, + "id": 1093, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -106707,14 +104597,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.14208754208743102, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -106736,7 +104626,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -106752,15 +104642,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -106777,14 +104667,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1060, + "id": 1094, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { @@ -106799,19 +104689,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1061, + "id": 1095, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -106822,14 +104712,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7474747474746373, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -106851,7 +104741,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -106867,22 +104757,22 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -106891,15 +104781,15 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1062, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1096, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1052, + "id": 1086, "mask": "BigInt:549755813888" }, "name": { @@ -106922,7 +104812,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 1063, + "id": 1097, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -106930,8 +104820,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1383300, - "money": 1383300, + "available": 1685008, + "money": 1685008, "name": "budget", "mask": "BigInt:16" }, @@ -106950,15 +104840,15 @@ "modules": { "name": "modules", "ids": [ - 1065, 1066, 1067, 1068, 1069, 1070, 1071, 1072, 1073, 1074, 1075 + 1099, 1100, 1101, 1102, 1103, 1104, 1105, 1106, 1107, 1108, 1109 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [15.749480551436292, 13.457669629540142], - "sector": 18, + "coord": [15.133771952434198, 29.466136988550176], + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, @@ -106973,7 +104863,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, + "allocationIdCounter": 49, "allocations": [], "max": 81000, "availableWares": { @@ -106989,10 +104879,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, - "silica": 1557, - "silicon": 36132, + "metals": 5266, + "ore": 13472, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -107010,10 +104900,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, - "silica": 1557, - "silicon": 36132, + "metals": 5266, + "ore": 13472, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -107031,10 +104921,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, - "silica": 30375, - "silicon": 50625, + "metals": 27000, + "ore": 54000, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -107046,25 +104936,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [69.02398594716398, 78.04801059685272], - "drones": [955.7362413096668, 975.5321491002147], - "electronics": [151.14758230398647, 170.9898665049301], - "engineParts": [303.6776365377005, 320.82575738197244], - "food": [19.706665966541372, 29.04984159111875], - "fuel": [57.3947181677246, 62.84206823721979], - "fuelium": [57.99337210298476, 67.21001739096633], - "gold": [746.2321808359552, 759.1461885390577], - "goldOre": [74.96552041857248, 80.20829030077758], - "hullPlates": [65.25820159328102, 77.83664764783563], - "hydrogen": [35.72608569132724, 55.408511372104975], - "ice": [19.91381723332257, 35.30820606392018], - "metals": [33.220694004915494, 50.84565358323385], - "ore": [23.210320120992208, 31.58076458033917], - "silica": [48.92172835820401, 51], - "silicon": [30, 32], - "superconductors": [504.22298584880394, 521.6544417995442], - "tauMetal": [398.0911081069453, 413.74582864440447], - "water": [33.7185317959434, 45.17495966367116] + "coolant": [70.93596973044214, 79.6749466230082], + "drones": [1820.269937996429, 1834.17312487772], + "electronics": [171.67241276040988, 182.52600629542854], + "engineParts": [418.0330635021387, 435.91585847226], + "food": [15.50151184251853, 26.90173000166814], + "fuel": [39.46822972067021, 57.8094854432084], + "fuelium": [53.99567400871136, 59.373627503304], + "gold": [681.9061923592737, 701.2176683409705], + "goldOre": [33.52658032948552, 52.94824599663988], + "hullPlates": [28.776934204993804, 40.503260412966085], + "hydrogen": [81.31819398757364, 98.94783394517094], + "ice": [10.376082722923714, 21.07069720932887], + "metals": [82, 84], + "ore": [38.29967576871858, 39.8], + "silica": [35.7082485938535, 51.589038023173536], + "silicon": [20.527145634738794, 30.6348196747156], + "superconductors": [351.60678688325396, 359.6889561636206], + "tauMetal": [340.81345350397646, 351.97263284739836], + "water": [31.690794392627012, 45.435445720393254] }, "lastPriceAdjust": { "commodities": { @@ -107093,115 +104983,115 @@ "offers": { "coolant": { "active": false, - "price": 75, + "price": 77, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 975, + "price": 1828, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 168, + "price": 174, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 309, + "price": 426, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 22, + "price": 20, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 59, + "price": 44, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 65, + "price": 55, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 750, + "price": 697, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 76, + "price": 46, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 74, + "price": 28, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 49, + "price": 84, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 27, + "price": 18, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 43, - "quantity": 0, - "type": "buy" + "active": true, + "price": 82, + "quantity": 5266, + "type": "sell" }, "ore": { - "active": false, - "price": 27, - "quantity": 0, + "active": true, + "price": 38, + "quantity": 40528, "type": "buy" }, "silica": { - "active": true, - "price": 50, - "quantity": 28818, + "active": false, + "price": 43, + "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 31, - "quantity": 36132, - "type": "sell" + "active": false, + "price": 20, + "quantity": 0, + "type": "buy" }, "superconductors": { "active": false, - "price": 515, + "price": 355, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 411, + "price": 351, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 40, + "price": 35, "quantity": 0, "type": "buy" } @@ -107220,12 +105110,12 @@ }, "name": { "name": "name", - "value": "FFW Teegarden's Star II Mining Complex", + "value": "FFW Juno IV Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1995, 2006], + "ids": [2105, 2116], "mask": "BigInt:4294967296" }, "crew": { @@ -107250,10 +105140,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 3600, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 6000 }, + "metals": { "consumes": 0, "produces": 2000 }, + "ore": { "consumes": 4000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -107262,14 +105152,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1064, + "id": 1098, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { @@ -107284,14 +105174,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1065, + "id": 1099, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { @@ -107306,14 +105196,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1066, + "id": 1100, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { @@ -107328,19 +105218,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1067, + "id": 1101, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -107358,10 +105248,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -107380,7 +105270,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -107403,10 +105293,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -107416,19 +105306,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1068, + "id": 1102, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { @@ -107443,19 +105333,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1069, + "id": 1103, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -107473,10 +105363,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -107495,7 +105385,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -107518,10 +105408,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -107531,19 +105421,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1070, + "id": 1104, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { @@ -107558,19 +105448,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1071, + "id": 1105, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -107588,10 +105478,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -107610,7 +105500,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -107633,10 +105523,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -107646,19 +105536,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1072, + "id": 1106, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { @@ -107673,19 +105563,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1073, + "id": 1107, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -107703,10 +105593,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -107725,7 +105615,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -107748,10 +105638,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -107761,19 +105651,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1074, + "id": 1108, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1064, + "id": 1098, "mask": "BigInt:549755813888" }, "name": { @@ -107796,23 +105686,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1075, + "id": 1109, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 12, - "allocations": [ - { - "amount": 5280, - "issued": 3567, - "meta": { "tradeId": "337:1994:buy:3567" }, - "id": 11 - } - ], - "available": 209180, - "money": 214460, + "allocationIdCounter": 1, + "allocations": [], + "available": 1304964, + "money": 1304964, "name": "budget", "mask": "BigInt:16" }, @@ -107830,14 +105713,16 @@ }, "modules": { "name": "modules", - "ids": [1077, 1078, 1079, 1080, 1081, 1082], + "ids": [ + 1111, 1112, 1113, 1114, 1115, 1116, 1117, 1118, 1119, 1120, 1121 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [2.895587075273305, -4.9326759528950594], - "sector": 12, + "coord": [4.529595750496892, 6.268480370728451], + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, @@ -107846,49 +105731,21 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 12, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 160 - }, - "issued": 3567, - "type": "incoming", - "meta": { "tradeId": "1076:1994:sell:3567" }, - "id": 11 - } - ], - "max": 20000, + "allocationIdCounter": 28, + "allocations": [], + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6366, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -107898,18 +105755,18 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 0, + "silica": 105, + "silicon": 36812, "superconductors": 0, "tauMetal": 0, - "water": 4661 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6366, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -107919,18 +105776,18 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 0, + "silica": 105, + "silicon": 36812, "superconductors": 0, "tauMetal": 0, - "water": 4661 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -107940,11 +105797,11 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 0, + "silica": 30375, + "silicon": 50625, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -107953,25 +105810,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [87.50029204069338, 102.95445300247712], - "drones": [1607.4312576565062, 1625.2186225766125], - "electronics": [183.5395841490777, 189.42444098112668], - "engineParts": [469.1798856848715, 485.0641921946471], - "food": [16.186718887301016, 21.81219512195122], - "fuel": [61.35909848891177, 78.69175890440147], - "fuelium": [41.583684174092696, 52.20634635028745], - "gold": [765.2608703010644, 771.1543644600551], - "goldOre": [84.15661940608109, 96.06210919463237], - "hullPlates": [23.82433890853373, 37.45609523838034], - "hydrogen": [82.56872280115513, 88.75843400589405], - "ice": [13.44643361622778, 19.323519836068176], - "metals": [35.06667345211902, 49.979884536560355], - "ore": [35.55697156622808, 49.00230491863678], - "silica": [46.3237659067115, 57.5652131751226], - "silicon": [29.196959021729548, 45.91008732084404], - "superconductors": [208.08656866887566, 215.70209174401677], - "tauMetal": [505.62340395268393, 517.6677536356459], - "water": [26.159183687919537, 38.05704256239021] + "coolant": [86.5705761884218, 92.04926638499357], + "drones": [1550.0166556867048, 1569.6986624201613], + "electronics": [390.91718434606145, 401.32963185464536], + "engineParts": [292.1778410355323, 298.0642638032525], + "food": [8.126382026084798, 18.270953760372844], + "fuel": [74.36518571491695, 86.08441869071828], + "fuelium": [66.45409001188366, 84.83975008212425], + "gold": [321.23904401909766, 328.0620747006012], + "goldOre": [70.52044903893922, 77.20337561902814], + "hullPlates": [49.13324426595625, 63.91425370267712], + "hydrogen": [43.805669496249074, 53.4259687856406], + "ice": [12.951852892139803, 28.129016961896255], + "metals": [40.25647606185878, 45.624822893876726], + "ore": [22.291376779063583, 40.98771831917351], + "silica": [40.67517296130882, 51], + "silicon": [26.27001927498955, 28.33420142902537], + "superconductors": [405.03162835921387, 415.7834268086086], + "tauMetal": [486.094983384267, 497.41200574880065], + "water": [37.57796069092841, 42.91280185613151] }, "lastPriceAdjust": { "commodities": { @@ -108000,116 +105857,116 @@ "offers": { "coolant": { "active": false, - "price": 93, + "price": 91, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1622, + "price": 1569, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 186, + "price": 395, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 480, + "price": 294, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 20, - "quantity": 6967, + "active": false, + "price": 16, + "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 72, + "price": 75, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 47, + "price": 70, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 766, + "price": 323, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 89, + "price": 76, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 28, + "price": 62, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 88, + "price": 45, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 14, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 45, + "price": 40, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 38, + "price": 23, "quantity": 0, "type": "buy" }, "silica": { - "active": false, - "price": 48, - "quantity": 0, + "active": true, + "price": 43, + "quantity": 30270, "type": "buy" }, "silicon": { - "active": false, - "price": 41, - "quantity": 0, - "type": "buy" + "active": true, + "price": 26, + "quantity": 36812, + "type": "sell" }, "superconductors": { "active": false, - "price": 209, + "price": 406, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 513, + "price": 492, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 36, - "quantity": 2005, + "active": false, + "price": 40, + "quantity": 0, "type": "buy" } }, @@ -108127,17 +105984,17 @@ }, "name": { "name": "name", - "value": "FFW Juno II Hub", + "value": "FFW Juno IV Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1994], + "ids": [2104, 2115], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -108149,7 +106006,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 16, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -108159,29 +106016,95 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 3600, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 6000 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 8, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1076, + "id": 1110, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1076, + "id": 1110, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1111, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1110, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1112, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1110, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1113, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1110, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -108202,7 +106125,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.688524590163893, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -108212,7 +106135,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.26666666666666783, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -108226,7 +106149,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.13333333333333564 + "water": 0 } }, "name": "production", @@ -108236,7 +106159,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 16, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -108246,47 +106169,145 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 8, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1077, - "tags": ["facilityModule", "facilityModuleType:hub"] + "id": 1114, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1076, + "id": 1110, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 14, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1078, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 1115, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1110, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.688524590163893, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1116, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1076, + "id": 1110, "mask": "BigInt:549755813888" }, "name": { @@ -108301,74 +106322,222 @@ } }, "cooldowns": { "timers": {} }, - "id": 1079, + "id": 1117, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1076, + "id": 1110, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.5883424408014184, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1118, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1110, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, "cooldowns": { "timers": {} }, - "id": 1080, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1119, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1076, + "id": 1110, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.617486338797776, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1081, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1120, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1076, + "id": 1110, "mask": "BigInt:549755813888" }, "name": { @@ -108391,23 +106560,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1082, + "id": 1121, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 28, - "allocations": [ - { - "amount": 2880, - "issued": 3570, - "meta": { "tradeId": "1147:1993:buy:3570" }, - "id": 27 - } - ], - "available": 129705, - "money": 132585, + "allocationIdCounter": 1, + "allocations": [], + "available": 1920030, + "money": 1920030, "name": "budget", "mask": "BigInt:16" }, @@ -108425,14 +106587,16 @@ }, "modules": { "name": "modules", - "ids": [1084, 1085, 1086, 1087, 1088, 1089], + "ids": [ + 1123, 1124, 1125, 1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [2.1417954206344163, 0.6220029406932674], - "sector": 13, + "coord": [33.47814014252345, 1.1333269850536176], + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, @@ -108441,13 +106605,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 28, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -108455,7 +106619,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -108464,26 +106628,26 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 680, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 540, "type": "incoming", - "meta": { "tradeId": "1083:1993:sell:3570" }, - "id": 27 + "meta": { "tradeId": "1122:2114:sell:540" }, + "id": 1 } ], - "max": 20000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6512, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -108491,20 +106655,20 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, + "metals": 13524, + "ore": 6653, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5503 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6512, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -108512,20 +106676,20 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, + "metals": 13524, + "ore": 6653, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5503 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -108533,13 +106697,13 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, - "ore": 0, + "metals": 27000, + "ore": 54000, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -108548,25 +106712,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [65.97909585327474, 78.24014888221879], - "drones": [1724.353179521734, 1738.5551269134849], - "electronics": [292.106273876611, 299.7130565758629], - "engineParts": [407.5631928286583, 426.651651345932], - "food": [12.443963891066836, 20.288888888888888], - "fuel": [41.30610823968558, 51.511417110206196], - "fuelium": [60.47552562570047, 76.51660280406045], - "gold": [443.392313993411, 454.78033696691233], - "goldOre": [95.30706947346238, 103.81135632215359], - "hullPlates": [46.29608827751618, 62.46756769497463], - "hydrogen": [57.40420096592128, 68.70242040776785], - "ice": [13.33714936201497, 25.612302540703006], - "metals": [93.63205539461754, 109.701840386722], - "ore": [35.00450634139473, 53.391860282522174], - "silica": [23.088151935963474, 36.60885941054091], - "silicon": [33.08455039485978, 51.36962338567959], - "superconductors": [209.91786739697716, 217.44108194271186], - "tauMetal": [592.5929131608659, 612.0782140635446], - "water": [32.86770072485994, 38.46666666666666] + "coolant": [59.32146849903935, 78.04261286931545], + "drones": [1443.0057002731166, 1453.2233413208448], + "electronics": [308.50807536746345, 324.5047492413787], + "engineParts": [440.6949268085539, 447.5745477909682], + "food": [13.312057037801665, 30.461361364080837], + "fuel": [68.11492725645635, 73.21049211289434], + "fuelium": [43.78525695125897, 60.00083246225056], + "gold": [362.4898232095791, 376.1637022170127], + "goldOre": [42.863055041303404, 49.14888723214733], + "hullPlates": [65.2741649022245, 80.03511094576676], + "hydrogen": [73.85434979190731, 82.54196733999963], + "ice": [12.746084389569862, 31.639428596642325], + "metals": [84, 86], + "ore": [42, 44], + "silica": [20.757032269953527, 34.75244904293634], + "silicon": [22.4322706228838, 35.16433831653064], + "superconductors": [199.9446135590235, 216.32651231336885], + "tauMetal": [369.4096412908353, 374.6888253787881], + "water": [19.209047797390262, 37.440504054812415] }, "lastPriceAdjust": { "commodities": { @@ -108595,91 +106759,91 @@ "offers": { "coolant": { "active": false, - "price": 66, + "price": 69, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1732, + "price": 1451, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 294, + "price": 311, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 416, + "price": 446, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 13, - "quantity": 6821, + "active": false, + "price": 30, + "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 42, + "price": 72, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 71, + "price": 50, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 443, + "price": 363, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 99, + "price": 46, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 46, + "price": 66, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 60, + "price": 81, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 16, + "price": 27, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 102, - "quantity": 0, - "type": "buy" + "active": true, + "price": 85, + "quantity": 13524, + "type": "sell" }, "ore": { - "active": false, - "price": 45, - "quantity": 0, + "active": true, + "price": 42, + "quantity": 47347, "type": "buy" }, "silica": { "active": false, - "price": 27, + "price": 26, "quantity": 0, "type": "buy" }, @@ -108691,20 +106855,20 @@ }, "superconductors": { "active": false, - "price": 213, + "price": 207, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 601, + "price": 373, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 38, - "quantity": 1163, + "active": false, + "price": 29, + "quantity": 0, "type": "buy" } }, @@ -108722,17 +106886,17 @@ }, "name": { "name": "name", - "value": "FFW Juno III Hub", + "value": "FFW Teegarden's Star II Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1993], + "ids": [2103, 2114], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -108744,7 +106908,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -108752,31 +106916,97 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 2000 }, + "ore": { "consumes": 4000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1083, + "id": 1122, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1083, + "id": 1122, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1123, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1122, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1124, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1122, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1125, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1122, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -108794,7 +107024,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -108807,7 +107037,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.5999999999999996, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -108816,12 +107046,12 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7999999999999998 + "water": 0 } }, "name": "production", @@ -108831,7 +107061,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -108839,49 +107069,147 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1084, - "tags": ["facilityModule", "facilityModuleType:hub"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1126, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1083, + "id": 1122, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 14, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1085, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 1127, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1122, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0.6464646464646764, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 31.33333333333298, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1128, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1083, + "id": 1122, "mask": "BigInt:549755813888" }, "name": { @@ -108896,106 +107224,254 @@ } }, "cooldowns": { "timers": {} }, - "id": 1086, + "id": 1129, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1083, + "id": 1122, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Refinery", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0.6464646464646764, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 31.33333333333298, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1087, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1130, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1083, + "id": 1122, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1088, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1131, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1083, + "id": 1122, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Refinery", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0.6464646464646764, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 31.33333333333298, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1132, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1122, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", "value": 1, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1089, + "id": 1133, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 20, + "allocationIdCounter": 1, "allocations": [], - "available": 72039, - "money": 72039, + "available": 1399881, + "money": 1399881, "name": "budget", "mask": "BigInt:16" }, @@ -109013,14 +107489,16 @@ }, "modules": { "name": "modules", - "ids": [1091, 1092, 1093, 1094, 1095, 1096], + "ids": [ + 1135, 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [1.7759583210799157, 5.182045019955526], - "sector": 14, + "coord": [2.8661005125218093, -6.8183322429485695], + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, @@ -109029,13 +107507,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 20, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -109043,7 +107521,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -109053,25 +107531,25 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, + "silica": 96, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3465, + "issued": 99, "type": "incoming", - "meta": { "tradeId": "1090:1992:sell:3465" }, - "id": 19 + "meta": { "tradeId": "1134:2113:sell:99" }, + "id": 1 } ], - "max": 20000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 10686, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -109081,18 +107559,18 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 0, + "silica": 366, + "silicon": 27717, "superconductors": 0, "tauMetal": 0, - "water": 5605 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 10686, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -109102,18 +107580,18 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 0, + "silica": 366, + "silicon": 27717, "superconductors": 0, "tauMetal": 0, - "water": 5605 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -109123,11 +107601,11 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 0, + "silica": 30375, + "silicon": 50625, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -109136,25 +107614,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [103.30841260056954, 110.53328712503134], - "drones": [1552.9784828316863, 1563.9194546542933], - "electronics": [176.8816475026525, 185.59092438606035], - "engineParts": [453.5306677360566, 459.0863487114713], - "food": [12.880310006711852, 22], - "fuel": [41.88355115635365, 60.037051561547884], - "fuelium": [29.176367676939872, 39.22166621526544], - "gold": [444.75877238809335, 463.4003970190872], - "goldOre": [95.109960508196, 103.67511505915807], - "hullPlates": [59.9242654639264, 73.1884531303325], - "hydrogen": [95.59278551972596, 107.49200544878745], - "ice": [24.546980859896617, 35.23194819346456], - "metals": [54.2238822941649, 67.5712135378476], - "ore": [15.379038714238051, 21.429566973988774], - "silica": [28.063916754423275, 34.78931012478247], - "silicon": [35.37791584244321, 53.92017029927373], - "superconductors": [502.670632054627, 509.5550438646211], - "tauMetal": [395.63948853029603, 413.53002660425096], - "water": [31.39035153016423, 39.54285714285714] + "coolant": [130.98166502571576, 140.08068763785897], + "drones": [670.7525672634199, 680.0223020534046], + "electronics": [386.3406409671064, 398.3767419636866], + "engineParts": [356.5035909718972, 375.8304511114853], + "food": [15.976604406705965, 21.329815008292904], + "fuel": [45.82040621175247, 52.25145379487939], + "fuelium": [60.27948754148926, 77.98592990902385], + "gold": [522.3640582821722, 542.1565530117545], + "goldOre": [45.81056627508561, 59.38565603889377], + "hullPlates": [53.853530443287084, 65.67026035937765], + "hydrogen": [67.43905959045145, 84.69382353642223], + "ice": [22.368079280368846, 33.40799355352603], + "metals": [46.78588621178163, 54.52274890793743], + "ore": [25.952845160369606, 32.27529280005689], + "silica": [48.31977373266078, 51], + "silicon": [30, 32], + "superconductors": [544.6098775251671, 556.8901327127866], + "tauMetal": [557.0477307475405, 567.016708746182], + "water": [14.657319475870425, 26.51839275833668] }, "lastPriceAdjust": { "commodities": { @@ -109183,116 +107661,116 @@ "offers": { "coolant": { "active": false, - "price": 104, + "price": 132, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1563, + "price": 676, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 180, + "price": 389, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 458, + "price": 371, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 20, - "quantity": 2647, + "active": false, + "price": 16, + "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 58, + "price": 49, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 36, + "price": 74, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 454, + "price": 535, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 98, + "price": 52, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 61, + "price": 62, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 106, + "price": 79, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 32, + "price": 31, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 64, + "price": 48, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 17, + "price": 27, "quantity": 0, "type": "buy" }, "silica": { - "active": false, - "price": 31, - "quantity": 0, + "active": true, + "price": 49, + "quantity": 30009, "type": "buy" }, "silicon": { - "active": false, - "price": 52, - "quantity": 0, - "type": "buy" + "active": true, + "price": 31, + "quantity": 27717, + "type": "sell" }, "superconductors": { "active": false, - "price": 504, + "price": 544, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 406, + "price": 565, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 31, - "quantity": 1061, + "active": false, + "price": 19, + "quantity": 0, "type": "buy" } }, @@ -109300,80 +107778,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 39, - "target": "THT Trader Courier B", - "time": 558 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "THT Trader Freighter A", - "time": 822 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "THT Trader Freighter A", - "time": 843 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "THT Trader Freighter A", - "time": 845 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "THT Trader Freighter A", - "time": 859 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "THT Trader Freighter A", - "time": 864 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "THT Trader Freighter A", - "time": 1351 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "THT Trader Freighter A", - "time": 1373 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -109383,17 +107788,17 @@ }, "name": { "name": "name", - "value": "FFW Juno IV Hub", + "value": "FFW Teegarden's Star II Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1992], + "ids": [2102, 2113], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -109405,7 +107810,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 328, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -109415,29 +107820,95 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 3600, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 6000 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 164, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1090, + "id": 1134, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1090, + "id": 1134, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1135, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1134, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1136, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1134, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1137, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1134, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -109458,7 +107929,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.6775956284152533, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -109468,7 +107939,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4000000000000128, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -109482,7 +107953,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 1.2000000000000064 + "water": 0 } }, "name": "production", @@ -109492,7 +107963,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 328, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -109502,47 +107973,145 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 164, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1091, - "tags": ["facilityModule", "facilityModuleType:hub"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1138, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1090, + "id": 1134, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 14, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1092, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 1139, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1090, + "id": 1134, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.6775956284152533, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1140, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1134, "mask": "BigInt:549755813888" }, "name": { @@ -109557,74 +108126,222 @@ } }, "cooldowns": { "timers": {} }, - "id": 1093, + "id": 1141, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1090, + "id": 1134, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.6775956284152533, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1142, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1134, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, "cooldowns": { "timers": {} }, - "id": 1094, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1143, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1090, + "id": 1134, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.6775956284152533, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1095, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1144, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1090, + "id": 1134, "mask": "BigInt:549755813888" }, "name": { @@ -109647,16 +108364,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1096, + "id": 1145, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 21, + "allocationIdCounter": 1, "allocations": [], - "available": 154400, - "money": 154400, + "available": 276440, + "money": 276440, "name": "budget", "mask": "BigInt:16" }, @@ -109674,14 +108391,14 @@ }, "modules": { "name": "modules", - "ids": [1098, 1099, 1100, 1101, 1102, 1103], + "ids": [1147, 1148, 1149, 1150, 1151, 1152], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [9.133942474869862, 2.9815831695734136], - "sector": 17, + "coord": [9.902307345387399, -1.2761084094433617], + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, @@ -109696,43 +108413,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 21, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 82 - }, - "issued": 3369, - "type": "incoming", - "meta": { "tradeId": "1097:1991:sell:3369" }, - "id": 20 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 8832, + "food": 5435, "fuel": 0, "fuelium": 0, "gold": 0, @@ -109746,14 +108435,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5037 + "water": 3644 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 8832, + "food": 5435, "fuel": 0, "fuelium": 0, "gold": 0, @@ -109767,7 +108456,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5037 + "water": 3644 }, "quota": { "coolant": 0, @@ -109797,25 +108486,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [109.04425769533393, 117.59525662942359], - "drones": [1492.8469224178343, 1505.8078275826726], - "electronics": [208.79419043607012, 228.28438816884974], - "engineParts": [380.64688851836775, 389.2306663813553], - "food": [20.50461906567659, 22], - "fuel": [40.166829031653805, 52.176379365592695], - "fuelium": [30.906944576605078, 40.79144148362385], - "gold": [571.3423334185342, 589.2064615588645], - "goldOre": [67.3825119246118, 73.12100174809981], - "hullPlates": [47.59704513147865, 63.95662015566511], - "hydrogen": [46.97713718619619, 58.616442412413434], - "ice": [14.164616030732798, 23.346225929637473], - "metals": [50.33541120702043, 58.56177457802115], - "ore": [14.676747020950891, 20.032078253290393], - "silica": [50.2300419020477, 67.05862613734712], - "silicon": [24.87200966051588, 43.36054292742697], - "superconductors": [380.69993359979685, 397.5708526246656], - "tauMetal": [609.1996940667376, 623.0815825553276], - "water": [30.16209109292053, 43] + "coolant": [89.23507595162789, 101.05006896690386], + "drones": [1091.7482193993878, 1104.464828738975], + "electronics": [340.0929696869298, 354.58403680691276], + "engineParts": [361.16588978343094, 378.1160945095737], + "food": [17.126853201431967, 22], + "fuel": [74.63227518690277, 88.13822047873967], + "fuelium": [55.16239931297123, 63.26923590965236], + "gold": [493.00323641493003, 506.5220695099969], + "goldOre": [32.06218094767253, 48.551091819327866], + "hullPlates": [61.48995739076124, 79.39028303287938], + "hydrogen": [98.91733131619313, 105.08765842993107], + "ice": [21.679624533228953, 40.20434162018912], + "metals": [90.72742985643092, 97.44844599221996], + "ore": [37.127813994721976, 53.49305900204829], + "silica": [20.2395002011638, 34.2260368137985], + "silicon": [16.132000172752793, 33.254233381964866], + "superconductors": [552.1968830909178, 568.9949604385596], + "tauMetal": [552.3675849541127, 564.1328968230814], + "water": [30.967311375544142, 42.0375] }, "lastPriceAdjust": { "commodities": { @@ -109844,116 +108533,116 @@ "offers": { "coolant": { "active": false, - "price": 109, + "price": 98, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1501, + "price": 1100, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 212, + "price": 348, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 383, + "price": 367, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 21, - "quantity": 4501, + "price": 20, + "quantity": 7898, "type": "buy" }, "fuel": { "active": false, - "price": 43, + "price": 75, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 39, + "price": 60, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 585, + "price": 504, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 70, + "price": 42, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 51, + "price": 73, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 49, + "price": 103, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 19, + "price": 32, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 55, + "price": 93, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 16, + "price": 37, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 52, + "price": 29, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 38, + "price": 16, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 385, + "price": 565, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 622, + "price": 560, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 37, - "quantity": 1629, + "price": 40, + "quantity": 3022, "type": "buy" } }, @@ -109971,12 +108660,12 @@ }, "name": { "name": "name", - "value": "FFW Teegarden's Star I Hub", + "value": "FFW Juno II Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1991], + "ids": [2101], "mask": "BigInt:4294967296" }, "crew": { @@ -109993,7 +108682,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 40, "produces": 0 }, + "food": { "consumes": 152, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -110007,20 +108696,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 20, "produces": 0 } + "water": { "consumes": 76, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1097, + "id": 1146, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1097, + "id": 1146, "mask": "BigInt:549755813888" }, "name": { @@ -110056,7 +108745,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1.8666666666666725, + "food": 0.20000000000000284, "fuel": 0, "fuelium": 0, "gold": 0, @@ -110070,7 +108759,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.9333333333333362 + "water": 0.6000000000000014 } }, "name": "production", @@ -110080,7 +108769,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 40, "produces": 0 }, + "food": { "consumes": 152, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -110094,21 +108783,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 20, "produces": 0 } + "water": { "consumes": 76, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1098, + "id": 1147, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 1097, + "id": 1146, "mask": "BigInt:549755813888" }, "name": { @@ -110123,14 +108812,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1099, + "id": 1148, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1097, + "id": 1146, "mask": "BigInt:549755813888" }, "name": { @@ -110145,14 +108834,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1100, + "id": 1149, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1097, + "id": 1146, "mask": "BigInt:549755813888" }, "name": { @@ -110175,14 +108864,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1101, + "id": 1150, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1097, + "id": 1146, "mask": "BigInt:549755813888" }, "name": { @@ -110205,14 +108894,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1102, + "id": 1151, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1097, + "id": 1146, "mask": "BigInt:549755813888" }, "name": { @@ -110235,16 +108924,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1103, + "id": 1152, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 15, + "allocationIdCounter": 1, "allocations": [], - "available": 211838, - "money": 211838, + "available": 214761, + "money": 214761, "name": "budget", "mask": "BigInt:16" }, @@ -110262,14 +108951,14 @@ }, "modules": { "name": "modules", - "ids": [1105, 1106, 1107, 1108, 1109, 1110], + "ids": [1154, 1155, 1156, 1157, 1158, 1159], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [2.5622378048483245, 8.682790314320584], - "sector": 18, + "coord": [1.372017075223388, -2.532506382142925], + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, @@ -110284,43 +108973,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3441, - "type": "incoming", - "meta": { "tradeId": "1104:1990:sell:3441" }, - "id": 14 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6461, + "food": 5105, "fuel": 0, "fuelium": 0, "gold": 0, @@ -110334,14 +108995,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4357 + "water": 3291 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6461, + "food": 5105, "fuel": 0, "fuelium": 0, "gold": 0, @@ -110355,7 +109016,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4357 + "water": 3291 }, "quota": { "coolant": 0, @@ -110385,25 +109046,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [123.98945477086684, 137.9825453023032], - "drones": [1170.398819242272, 1177.792340390357], - "electronics": [338.83811376946954, 344.40926706456565], - "engineParts": [197.20399174831408, 214.92269292698708], - "food": [15.131870775451096, 22], - "fuel": [49.91136665767908, 55.96699470126546], - "fuelium": [47.47749662876852, 61.35796513878778], - "gold": [420.33870517598183, 428.21089985085155], - "goldOre": [44.658570054897154, 64.63582395568844], - "hullPlates": [60.03631163701841, 69.87626690426782], - "hydrogen": [50.93147217161678, 57.292235572203914], - "ice": [26.12503397306175, 36.73474111269147], - "metals": [58.51549309578792, 66.86578755721584], - "ore": [17.653697568380313, 31.511384283229624], - "silica": [26.906523997446236, 46.769533298068104], - "silicon": [29.847574484809684, 41.90817575861575], - "superconductors": [555.819015493757, 573.3161434433785], - "tauMetal": [411.6924723697128, 426.31111577952686], - "water": [32.54078920297414, 39.04662754089429] + "coolant": [85.40794952009719, 104.98771435572218], + "drones": [1056.192692477569, 1069.190003894491], + "electronics": [191.68127886305723, 204.7747128251931], + "engineParts": [178.52363325523316, 183.9693339253017], + "food": [9.526, 20.786], + "fuel": [64.73394900496969, 80.13294014774712], + "fuelium": [66.57889971447277, 80.3533743806721], + "gold": [458.74601523948303, 468.5943709595209], + "goldOre": [45.348788450818226, 53.377617834493826], + "hullPlates": [42.74585947195247, 61.9286399416338], + "hydrogen": [79.62619749723217, 86.1108539587036], + "ice": [9.12161039051786, 16.39609115111722], + "metals": [55.68694715754822, 69.47281030803211], + "ore": [40.545941911195484, 58.097461105230494], + "silica": [22.27303581885321, 42.02724750232763], + "silicon": [26.048040225518672, 41.087783408165905], + "superconductors": [273.35216093854996, 289.87241874250134], + "tauMetal": [375.14123191234273, 384.53597821182143], + "water": [35.56102882247137, 40.40277777777777] }, "lastPriceAdjust": { "commodities": { @@ -110432,49 +109093,49 @@ "offers": { "coolant": { "active": false, - "price": 128, + "price": 98, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1176, + "price": 1067, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 342, + "price": 194, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 211, + "price": 183, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 19, - "quantity": 6872, + "price": 12, + "quantity": 8228, "type": "buy" }, "fuel": { "active": false, - "price": 51, + "price": 68, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 55, + "price": 67, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 425, + "price": 468, "quantity": 0, "type": "buy" }, @@ -110486,62 +109147,62 @@ }, "hullPlates": { "active": false, - "price": 67, + "price": 51, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 57, + "price": 82, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 35, + "price": 10, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 63, + "price": 57, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 22, + "price": 41, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 26, + "price": 24, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 41, + "price": 32, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 562, + "price": 287, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 420, + "price": 378, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 36, - "quantity": 2309, + "price": 35, + "quantity": 3375, "type": "buy" } }, @@ -110559,12 +109220,12 @@ }, "name": { "name": "name", - "value": "FFW Teegarden's Star II Hub", + "value": "FFW Juno III Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1990], + "ids": [2100], "mask": "BigInt:4294967296" }, "crew": { @@ -110581,7 +109242,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 184, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -110595,20 +109256,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 92, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1104, + "id": 1153, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1104, + "id": 1153, "mask": "BigInt:549755813888" }, "name": { @@ -110644,7 +109305,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.5999999999999996, + "food": 1.266666666666679, "fuel": 0, "fuelium": 0, "gold": 0, @@ -110658,7 +109319,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7999999999999998 + "water": 2.1333333333333395 } }, "name": "production", @@ -110668,7 +109329,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 128, "produces": 0 }, + "food": { "consumes": 184, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -110682,21 +109343,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 64, "produces": 0 } + "water": { "consumes": 92, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1105, + "id": 1154, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 1104, + "id": 1153, "mask": "BigInt:549755813888" }, "name": { @@ -110711,14 +109372,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1106, + "id": 1155, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1104, + "id": 1153, "mask": "BigInt:549755813888" }, "name": { @@ -110733,14 +109394,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1107, + "id": 1156, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1104, + "id": 1153, "mask": "BigInt:549755813888" }, "name": { @@ -110763,14 +109424,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1108, + "id": 1157, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1104, + "id": 1153, "mask": "BigInt:549755813888" }, "name": { @@ -110793,14 +109454,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1109, + "id": 1158, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1104, + "id": 1153, "mask": "BigInt:549755813888" }, "name": { @@ -110823,29 +109484,23 @@ } }, "cooldowns": { "timers": {} }, - "id": 1110, + "id": 1159, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 34, + "allocationIdCounter": 2, "allocations": [ { - "amount": 19740, - "issued": 3075, - "meta": { "tradeId": "1111:1982:sell:3075" }, - "id": 27 - }, - { - "amount": 126, - "issued": 3564, - "meta": { "tradeId": "1111:1981:sell:3564" }, - "id": 33 + "amount": 4640, + "issued": 312, + "meta": { "tradeId": "1074:2099:buy:312" }, + "id": 1 } ], - "available": 63652, - "money": 83518, + "available": 317119, + "money": 321759, "name": "budget", "mask": "BigInt:16" }, @@ -110863,14 +109518,14 @@ }, "modules": { "name": "modules", - "ids": [1112, 1113, 1114, 1115, 1116, 1117], + "ids": [1161, 1162, 1163, 1164, 1165, 1166], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-5.238122975869068, -9.519242834882165], - "sector": 22, + "coord": [9.42422196354417, 5.941519799789228], + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, @@ -110885,35 +109540,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 34, + "allocationIdCounter": 2, "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3075, - "type": "incoming", - "meta": { "tradeId": "1111:1982:sell:3075" }, - "id": 27 - }, { "amount": { "coolant": 0, @@ -110936,37 +109564,10 @@ "tauMetal": 0, "water": 160 }, - "issued": 3489, + "issued": 312, "type": "incoming", - "meta": { "tradeId": "1111:1989:sell:3489" }, - "id": 32 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 6, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3564, - "type": "incoming", - "meta": { "tradeId": "1111:1981:sell:3564" }, - "id": 33 + "meta": { "tradeId": "1160:2099:sell:312" }, + "id": 1 } ], "max": 20000, @@ -110975,7 +109576,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 11211, + "food": 5511, "fuel": 0, "fuelium": 0, "gold": 0, @@ -110989,14 +109590,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6083 + "water": 2330 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 11211, + "food": 5511, "fuel": 0, "fuelium": 0, "gold": 0, @@ -111010,7 +109611,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6083 + "water": 2330 }, "quota": { "coolant": 0, @@ -111040,25 +109641,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [84.4867614710817, 100.15132208614877], - "drones": [664.3774406067441, 682.2992983155161], - "electronics": [333.503311120953, 344.78437499008317], - "engineParts": [236.33893203151536, 248.3237925948106], - "food": [20.82434851180424, 22], - "fuel": [71.92119021584554, 81.29524123179375], - "fuelium": [37.69705484721477, 43.0515135248637], - "gold": [802.0075105247463, 814.617142317964], - "goldOre": [94.04905834212536, 102.15794072389619], - "hullPlates": [51.24758693043972, 61.64193960848206], - "hydrogen": [55.3008545465415, 72.40920343271691], - "ice": [22.880445476472637, 34.80244028801363], - "metals": [49.63194710079752, 69.56755789986912], - "ore": [30.9189110228684, 50.776681092750174], - "silica": [38.79608494703522, 50.07361006564015], - "silicon": [15.226422607078959, 25.458040461963165], - "superconductors": [308.25491294135105, 326.0159160079323], - "tauMetal": [286.93405913901995, 299.7846939103086], - "water": [30.790939248480207, 42.560441117450765] + "coolant": [129.01389251455498, 145.72959202095404], + "drones": [1609.0302234563046, 1619.714073758617], + "electronics": [319.74734479590086, 335.72574395272613], + "engineParts": [212.22097735179597, 227.88550368787966], + "food": [18.692036879347953, 22], + "fuel": [54.280272691428294, 65.09531421634809], + "fuelium": [56.75730922292496, 68.64609683163265], + "gold": [699.4615842098378, 704.9096266039909], + "goldOre": [54.93488563501291, 60.285393155525526], + "hullPlates": [58.0162462649744, 63.440773895437914], + "hydrogen": [34.59004340477114, 49.50441133107267], + "ice": [26.190823027858467, 44.9018726604932], + "metals": [51.613664729759016, 66.63318790949914], + "ore": [32.47460880542689, 51.69607103387152], + "silica": [20.828607076941573, 29.048862686095948], + "silicon": [18.22974879272277, 26.235251638165426], + "superconductors": [517.9222007349058, 526.7837406930935], + "tauMetal": [547.4892670520037, 561.636155479518], + "water": [39.88104074558482, 43] }, "lastPriceAdjust": { "commodities": { @@ -111087,116 +109688,116 @@ "offers": { "coolant": { "active": false, - "price": 98, + "price": 136, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 672, + "price": 1615, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 339, + "price": 322, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 244, + "price": 224, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 21, - "quantity": 2122, + "price": 19, + "quantity": 7822, "type": "buy" }, "fuel": { "active": false, - "price": 77, + "price": 61, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 40, + "price": 61, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 812, + "price": 701, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 94, + "price": 56, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 58, + "price": 59, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 69, + "price": 42, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 35, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 63, + "price": 53, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 38, + "price": 32, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 39, + "price": 21, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 17, + "price": 26, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 311, + "price": 525, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 295, + "price": 551, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 38, - "quantity": 583, + "price": 40, + "quantity": 4336, "type": "buy" } }, @@ -111214,12 +109815,12 @@ }, "name": { "name": "name", - "value": "FFW GJ 1002 I Hub", + "value": "FFW Juno IV Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1989], + "ids": [2099], "mask": "BigInt:4294967296" }, "crew": { @@ -111236,7 +109837,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 72, "produces": 0 }, + "food": { "consumes": 308, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -111250,20 +109851,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 36, "produces": 0 } + "water": { "consumes": 154, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1111, + "id": 1160, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1111, + "id": 1160, "mask": "BigInt:549755813888" }, "name": { @@ -111299,7 +109900,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.9333333333333385, + "food": 3.0666666666667233, "fuel": 0, "fuelium": 0, "gold": 0, @@ -111313,7 +109914,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.466666666666669 + "water": 4.533333333333362 } }, "name": "production", @@ -111323,7 +109924,7 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 72, "produces": 0 }, + "food": { "consumes": 308, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, @@ -111337,21 +109938,21 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 36, "produces": 0 } + "water": { "consumes": 154, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1112, + "id": 1161, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 1111, + "id": 1160, "mask": "BigInt:549755813888" }, "name": { @@ -111366,14 +109967,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1113, + "id": 1162, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1111, + "id": 1160, "mask": "BigInt:549755813888" }, "name": { @@ -111388,14 +109989,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1114, + "id": 1163, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1111, + "id": 1160, "mask": "BigInt:549755813888" }, "name": { @@ -111418,14 +110019,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1115, + "id": 1164, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1111, + "id": 1160, "mask": "BigInt:549755813888" }, "name": { @@ -111448,14 +110049,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1116, + "id": 1165, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1111, + "id": 1160, "mask": "BigInt:549755813888" }, "name": { @@ -111478,23 +110079,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1117, + "id": 1166, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": 126, - "issued": 3555, - "meta": { "tradeId": "1168:1988:buy:3555" }, - "id": 32 - } - ], - "available": 83397, - "money": 83523, + "allocationIdCounter": 1, + "allocations": [], + "available": 203993, + "money": 203993, "name": "budget", "mask": "BigInt:16" }, @@ -111512,14 +110106,14 @@ }, "modules": { "name": "modules", - "ids": [1119, 1120, 1121, 1122, 1123, 1124], + "ids": [1168, 1169, 1170, 1171, 1172, 1173], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-4.491025545007741, -8.733647296408982], - "sector": 23, + "coord": [2.8332238090975927, 7.880313009256284], + "sector": 17, "moved": false, "mask": "BigInt:2199023255552" }, @@ -111534,43 +110128,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 6, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3555, - "type": "incoming", - "meta": { "tradeId": "1118:1988:sell:3555" }, - "id": 32 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6932, + "food": 6570, "fuel": 0, "fuelium": 0, "gold": 0, @@ -111584,14 +110150,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 7748 + "water": 4541 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6932, + "food": 6570, "fuel": 0, "fuelium": 0, "gold": 0, @@ -111605,7 +110171,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 7748 + "water": 4541 }, "quota": { "coolant": 0, @@ -111635,25 +110201,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [136.19251246012544, 152.480345896847], - "drones": [739.7087204151078, 758.8289912732606], - "electronics": [221.16808515567286, 237.94424620341888], - "engineParts": [434.2515625087777, 439.261963578113], - "food": [17.263411784728756, 20.18823529411765], - "fuel": [26.286432279451216, 32.2649689947485], - "fuelium": [73.17085925620128, 87.64974574842346], - "gold": [350.2143827947072, 361.5345724563987], - "goldOre": [63.00971275553715, 77.01524154301771], - "hullPlates": [26.69807311025418, 39.2891201408608], - "hydrogen": [103.8707214104827, 110.1962039506458], - "ice": [17.968442889777606, 30.158517856732757], - "metals": [86.89905406082984, 101.18016402420501], - "ore": [41.39684252470397, 49.74482310495379], - "silica": [22.564920513020986, 32.059533076944746], - "silicon": [16.636829257721168, 27.061235878885807], - "superconductors": [485.76409964593375, 504.3497800345512], - "tauMetal": [302.3404351556581, 310.1708291072272], - "water": [37.939262915851, 41.57916744211085] + "coolant": [127.08832153947647, 142.0849367714967], + "drones": [1574.5498766780056, 1586.0602991702758], + "electronics": [273.7686608930356, 281.50165508715395], + "engineParts": [267.6156977394691, 287.19929475847323], + "food": [16.305882352941175, 18.305882352941175], + "fuel": [70.62200984607708, 78.56722229165428], + "fuelium": [51.34415355440986, 64.58238927753379], + "gold": [455.7808684649404, 466.1668941918359], + "goldOre": [81.35424394202175, 91.59230361606159], + "hullPlates": [42.38567376950018, 49.41481478204492], + "hydrogen": [102.32852323818872, 116.13685596158814], + "ice": [14.090636777936943, 22.146016235966933], + "metals": [45.583105076328195, 56.04193312675778], + "ore": [36.50522514579482, 48.737486278579425], + "silica": [21.72835274985887, 33.529625667477404], + "silicon": [26.803907391187966, 35.10813972674728], + "superconductors": [436.8477908821718, 456.62002653132663], + "tauMetal": [616.9437280072791, 626.7192555475095], + "water": [36.528466469234274, 43] }, "lastPriceAdjust": { "commodities": { @@ -111682,61 +110248,61 @@ "offers": { "coolant": { "active": false, - "price": 148, + "price": 127, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 744, + "price": 1582, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 227, + "price": 275, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 435, + "price": 280, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 20, - "quantity": 6401, + "price": 17, + "quantity": 6763, "type": "buy" }, "fuel": { "active": false, - "price": 29, + "price": 78, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 84, + "price": 56, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 350, + "price": 459, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 71, + "price": 88, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 37, + "price": 43, "quantity": 0, "type": "buy" }, @@ -111748,50 +110314,50 @@ }, "ice": { "active": false, - "price": 23, + "price": 20, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 88, + "price": 48, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 42, + "price": 48, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 28, + "price": 27, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 19, + "price": 28, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 496, + "price": 441, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 310, + "price": 623, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 41, - "quantity": 0, + "price": 42, + "quantity": 2125, "type": "buy" } }, @@ -111799,26 +110365,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 42, - "target": "THT Trader Freighter A", - "time": 1250 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 42, - "target": "THT Trader Large Freighter B", - "time": 1461 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -111828,12 +110375,12 @@ }, "name": { "name": "name", - "value": "FFW GJ 1002 II Hub", + "value": "FFW Teegarden's Star I Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1988], + "ids": [2098], "mask": "BigInt:4294967296" }, "crew": { @@ -111870,14 +110417,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1118, + "id": 1167, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1118, + "id": 1167, "mask": "BigInt:549755813888" }, "name": { @@ -111958,14 +110505,14 @@ } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1119, + "id": 1168, "tags": ["facilityModule", "facilityModuleType:hub"] }, { "components": { "parent": { "name": "parent", - "id": 1118, + "id": 1167, "mask": "BigInt:549755813888" }, "name": { @@ -111980,14 +110527,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1120, + "id": 1169, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1118, + "id": 1167, "mask": "BigInt:549755813888" }, "name": { @@ -112002,14 +110549,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1121, + "id": 1170, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1118, + "id": 1167, "mask": "BigInt:549755813888" }, "name": { @@ -112032,14 +110579,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1122, + "id": 1171, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1118, + "id": 1167, "mask": "BigInt:549755813888" }, "name": { @@ -112062,14 +110609,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1123, + "id": 1172, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1118, + "id": 1167, "mask": "BigInt:549755813888" }, "name": { @@ -112092,59 +110639,23 @@ } }, "cooldowns": { "timers": {} }, - "id": 1124, + "id": 1173, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 49, + "allocationIdCounter": 2, "allocations": [ { - "amount": 14880, - "issued": 3051, - "meta": { "tradeId": "1125:2245:sell:3051" }, - "id": 38 - }, - { - "amount": 14880, - "issued": 3324, - "meta": { "tradeId": "1125:2241:sell:3324" }, - "id": 43 - }, - { - "amount": 14880, - "issued": 3444, - "meta": { "tradeId": "1125:2231:sell:3444" }, - "id": 44 - }, - { - "amount": 14880, - "issued": 3450, - "meta": { "tradeId": "1125:2232:sell:3450" }, - "id": 45 - }, - { - "amount": 14880, - "issued": 3465, - "meta": { "tradeId": "1125:1996:sell:3465" }, - "id": 46 - }, - { - "amount": 9600, - "issued": 3516, - "meta": { "tradeId": "1052:1987:buy:3516" }, - "id": 47 - }, - { - "amount": 14880, - "issued": 3522, - "meta": { "tradeId": "1125:2244:sell:3522" }, - "id": 48 + "amount": 4320, + "issued": 309, + "meta": { "tradeId": "1174:2344:sell:309" }, + "id": 1 } ], - "available": 3044199, - "money": 3143079, + "available": 267582, + "money": 271902, "name": "budget", "mask": "BigInt:16" }, @@ -112162,14 +110673,14 @@ }, "modules": { "name": "modules", - "ids": [1126, 1127, 1128, 1129, 1130, 1131, 1132, 1133, 1134], + "ids": [1175, 1176, 1177, 1178, 1179, 1180], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-6.103593034362113, 11.413492244276732], - "sector": 22, + "coord": [2.957705775378077, -8.633712138997867], + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, @@ -112178,13 +110689,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fHub", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 49, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -112192,7 +110703,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 160, "fuel": 0, "fuelium": 0, "gold": 0, @@ -112200,33 +110711,6 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3051, - "type": "incoming", - "meta": { "tradeId": "1125:2245:sell:3051" }, - "id": 38 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 160, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -112235,237 +110719,75 @@ "tauMetal": 0, "water": 0 }, - "issued": 3237, - "type": "incoming", - "meta": { "tradeId": "1125:1986:sell:3237" }, - "id": 41 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3324, - "type": "incoming", - "meta": { "tradeId": "1125:2241:sell:3324" }, - "id": 43 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3444, - "type": "incoming", - "meta": { "tradeId": "1125:2231:sell:3444" }, - "id": 44 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3450, - "type": "incoming", - "meta": { "tradeId": "1125:2232:sell:3450" }, - "id": 45 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3465, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "1125:1996:sell:3465" }, - "id": 46 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "incoming", - "meta": { "tradeId": "1125:1987:sell:3516" }, - "id": 47 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3522, - "type": "incoming", - "meta": { "tradeId": "1125:2244:sell:3522" }, - "id": 48 + "meta": { "tradeId": "1174:2344:sell:309" }, + "id": 1 } ], - "max": 181000, + "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 9407, + "food": 7817, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 78888, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 21484, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 2586 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 9407, + "food": 7817, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 78888, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 21484, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 2586 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 31373, + "food": 13333, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 111013, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 38613, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 6666 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -112474,25 +110796,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [81.1094991970379, 89.52714941800976], - "drones": [1256.7704085978676, 1268.8631336995225], - "electronics": [208.4916830748974, 227.81575672561803], - "engineParts": [336.618092929301, 346.9741263763847], - "food": [20.605291813243326, 37.916108851169156], - "fuel": [61.31445527977868, 73.69995455886325], - "fuelium": [30.26049078552345, 43.507255238297795], - "gold": [780.445459205989, 797.814386938866], - "goldOre": [71.9431172896067, 90.71401766970382], - "hullPlates": [47, 49], - "hydrogen": [75.57933617973785, 92.6225240473807], - "ice": [18.153064289202135, 31.552532104792824], - "metals": [91.41229352406853, 100], - "ore": [35.058044651696775, 48.27003498624162], - "silica": [40.95290626701994, 55.081828610285214], - "silicon": [13.206116426124996, 21.970350698174094], - "superconductors": [401.19048600516527, 416.8432942439475], - "tauMetal": [563.9256943779562, 577.0857674479099], - "water": [21.91482905797012, 40.978650212191596] + "coolant": [82.14162862821138, 91.85621049246642], + "drones": [763.426592089218, 769.1174300825468], + "electronics": [225.93200475579323, 238.03707734806306], + "engineParts": [249.35603653534872, 254.45837195179013], + "food": [15.721760112656222, 22], + "fuel": [65.11679587427965, 70.15207075607007], + "fuelium": [56.216408787851094, 68.61616129986068], + "gold": [434.169415913472, 439.3819580066102], + "goldOre": [69.25108701878916, 87.11294123480047], + "hullPlates": [28.700790848041873, 46.158190412566086], + "hydrogen": [81.58671777551069, 93.54918545074102], + "ice": [17.181830249538876, 22.627427126428636], + "metals": [93.39191111636637, 112.6919680325494], + "ore": [28.431031833659635, 45.59245707550678], + "silica": [17.15525540518051, 32.815944482020306], + "silicon": [28.07307984414704, 38.60890689246784], + "superconductors": [336.5855370006444, 345.3480918196597], + "tauMetal": [475.310599282413, 489.12093742778546], + "water": [40.098118013715464, 42.22496260017734] }, "lastPriceAdjust": { "commodities": { @@ -112521,116 +110843,116 @@ "offers": { "coolant": { "active": false, - "price": 81, + "price": 84, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1257, + "price": 763, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 215, + "price": 237, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 336, + "price": 253, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 30, - "quantity": 0, + "active": true, + "price": 18, + "quantity": 5516, "type": "buy" }, "fuel": { - "active": true, - "price": 69, - "quantity": 21966, + "active": false, + "price": 66, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 32, + "price": 66, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 789, + "price": 438, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 84, + "price": 77, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 48, - "quantity": 78888, - "type": "sell" + "active": false, + "price": 36, + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 88, + "price": 82, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 30, + "price": 17, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 93, - "quantity": 17129, + "active": false, + "price": 107, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 47, + "price": 37, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 43, + "price": 22, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 15, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 408, + "price": 343, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 571, + "price": 488, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 32, - "quantity": 0, + "active": true, + "price": 42, + "quantity": 4080, "type": "buy" } }, @@ -112638,53 +110960,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 93, - "target": "THT Trader Freighter A", - "time": 3321 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 93, - "target": "THT Trader Freighter A", - "time": 3326 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 6, - "price": 93, - "target": "THT Trader Courier B", - "time": 3434 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 93, - "target": "THT Trader Freighter A", - "time": 3441 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 93, - "target": "THT Trader Freighter A", - "time": 3530 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -112694,17 +110970,17 @@ }, "name": { "name": "name", - "value": "FFW GJ 1002 I Factory", + "value": "FFW Teegarden's Star II Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1987, 1986], + "ids": [2097], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 3.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -112716,179 +110992,39 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 975, "produces": 0 }, + "food": { "consumes": 200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 3450 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 100, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1125, + "id": 1174, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1125, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1126, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1125, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Storage", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 1000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1127, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1125, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1128, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1125, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1129, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1125, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1130, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1125, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1131, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1125, + "id": 1174, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Sector Hub", "mask": "BigInt:137438953472" }, "production": { @@ -112903,7 +111039,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.6681681681683163, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -112919,21 +111055,21 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, + "food": 1.666666666666683, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1.333333333333245, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.3333333333333415 } }, "name": "production", @@ -112943,247 +111079,171 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "food": { "consumes": 200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 100, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1175, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1174, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1176, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1174, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1177, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1174, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1132, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1178, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1125, + "id": 1174, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.6681681681683163, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 1.333333333333245, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1133, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1179, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1125, + "id": 1174, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.6681681681683163, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 1.333333333333245, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1134, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1180, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 95, - "allocations": [ - { - "amount": 11680, - "issued": 3519, - "meta": { "tradeId": "1135:1998:sell:3519" }, - "id": 92 - }, - { - "amount": 3010, - "issued": 3522, - "meta": { "tradeId": "1004:1985:buy:3522" }, - "id": 93 - }, - { - "amount": 15520, - "issued": 3573, - "meta": { "tradeId": "1028:1984:buy:3573" }, - "id": 94 - } - ], - "available": 1523246, - "money": 1553456, + "allocationIdCounter": 1, + "allocations": [], + "available": 248058, + "money": 248058, "name": "budget", "mask": "BigInt:16" }, @@ -113201,16 +111261,14 @@ }, "modules": { "name": "modules", - "ids": [ - 1136, 1137, 1138, 1139, 1140, 1141, 1142, 1143, 1144, 1145, 1146 - ], + "ids": [1182, 1183, 1184, 1185, 1186, 1187], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-22.902256308526557, -14.944803435071433], - "sector": 14, + "coord": [2.345019315632065, -6.288787654945953], + "sector": 22, "moved": false, "mask": "BigInt:2199023255552" }, @@ -113219,186 +111277,77 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fHub", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 108, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6 - }, - "issued": 3504, - "type": "incoming", - "meta": { "tradeId": "1135:1983:sell:3504" }, - "id": 104 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "incoming", - "meta": { "tradeId": "1135:1998:sell:3519" }, - "id": 105 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 86 - }, - "issued": 3522, - "type": "incoming", - "meta": { "tradeId": "1135:1985:sell:3522" }, - "id": 106 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3573, - "type": "incoming", - "meta": { "tradeId": "1135:1984:sell:3573" }, - "id": 107 - } - ], - "max": 181000, + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 40244, - "fuel": 10889, + "food": 6181, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 37892, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 14420, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6836 + "water": 3147 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 40244, - "fuel": 10889, + "food": 6181, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 37892, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 14420, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6836 + "water": 3147 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 59986, - "fuel": 24367, + "food": 13333, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 61319, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 21328, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13996 + "water": 6666 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -113407,25 +111356,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [137.73793492214386, 149.2594756269728], - "drones": [1061.5935723881653, 1074.7461938594129], - "electronics": [346.8262009154753, 354.8495453421193], - "engineParts": [385.4096083764298, 402.75445352960503], - "food": [17, 17.81346141446927], - "fuel": [52.33582886350092, 66.3], - "fuelium": [42.504686408936436, 49.57814529707127], - "gold": [467.6616132937796, 479.7087261604712], - "goldOre": [73.95122755144406, 93.25544112270666], - "hullPlates": [51, 53], - "hydrogen": [97.06978053987731, 104.40083933587186], - "ice": [10.533355968787726, 29.47002535786625], - "metals": [68.95810396474197, 84.11093511787273], - "ore": [17.56991272735744, 28.963176889785554], - "silica": [19.972126085200543, 30.732956394445335], - "silicon": [22.78700369108251, 33.03261173941368], - "superconductors": [394.7402459830352, 412.97789256339155], - "tauMetal": [461.31204135564747, 477.274795523071], - "water": [27.725258911790092, 35.69182470038429] + "coolant": [141.54259100384226, 149.00673613067184], + "drones": [1304.2633222571817, 1311.5405072916285], + "electronics": [447.6215601641271, 467.2673037933538], + "engineParts": [218.86311676633863, 232.58521405181042], + "food": [10.33531899031031, 19.439574453664576], + "fuel": [26.086120245728985, 39.00578113027065], + "fuelium": [59.68462077185473, 79.07879114387964], + "gold": [630.6119224838886, 638.2067190002075], + "goldOre": [67.68328216442274, 78.87643823228785], + "hullPlates": [53.21980426997956, 68.10895472367596], + "hydrogen": [45.749044289673606, 55.884564977990706], + "ice": [10.753825429653242, 15.959913008660397], + "metals": [55.52196048341973, 62.258912061563755], + "ore": [21.295381556770153, 38.916972382932926], + "silica": [35.49275991150484, 52.85791653602503], + "silicon": [35.706093533223935, 49.602574124240185], + "superconductors": [428.9851227156737, 440.407002727873], + "tauMetal": [659.971605104002, 670.0069265181605], + "water": [30.13878853831769, 40.60282693005685] }, "lastPriceAdjust": { "commodities": { @@ -113454,116 +111403,116 @@ "offers": { "coolant": { "active": false, - "price": 140, + "price": 143, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1062, + "price": 1306, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 349, + "price": 450, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 400, + "price": 230, "quantity": 0, "type": "buy" }, "food": { "active": true, "price": 17, - "quantity": 40244, - "type": "sell" + "quantity": 7152, + "type": "buy" }, "fuel": { - "active": true, - "price": 61, - "quantity": 13478, + "active": false, + "price": 29, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 49, + "price": 75, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 471, + "price": 634, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 88, + "price": 73, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 52, - "quantity": 37892, - "type": "sell" + "active": false, + "price": 59, + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 100, + "price": 47, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 26, + "price": 12, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 73, - "quantity": 6908, + "active": false, + "price": 55, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 27, + "price": 35, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 27, + "price": 35, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 48, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 406, + "price": 439, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 473, + "price": 664, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 33, - "quantity": 7160, + "price": 36, + "quantity": 3519, "type": "buy" } }, @@ -113571,125 +111520,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "THT Trader Freighter A", - "time": 1430 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "THT Trader Freighter A", - "time": 1870 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "THT Trader Freighter A", - "time": 1891 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "THT Trader Freighter A", - "time": 1943 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "THT Trader Freighter A", - "time": 2190 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "THT Trader Freighter A", - "time": 2391 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 6, - "price": 97, - "target": "THT Trader Courier B", - "time": 2398 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "THT Trader Freighter A", - "time": 2429 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 940, - "price": 97, - "target": "THT Trader Large Freighter B", - "time": 2622 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 6, - "price": 97, - "target": "THT Trader Courier B", - "time": 2624 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "THT Trader Freighter A", - "time": 2633 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "THT Trader Freighter A", - "time": 2900 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "THT Trader Freighter A", - "time": 3069 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -113699,17 +111530,17 @@ }, "name": { "name": "name", - "value": "FFW Juno IV Factory", + "value": "FFW GJ 1002 I Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1985, 1984, 1983], + "ids": [2096], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 3.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -113721,34 +111552,122 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 2250 }, - "fuel": { "consumes": 914, "produces": 0 }, + "food": { "consumes": 16, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 2300 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 800, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 525, "produces": 0 } + "water": { "consumes": 8, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1135, + "id": 1181, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1135, + "id": 1181, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Sector Hub", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.26666666666666783, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.13333333333333564 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 16, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 8, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1182, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1181, "mask": "BigInt:549755813888" }, "name": { @@ -113763,36 +111682,36 @@ } }, "cooldowns": { "timers": {} }, - "id": 1136, + "id": 1183, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1135, + "id": 1181, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Storage", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 1000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1137, + "id": 1184, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1135, + "id": 1181, "mask": "BigInt:549755813888" }, "name": { @@ -113815,572 +111734,101 @@ } }, "cooldowns": { "timers": {} }, - "id": 1138, + "id": 1185, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1135, + "id": 1181, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1139, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1186, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1135, + "id": 1181, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1140, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1187, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { - "parent": { - "name": "parent", - "id": 1135, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 198567, + "money": 198567, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1141, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1135, - "mask": "BigInt:549755813888" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.6666666666666403, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1142, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1135, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Hull Plates Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.22222222222226584, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 1.333333333333245, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 12, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1143, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1135, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Hull Plates Factory", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.22222222222226584, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 1.333333333333245, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 12, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1144, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1135, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.6666666666666403, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1145, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1135, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.6666666666666403, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1146, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "budget": { - "allocationIdCounter": 33, - "allocations": [], - "available": 941217, - "money": 941217, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [1148, 1149, 1150, 1151, 1152, 1153, 1154], - "mask": "BigInt:68719476736" + "modules": { + "name": "modules", + "ids": [1189, 1190, 1191, 1192, 1193, 1194], + "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [11.788952659790112, -0.6968273517478814], - "sector": 17, + "coord": [-1.0797588580747313, -7.679166824477509], + "sector": 23, "moved": false, "mask": "BigInt:2199023255552" }, @@ -114389,50 +111837,22 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fHub", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 76, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3570, - "type": "outgoing", - "meta": { "tradeId": "1147:1993:buy:3570" }, - "id": 75 - } - ], - "max": 181000, + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 88059, - "fuel": 6645, + "food": 6606, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -114445,15 +111865,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 21161 + "water": 4566 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 88219, - "fuel": 6645, + "food": 6606, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -114466,15 +111886,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 21161 + "water": 4566 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 134007, - "fuel": 15723, + "food": 13333, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -114487,7 +111907,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 6666 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -114496,25 +111916,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [109.09354674351906, 124.83196609776697], - "drones": [809.2126807984438, 817.0071493837456], - "electronics": [236.88256951129813, 252.7453096605762], - "engineParts": [343.1837642913554, 362.8298221297823], - "food": [17, 19], - "fuel": [65.04353891026433, 75.35902921690149], - "fuelium": [50.27243280262055, 60.433635445643134], - "gold": [497.5520720765136, 505.23187148554], - "goldOre": [87.31676125530126, 105.49655752278193], - "hullPlates": [38.344300214792966, 53.84989363727134], - "hydrogen": [84.74392642931412, 102.04669726765398], - "ice": [12.495192293645774, 19.115829527836937], - "metals": [93.58579452331708, 106.67386615950507], - "ore": [35.87689889085333, 40.92356126207558], - "silica": [36.83357896784203, 54.65763692533311], - "silicon": [33.81796150860671, 45.13632240237172], - "superconductors": [310.6986184790147, 316.7534701260773], - "tauMetal": [438.359673483593, 448.1657881790933], - "water": [20.724373254201666, 37.14857753491511] + "coolant": [55.47088988756568, 75.20023629781947], + "drones": [1672.3996719068693, 1690.4484060300415], + "electronics": [444.33331353240806, 449.4019619024281], + "engineParts": [254.8565795547596, 265.8052185909638], + "food": [16.038799211559777, 20.945833333333333], + "fuel": [60.429678673189436, 69.96306351189352], + "fuelium": [67.33723008502335, 78.06501963648323], + "gold": [633.2040347632483, 639.1116384190274], + "goldOre": [67.47223334458016, 87.40441122045509], + "hullPlates": [43.84463185056137, 48.873662600988595], + "hydrogen": [69.32405417417769, 78.61379128592567], + "ice": [12.543276664794956, 30.73107781130787], + "metals": [36.448447780901006, 48.4734705838052], + "ore": [35.54468268482519, 40.73035061886629], + "silica": [23.672766444657263, 41.42026203028318], + "silicon": [12.451764376182904, 21.520014408349322], + "superconductors": [507.56660513157846, 522.7516803695308], + "tauMetal": [600.1199531068507, 617.4202961188864], + "water": [31.2913253919531, 37.83846153846154] }, "lastPriceAdjust": { "commodities": { @@ -114543,116 +111963,116 @@ "offers": { "coolant": { "active": false, - "price": 116, + "price": 66, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 814, + "price": 1673, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 239, + "price": 446, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 355, + "price": 262, "quantity": 0, "type": "buy" }, "food": { "active": true, "price": 18, - "quantity": 88059, - "type": "sell" + "quantity": 6727, + "type": "buy" }, "fuel": { - "active": true, - "price": 69, - "quantity": 9078, + "active": false, + "price": 65, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 54, + "price": 69, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 500, + "price": 634, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 94, + "price": 82, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 41, + "price": 43, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 87, + "price": 78, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 15, + "price": 16, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 95, + "price": 43, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 38, + "price": 40, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 47, + "price": 25, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 14, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 314, + "price": 511, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 439, + "price": 612, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 31, - "quantity": 10107, + "price": 37, + "quantity": 2100, "type": "buy" } }, @@ -114660,53 +112080,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 731 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 747 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 755 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "THT Trader Freighter A", - "time": 982 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 52, - "target": "THT Trader Large Freighter B", - "time": 1043 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -114716,17 +112090,17 @@ }, "name": { "name": "name", - "value": "FFW Teegarden's Star I Factory", + "value": "FFW GJ 1002 II Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1982, 1981], + "ids": [2095], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 6.5, "max": 14 }, + "workers": { "current": 3.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -114738,8 +112112,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 16, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -114752,20 +112126,108 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 8, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1147, + "id": 1188, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1147, + "id": 1188, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Sector Hub", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.26666666666666783, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.13333333333333564 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 16, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 8, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1189, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1188, "mask": "BigInt:549755813888" }, "name": { @@ -114780,36 +112242,36 @@ } }, "cooldowns": { "timers": {} }, - "id": 1148, + "id": 1190, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1147, + "id": 1188, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Storage", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 1000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1149, + "id": 1191, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1147, + "id": 1188, "mask": "BigInt:549755813888" }, "name": { @@ -114832,182 +112294,89 @@ } }, "cooldowns": { "timers": {} }, - "id": 1150, + "id": 1192, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1147, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1151, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1147, + "id": 1188, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1152, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1147, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1153, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1193, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1147, + "id": 1188, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.16666666666660745, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1154, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1194, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 100, + "allocationIdCounter": 49, "allocations": [ { - "amount": 3430, - "issued": 3336, - "meta": { "tradeId": "1004:1980:buy:3336" }, - "id": 94 + "amount": 5120, + "issued": 2364, + "meta": { "tradeId": "1074:2094:buy:2364" }, + "id": 47 + }, + { + "amount": 5120, + "issued": 2442, + "meta": { "tradeId": "1074:2093:buy:2442" }, + "id": 48 } ], - "available": 1025270, - "money": 1028700, + "available": 581112, + "money": 591352, "name": "budget", "mask": "BigInt:16" }, @@ -115025,16 +112394,13 @@ }, "modules": { "name": "modules", - "ids": [ - 1156, 1157, 1158, 1159, 1160, 1161, 1162, 1163, 1164, 1165, 1166, - 1167 - ], + "ids": [1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [23.380977404699642, 17.67850483364589], + "coord": [22.562228054076463, -20.992739879497737], "sector": 14, "moved": false, "mask": "BigInt:2199023255552" @@ -115050,7 +112416,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 124, + "allocationIdCounter": 49, "allocations": [ { "amount": { @@ -115072,39 +112438,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 98 - }, - "issued": 3336, - "type": "incoming", - "meta": { "tradeId": "1155:1980:sell:3336" }, - "id": 118 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 + "water": 160 }, - "issued": 3390, + "issued": 2364, "type": "incoming", - "meta": { "tradeId": "1155:1978:sell:3390" }, - "id": 119 + "meta": { "tradeId": "1195:2094:sell:2364" }, + "id": 47 }, { "amount": { @@ -115126,12 +112465,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 160 }, - "issued": 3465, + "issued": 2442, "type": "incoming", - "meta": { "tradeId": "1155:1979:sell:3465" }, - "id": 123 + "meta": { "tradeId": "1195:2093:sell:2442" }, + "id": 48 } ], "max": 181000, @@ -115140,63 +112479,63 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 43292, - "fuel": 14059, + "food": 83010, + "fuel": 15424, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 8025, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 10368, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 7802 + "water": 17204 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 43292, - "fuel": 14059, + "food": 83010, + "fuel": 15424, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 8025, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 10368, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 7802 + "water": 17204 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 97802, - "fuel": 19951, + "food": 134007, + "fuel": 15723, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 29992, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 10432, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 22820 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -115205,25 +112544,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [114.58338252221861, 131.1851758112308], - "drones": [739.813198531528, 748.3609370552593], - "electronics": [432.1154591387344, 443.7078730113897], - "engineParts": [284.85104778471145, 296.8095813038824], - "food": [16.04815905169497, 19.04815905169497], - "fuel": [58.63292958692391, 77], - "fuelium": [59.62401037404859, 69.30718734297905], - "gold": [704.2905606321324, 723.0699903955633], - "goldOre": [37.49942005980903, 46.60954560688661], - "hullPlates": [52.56497878112737, 57.8195073010537], - "hydrogen": [101.77570755876073, 114.29227731395918], - "ice": [12.141699358802425, 27.22523533853373], - "metals": [81.99014047412159, 97.73896829279121], - "ore": [27.31732059602856, 38.52373536060316], - "silica": [29.645668960836964, 39.8250004062743], - "silicon": [35.08285786803082, 53.05015269632136], - "superconductors": [404.28370120955316, 416.4495834364323], - "tauMetal": [243.36475774203407, 260.69412477693425], - "water": [34.04711107085805, 43] + "coolant": [83.92913477267007, 97.34150628644981], + "drones": [1676.287970335272, 1685.2913730856085], + "electronics": [447.0288891882431, 454.6913866594985], + "engineParts": [270.840814420474, 278.4468065928537], + "food": [16.030484011319395, 18.030484011319395], + "fuel": [65.84090870463822, 76.00428705471067], + "fuelium": [30.88851923808957, 44.78712105272953], + "gold": [448.8105960222898, 456.3850783603101], + "goldOre": [61.25860197322078, 74.53167377270877], + "hullPlates": [57.7239238609143, 63.01615993430229], + "hydrogen": [95.5882065605916, 106.23557098772318], + "ice": [13.821239966856012, 28.64164063758644], + "metals": [72.09114641842865, 78.99250278734714], + "ore": [15.022461089507575, 24.374995812933065], + "silica": [30.6666468879913, 45.983856849527086], + "silicon": [26.42933983624042, 39.902110881089975], + "superconductors": [456.479892603946, 472.1541101675727], + "tauMetal": [537.5497859682237, 552.1161615965815], + "water": [24.08712720092376, 41.78303712397314] }, "lastPriceAdjust": { "commodities": { @@ -115252,116 +112591,116 @@ "offers": { "coolant": { "active": false, - "price": 130, + "price": 89, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 739, + "price": 1679, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 443, + "price": 448, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 285, + "price": 276, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 18, - "quantity": 43292, + "price": 17, + "quantity": 83010, "type": "sell" }, "fuel": { "active": true, - "price": 69, - "quantity": 5892, + "price": 66, + "quantity": 299, "type": "buy" }, "fuelium": { "active": false, - "price": 61, + "price": 41, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 711, + "price": 453, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 38, + "price": 63, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 54, - "quantity": 8025, - "type": "sell" + "active": false, + "price": 61, + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 106, + "price": 102, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 13, + "price": 15, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 82, - "quantity": 64, + "active": false, + "price": 75, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 34, + "price": 22, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 38, + "price": 34, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 44, + "price": 36, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 413, + "price": 459, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 256, + "price": 551, "quantity": 0, "type": "buy" }, "water": { "active": true, "price": 41, - "quantity": 15018, + "quantity": 14064, "type": "buy" } }, @@ -115384,7 +112723,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [1980, 1979, 1978], + "ids": [2094, 2093], "mask": "BigInt:4294967296" }, "crew": { @@ -115401,34 +112740,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 765, "produces": 0 }, + "food": { "consumes": 0, "produces": 2250 }, + "fuel": { "consumes": 264, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 0 } + "water": { "consumes": 525, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1155, + "id": 1195, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115443,14 +112782,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1156, + "id": 1196, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115465,14 +112804,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1157, + "id": 1197, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115495,14 +112834,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1158, + "id": 1198, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115517,14 +112856,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1159, + "id": 1199, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115539,14 +112878,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1160, + "id": 1200, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115561,14 +112900,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1161, + "id": 1201, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115583,7 +112922,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0.9166666666666075, "fuel": 0, "fuelium": 0, "gold": 0, @@ -115654,14 +112993,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1162, + "id": 1202, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115676,7 +113015,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0.9166666666666075, "fuel": 0, "fuelium": 0, "gold": 0, @@ -115747,14 +113086,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1163, + "id": 1203, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1195, "mask": "BigInt:549755813888" }, "name": { @@ -115769,7 +113108,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0.9166666666666075, "fuel": 0, "fuelium": 0, "gold": 0, @@ -115840,107 +113179,492 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1164, + "id": 1204, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "parent": { - "name": "parent", - "id": 1155, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 2030153, + "money": 2030153, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Hull Plates Factory", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.7923976608187306, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 1.333333333333245, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 12, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1165, - "tags": ["facilityModule", "facilityModuleType:production"] + "modules": { + "name": "modules", + "ids": [1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-19.941369598591386, -8.39605237416966], + "sector": 18, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 4388323, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 31255, + "fuel": 14846, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 46234, + "hydrogen": 0, + "ice": 0, + "metals": 10091, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 3854 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 31255, + "fuel": 14846, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 46234, + "hydrogen": 0, + "ice": 0, + "metals": 10091, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 3854 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 47004, + "fuel": 25884, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 72074, + "hydrogen": 0, + "ice": 0, + "metals": 25069, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 10967 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [68.74162284469341, 86.9652924070125], + "drones": [896.4633117322148, 910.0936950407113], + "electronics": [269.04128929190136, 287.8104862253865], + "engineParts": [328.667428492035, 347.1251992067522], + "food": [15, 17], + "fuel": [50.68490823673214, 61.43494052720277], + "fuelium": [72.52782957746098, 80.51680853103787], + "gold": [354.8661519624359, 371.6560314319165], + "goldOre": [87.16516879765712, 100.26062189943562], + "hullPlates": [47, 48.59578082515274], + "hydrogen": [54.08734389650975, 65.62758611437741], + "ice": [22.45665382565886, 28.494106203765234], + "metals": [76.14791805236996, 84.44774728137855], + "ore": [25.380018312419413, 30.669021782865844], + "silica": [47.56042233732931, 67.12358084757477], + "silicon": [14.115462911317536, 22.66826010910344], + "superconductors": [343.9166423313437, 351.6438735495502], + "tauMetal": [482.4115542397545, 488.5723303681621], + "water": [32.793542464045146, 43] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 86, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 906, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 282, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 344, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 16, + "quantity": 31255, + "type": "sell" + }, + "fuel": { + "active": true, + "price": 59, + "quantity": 11038, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 78, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 366, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 94, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": true, + "price": 48, + "quantity": 46234, + "type": "sell" + }, + "hydrogen": { + "active": false, + "price": 55, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 24, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": true, + "price": 78, + "quantity": 14978, + "type": "buy" + }, + "ore": { + "active": false, + "price": 30, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 57, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 22, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 345, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 483, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 33, + "quantity": 7113, + "type": "buy" + } + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "FFW Teegarden's Star II Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2092, 2091, 2090], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 413, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1205, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1205, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1206, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1205, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1207, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1205, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1208, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1205, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1209, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1205, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1210, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1205, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1211, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1205, "mask": "BigInt:549755813888" }, "name": { @@ -115955,7 +113679,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0.055555555555585556, "fuel": 0, "fuelium": 0, "gold": 0, @@ -116026,19 +113750,19 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1166, + "id": 1212, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1155, + "id": 1205, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -116048,12 +113772,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.018518518518693128, "hydrogen": 0, "ice": 0, "metals": 0, @@ -116070,20 +113794,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -116093,61 +113817,49 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1167, + "id": 1213, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 75, + "allocationIdCounter": 77, "allocations": [ { - "amount": 9600, - "issued": 3447, - "meta": { "tradeId": "1052:1975:buy:3447" }, - "id": 70 - }, - { - "amount": 9600, - "issued": 3567, - "meta": { "tradeId": "1052:1977:buy:3567" }, - "id": 73 - }, - { - "amount": 3080, - "issued": 3597, - "meta": { "tradeId": "1004:1976:buy:3597" }, + "amount": 13280, + "issued": 3480, + "meta": { "tradeId": "1214:2105:sell:3480" }, "id": 74 } ], - "available": 2654918, - "money": 2677198, + "available": 849330, + "money": 862610, "name": "budget", "mask": "BigInt:16" }, @@ -116165,17 +113877,14 @@ }, "modules": { "name": "modules", - "ids": [ - 1169, 1170, 1171, 1172, 1173, 1174, 1175, 1176, 1177, 1178, 1179, - 1180 - ], + "ids": [1215, 1216, 1217, 1218, 1219, 1220, 1221], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [17.14393918649194, -19.83174562017978], - "sector": 13, + "coord": [6.81576273744221, -23.705832163009674], + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, @@ -116190,7 +113899,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 94, + "allocationIdCounter": 147, "allocations": [ { "amount": { @@ -116203,10 +113912,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -116214,10 +113923,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3447, - "type": "incoming", - "meta": { "tradeId": "1168:1975:sell:3447" }, - "id": 88 + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "1214:2340:buy:27" }, + "id": 4 }, { "amount": { @@ -116225,12 +113934,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -116241,10 +113950,307 @@ "tauMetal": 0, "water": 0 }, - "issued": 3555, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "1168:1988:buy:3555" }, - "id": 90 + "meta": { "tradeId": "1214:2345:buy:27" }, + "id": 5 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 6, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "1214:2349:buy:27" }, + "id": 6 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "1214:2353:buy:27" }, + "id": 7 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 39, + "type": "outgoing", + "meta": { "tradeId": "1214:2348:buy:39" }, + "id": 8 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 48, + "type": "outgoing", + "meta": { "tradeId": "1214:2341:buy:48" }, + "id": 9 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 51, + "type": "outgoing", + "meta": { "tradeId": "1214:2343:buy:51" }, + "id": 10 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 54, + "type": "outgoing", + "meta": { "tradeId": "1214:2354:buy:54" }, + "id": 11 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 66, + "type": "outgoing", + "meta": { "tradeId": "1214:2350:buy:66" }, + "id": 12 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 6, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 78, + "type": "outgoing", + "meta": { "tradeId": "1214:2346:buy:78" }, + "id": 13 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 90, + "type": "outgoing", + "meta": { "tradeId": "1214:2351:buy:90" }, + "id": 14 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 96, + "type": "outgoing", + "meta": { "tradeId": "1214:2342:buy:96" }, + "id": 15 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 105, + "type": "outgoing", + "meta": { "tradeId": "1214:2352:buy:105" }, + "id": 17 }, { "amount": { @@ -116268,10 +114274,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3567, + "issued": 3480, "type": "incoming", - "meta": { "tradeId": "1168:1977:sell:3567" }, - "id": 92 + "meta": { "tradeId": "1214:2105:sell:3480" }, + "id": 144 }, { "amount": { @@ -116287,18 +114293,45 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 940, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3597, + "issued": 3486, + "type": "incoming", + "meta": { "tradeId": "1214:2089:sell:3486" }, + "id": 145 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 160, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3516, "type": "incoming", - "meta": { "tradeId": "1168:1976:sell:3597" }, - "id": 93 + "meta": { "tradeId": "1214:2088:sell:3516" }, + "id": 146 } ], "max": 181000, @@ -116307,63 +114340,63 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 3071, - "fuel": 2225, + "food": 0, + "fuel": 27493, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 992, + "hullPlates": 54661, "hydrogen": 0, "ice": 0, - "metals": 1862, + "metals": 31041, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 286 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 3077, - "fuel": 2225, + "food": 0, + "fuel": 27493, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 992, + "hullPlates": 57993, "hydrogen": 0, "ice": 0, - "metals": 1862, + "metals": 31041, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 286 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 97802, - "fuel": 19951, + "food": 0, + "fuel": 31373, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 29992, + "hullPlates": 111013, "hydrogen": 0, "ice": 0, - "metals": 10432, + "metals": 38613, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 22820 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -116372,25 +114405,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [141.07812153424078, 155.8421382641624], - "drones": [1471.929388233264, 1480.2762575287902], - "electronics": [431.938782143699, 445.0064988472987], - "engineParts": [398.18071053024016, 414.3694228597859], - "food": [20.242135596749822, 21.899804938354666], - "fuel": [66.3818315187189, 77], - "fuelium": [73.1027838851447, 88.37766105894787], - "gold": [747.7791870644917, 755.0368018270941], - "goldOre": [72.28617141694562, 91.04200585564658], - "hullPlates": [62.56176070578853, 66.67194107794676], - "hydrogen": [84.3092383486878, 103.93211341693086], - "ice": [24.884216143450285, 32.062671005124855], - "metals": [59.943424780666234, 70.75857366743872], - "ore": [23.950139474800665, 29.048687641119706], - "silica": [42.51943132789634, 51.791947035257664], - "silicon": [17.59801782218169, 34.869297500440666], - "superconductors": [208.23908089174117, 222.71429855943643], - "tauMetal": [486.4994096160514, 504.0337183080278], - "water": [22.294974501240212, 39.65009359512882] + "coolant": [127.02565789369244, 136.2598799130214], + "drones": [758.7642404155836, 769.1920519482081], + "electronics": [346.0216955029856, 363.34603349638985], + "engineParts": [165.37636888477675, 177.21492227961767], + "food": [13.224277025563836, 29.430565680720505], + "fuel": [59.771644493672866, 68.4863884366256], + "fuelium": [30.82745431441452, 38.91260035994321], + "gold": [679.1029122592179, 694.7464942171018], + "goldOre": [55.426249396827956, 61.0130140229388], + "hullPlates": [44, 46], + "hydrogen": [101.55300337563133, 113.37512118653265], + "ice": [12.146803442222009, 27.377240064123143], + "metals": [81.56350309673095, 90.55724483112449], + "ore": [31.646527569640817, 36.72075816877724], + "silica": [22.41122114864006, 33.40456591421212], + "silicon": [27.89637430710706, 38.215940733486434], + "superconductors": [380.8096773531772, 400.77054014546115], + "tauMetal": [223.36611593969846, 229.76977832606832], + "water": [27.71907111370165, 43.28193561569712] }, "lastPriceAdjust": { "commodities": { @@ -116419,116 +114452,116 @@ "offers": { "coolant": { "active": false, - "price": 149, + "price": 128, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1475, + "price": 759, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 434, + "price": 355, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 400, + "price": 168, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 21, - "quantity": 3071, - "type": "sell" + "active": false, + "price": 29, + "quantity": 0, + "type": "buy" }, "fuel": { "active": true, - "price": 71, - "quantity": 17726, + "price": 62, + "quantity": 3880, "type": "buy" }, "fuelium": { "active": false, - "price": 78, + "price": 31, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 753, + "price": 692, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 77, + "price": 56, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 63, - "quantity": 992, + "price": 45, + "quantity": 54661, "type": "sell" }, "hydrogen": { "active": false, - "price": 89, + "price": 104, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 25, + "price": 14, "quantity": 0, "type": "buy" }, "metals": { "active": true, - "price": 67, - "quantity": 8570, + "price": 83, + "quantity": 7572, "type": "buy" }, "ore": { "active": false, - "price": 25, + "price": 34, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 48, + "price": 27, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 30, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 211, + "price": 381, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 499, + "price": 223, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 38, - "quantity": 22534, + "active": false, + "price": 39, + "quantity": 0, "type": "buy" } }, @@ -116536,89 +114569,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 73, - "target": "THT Trader Courier B", - "time": 1117 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "THT Trader Freighter A", - "time": 1642 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "THT Trader Freighter A", - "time": 1796 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "THT Trader Freighter A", - "time": 1797 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "THT Trader Freighter A", - "time": 1800 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "THT Trader Freighter A", - "time": 1823 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 73, - "target": "THT Trader Large Freighter B", - "time": 1849 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 73, - "target": "THT Trader Large Freighter B", - "time": 1932 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 73, - "target": "THT Trader Large Freighter B", - "time": 2142 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -116628,17 +114579,17 @@ }, "name": { "name": "name", - "value": "FFW Juno III Factory", + "value": "FFW Juno IV Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1977, 1976, 1975], + "ids": [2089, 2088], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 13.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -116650,8 +114601,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 765, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -116664,20 +114615,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1168, + "id": 1214, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1214, "mask": "BigInt:549755813888" }, "name": { @@ -116692,14 +114643,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1169, + "id": 1215, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1214, "mask": "BigInt:549755813888" }, "name": { @@ -116714,14 +114665,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1170, + "id": 1216, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1214, "mask": "BigInt:549755813888" }, "name": { @@ -116744,14 +114695,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1171, + "id": 1217, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1214, "mask": "BigInt:549755813888" }, "name": { @@ -116766,14 +114717,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1172, + "id": 1218, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1214, "mask": "BigInt:549755813888" }, "name": { @@ -116788,14 +114739,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1173, + "id": 1219, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1214, "mask": "BigInt:549755813888" }, "name": { @@ -116810,19 +114761,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1174, + "id": 1220, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1214, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -116832,12 +114783,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8801169590643143, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.5170940170942657, "hydrogen": 0, "ice": 0, "metals": 0, @@ -116854,20 +114805,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1.3333333333333561, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.3333333333333659 + "water": 0 } }, "name": "production", @@ -116877,148 +114828,216 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1175, + "id": 1221, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "parent": { - "name": "parent", - "id": 1168, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 192, + "issued": 1878, + "meta": { "tradeId": "1074:2087:buy:1878" }, + "id": 1 + } + ], + "available": 2045084, + "money": 2045276, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.8801169590643143, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 1.3333333333333561, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.3333333333333659 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1176, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1168, - "mask": "BigInt:549755813888" + "modules": { + "name": "modules", + "ids": [1223, 1224, 1225, 1226, 1227, 1228, 1229, 1230], + "mask": "BigInt:68719476736" }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" + "position": { + "name": "position", + "angle": 0, + "coord": [15.327894258573608, 18.59304386374999], + "sector": 12, + "moved": false, + "mask": "BigInt:2199023255552" }, - "production": { - "buffer": { - "production": { + "render": { + "color": 4388323, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6 + }, + "issued": 1878, + "type": "incoming", + "meta": { "tradeId": "1222:2087:sell:1878" }, + "id": 1 + } + ], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 24737, + "fuel": 14042, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 48069, + "hydrogen": 0, + "ice": 0, + "metals": 11408, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 5049 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 24737, + "fuel": 14042, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 48069, + "hydrogen": 0, + "ice": 0, + "metals": 11408, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 5049 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 47004, + "fuel": 25884, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 72074, + "hydrogen": 0, + "ice": 0, + "metals": 25069, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 10967 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [72.89218903159411, 88.23649163821106], + "drones": [1030.5785105831792, 1045.2890648976904], + "electronics": [415.1700132739302, 426.11569035939954], + "engineParts": [414.7218380538878, 431.58025430755515], + "food": [16.358868795706616, 18.728890495987443], + "fuel": [49.85178154376898, 65.31194398385843], + "fuelium": [71.59723350784137, 80.14650931750825], + "gold": [499.0617234080671, 516.2556235975711], + "goldOre": [39.47672329731011, 59.12571516076321], + "hullPlates": [41, 43], + "hydrogen": [93.81011922353542, 106.29389076634344], + "ice": [22.9132007735742, 32.70488174064973], + "metals": [85.40615201554074, 91.42158251598225], + "ore": [35.83372462253565, 42.703610096042944], + "silica": [35.84600409269024, 43.43063090158], + "silicon": [12.29307377730129, 25.322025502939248], + "superconductors": [525.1118092005372, 535.3357887158706], + "tauMetal": [629.161941820991, 634.3656939272726], + "water": [34.2414777345138, 43] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8801169590643143, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -117034,44 +115053,169 @@ "tauMetal": 0, "water": 0 }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 1.3333333333333561, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.3333333333333659 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 77, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1038, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 419, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 415, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 18, + "quantity": 24737, + "type": "sell" + }, + "fuel": { + "active": true, + "price": 51, + "quantity": 11842, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 71, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 511, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 40, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": true, + "price": 41, + "quantity": 48069, + "type": "sell" + }, + "hydrogen": { + "active": false, + "price": 96, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 25, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": true, + "price": 90, + "quantity": 13661, + "type": "buy" + }, + "ore": { + "active": false, + "price": 38, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 36, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 23, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 532, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 633, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 40, + "quantity": 5918, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "FFW Juno II Factory", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2087, 2086, 2085], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "fuel": { "consumes": 413, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, @@ -117079,122 +115223,163 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 175, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1222, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1222, + "mask": "BigInt:549755813888" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1177, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1223, + "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1222, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Basic Storage", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.8801169590643143, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 1.3333333333333561, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.3333333333333659 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1224, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1222, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1178, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1225, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1222, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1226, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1222, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1227, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1222, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1228, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1222, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -117204,12 +115389,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8801169590643143, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.018518518518693128, "hydrogen": 0, "ice": 0, "metals": 0, @@ -117226,20 +115411,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1.3333333333333561, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.3333333333333659 + "water": 0 } }, "name": "production", @@ -117249,45 +115434,45 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1179, + "id": 1229, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1168, + "id": 1222, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -117297,12 +115482,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.055555555555585556, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.949902534113086, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -117319,20 +115504,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 7.6666666666666, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 4.6666666666666, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -117342,42 +115527,42 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1180, + "id": 1230, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 19, + "allocationIdCounter": 1, "allocations": [], - "available": 189579, - "money": 189579, + "available": 2610557, + "money": 2610557, "name": "budget", "mask": "BigInt:16" }, @@ -117395,21 +115580,19 @@ }, "modules": { "name": "modules", - "ids": [ - 1182, 1183, 1184, 1185, 1186, 1187, 1188, 1189, 1190, 1191, 1192 - ], + "ids": [1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [12.70971343619104, -20.25286089313819], - "sector": 31, + "coord": [-14.357339302430127, 0.9418607735131097], + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16737253, + "color": 4388323, "defaultScale": 1, "name": "render", "layer": "facility", @@ -117419,71 +115602,71 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, + "allocationIdCounter": 1, "allocations": [], - "max": 61000, + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4, - "fuel": 4370, + "food": 16164, + "fuel": 12473, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 45431, "hydrogen": 0, - "ice": 64, - "metals": 0, + "ice": 0, + "metals": 11301, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3 + "water": 3197 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4, - "fuel": 4370, + "food": 16164, + "fuel": 12473, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 45431, "hydrogen": 0, - "ice": 64, - "metals": 0, + "ice": 0, + "metals": 11301, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3 + "water": 3197 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 31926, - "fuel": 3745, + "food": 28500, + "fuel": 28044, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 87402, "hydrogen": 0, - "ice": 10216, - "metals": 0, + "ice": 0, + "metals": 30401, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 15111 + "water": 6650 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -117492,25 +115675,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [115.71457389626109, 121.70720200597246], - "drones": [795.4161273489576, 813.1502015918276], - "electronics": [414.019532428293, 426.9393838168258], - "engineParts": [361.0793282191305, 370.6183231265646], - "food": [21.24107103574105, 22], - "fuel": [43.17803038716683, 59.287091232066985], - "fuelium": [72.75466944623582, 84.70310856135993], - "gold": [383.20412670203535, 400.7648862459397], - "goldOre": [36.13824989944418, 41.38856092690598], - "hullPlates": [58.39644711849822, 71.81813014802295], - "hydrogen": [48.68221209502725, 54.73058686478936], - "ice": [17.971977742181263, 27], - "metals": [94.36183505057498, 110.18799532921622], - "ore": [40.50328823482608, 54.08329679760895], - "silica": [45.132500836662196, 63.88339378684179], - "silicon": [18.772895709821366, 28.45032754662882], - "superconductors": [458.51172131005575, 476.6778443101167], - "tauMetal": [613.8459155763001, 626.4947477879333], - "water": [31.99914690230496, 36.38857672283536] + "coolant": [70.80851628807028, 76.59367630047399], + "drones": [1613.0424113615463, 1622.302950269074], + "electronics": [422.273471630585, 429.8109060727046], + "engineParts": [291.73850182725477, 300.016764288414], + "food": [17, 18.478579539671248], + "fuel": [51.58463280548491, 61.79181974647853], + "fuelium": [67.21475666376762, 83.30783819614385], + "gold": [947.5401308274019, 966.6642772978494], + "goldOre": [76.36680692552179, 86.48996635696462], + "hullPlates": [43.204350543831964, 57.375875760293994], + "hydrogen": [74.759788044914, 83.02070397824004], + "ice": [9.462977301184118, 16.41864663976265], + "metals": [88.53559070247809, 94.10622112220675], + "ore": [39.23466996964672, 56.31336949328673], + "silica": [37.539288977400716, 42.876179270838364], + "silicon": [27.03559148251864, 39.0725375227038], + "superconductors": [348.2233000453178, 354.6156156918398], + "tauMetal": [616.4192177405653, 621.8622881679346], + "water": [34.64423985849149, 38.63055555555556] }, "lastPriceAdjust": { "commodities": { @@ -117539,117 +115722,117 @@ "offers": { "coolant": { "active": false, - "price": 120, + "price": 72, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 808, + "price": 1618, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 424, + "price": 428, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 362, + "price": 294, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 21, - "quantity": 4, + "price": 18, + "quantity": 16164, "type": "sell" }, "fuel": { "active": true, - "price": 51, - "quantity": 0, + "price": 53, + "quantity": 15571, "type": "buy" }, "fuelium": { "active": false, - "price": 78, + "price": 73, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 391, + "price": 955, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 39, + "price": 81, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 68, - "quantity": 0, - "type": "buy" + "active": true, + "price": 52, + "quantity": 45431, + "type": "sell" }, "hydrogen": { "active": false, - "price": 53, + "price": 77, "quantity": 0, "type": "buy" }, "ice": { - "active": true, - "price": 22, - "quantity": 10152, + "active": false, + "price": 11, + "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 105, - "quantity": 0, + "active": true, + "price": 89, + "quantity": 19100, "type": "buy" }, "ore": { "active": false, - "price": 46, + "price": 52, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 63, + "price": 42, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 33, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 475, + "price": 352, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 617, + "price": 621, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 32, - "quantity": 0, - "type": "sell" + "price": 38, + "quantity": 3453, + "type": "buy" } }, "mask": "BigInt:34359738368" @@ -117666,21 +115849,21 @@ }, "name": { "name": "name", - "value": "AMS Wolf 1061 III Farming Facility", + "value": "FFW Juno III Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2092, 2091, 2103], + "ids": [2084, 2083, 2082], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 4.999999999999992, "max": 64 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -117688,34 +115871,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 440, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 738, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 2300 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 800, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 900 } + "water": { "consumes": 175, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1181, + "id": 1231, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1181, + "id": 1231, "mask": "BigInt:549755813888" }, "name": { @@ -117730,14 +115913,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1182, + "id": 1232, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1181, + "id": 1231, "mask": "BigInt:549755813888" }, "name": { @@ -117752,200 +115935,110 @@ } }, "cooldowns": { "timers": {} }, - "id": 1183, + "id": 1233, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1181, + "id": 1231, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1184, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1234, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1181, + "id": 1231, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1235, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1231, + "mask": "BigInt:549755813888" }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1185, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1236, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1181, + "id": 1231, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1237, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1231, "mask": "BigInt:549755813888" }, "name": { @@ -117960,7 +116053,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.49999999999998046, "fuel": 0, "fuelium": 0, "gold": 0, @@ -117982,7 +116075,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -117995,7 +116088,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -118021,7 +116114,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 175, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -118030,94 +116123,20 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1186, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1238, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1181, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1187, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1181, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1188, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1181, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Habitation Dome", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 50, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1189, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1181, + "id": 1231, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -118132,7 +116151,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.16666666666672292, "hydrogen": 0, "ice": 0, "metals": 0, @@ -118141,7 +116160,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.7333333333333296 + "water": 0 }, "consumption": { "coolant": 0, @@ -118149,14 +116168,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, @@ -118173,44 +116192,44 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1190, + "id": 1239, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1181, + "id": 1231, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -118220,12 +116239,12 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8333333333333315, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.16666666666672292, "hydrogen": 0, "ice": 0, "metals": 0, @@ -118242,20 +116261,20 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.33333333333333437, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333348 + "water": 0 } }, "name": "production", @@ -118265,126 +116284,33 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 12, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1191, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1181, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1192, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1240, "tags": ["facilityModule", "facilityModuleType:production"] }, { @@ -118392,8 +116318,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1071580, - "money": 1071580, + "available": 775440, + "money": 775440, "name": "budget", "mask": "BigInt:16" }, @@ -118411,123 +116337,93 @@ }, "modules": { "name": "modules", - "ids": [ - 1194, 1195, 1196, 1197, 1198, 1199, 1200, 1201, 1202, 1203, 1204 - ], + "ids": [1242, 1243, 1244, 1245, 1246, 1247, 1248], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [4.311356405203238, -8.51304458168067], - "sector": 5, + "coord": [9.643886806671794, -23.38249032498517], + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16737253, + "color": 4388323, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 42, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 106, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3513, - "type": "outgoing", - "meta": { "tradeId": "1193:2076:buy:3513" }, - "id": 41 - } - ], - "max": 81000, + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 89810, + "fuel": 8112, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 8514, - "ore": 9270, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 19999 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 89810, + "fuel": 8112, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 8620, - "ore": 9270, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 19999 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 134007, + "fuel": 15723, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 27000, - "ore": 54000, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -118536,25 +116432,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [90.10272487332819, 104.42886436733764], - "drones": [1033.5827293675743, 1042.9313222131157], - "electronics": [150.7230696604039, 165.19011356512905], - "engineParts": [376.25971377663177, 391.3230649621669], - "food": [9.094594306126604, 21.905118986469496], - "fuel": [67.11476101951646, 79.85503624088932], - "fuelium": [60.63313278552246, 67.7636641612513], - "gold": [567.0364707755836, 579.6571455759116], - "goldOre": [75.51714614817097, 92.30425803503584], - "hullPlates": [34.94457610023916, 54.38600482600272], - "hydrogen": [80.3866091360112, 86.20642177326509], - "ice": [16.10019217062407, 35.64194702091539], - "metals": [76.93904938271605, 78.93904938271605], - "ore": [20.721478466235602, 32.26429569324712], - "silica": [27.153024513457016, 36.11095199298627], - "silicon": [32.125463481589335, 42.40948090166099], - "superconductors": [212.6973811747027, 219.49456191607447], - "tauMetal": [334.86298271301735, 342.75278606267216], - "water": [26.010621915417605, 40.09929931817824] + "coolant": [66.33448333875575, 83.42249945422833], + "drones": [829.0198664665915, 839.7279226496707], + "electronics": [369.4107725218671, 380.38508377881874], + "engineParts": [263.4127127727218, 277.0894805092487], + "food": [18, 20], + "fuel": [50.62532884339338, 65.62465047272144], + "fuelium": [43.3767952596128, 59.0119980579043], + "gold": [334.00288346792576, 350.2462578672844], + "goldOre": [88.71514780732136, 95.55372131449539], + "hullPlates": [48.60611957882705, 63.15891899716443], + "hydrogen": [103.76638103477833, 114.04500662722205], + "ice": [24.996867085104753, 31.526201446499165], + "metals": [98.44480073355194, 117.86432545813564], + "ore": [29.900306962397014, 38.69182963912119], + "silica": [26.65138349597138, 37.11257194515526], + "silicon": [27.24479441338081, 36.42298250606669], + "superconductors": [190.84715069981868, 200.67790826317733], + "tauMetal": [450.81529751143694, 461.6271538740873], + "water": [28.608008980509815, 37.53928571428571] }, "lastPriceAdjust": { "commodities": { @@ -118583,116 +116479,116 @@ "offers": { "coolant": { "active": false, - "price": 98, + "price": 67, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1038, + "price": 837, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 162, + "price": 379, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 379, + "price": 270, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 13, - "quantity": 0, - "type": "buy" + "active": true, + "price": 19, + "quantity": 89810, + "type": "sell" }, "fuel": { - "active": false, - "price": 69, - "quantity": 0, + "active": true, + "price": 58, + "quantity": 7611, "type": "buy" }, "fuelium": { "active": false, - "price": 67, + "price": 43, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 572, + "price": 349, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 75, + "price": 91, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 52, + "price": 49, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 84, + "price": 110, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 23, + "price": 27, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 78, - "quantity": 8514, - "type": "sell" + "active": false, + "price": 112, + "quantity": 0, + "type": "buy" }, "ore": { - "active": true, - "price": 24, - "quantity": 44730, + "active": false, + "price": 30, + "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 31, + "price": 30, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 216, + "price": 196, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 341, + "price": 456, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 32, - "quantity": 0, + "active": true, + "price": 30, + "quantity": 11269, "type": "buy" } }, @@ -118710,21 +116606,21 @@ }, "name": { "name": "name", - "value": "AMS Sedna Mining Complex", + "value": "FFW Juno II Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2090, 2102], + "ids": [2081, 2080], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 6.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -118732,34 +116628,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 2000 }, - "ore": { "consumes": 4000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1193, + "id": 1241, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1193, + "id": 1241, "mask": "BigInt:549755813888" }, "name": { @@ -118774,14 +116670,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1194, + "id": 1242, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1193, + "id": 1241, "mask": "BigInt:549755813888" }, "name": { @@ -118796,386 +116692,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1195, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1193, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1196, + "id": 1243, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1193, + "id": 1241, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0.6464646464646764, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 31.33333333333298, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1197, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1244, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1193, + "id": 1241, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1198, + "id": 1245, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1193, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0.6464646464646764, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 31.33333333333298, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1199, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1193, + "id": 1241, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1200, + "id": 1246, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1193, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0.6464646464646764, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 31.33333333333298, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1201, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1193, + "id": 1241, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1202, + "id": 1247, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1193, + "id": 1241, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -119185,7 +116810,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.16666666666660745, "fuel": 0, "fuelium": 0, "gold": 0, @@ -119193,7 +116818,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -119207,7 +116832,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -119215,12 +116840,12 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -119230,72 +116855,42 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1203, + "id": 1248, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 1193, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1204, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1336992, - "money": 1336992, + "available": 1342843, + "money": 1342843, "name": "budget", "mask": "BigInt:16" }, @@ -119313,40 +116908,38 @@ }, "modules": { "name": "modules", - "ids": [ - 1206, 1207, 1208, 1209, 1210, 1211, 1212, 1213, 1214, 1215, 1216 - ], + "ids": [1250, 1251, 1252, 1253, 1254, 1255, 1256, 1257, 1258, 1259], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [29.617352336187167, 20.8683733973511], - "sector": 5, + "coord": [-21.559518016128447, -7.203950604731219], + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16737253, + "color": 4388323, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 24, + "allocationIdCounter": 1, "allocations": [], - "max": 81000, + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 92152, + "fuel": 5049, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -119355,19 +116948,19 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 1273, - "silicon": 28390, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 12891 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 92152, + "fuel": 5049, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -119376,19 +116969,19 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 1273, - "silicon": 28390, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 12891 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 134007, + "fuel": 15723, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -119397,11 +116990,11 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 30375, - "silicon": 50625, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -119410,25 +117003,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [146.09666116644635, 151.95806179799436], - "drones": [707.8422344650273, 725.0130617397969], - "electronics": [374.1479718913856, 392.66053814641197], - "engineParts": [307.7627947784056, 324.041106048304], - "food": [8.182453925529208, 22.391281238043355], - "fuel": [46.59161736703802, 57.60792062934754], - "fuelium": [72.30636331523388, 92.04554495936267], - "gold": [527.3092701499445, 546.9261539658779], - "goldOre": [51.466518048626654, 70.74049231208335], - "hullPlates": [64.44059310324243, 75.62321956898823], - "hydrogen": [69.23312904921116, 82.68595334444724], - "ice": [23.981697046196146, 32.79088465037372], - "metals": [39.571352423115215, 50.34849494529776], - "ore": [25.678645731953033, 33.60923639694744], - "silica": [47.32217964585805, 51], - "silicon": [29, 30.19417106465518], - "superconductors": [235.7256985464849, 245.02280019005417], - "tauMetal": [226.69500436039442, 241.3924549994007], - "water": [42.59199185891586, 51.65569771240684] + "coolant": [96.996542258251, 116.1068181760101], + "drones": [1002.8980734826771, 1010.4602951891234], + "electronics": [187.83918579641337, 194.1803167435417], + "engineParts": [197.80896849536097, 214.20454364856255], + "food": [16, 18.013898091485945], + "fuel": [47.89178999054272, 58.964404815043565], + "fuelium": [39.99245473041885, 56.364685445482465], + "gold": [790.9624147200537, 797.3684912969974], + "goldOre": [74.28174360864907, 87.68791281433869], + "hullPlates": [64.95839572517414, 80.84615935874314], + "hydrogen": [97.60689308695058, 117.49366394632209], + "ice": [16.1726370865226, 31.208862273710086], + "metals": [82.87893690193539, 92.20057497911725], + "ore": [18.06370075910857, 27.70155137255093], + "silica": [28.65711853549481, 44.9821829206679], + "silicon": [20.753841708310944, 32.63949994308073], + "superconductors": [360.50915276981846, 373.17476420450885], + "tauMetal": [561.821932086579, 580.0197486501099], + "water": [38.72017634285992, 43] }, "lastPriceAdjust": { "commodities": { @@ -119457,116 +117050,116 @@ "offers": { "coolant": { "active": false, - "price": 151, + "price": 114, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 719, + "price": 1005, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 385, + "price": 188, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 314, + "price": 204, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 22, - "quantity": 0, - "type": "buy" + "active": true, + "price": 16, + "quantity": 92152, + "type": "sell" }, "fuel": { - "active": false, - "price": 56, - "quantity": 0, + "active": true, + "price": 57, + "quantity": 10674, "type": "buy" }, "fuelium": { "active": false, - "price": 74, + "price": 56, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 536, + "price": 794, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 61, + "price": 77, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 71, + "price": 73, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 74, + "price": 104, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 29, + "price": 27, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 45, + "price": 84, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 30, + "price": 20, "quantity": 0, "type": "buy" }, "silica": { - "active": true, - "price": 48, - "quantity": 29102, + "active": false, + "price": 39, + "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 29, - "quantity": 28390, - "type": "sell" + "active": false, + "price": 24, + "quantity": 0, + "type": "buy" }, "superconductors": { "active": false, - "price": 235, + "price": 364, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 240, + "price": 572, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 50, - "quantity": 0, + "active": true, + "price": 41, + "quantity": 18377, "type": "buy" } }, @@ -119584,12 +117177,12 @@ }, "name": { "name": "name", - "value": "AMS Sedna Mining Complex", + "value": "FFW Juno III Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2089, 2101], + "ids": [2079, 2078], "mask": "BigInt:4294967296" }, "crew": { @@ -119598,7 +117191,7 @@ "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -119606,8 +117199,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 3000 }, + "fuel": { "consumes": 352, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -119616,24 +117209,24 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 3600, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 6000 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 700, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1205, + "id": 1249, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1205, + "id": 1249, "mask": "BigInt:549755813888" }, "name": { @@ -119648,14 +117241,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1206, + "id": 1250, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1205, + "id": 1249, "mask": "BigInt:549755813888" }, "name": { @@ -119670,41 +117263,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1207, + "id": 1251, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1205, + "id": 1249, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1252, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1249, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1208, + "id": 1253, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1205, + "id": 1249, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1254, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1249, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1255, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1249, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -119714,7 +117381,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.6428571428570908, "fuel": 0, "fuelium": 0, "gold": 0, @@ -119725,7 +117392,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -119736,7 +117403,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -119749,7 +117416,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -119759,8 +117426,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -119769,57 +117436,35 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1209, + "id": 1256, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1205, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1210, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1205, + "id": 1249, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -119829,7 +117474,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.6428571428570908, "fuel": 0, "fuelium": 0, "gold": 0, @@ -119840,7 +117485,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -119851,7 +117496,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -119864,7 +117509,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -119874,8 +117519,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -119884,57 +117529,35 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1211, + "id": 1257, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1205, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1212, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1205, + "id": 1249, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -119944,7 +117567,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.6428571428570908, "fuel": 0, "fuelium": 0, "gold": 0, @@ -119955,7 +117578,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -119966,7 +117589,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -119979,7 +117602,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -119989,8 +117612,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -119999,57 +117622,35 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1213, + "id": 1258, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1205, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1214, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1205, + "id": 1249, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -120059,7 +117660,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.6428571428570908, "fuel": 0, "fuelium": 0, "gold": 0, @@ -120070,7 +117671,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -120081,7 +117682,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -120094,7 +117695,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -120104,8 +117705,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -120114,62 +117715,32 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1215, + "id": 1259, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 1205, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1216, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1683161, - "money": 1683161, + "available": 3532972, + "money": 3532972, "name": "budget", "mask": "BigInt:16" }, @@ -120188,95 +117759,41 @@ "modules": { "name": "modules", "ids": [ - 1218, 1219, 1220, 1221, 1222, 1223, 1224, 1225, 1226, 1227, 1228 + 1261, 1262, 1263, 1264, 1265, 1266, 1267, 1268, 1269, 1270, 1271, + 1272 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [0.4070004350074581, -22.93544594254146], - "sector": 24, + "coord": [7.117193084417735, -22.973254896145644], + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16737253, + "color": 4388323, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 148, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 142, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3462, - "type": "outgoing", - "meta": { "tradeId": "1217:2079:buy:3462" }, - "id": 143 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 60, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3570, - "type": "outgoing", - "meta": { "tradeId": "1217:2080:buy:3570" }, - "id": 147 - } - ], - "max": 81000, + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 64, - "fuelium": 3621, + "fuel": 0, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -120296,8 +117813,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 266, - "fuelium": 3621, + "fuel": 0, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -120316,21 +117833,21 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 43615, - "fuelium": 37384, + "food": 69597, + "fuel": 23245, + "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 53358, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 18559, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 16239 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -120339,25 +117856,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [141.05607952721215, 154.89206364825148], - "drones": [1762.1900520630757, 1770.7659317440462], - "electronics": [364.2501741677994, 374.4340420903996], - "engineParts": [457.227372772145, 471.48118246959984], - "food": [9.542722925907988, 16.65363542345839], - "fuel": [52.3976613550384, 54.3976613550384], - "fuelium": [43.7906397114433, 61.98611156243509], - "gold": [816.8029090292049, 829.1183198803222], - "goldOre": [89.36374699579457, 99.0145072108324], - "hullPlates": [53.61296677613444, 61.054542914003804], - "hydrogen": [68.10794198782966, 74.99095855080918], - "ice": [9.68073059973834, 28.241476887891103], - "metals": [84.20067917496418, 95.9067216353322], - "ore": [39.28413758525672, 52.346686872049666], - "silica": [38.24817459616618, 56.982091975773194], - "silicon": [13.555897445462326, 30.786184661055344], - "superconductors": [449.5518863333267, 456.3113341625143], - "tauMetal": [458.3794252082219, 475.917662611981], - "water": [33.45038708981704, 47.25780185106308] + "coolant": [119.55480772361751, 132.23063868400834], + "drones": [1240.6391777470837, 1259.3904275373923], + "electronics": [226.19571291908383, 240.84441402343822], + "engineParts": [285.9545359879607, 294.62549097047344], + "food": [16.212400013173074, 22], + "fuel": [40.55355256854459, 53.33910661656029], + "fuelium": [59.28074829681699, 74.74167576569235], + "gold": [385.4224118160022, 391.300592439782], + "goldOre": [36.544520075531345, 43.22584652126007], + "hullPlates": [46, 54.73440791819938], + "hydrogen": [85.42428941266995, 92.28047582070606], + "ice": [26.961464367681472, 46.628270662866875], + "metals": [93.50126460992419, 100], + "ore": [14.472838439260022, 19.54137200539076], + "silica": [24.26637509843414, 29.620934432880688], + "silicon": [16.54196766510645, 34.58801889932947], + "superconductors": [389.907142128342, 404.2310636759731], + "tauMetal": [457.97004756936235, 468.22130224614665], + "water": [42.70753787027376, 43] }, "lastPriceAdjust": { "commodities": { @@ -120386,91 +117903,91 @@ "offers": { "coolant": { "active": false, - "price": 153, + "price": 130, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1765, + "price": 1248, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 368, + "price": 238, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 464, + "price": 287, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 9, + "active": true, + "price": 19, "quantity": 0, - "type": "buy" + "type": "sell" }, "fuel": { "active": true, - "price": 52, - "quantity": 64, - "type": "sell" + "price": 46, + "quantity": 23245, + "type": "buy" }, "fuelium": { - "active": true, - "price": 51, - "quantity": 33763, + "active": false, + "price": 67, + "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 817, + "price": 388, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 94, + "price": 38, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 56, + "active": true, + "price": 49, "quantity": 0, - "type": "buy" + "type": "sell" }, "hydrogen": { "active": false, - "price": 71, + "price": 85, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 18, + "price": 44, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 92, - "quantity": 0, + "active": true, + "price": 96, + "quantity": 18559, "type": "buy" }, "ore": { "active": false, - "price": 46, + "price": 16, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 43, + "price": 29, "quantity": 0, "type": "buy" }, @@ -120482,20 +117999,20 @@ }, "superconductors": { "active": false, - "price": 450, + "price": 397, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 474, + "price": 467, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 41, - "quantity": 0, + "active": true, + "price": 42, + "quantity": 16239, "type": "buy" } }, @@ -120503,71 +118020,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Freighter A", - "time": 522 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Freighter A", - "time": 532 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Freighter A", - "time": 943 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Freighter A", - "time": 950 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 52, - "target": "FFW Freighter A", - "time": 3021 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 85, - "price": 52, - "target": "FFW Freighter A", - "time": 3062 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 52, - "target": "FFW Freighter A", - "time": 3444 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -120577,12 +118030,12 @@ }, "name": { "name": "name", - "value": "AMS GJ 1002 III Mining Complex", + "value": "FFW Juno II Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2088, 2100], + "ids": [2077, 2076, 2075], "mask": "BigInt:4294967296" }, "crew": { @@ -120591,7 +118044,7 @@ "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -120599,34 +118052,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 5600 }, - "fuelium": { "consumes": 4800, "produces": 0 }, + "food": { "consumes": 0, "produces": 3000 }, + "fuel": { "consumes": 1002, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 2300 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 800, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 700, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1217, + "id": 1260, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { @@ -120641,14 +118094,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1218, + "id": 1261, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { @@ -120663,41 +118116,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1219, + "id": 1262, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1263, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1260, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1220, + "id": 1264, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1265, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1260, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1266, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1260, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -120708,7 +118235,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.01010101010086828, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -120752,9 +118279,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -120766,53 +118293,31 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1221, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1267, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1217, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1222, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -120823,7 +118328,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.01010101010086828, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -120868,14 +118373,14 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, @@ -120883,51 +118388,29 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 12, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1223, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1268, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1217, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1224, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -120938,7 +118421,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.01010101010086828, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -120982,9 +118465,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -120996,53 +118479,124 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1225, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1269, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Farm", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1226, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1270, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -121053,7 +118607,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.01010101010086828, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -121098,14 +118652,14 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, @@ -121113,56 +118667,119 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 12, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1227, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1271, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1217, + "id": 1260, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1228, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1272, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 35, + "allocationIdCounter": 1, "allocations": [], - "available": 4382242, - "money": 4382242, + "available": 369100, + "money": 369100, "name": "budget", "mask": "BigInt:16" }, @@ -121181,14 +118798,14 @@ "modules": { "name": "modules", "ids": [ - 1230, 1231, 1232, 1233, 1234, 1235, 1236, 1237, 1238, 1239, 1240 + 1274, 1275, 1276, 1277, 1278, 1279, 1280, 1281, 1282, 1283, 1284 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-13.86259198423943, -1.631183894108232], + "coord": [-13.209330949868608, -7.372691734270909], "sector": 24, "moved": false, "mask": "BigInt:2199023255552" @@ -121198,53 +118815,25 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 40, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 64, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3528, - "type": "incoming", - "meta": { "tradeId": "1229:2087:sell:3528" }, - "id": 39 - } - ], - "max": 81000, + "allocationIdCounter": 1, + "allocations": [], + "max": 61000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6229, + "fuel": 0, "fuelium": 0, - "gold": 4043, - "goldOre": 9964, + "gold": 0, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -121262,10 +118851,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6229, + "fuel": 0, "fuelium": 0, - "gold": 4043, - "goldOre": 9964, + "gold": 0, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -121282,21 +118871,21 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 7614, + "food": 31926, + "fuel": 3745, "fuelium": 0, - "gold": 8552, - "goldOre": 64833, + "gold": 0, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 10216, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 15111 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -121305,25 +118894,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [58.41154869041869, 77.11202072663198], - "drones": [1327.6245057802676, 1336.35256507915], - "electronics": [390.44992894390475, 405.33363793732565], - "engineParts": [335.97184693179304, 346.47954923720124], - "food": [20.3790698503946, 28.91256505265921], - "fuel": [53.27034134912536, 68.97963697142497], - "fuelium": [48.43841119041271, 60.48951445190507], - "gold": [651, 654.1451617468068], - "goldOre": [73.61159287621985, 81.23856395094523], - "hullPlates": [59.1371297097026, 77.88444218633191], - "hydrogen": [83.09743345712893, 98.92314313641013], - "ice": [22.862106189803367, 34.66462058978693], - "metals": [61.44466700628367, 67.64178296910512], - "ore": [20.18528445336976, 36.638677499015984], - "silica": [29.97600621688174, 44.42288947414558], - "silicon": [21.71054432631914, 31.321437859717797], - "superconductors": [202.91768972594835, 208.46300312367228], - "tauMetal": [392.8217813461349, 406.81885543970844], - "water": [24.421481912574603, 43.23799227017378] + "coolant": [100.50007225194597, 108.19375011445909], + "drones": [1549.838257564772, 1556.7679267848898], + "electronics": [238.35386567505338, 244.07633912609847], + "engineParts": [237.95839993739574, 250.3638867000176], + "food": [13, 22], + "fuel": [42.78456480426442, 51.02026761746053], + "fuelium": [54.66812524744984, 62.53178116964323], + "gold": [637.1472456462293, 642.8494487860806], + "goldOre": [95.0414604431858, 111.04017336781051], + "hullPlates": [47.52648909174205, 66.77796030937071], + "hydrogen": [38.340279166099975, 49.561180662058206], + "ice": [18.5331654586824, 27], + "metals": [57.89930654745184, 73.56004722244796], + "ore": [41.79648961375936, 56.950924233435366], + "silica": [47.44388044799078, 54.907554553731174], + "silicon": [25.115826836857277, 39.044215847987914], + "superconductors": [288.8722129063408, 305.7333452379749], + "tauMetal": [386.9093113173499, 405.54013529973247], + "water": [35.899104466623676, 43] }, "lastPriceAdjust": { "commodities": { @@ -121352,74 +118941,74 @@ "offers": { "coolant": { "active": false, - "price": 64, + "price": 103, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1334, + "price": 1554, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 390, + "price": 239, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 343, + "price": 245, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 22, + "active": true, + "price": 19, "quantity": 0, - "type": "buy" + "type": "sell" }, "fuel": { "active": true, - "price": 66, - "quantity": 1385, + "price": 44, + "quantity": 3745, "type": "buy" }, "fuelium": { "active": false, - "price": 58, + "price": 55, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 653, - "quantity": 4043, - "type": "sell" + "active": false, + "price": 640, + "quantity": 0, + "type": "buy" }, "goldOre": { - "active": true, - "price": 80, - "quantity": 54869, + "active": false, + "price": 100, + "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 69, + "price": 64, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 97, + "price": 44, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 30, - "quantity": 0, + "active": true, + "price": 20, + "quantity": 10216, "type": "buy" }, "metals": { @@ -121430,39 +119019,39 @@ }, "ore": { "active": false, - "price": 29, + "price": 49, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 37, + "price": 54, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 22, + "price": 33, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 204, + "price": 296, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 405, + "price": 392, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 42, + "active": true, + "price": 39, "quantity": 0, - "type": "buy" + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -121479,17 +119068,17 @@ }, "name": { "name": "name", - "value": "AMS GJ 1002 III Mining Complex", + "value": "AMS GJ 1002 III Farming Facility", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2087, 2099], + "ids": [2207, 2206, 2218], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 4.999999999999992, "max": 64 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -121501,34 +119090,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 552, "produces": 0 }, + "food": { "consumes": 0, "produces": 3750 }, + "fuel": { "consumes": 440, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 620 }, - "goldOre": { "consumes": 4700, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 875, "produces": 900 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1229, + "id": 1273, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { @@ -121543,14 +119132,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1230, + "id": 1274, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { @@ -121565,41 +119154,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1231, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1229, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1232, + "id": 1275, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -121612,7 +119179,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -121631,10 +119198,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -121654,11 +119221,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -121668,53 +119235,124 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1233, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1276, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Farm", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1234, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1277, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -121727,7 +119365,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -121746,10 +119384,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -121769,11 +119407,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -121783,53 +119421,105 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1235, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1278, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1236, + "id": 1279, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1280, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1273, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Habitation Dome", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 50, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1281, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1273, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -121842,7 +119532,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -121861,10 +119551,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -121885,66 +119575,44 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1237, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1282, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1229, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1238, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -121957,7 +119625,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -121976,10 +119644,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -121999,11 +119667,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -122013,58 +119681,121 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1239, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1283, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1229, + "id": 1273, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1240, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1284, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 976799, - "money": 976799, + "available": 1747280, + "money": 1747280, "name": "budget", "mask": "BigInt:16" }, @@ -122083,15 +119814,15 @@ "modules": { "name": "modules", "ids": [ - 1242, 1243, 1244, 1245, 1246, 1247, 1248, 1249, 1250, 1251, 1252 + 1286, 1287, 1288, 1289, 1290, 1291, 1292, 1293, 1294, 1295, 1296 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [9.771292883338678, -5.865360075851301], - "sector": 31, + "coord": [-8.29906485104455, 0.3171745640253149], + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, @@ -122106,7 +119837,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 130, + "allocationIdCounter": 33, "allocations": [ { "amount": { @@ -122123,44 +119854,17 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 32, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 285 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "1241:2086:buy:3558" }, - "id": 128 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3597, - "type": "outgoing", - "meta": { "tradeId": "1241:2082:buy:3597" }, - "id": 129 + "issued": 3570, + "type": "incoming", + "meta": { "tradeId": "1285:2217:sell:3570" }, + "id": 32 } ], "max": 81000, @@ -122176,9 +119880,9 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 1090, - "metals": 0, - "ore": 0, + "ice": 0, + "metals": 20673, + "ore": 8782, "silica": 0, "silicon": 0, "superconductors": 0, @@ -122197,14 +119901,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 1090, - "metals": 0, - "ore": 0, + "ice": 0, + "metals": 20673, + "ore": 8782, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 373 + "water": 0 }, "quota": { "coolant": 0, @@ -122218,14 +119922,14 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 46285, - "metals": 0, - "ore": 0, + "ice": 0, + "metals": 27000, + "ore": 54000, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 34714 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -122234,25 +119938,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [52.38713687126357, 58.492720121810784], - "drones": [1617.5280372817924, 1628.5426956058507], - "electronics": [386.65770976543956, 400.00603012592535], - "engineParts": [438.3714051457314, 446.600420347303], - "food": [16.738389008967893, 34.67707138372144], - "fuel": [76.60532489768292, 86.67498576168174], - "fuelium": [59.96869529164211, 73.04815445097107], - "gold": [674.2027602538685, 692.7372610443672], - "goldOre": [67.21224777583865, 82.94098677974128], - "hullPlates": [44.27185568555552, 61.94329738891197], - "hydrogen": [85.15561222346747, 98.70898685820677], - "ice": [19.331317584483454, 27], - "metals": [46.45630983997198, 52.17981344558291], - "ore": [23.798209534153308, 34.323900349075515], - "silica": [26.61234983410813, 41.41486982835478], - "silicon": [14.615441478028005, 31.803610884051203], - "superconductors": [463.3798913799795, 469.3169490339389], - "tauMetal": [653.4215915864468, 671.7703127702], - "water": [29.854687493000014, 42.854687493000014] + "coolant": [58.726788347143895, 76.14870245647398], + "drones": [801.3913268579495, 818.5788232213988], + "electronics": [188.00166243053286, 205.32195368105698], + "engineParts": [283.6796699772653, 303.02446556449377], + "food": [20.076219466966236, 39.102023303004856], + "fuel": [38.57786913318793, 50.69336422477194], + "fuelium": [32.45976527000799, 49.559834024471755], + "gold": [568.0883457938256, 584.8356051942312], + "goldOre": [33.37084334457605, 38.48490417202197], + "hullPlates": [44.881312834699045, 64.81350895624487], + "hydrogen": [92.05262680840436, 101.95894799557516], + "ice": [9.06895939394646, 20.996014225806935], + "metals": [68, 70], + "ore": [38.08222970642915, 42], + "silica": [41.819085644846936, 50.29158020339158], + "silicon": [19.781673251181754, 29.27159098606771], + "superconductors": [200.57305856446126, 215.13098712716982], + "tauMetal": [313.6645113529055, 321.7308507263149], + "water": [41.16624207250261, 57.31953994445589] }, "lastPriceAdjust": { "commodities": { @@ -122281,117 +119985,117 @@ "offers": { "coolant": { "active": false, - "price": 53, + "price": 60, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1621, + "price": 810, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 392, + "price": 204, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 440, + "price": 299, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 21, + "price": 32, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 77, + "price": 47, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 70, + "price": 36, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 688, + "price": 574, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 78, + "price": 36, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 56, + "price": 55, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 85, + "price": 93, "quantity": 0, "type": "buy" }, "ice": { - "active": true, - "price": 21, - "quantity": 45195, - "type": "buy" - }, - "metals": { "active": false, - "price": 51, + "price": 18, "quantity": 0, "type": "buy" }, + "metals": { + "active": true, + "price": 68, + "quantity": 20673, + "type": "sell" + }, "ore": { - "active": false, - "price": 28, - "quantity": 0, + "active": true, + "price": 40, + "quantity": 45218, "type": "buy" }, "silica": { "active": false, - "price": 40, + "price": 49, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 21, + "price": 28, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 464, + "price": 215, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 668, + "price": 316, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 39, + "active": false, + "price": 48, "quantity": 0, - "type": "sell" + "type": "buy" } }, "mask": "BigInt:34359738368" @@ -122408,12 +120112,12 @@ }, "name": { "name": "name", - "value": "AMS Wolf 1061 III Mining Complex", + "value": "AMS Sedna Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2086, 2098], + "ids": [2205, 2217], "mask": "BigInt:4294967296" }, "crew": { @@ -122437,27 +120141,27 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 4800, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 2000 }, + "ore": { "consumes": 4000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 3600 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1241, + "id": 1285, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { @@ -122472,14 +120176,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1242, + "id": 1286, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { @@ -122494,14 +120198,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1243, + "id": 1287, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { @@ -122516,19 +120220,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1244, + "id": 1288, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -122546,13 +120250,13 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -122568,7 +120272,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -122590,33 +120294,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1245, + "id": 1289, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { @@ -122631,19 +120335,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1246, + "id": 1290, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -122661,13 +120365,13 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -122683,7 +120387,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -122705,33 +120409,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1247, + "id": 1291, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { @@ -122746,19 +120450,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1248, + "id": 1292, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -122776,13 +120480,13 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -122798,7 +120502,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -122820,33 +120524,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1249, + "id": 1293, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { @@ -122861,19 +120565,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1250, + "id": 1294, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -122891,13 +120595,13 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, @@ -122913,7 +120617,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -122935,33 +120639,33 @@ "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1251, + "id": 1295, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1241, + "id": 1285, "mask": "BigInt:549755813888" }, "name": { @@ -122984,7 +120688,7 @@ } }, "cooldowns": { "timers": {} }, - "id": 1252, + "id": 1296, "tags": ["facilityModule", "facilityModuleType:military"] }, { @@ -122992,8 +120696,8 @@ "budget": { "allocationIdCounter": 1, "allocations": [], - "available": 1380044, - "money": 1380044, + "available": 1045608, + "money": 1045608, "name": "budget", "mask": "BigInt:16" }, @@ -123012,15 +120716,15 @@ "modules": { "name": "modules", "ids": [ - 1254, 1255, 1256, 1257, 1258, 1259, 1260, 1261, 1262, 1263, 1264 + 1298, 1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307, 1308 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [27.416102697654928, 18.225980435728637], - "sector": 31, + "coord": [-1.1682980428554681, 15.236840226275046], + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, @@ -123035,36 +120739,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 112, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 38, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "outgoing", - "meta": { "tradeId": "1253:2071:buy:3519" }, - "id": 110 - } - ], + "allocationIdCounter": 86, + "allocations": [], "max": 81000, "availableWares": { "coolant": 0, @@ -123079,10 +120755,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 64, - "ore": 4221, - "silica": 0, - "silicon": 0, + "metals": 0, + "ore": 0, + "silica": 2159, + "silicon": 23988, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -123100,10 +120776,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 102, - "ore": 4221, - "silica": 0, - "silicon": 0, + "metals": 0, + "ore": 0, + "silica": 2159, + "silicon": 23988, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -123121,10 +120797,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 27000, - "ore": 54000, - "silica": 0, - "silicon": 0, + "metals": 0, + "ore": 0, + "silica": 30375, + "silicon": 50625, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -123136,25 +120812,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [66.38444108869905, 72.39651217649427], - "drones": [1448.2663838690132, 1466.167963287929], - "electronics": [422.1319359924807, 430.3478042859261], - "engineParts": [314.1906378670608, 326.64713176319015], - "food": [20.65752570433242, 37.6463728097399], - "fuel": [59.90459576914876, 66.8686629397069], - "fuelium": [71.45307725514341, 81.60779186108982], - "gold": [860.0986198663544, 867.9912477392436], - "goldOre": [74.31337008641125, 79.8444376677401], - "hullPlates": [59.42438524347365, 76.54111801564876], - "hydrogen": [71.74569568757478, 80.06107250521028], - "ice": [13.135393075790613, 29.54196041739007], - "metals": [90.09736171044983, 99.85443755917076], - "ore": [23.286749124999016, 32.085755962480164], - "silica": [41.58917856687902, 61.00183794693195], - "silicon": [15.300569412435921, 22.902198573302453], - "superconductors": [522.8632934908005, 540.9139660948322], - "tauMetal": [606.8588514804939, 618.25385122524], - "water": [33.97330125345346, 44.485880960530736] + "coolant": [106.33568045002905, 118.0501980132845], + "drones": [976.5555106101071, 989.7717543349302], + "electronics": [169.5372194459757, 182.97502284540022], + "engineParts": [245.73198349176334, 251.57971600962856], + "food": [16.37145868075648, 25.022076813418373], + "fuel": [58.55183467746389, 66.88034933189456], + "fuelium": [42.01935387545206, 48.13740284851537], + "gold": [494.2228919717792, 509.18306244021534], + "goldOre": [88.55685424664645, 93.74389059003629], + "hullPlates": [39.50272841558716, 46.24253746076666], + "hydrogen": [72.64920493342873, 82.74095596377853], + "ice": [18.900242086664974, 28.274937905902533], + "metals": [89.86400010961432, 109.7099270566404], + "ore": [26.93749523344156, 32.41312272245088], + "silica": [28.16138700734344, 46.1825384989253], + "silicon": [24, 31.530968698516535], + "superconductors": [489.3363280074456, 496.5221138453406], + "tauMetal": [502.97948063534204, 517.2749743201546], + "water": [41.60660587224993, 61.35767472169978] }, "lastPriceAdjust": { "commodities": { @@ -123183,115 +120859,115 @@ "offers": { "coolant": { "active": false, - "price": 69, + "price": 117, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1450, + "price": 986, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 423, + "price": 173, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 326, + "price": 247, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 25, + "price": 23, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 62, + "price": 65, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 73, + "price": 47, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 867, + "price": 503, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 79, + "price": 89, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 66, + "price": 40, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 78, + "price": 81, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 21, + "price": 19, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 95, - "quantity": 64, - "type": "sell" + "active": false, + "price": 108, + "quantity": 0, + "type": "buy" }, "ore": { - "active": true, - "price": 28, - "quantity": 49779, + "active": false, + "price": 31, + "quantity": 0, "type": "buy" }, "silica": { - "active": false, - "price": 44, - "quantity": 0, + "active": true, + "price": 39, + "quantity": 28216, "type": "buy" }, "silicon": { - "active": false, - "price": 15, - "quantity": 0, - "type": "buy" + "active": true, + "price": 28, + "quantity": 23988, + "type": "sell" }, "superconductors": { "active": false, - "price": 526, + "price": 489, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 609, + "price": 512, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 39, + "price": 51, "quantity": 0, "type": "buy" } @@ -123310,12 +120986,12 @@ }, "name": { "name": "name", - "value": "AMS Wolf 1061 III Mining Complex", + "value": "AMS Sedna Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2085, 2097], + "ids": [2204, 2216], "mask": "BigInt:4294967296" }, "crew": { @@ -123340,10 +121016,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 2000 }, - "ore": { "consumes": 4000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 3600, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 6000 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -123352,14 +121028,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1253, + "id": 1297, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { @@ -123374,14 +121050,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1254, + "id": 1298, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { @@ -123396,14 +121072,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1255, + "id": 1299, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { @@ -123418,19 +121094,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1256, + "id": 1300, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -123448,10 +121124,10 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.6775956284152533, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -123470,7 +121146,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -123493,10 +121169,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -123506,19 +121182,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1257, + "id": 1301, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { @@ -123533,19 +121209,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1258, + "id": 1302, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -123563,13 +121239,128 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0.6464646464646764, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.6775956284152533, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1303, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1297, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1304, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1297, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0.6775956284152533, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, "consumption": { "coolant": 0, @@ -123585,7 +121376,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -123608,10 +121399,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -123621,19 +121412,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1259, + "id": 1305, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { @@ -123648,45 +121439,24 @@ } }, "cooldowns": { "timers": {} }, - "id": 1260, + "id": 1306, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Refinery", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0.6464646464646764, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { "coolant": 0, "drones": 0, "electronics": 0, @@ -123700,103 +121470,9 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1261, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1253, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1262, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1253, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0.6464646464646764, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.6775956284152533, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -123815,7 +121491,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 31.33333333333298, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -123838,10 +121514,10 @@ "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 500 }, - "ore": { "consumes": 1000, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -123851,19 +121527,19 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1263, + "id": 1307, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1253, + "id": 1297, "mask": "BigInt:549755813888" }, "name": { @@ -123886,16 +121562,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1264, + "id": 1308, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 2, + "allocationIdCounter": 1, "allocations": [], - "available": 1024892, - "money": 1024892, + "available": 2317126, + "money": 2317126, "name": "budget", "mask": "BigInt:16" }, @@ -123914,15 +121590,15 @@ "modules": { "name": "modules", "ids": [ - 1266, 1267, 1268, 1269, 1270, 1271, 1272, 1273, 1274, 1275, 1276 + 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, 1320 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [3.9792567967088166, 5.835712858334933], - "sector": 31, + "coord": [11.270205532932673, 3.787531501161437], + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, @@ -123937,7 +121613,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 6, "allocations": [], "max": 81000, "availableWares": { @@ -123946,8 +121622,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 23792, + "fuelium": 11, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -123955,8 +121631,8 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 5930, - "silicon": 25505, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -123967,8 +121643,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 23792, + "fuelium": 11, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -123976,8 +121652,8 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 5930, - "silicon": 25505, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -123988,8 +121664,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, + "fuel": 43615, + "fuelium": 37384, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -123997,8 +121673,8 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 30375, - "silicon": 50625, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -124010,25 +121686,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [133.33185755042922, 139.7068494052912], - "drones": [1145.7146813105298, 1160.4292400997267], - "electronics": [404.11591969871324, 421.8756020319663], - "engineParts": [169.35892816612758, 189.29135002921865], - "food": [17.164192909277634, 33.423129218309626], - "fuel": [34.79338187895874, 51.6207671115404], - "fuelium": [59.96688986161413, 78.37810249074701], - "gold": [853.7756286750237, 864.9202957417681], - "goldOre": [87.74684691709436, 102.34889543346681], - "hullPlates": [32.09508885413686, 42.576876439921165], - "hydrogen": [76.22741252013124, 87.91424824285122], - "ice": [26.399036842262504, 41.10897772691], - "metals": [62.04491286933497, 78.65442020195472], - "ore": [25.442687605710177, 33.02066173178331], - "silica": [43.07999999999999, 45.07999999999999], - "silicon": [27, 29.287914050265613], - "superconductors": [250.85913446600938, 263.00168904163934], - "tauMetal": [339.27808002061215, 347.0995049871891], - "water": [26.33264051474241, 35.90820643159348] + "coolant": [70.29480640311934, 79.24596503498935], + "drones": [1584.7708169580305, 1604.652847341226], + "electronics": [342.2366371000726, 349.28970118285696], + "engineParts": [277.66702343883475, 291.2512173504242], + "food": [9.430661120257643, 25.60249403689933], + "fuel": [58, 64.73515543905056], + "fuelium": [57.471349226429325, 72.72195882195962], + "gold": [483.1611436093686, 499.3327268826249], + "goldOre": [62.283214942703424, 80.05663741287867], + "hullPlates": [34.63118152732149, 39.82756519958147], + "hydrogen": [101.43784306589464, 114.30155405690783], + "ice": [13.821985203119498, 23.410900147014054], + "metals": [73.2631692774886, 90.5813244530301], + "ore": [39.853197741678784, 52.861614107051246], + "silica": [30.52811987473732, 40.96041461273831], + "silicon": [16.29531302173294, 25.89065833817693], + "superconductors": [561.3236118858619, 571.0342223482945], + "tauMetal": [553.0117471651627, 558.851907630266], + "water": [24.07418571943125, 38.48003903201837] }, "lastPriceAdjust": { "commodities": { @@ -124057,115 +121733,115 @@ "offers": { "coolant": { "active": false, - "price": 136, + "price": 76, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1155, + "price": 1586, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 418, + "price": 342, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 177, + "price": 287, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 19, + "price": 14, "quantity": 0, "type": "buy" }, "fuel": { - "active": false, - "price": 49, - "quantity": 0, - "type": "buy" + "active": true, + "price": 63, + "quantity": 23792, + "type": "sell" }, "fuelium": { - "active": false, - "price": 70, - "quantity": 0, + "active": true, + "price": 62, + "quantity": 37373, "type": "buy" }, "gold": { "active": false, - "price": 858, + "price": 486, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 95, + "price": 67, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 40, + "price": 36, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 82, + "price": 113, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 35, + "price": 13, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 67, + "price": 86, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 26, + "price": 44, "quantity": 0, "type": "buy" }, "silica": { - "active": true, - "price": 44, - "quantity": 24445, + "active": false, + "price": 33, + "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 27, - "quantity": 25505, - "type": "sell" + "active": false, + "price": 18, + "quantity": 0, + "type": "buy" }, "superconductors": { "active": false, - "price": 251, + "price": 567, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 342, + "price": 557, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 27, + "price": 34, "quantity": 0, "type": "buy" } @@ -124174,17 +121850,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "silica", - "quantity": 680, - "price": 42, - "target": "ACT Large Miner A", - "time": 1093 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -124194,12 +121860,12 @@ }, "name": { "name": "name", - "value": "AMS Wolf 1061 III Mining Complex", + "value": "AMS GJ 1002 III Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2084, 2096], + "ids": [2203, 2215], "mask": "BigInt:4294967296" }, "crew": { @@ -124217,8 +121883,8 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 5600 }, + "fuelium": { "consumes": 4800, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -124226,8 +121892,8 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 3600, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 6000 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -124236,14 +121902,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1265, + "id": 1309, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { @@ -124258,14 +121924,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1266, + "id": 1310, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { @@ -124280,14 +121946,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1267, + "id": 1311, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { @@ -124302,19 +121968,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1268, + "id": 1312, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -124325,7 +121991,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.4646464646463535, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -124335,7 +122001,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -124370,8 +122036,8 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -124379,30 +122045,30 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1269, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1313, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { @@ -124417,19 +122083,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1270, + "id": 1314, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -124440,7 +122106,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7474747474746373, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -124450,7 +122116,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -124485,8 +122151,8 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -124494,30 +122160,30 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1271, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1315, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { @@ -124532,19 +122198,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1272, + "id": 1316, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -124555,7 +122221,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7474747474746373, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -124565,7 +122231,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -124600,8 +122266,8 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -124609,30 +122275,30 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1273, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1317, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { @@ -124647,19 +122313,19 @@ } }, "cooldowns": { "timers": {} }, - "id": 1274, + "id": 1318, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -124670,7 +122336,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7474747474746373, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -124680,7 +122346,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -124715,8 +122381,8 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -124724,30 +122390,30 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1275, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1319, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1265, + "id": 1309, "mask": "BigInt:549755813888" }, "name": { @@ -124770,16 +122436,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1276, + "id": 1320, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 14, + "allocationIdCounter": 1, "allocations": [], - "available": 3388, - "money": 3388, + "available": 3979961, + "money": 3979961, "name": "budget", "mask": "BigInt:16" }, @@ -124797,14 +122463,16 @@ }, "modules": { "name": "modules", - "ids": [1278, 1279, 1280, 1281, 1282, 1283], + "ids": [ + 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-1.819497666797531, 7.19640754042085], - "sector": 5, + "coord": [4.328383789360467, -11.34866551298396], + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, @@ -124813,25 +122481,161 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 14, - "allocations": [], - "max": 20000, + "allocationIdCounter": 6, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1662, + "type": "outgoing", + "meta": { "tradeId": "1321:2177:buy:1662" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 6, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1683, + "type": "outgoing", + "meta": { "tradeId": "1321:2178:buy:1683" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1710, + "type": "outgoing", + "meta": { "tradeId": "1321:2179:buy:1710" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1716, + "type": "outgoing", + "meta": { "tradeId": "1321:2176:buy:1716" }, + "id": 4 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 6, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1725, + "type": "outgoing", + "meta": { "tradeId": "1321:2180:buy:1725" }, + "id": 5 + } + ], + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13256, - "fuel": 0, + "food": 0, + "fuel": 721, "fuelium": 0, - "gold": 0, - "goldOre": 0, + "gold": 3260, + "goldOre": 18122, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -124841,18 +122645,18 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6598 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13256, - "fuel": 0, + "food": 0, + "fuel": 721, "fuelium": 0, - "gold": 0, - "goldOre": 0, + "gold": 3752, + "goldOre": 18122, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -124862,18 +122666,18 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6598 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, - "fuel": 0, + "food": 0, + "fuel": 7614, "fuelium": 0, - "gold": 0, - "goldOre": 0, + "gold": 8552, + "goldOre": 64833, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -124883,7 +122687,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -124892,25 +122696,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [53.57244070255904, 68.12286452676392], - "drones": [1516.696776237237, 1525.7204740208], - "electronics": [187.0002422251495, 197.7195446364987], - "engineParts": [417.9746277176273, 433.00213595853916], - "food": [15.930386448923235, 21.71304347826087], - "fuel": [50.289681703016456, 60.7374699196668], - "fuelium": [54.06637715710529, 65.2094226800056], - "gold": [643.3070441047535, 649.5227918448788], - "goldOre": [61.414006648751744, 78.49105101909204], - "hullPlates": [58.28665242932813, 72.2312749867711], - "hydrogen": [98.30222970700324, 112.37683157848666], - "ice": [23.620013073441424, 30.748141878278737], - "metals": [99.01760990732801, 116.59960345365418], - "ore": [34.25301816515318, 45.17462879601123], - "silica": [33.181191423323284, 39.16684780671612], - "silicon": [23.586562685240164, 37.990278449829155], - "superconductors": [520.867622938938, 540.5491605815658], - "tauMetal": [474.63828690556375, 488.41283499759], - "water": [36.043628128076826, 43] + "coolant": [96.13362179401739, 102.86167663457822], + "drones": [991.0281614584452, 1005.2884470155661], + "electronics": [336.6666313679716, 341.88346389157533], + "engineParts": [271.51216982951877, 291.26704803208423], + "food": [10.410162231352002, 24.969458158874986], + "fuel": [69.07807329361972, 77], + "fuelium": [64.24036722034296, 78.15439829309165], + "gold": [688.7353164466989, 696.0548394568863], + "goldOre": [71.88876089459791, 79.96307738114751], + "hullPlates": [43.48820734954634, 59.48874157134941], + "hydrogen": [67.55035870022832, 77.84664170684913], + "ice": [26.32021944272538, 37.91456677381484], + "metals": [37.189897375080456, 51.02147925017326], + "ore": [31.836464024177573, 45.82059543757844], + "silica": [43.64142639509396, 57.893828074311564], + "silicon": [13.130583475025519, 20.425524570139334], + "superconductors": [450.25094409461525, 458.94856333193275], + "tauMetal": [507.9489357034001, 527.8178724040002], + "water": [42.03326162175852, 54.777114008387905] }, "lastPriceAdjust": { "commodities": { @@ -124939,116 +122743,116 @@ "offers": { "coolant": { "active": false, - "price": 63, + "price": 99, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1517, + "price": 1002, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 190, + "price": 339, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 432, + "price": 272, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 16, - "quantity": 77, + "active": false, + "price": 18, + "quantity": 0, "type": "buy" }, "fuel": { - "active": false, - "price": 50, - "quantity": 0, + "active": true, + "price": 71, + "quantity": 6893, "type": "buy" }, "fuelium": { "active": false, - "price": 60, + "price": 73, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 645, - "quantity": 0, - "type": "buy" + "active": true, + "price": 691, + "quantity": 3260, + "type": "sell" }, "goldOre": { - "active": false, - "price": 61, - "quantity": 0, + "active": true, + "price": 78, + "quantity": 46711, "type": "buy" }, "hullPlates": { "active": false, - "price": 67, + "price": 52, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 112, + "price": 74, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 32, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 100, + "price": 44, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 41, + "price": 40, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 38, + "price": 49, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 35, + "price": 15, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 538, + "price": 456, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 481, + "price": 512, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 41, - "quantity": 68, + "active": false, + "price": 50, + "quantity": 0, "type": "buy" } }, @@ -125066,17 +122870,17 @@ }, "name": { "name": "name", - "value": "AMS Sedna Hub", + "value": "AMS GJ 1002 III Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2083], + "ids": [2202, 2214], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -125088,11 +122892,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 200, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 552, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 620 }, + "goldOre": { "consumes": 4700, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -125102,25 +122906,91 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 100, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1277, + "id": 1321, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1277, + "id": 1321, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1322, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1321, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1323, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1321, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1324, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1321, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -125133,7 +123003,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.19335154826957623, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -125151,11 +123021,11 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1.666666666666683, - "fuel": 0, + "food": 0, + "fuel": 4.600000000000053, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 4.16666666666702, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -125165,7 +123035,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.3333333333333415 + "water": 0 } }, "name": "production", @@ -125175,11 +123045,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 200, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -125189,43 +123059,141 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 100, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1278, - "tags": ["facilityModule", "facilityModuleType:hub"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1325, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1277, + "id": 1321, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "workers": 14, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1279, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "id": 1326, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1321, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 15, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1327, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1277, + "id": 1321, "mask": "BigInt:549755813888" }, "name": { @@ -125240,74 +123208,222 @@ } }, "cooldowns": { "timers": {} }, - "id": 1280, + "id": 1328, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1277, + "id": 1321, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1329, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1321, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, "cooldowns": { "timers": {} }, - "id": 1281, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1330, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1277, + "id": 1321, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0.19335154826957623, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 4.600000000000053, + "fuelium": 0, + "gold": 0, + "goldOre": 4.16666666666702, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1282, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1331, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1277, + "id": 1321, "mask": "BigInt:549755813888" }, "name": { @@ -125330,23 +123446,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1283, + "id": 1332, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 12, - "allocations": [ - { - "amount": 3432, - "issued": 3597, - "meta": { "tradeId": "1241:2082:buy:3597" }, - "id": 11 - } - ], - "available": 233860, - "money": 237292, + "allocationIdCounter": 1, + "allocations": [], + "available": 1005750, + "money": 1005750, "name": "budget", "mask": "BigInt:16" }, @@ -125364,14 +123473,16 @@ }, "modules": { "name": "modules", - "ids": [1285, 1286, 1287, 1288, 1289, 1290], + "ids": [ + 1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341, 1342, 1343, 1344 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [4.883923278071329, 3.9910806633368683], - "sector": 24, + "coord": [5.335397600958302, 2.0388655355385126], + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, @@ -125380,13 +123491,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 12, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -125408,77 +123519,77 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 940 }, - "issued": 3597, - "type": "incoming", - "meta": { "tradeId": "1284:2082:sell:3597" }, - "id": 11 + "issued": 321, + "type": "outgoing", + "meta": { "tradeId": "1333:2198:buy:321" }, + "id": 1 } ], - "max": 20000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4931, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 4135, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4929 + "water": 27547 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4931, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 4135, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 4929 + "water": 28487 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 46285, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 34714 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -125487,25 +123598,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [85.24069633868649, 105.1600498077675], - "drones": [952.5451907095986, 964.0749015739157], - "electronics": [350.21099402153834, 364.55085116894924], - "engineParts": [225.27988102952338, 237.84608507817939], - "food": [19.110031460734973, 22], - "fuel": [43.77857009878696, 60.32988065936945], - "fuelium": [74.58467115960858, 83.66890166185058], - "gold": [831.237098769035, 843.6690227823267], - "goldOre": [61.09228480649371, 72.77854189992537], - "hullPlates": [38.104059481375316, 44.70658526132395], - "hydrogen": [66.70781231711689, 84.44509791188578], - "ice": [13.446227413689247, 25.082857954170873], - "metals": [72.16782446686408, 79.78389112241793], - "ore": [15.971352333505804, 22.77884409967021], - "silica": [34.45185977023576, 52.64306612575669], - "silicon": [35.786279415532675, 41.26680261465205], - "superconductors": [516.2768382325216, 533.8891386424159], - "tauMetal": [368.7057702596908, 381.80600382805954], - "water": [26.491698232748334, 41.482132994420965] + "coolant": [116.8022265076621, 122.76677444144019], + "drones": [1093.0209944929804, 1105.7770858969238], + "electronics": [231.43545038712574, 243.2044431750465], + "engineParts": [236.6292453025995, 255.19689804038296], + "food": [21.54136231829976, 36.49529608657091], + "fuel": [69.65774223639487, 80.33728510981729], + "fuelium": [59.089714502960355, 66.77403327505183], + "gold": [638.2787636790708, 654.848278489471], + "goldOre": [64.25978093908742, 70.401413017602], + "hullPlates": [53.194061004305496, 60.50967243393392], + "hydrogen": [49.794585344567004, 56.34659683562727], + "ice": [25.448604358565397, 25.90572087171308], + "metals": [95.5642487033555, 102.78866529567269], + "ore": [26.77340024616862, 42.23571894228429], + "silica": [41.835844626055504, 53.77509364457654], + "silicon": [35.45065310038209, 42.59375130771758], + "superconductors": [489.7554996786147, 503.8816174180955], + "tauMetal": [275.50156186712775, 284.0460395513254], + "water": [34, 36] }, "lastPriceAdjust": { "commodities": { @@ -125534,117 +123645,117 @@ "offers": { "coolant": { "active": false, - "price": 88, + "price": 122, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 956, + "price": 1103, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 352, + "price": 239, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 233, + "price": 250, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 21, - "quantity": 8402, + "active": false, + "price": 30, + "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 45, + "price": 70, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 74, + "price": 61, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 832, + "price": 654, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 70, + "price": 69, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 43, + "price": 58, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 82, + "price": 50, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 23, - "quantity": 0, + "active": true, + "price": 25, + "quantity": 42150, "type": "buy" }, "metals": { "active": false, - "price": 73, + "price": 99, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 21, + "price": 31, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 38, + "price": 45, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 40, + "price": 35, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 530, + "price": 496, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 371, + "price": 276, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 34, - "quantity": 1737, - "type": "buy" + "price": 35, + "quantity": 27547, + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -125661,17 +123772,17 @@ }, "name": { "name": "name", - "value": "AMS GJ 1002 III Hub", + "value": "AMS Wolf 1061 III Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2082], + "ids": [2201, 2213], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -125683,39 +123794,105 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 240, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 4800, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 120, "produces": 0 } + "water": { "consumes": 0, "produces": 3600 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1284, + "id": 1333, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1284, + "id": 1333, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1334, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1333, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1335, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1333, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1336, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1333, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -125739,14 +123916,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 5.933333333333342, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -125760,7 +123937,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.466666666666671 + "water": 0 } }, "name": "production", @@ -125770,57 +123947,40 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 240, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 120, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, "produced": true, "mask": "BigInt:1099511627776" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1285, - "tags": ["facilityModule", "facilityModuleType:hub"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1284, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1286, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1337, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1284, + "id": 1333, "mask": "BigInt:549755813888" }, "name": { @@ -125835,268 +123995,139 @@ } }, "cooldowns": { "timers": {} }, - "id": 1287, + "id": 1338, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1284, + "id": 1333, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Water Production", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8235294117647598 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1288, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1339, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1284, + "id": 1333, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1289, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1340, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1284, + "id": 1333, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Water Production", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1290, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "budget": { - "allocationIdCounter": 45, - "allocations": [], - "available": 63810, - "money": 63810, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [1292, 1293, 1294, 1295, 1296, 1297], - "mask": "BigInt:68719476736" - }, - "position": { - "name": "position", - "angle": 0, - "coord": [-0.9400699144409117, -3.633369890658871], - "sector": 31, - "moved": false, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 16737253, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fHub", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 45, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3531, - "type": "incoming", - "meta": { "tradeId": "1291:2081:sell:3531" }, - "id": 44 - } - ], - "max": 20000, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 9811, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6761 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 9811, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6761 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 13333, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6666 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [88.26431959160861, 107.33797473147693], - "drones": [1687.3566983208236, 1696.9687918122916], - "electronics": [207.42068679616375, 223.26081649336965], - "engineParts": [419.0045606999142, 432.2003660961656], - "food": [13.425573864482931, 20.93548387096774], - "fuel": [49.50101472615085, 66.40275005212061], - "fuelium": [44.600118965040096, 60.058248822851255], - "gold": [913.4603523272475, 933.2966024405284], - "goldOre": [75.45248302437295, 84.76406879413226], - "hullPlates": [56.15110843648242, 61.62774881485527], - "hydrogen": [42.21254643766433, 62.03694318496649], - "ice": [25.31195012030206, 31.753561033751634], - "metals": [74.46899736997175, 86.94753572225913], - "ore": [31.643179704993496, 37.29492181045207], - "silica": [49.861886427549265, 63.71507910239439], - "silicon": [26.744022196410302, 34.82469344057188], - "superconductors": [499.2263529613056, 514.9048214152133], - "tauMetal": [556.1351457736324, 564.1518051516919], - "water": [41.058050684793415, 42.91222920663898] - }, - "lastPriceAdjust": { - "commodities": { + "production": { + "buffer": { + "production": { "coolant": 0, "drones": 0, "electronics": 0, @@ -126115,195 +124146,98 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 - }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 99, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": false, - "price": 1688, - "quantity": 0, - "type": "buy" - }, - "electronics": { - "active": false, - "price": 212, - "quantity": 0, - "type": "buy" - }, - "engineParts": { - "active": false, - "price": 431, - "quantity": 0, - "type": "buy" - }, - "food": { - "active": true, - "price": 20, - "quantity": 3522, - "type": "buy" - }, - "fuel": { - "active": false, - "price": 62, - "quantity": 0, - "type": "buy" - }, - "fuelium": { - "active": false, - "price": 55, - "quantity": 0, - "type": "buy" - }, - "gold": { - "active": false, - "price": 921, - "quantity": 0, - "type": "buy" - }, - "goldOre": { - "active": false, - "price": 78, - "quantity": 0, - "type": "buy" - }, - "hullPlates": { - "active": false, - "price": 57, - "quantity": 0, - "type": "buy" - }, - "hydrogen": { - "active": false, - "price": 58, - "quantity": 0, - "type": "buy" - }, - "ice": { - "active": false, - "price": 26, - "quantity": 0, - "type": "buy" - }, - "metals": { - "active": false, - "price": 77, - "quantity": 0, - "type": "buy" - }, - "ore": { - "active": false, - "price": 33, - "quantity": 0, - "type": "buy" - }, - "silica": { - "active": false, - "price": 57, - "quantity": 0, - "type": "buy" - }, - "silicon": { - "active": false, - "price": 32, - "quantity": 0, - "type": "buy" - }, - "superconductors": { - "active": false, - "price": 511, - "quantity": 0, - "type": "buy" - }, - "tauMetal": { - "active": false, - "price": 557, - "quantity": 0, - "type": "buy" + "water": 0.8235294117647598 }, - "water": { - "active": true, - "price": 42, - "quantity": 0, - "type": "buy" + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 } }, - "mask": "BigInt:34359738368" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 100000, "regen": 0, "value": 100000 }, - "mask": "BigInt:1048576" - }, - "name": { - "name": "name", - "value": "AMS Wolf 1061 III Hub", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [2081], - "mask": "BigInt:4294967296" - }, - "crew": { - "name": "crew", - "workers": { "current": 3.5, "max": 14 }, - "mood": 50, - "mask": "BigInt:140737488355328" - }, - "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, - "compoundProduction": { - "name": "compoundProduction", + "name": "production", + "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 256, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 128, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, - "mask": "BigInt:1024" + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1291, - "tags": ["selection", "facility"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1341, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1291, + "id": 1333, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1342, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1333, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -126327,14 +124261,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.3333333333333499, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -126348,7 +124282,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3.666666666666675 + "water": 0 } }, "name": "production", @@ -126358,139 +124292,40 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 256, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 128, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, "produced": true, "mask": "BigInt:1099511627776" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1292, - "tags": ["facilityModule", "facilityModuleType:hub"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1291, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1293, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1291, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1294, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1291, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1295, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1291, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1296, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1343, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1291, + "id": 1333, "mask": "BigInt:549755813888" }, "name": { @@ -126513,41 +124348,16 @@ } }, "cooldowns": { "timers": {} }, - "id": 1297, + "id": 1344, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 99, - "allocations": [ - { - "amount": 12640, - "issued": 3378, - "meta": { "tradeId": "1298:2090:sell:3378" }, - "id": 94 - }, - { - "amount": 3476, - "issued": 3459, - "meta": { "tradeId": "1298:2085:sell:3459" }, - "id": 95 - }, - { - "amount": 7384, - "issued": 3462, - "meta": { "tradeId": "1217:2079:buy:3462" }, - "id": 96 - }, - { - "amount": 3120, - "issued": 3570, - "meta": { "tradeId": "1217:2080:buy:3570" }, - "id": 98 - } - ], - "available": 599523, - "money": 626143, + "allocationIdCounter": 1, + "allocations": [], + "available": 1585969, + "money": 1585969, "name": "budget", "mask": "BigInt:16" }, @@ -126565,13 +124375,15 @@ }, "modules": { "name": "modules", - "ids": [1299, 1300, 1301, 1302, 1303, 1304, 1305, 1306, 1307], + "ids": [ + 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353, 1354, 1355, 1356 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-19.22955377734092, -17.003512519309098], + "coord": [7.458476556090002, 18.996667304924326], "sector": 31, "moved": false, "mask": "BigInt:2199023255552" @@ -126581,13 +124393,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 196, + "allocationIdCounter": 7, "allocations": [ { "amount": { @@ -126596,14 +124408,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -126611,10 +124423,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3294, - "type": "incoming", - "meta": { "tradeId": "1298:2078:sell:3294" }, - "id": 185 + "issued": 300, + "type": "outgoing", + "meta": { "tradeId": "1345:2190:buy:300" }, + "id": 1 }, { "amount": { @@ -126638,10 +124450,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3378, - "type": "incoming", - "meta": { "tradeId": "1298:2090:sell:3378" }, - "id": 189 + "issued": 306, + "type": "outgoing", + "meta": { "tradeId": "1345:2187:buy:306" }, + "id": 2 }, { "amount": { @@ -126657,7 +124469,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 44, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -126665,10 +124477,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3459, - "type": "incoming", - "meta": { "tradeId": "1298:2085:sell:3459" }, - "id": 191 + "issued": 306, + "type": "outgoing", + "meta": { "tradeId": "1345:2188:buy:306" }, + "id": 3 }, { "amount": { @@ -126677,14 +124489,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 142, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 940, "ore": 0, "silica": 0, "silicon": 0, @@ -126692,10 +124504,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3462, - "type": "incoming", - "meta": { "tradeId": "1298:2079:sell:3462" }, - "id": 192 + "issued": 306, + "type": "outgoing", + "meta": { "tradeId": "1345:2189:buy:306" }, + "id": 4 }, { "amount": { @@ -126704,7 +124516,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -126712,82 +124524,109 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 680, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 489, "type": "incoming", - "meta": { "tradeId": "1298:2080:sell:3570" }, - "id": 195 + "meta": { "tradeId": "1345:2212:sell:489" }, + "id": 5 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 6, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1977, + "type": "outgoing", + "meta": { "tradeId": "1345:2193:buy:1977" }, + "id": 6 } ], - "max": 181000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 37334, - "fuel": 15959, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 18854, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 16304, - "ore": 0, + "metals": 16070, + "ore": 15485, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 16179 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 37334, - "fuel": 15959, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 18854, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 16304, - "ore": 0, + "metals": 17496, + "ore": 15485, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 16179 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 69597, - "fuel": 23245, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 53358, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 18559, - "ore": 0, + "metals": 27000, + "ore": 54000, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 16239 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -126796,25 +124635,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [117.15553661797067, 122.29447085792509], - "drones": [979.589518928327, 986.580135532931], - "electronics": [273.1085342594788, 293.0055795508283], - "engineParts": [185.72896416365086, 201.34339806413837], - "food": [16, 18.5364683684259], - "fuel": [54.293385790502036, 60.20485998079711], - "fuelium": [26.845441006351134, 37.335785270173425], - "gold": [921.6274260820442, 933.3724778716245], - "goldOre": [34.54313982776747, 45.27316277753339], - "hullPlates": [44, 53.931276332295454], - "hydrogen": [81.53463110804071, 93.2175394255607], - "ice": [24.712584670148217, 43.37348178965648], - "metals": [77.2885126273916, 82.63949414033321], - "ore": [27.060132034286895, 41.109159107879655], - "silica": [50.299886117292125, 68.91956478491014], - "silicon": [15.561379642849912, 21.313734607812734], - "superconductors": [321.5642243294694, 332.63598756771637], - "tauMetal": [570.8267659471344, 589.8840868442694], - "water": [40.850040025498835, 43] + "coolant": [110.17844728002517, 116.16094356818722], + "drones": [1383.627324321043, 1395.715776835253], + "electronics": [430.6115559069621, 442.4824437374484], + "engineParts": [369.85200108681346, 382.9327837355487], + "food": [13.249038242907812, 18.44066633842326], + "fuel": [37.24873285450751, 52.785035967090074], + "fuelium": [49.86554792292817, 59.24192570578706], + "gold": [448.7477000387281, 463.4331697346094], + "goldOre": [35.708397700264456, 43.478675218517445], + "hullPlates": [39.96420113399721, 47.60407301603193], + "hydrogen": [97.30025226485486, 112.15300133545631], + "ice": [16.817668922722383, 28.2246842454813], + "metals": [76, 78], + "ore": [42, 44], + "silica": [18.626665867625547, 26.02630492390185], + "silicon": [30.214880355354694, 48.66920497440009], + "superconductors": [322.84643207843067, 336.36628266657385], + "tauMetal": [573.3887391713001, 585.9007795649753], + "water": [40.9305668242083, 57.58887583477437] }, "lastPriceAdjust": { "commodities": { @@ -126843,116 +124682,116 @@ "offers": { "coolant": { "active": false, - "price": 117, + "price": 114, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 981, + "price": 1385, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 277, + "price": 434, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 191, + "price": 374, "quantity": 0, "type": "buy" }, "food": { - "active": true, + "active": false, "price": 17, - "quantity": 37334, - "type": "sell" + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 57, - "quantity": 7286, + "active": false, + "price": 39, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 28, + "price": 55, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 933, + "price": 452, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 36, + "price": 41, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, + "active": false, "price": 44, - "quantity": 18854, - "type": "sell" + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 84, + "price": 110, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 31, + "price": 21, "quantity": 0, "type": "buy" }, "metals": { "active": true, - "price": 79, - "quantity": 2255, - "type": "buy" + "price": 76, + "quantity": 16070, + "type": "sell" }, "ore": { - "active": false, - "price": 37, - "quantity": 0, + "active": true, + "price": 43, + "quantity": 38515, "type": "buy" }, "silica": { "active": false, - "price": 68, + "price": 25, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 17, + "price": 33, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 330, + "price": 332, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 573, + "price": 583, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 41, - "quantity": 60, + "active": false, + "price": 51, + "quantity": 0, "type": "buy" } }, @@ -126960,80 +124799,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 800, - "price": 20, - "target": "UEN Large Freighter A", - "time": 578 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 800, - "price": 20, - "target": "UEN Large Freighter A", - "time": 1057 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 6, - "price": 44, - "target": "ACT Courier B", - "time": 1873 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 940, - "price": 44, - "target": "ACT Large Freighter B", - "time": 2254 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 160, - "price": 44, - "target": "ACT Freighter A", - "time": 2258 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 940, - "price": 44, - "target": "ACT Large Freighter B", - "time": 2386 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 160, - "price": 44, - "target": "ACT Freighter A", - "time": 2587 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 940, - "price": 44, - "target": "ACT Large Freighter B", - "time": 2778 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -127043,12 +124809,12 @@ }, "name": { "name": "name", - "value": "AMS Wolf 1061 III Factory", + "value": "AMS Wolf 1061 III Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2080, 2079, 2078], + "ids": [2200, 2212], "mask": "BigInt:4294967296" }, "crew": { @@ -127065,34 +124831,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 1500 }, - "fuel": { "consumes": 501, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 2000 }, + "ore": { "consumes": 4000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 350, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1298, + "id": 1345, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { @@ -127107,14 +124873,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1299, + "id": 1346, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { @@ -127129,115 +124895,156 @@ } }, "cooldowns": { "timers": {} }, - "id": 1300, + "id": 1347, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1298, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1301, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1302, + "id": 1348, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Refinery", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0.6464646464646764, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 31.33333333333298, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1303, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1349, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1304, + "id": 1350, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -127252,10 +125059,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.05555555555562819, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -127269,15 +125076,15 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.833333333333245, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1.333333333333245, - "ore": 0, + "metals": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, @@ -127293,15 +125100,15 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, @@ -127313,24 +125120,46 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1305, + "id": 1351, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1352, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1345, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -127340,7 +125169,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8623188405797233, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -127348,7 +125177,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -127362,7 +125191,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -127370,12 +125199,12 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -127385,45 +125214,67 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1306, + "id": 1353, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1298, + "id": 1345, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1354, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1345, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -127433,7 +125284,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8623188405797233, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -127441,7 +125292,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 0.6464646464646764, "ore": 0, "silica": 0, "silicon": 0, @@ -127455,7 +125306,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -127463,12 +125314,12 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 31.33333333333298, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -127478,49 +125329,72 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 500 }, + "ore": { "consumes": 1000, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 8, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1307, + "id": 1355, "tags": ["facilityModule", "facilityModuleType:production"] }, + { + "components": { + "parent": { + "name": "parent", + "id": 1345, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1356, + "tags": ["facilityModule", "facilityModuleType:military"] + }, { "components": { "budget": { - "allocationIdCounter": 50, - "allocations": [ - { - "amount": 8268, - "issued": 3513, - "meta": { "tradeId": "1193:2076:buy:3513" }, - "id": 49 - } - ], - "available": 669668, - "money": 677936, + "allocationIdCounter": 1, + "allocations": [], + "available": 713880, + "money": 713880, "name": "budget", "mask": "BigInt:16" }, @@ -127539,16 +125413,15 @@ "modules": { "name": "modules", "ids": [ - 1309, 1310, 1311, 1312, 1313, 1314, 1315, 1316, 1317, 1318, 1319, - 1320 + 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365, 1366, 1367, 1368 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [0.6645618656368981, 24.499583860662284], - "sector": 5, + "coord": [-6.372635949496106, -6.859510988431129], + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, @@ -127557,159 +125430,77 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 50, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 160 - }, - "issued": 3489, - "type": "incoming", - "meta": { "tradeId": "1308:2077:sell:3489" }, - "id": 47 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 106, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3504, - "type": "incoming", - "meta": { "tradeId": "1308:2075:sell:3504" }, - "id": 48 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 106, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3513, - "type": "incoming", - "meta": { "tradeId": "1308:2076:sell:3513" }, - "id": 49 - } - ], - "max": 181000, + "allocationIdCounter": 1, + "allocations": [], + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 47874, - "fuel": 17039, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 16531, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 10298, + "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 37431, "superconductors": 0, "tauMetal": 0, - "water": 10386 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 47874, - "fuel": 17039, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 16531, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 10298, + "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 37431, "superconductors": 0, "tauMetal": 0, - "water": 10386 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 97802, - "fuel": 19951, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 29992, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 10432, + "metals": 0, "ore": 0, - "silica": 0, - "silicon": 0, + "silica": 30375, + "silicon": 50625, "superconductors": 0, "tauMetal": 0, - "water": 22820 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -127718,25 +125509,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [116.09638246973084, 132.04133885014315], - "drones": [1053.075452206707, 1072.9112434810022], - "electronics": [165.29939499068843, 180.81650120572607], - "engineParts": [290.45816687798333, 297.58141928481183], - "food": [15.55754671484278, 18.932464219669416], - "fuel": [47.11419854437799, 63.09324343823234], - "fuelium": [31.40889722633898, 50.007327777085855], - "gold": [715.6424144064173, 720.8984267006924], - "goldOre": [42.84979555997998, 62.01578251814167], - "hullPlates": [37, 39], - "hydrogen": [82.72438079019156, 97.1567372468022], - "ice": [12.682729721346892, 26.16854643954573], - "metals": [70.09126004870858, 79.1057825719852], - "ore": [15.810676407142457, 24.116258446360966], - "silica": [18.156799393865647, 23.608353381107626], - "silicon": [26.08161225742688, 32.025287675986476], - "superconductors": [545.7791078241887, 551.9989682014824], - "tauMetal": [351.41594503036345, 362.36348282674567], - "water": [31.036428385693117, 43] + "coolant": [87.90847686669974, 94.03549926321821], + "drones": [947.5330308450716, 963.6178154245796], + "electronics": [234.17212489037118, 250.32796615643767], + "engineParts": [366.01256306742096, 373.62231338664026], + "food": [7.5674536110015085, 26.73045266435931], + "fuel": [58.40439811031619, 67.70846749699376], + "fuelium": [73.22052243301582, 92.93004273021278], + "gold": [771.1481695616409, 791.1166173627986], + "goldOre": [33.787894657168415, 47.87402984511232], + "hullPlates": [43.6921488884217, 59.60488521062852], + "hydrogen": [100.85458439278528, 112.7252576962661], + "ice": [11.786538026425996, 30.399197770954338], + "metals": [82.25992972830903, 97.60025164877175], + "ore": [38.57973424807126, 48.82735380196442], + "silica": [24.602731439434258, 42.525510817158604], + "silicon": [20.142528384963363, 28.899488090370426], + "superconductors": [261.9413914895939, 279.47372435472636], + "tauMetal": [251.39890008106093, 266.04780342010827], + "water": [32.02792419548664, 47.23197430432147] }, "lastPriceAdjust": { "commodities": { @@ -127765,116 +125556,116 @@ "offers": { "coolant": { "active": false, - "price": 117, + "price": 89, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1058, + "price": 952, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 172, + "price": 242, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 291, + "price": 373, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 17, - "quantity": 47874, - "type": "sell" + "active": false, + "price": 16, + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 52, - "quantity": 2912, + "active": false, + "price": 66, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 40, + "price": 74, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 718, + "price": 774, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 58, + "price": 44, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 37, - "quantity": 16531, - "type": "sell" + "active": false, + "price": 53, + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 88, + "price": 106, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 28, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 77, - "quantity": 134, + "active": false, + "price": 95, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 22, + "price": 45, "quantity": 0, "type": "buy" }, "silica": { - "active": false, - "price": 22, - "quantity": 0, + "active": true, + "price": 24, + "quantity": 30375, "type": "buy" }, "silicon": { - "active": false, - "price": 28, - "quantity": 0, - "type": "buy" + "active": true, + "price": 23, + "quantity": 37431, + "type": "sell" }, "superconductors": { "active": false, - "price": 546, + "price": 263, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 353, + "price": 259, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 41, - "quantity": 12434, + "active": false, + "price": 35, + "quantity": 0, "type": "buy" } }, @@ -127892,12 +125683,12 @@ }, "name": { "name": "name", - "value": "AMS Sedna Factory", + "value": "AMS Wolf 1061 III Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2077, 2076, 2075], + "ids": [2199, 2211], "mask": "BigInt:4294967296" }, "crew": { @@ -127914,34 +125705,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 765, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 3600, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 6000 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1308, + "id": 1357, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { @@ -127956,14 +125747,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1309, + "id": 1358, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { @@ -127978,115 +125769,41 @@ } }, "cooldowns": { "timers": {} }, - "id": 1310, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1308, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1311, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1308, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1312, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1308, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1313, + "id": 1359, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1314, + "id": 1360, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -128096,7 +125813,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -128107,7 +125824,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.4918032786884776, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -128118,7 +125835,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -128131,7 +125848,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -128141,8 +125858,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -128151,128 +125868,57 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1315, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1361, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.4298245614034819, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1316, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1362, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -128282,7 +125928,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -128293,7 +125939,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.5719489981784607, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -128304,7 +125950,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -128317,7 +125963,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -128327,8 +125973,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -128337,35 +125983,57 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1317, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1363, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1364, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1357, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -128375,7 +126043,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.4298245614034819, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -128386,7 +126054,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.5719489981784607, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -128397,7 +126065,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -128410,7 +126078,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -128420,8 +126088,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -128430,35 +126098,57 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1318, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1365, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1366, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1357, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -128473,13 +126163,13 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.7923976608187306, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.5719489981784607, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -128490,14 +126180,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.833333333333245, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1.333333333333245, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -128514,147 +126204,78 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 15, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1319, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1367, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1308, + "id": 1357, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.4298245614034819, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1320, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1368, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 41, + "allocationIdCounter": 2, "allocations": [ { - "amount": 46060, - "issued": 3537, - "meta": { "tradeId": "373:2073:buy:3537" }, - "id": 39 - }, - { - "amount": 11685, - "issued": 3558, - "meta": { "tradeId": "1321:2086:sell:3558" }, - "id": 40 + "amount": 28200, + "issued": 321, + "meta": { "tradeId": "1333:2198:buy:321" }, + "id": 1 } ], - "available": 1831774, - "money": 1889519, + "available": 308067, + "money": 336267, "name": "budget", "mask": "BigInt:16" }, @@ -128672,16 +126293,14 @@ }, "modules": { "name": "modules", - "ids": [ - 1322, 1323, 1324, 1325, 1326, 1327, 1328, 1329, 1330, 1331, 1332 - ], + "ids": [1370, 1371, 1372, 1373, 1374, 1375], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-11.57665561747962, -20.463820202380845], - "sector": 24, + "coord": [7.684018962007443, -4.213155101169778], + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, @@ -128690,13 +126309,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fHub", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -128718,158 +126337,77 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 - }, - "issued": 3330, - "type": "incoming", - "meta": { "tradeId": "1321:2072:sell:3330" }, - "id": 37 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 160 - }, - "issued": 3381, - "type": "incoming", - "meta": { "tradeId": "1321:2074:sell:3381" }, - "id": 38 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 940, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3537, - "type": "incoming", - "meta": { "tradeId": "1321:2073:sell:3537" }, - "id": 39 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 285 + "water": 940 }, - "issued": 3558, + "issued": 321, "type": "incoming", - "meta": { "tradeId": "1321:2086:sell:3558" }, - "id": 40 + "meta": { "tradeId": "1369:2198:sell:321" }, + "id": 1 } ], - "max": 181000, + "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 26897, - "fuel": 9421, + "food": 5304, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 42409, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 9939, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 9648 + "water": 2303 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 26897, - "fuel": 9421, + "food": 5304, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 42409, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 9939, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 9648 + "water": 2303 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 59986, - "fuel": 24367, + "food": 13333, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 61319, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 21328, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13996 + "water": 6666 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -128878,25 +126416,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [117.98529295340171, 124.5547292407152], - "drones": [1667.5189742019895, 1683.6527973190439], - "electronics": [233.63974699310347, 242.1233123663765], - "engineParts": [188.6729661492402, 202.98370046187824], - "food": [15, 19.29271781353353], - "fuel": [52.54741163129292, 64.7439113838462], - "fuelium": [46.781667021003464, 54.315928176342936], - "gold": [378.8688530890423, 391.1308138842155], - "goldOre": [79.27031181570156, 95.49326014165086], - "hullPlates": [45, 47], - "hydrogen": [50.60516176385325, 61.5170966010543], - "ice": [13.886229380662634, 20.33076281214271], - "metals": [75.748305404842, 84.98585718939457], - "ore": [18.851893448162365, 30.993616107587258], - "silica": [35.54651719295107, 52.888669489077934], - "silicon": [28.871199253762093, 39.929628192097965], - "superconductors": [427.0879878041129, 441.35969553951753], - "tauMetal": [293.5458220382213, 310.93543682754705], - "water": [35.760977663475565, 42.09411764705882] + "coolant": [67.05743640571743, 73.87437199482274], + "drones": [1709.3846455187734, 1719.3749640237963], + "electronics": [206.57103589693847, 215.5991130026785], + "engineParts": [450.00195765370563, 459.1806005032432], + "food": [18.20516116744808, 22], + "fuel": [50.467625947840716, 56.30096966717591], + "fuelium": [31.178540365004718, 48.09692151775215], + "gold": [566.7600492450142, 579.9697793486306], + "goldOre": [54.71380240371605, 72.87189852072375], + "hullPlates": [27.22234678932871, 41.06528536688178], + "hydrogen": [99.98493900097064, 118.63194386303161], + "ice": [18.180658698361437, 35.72500430693019], + "metals": [36.637271150480515, 48.98426125076561], + "ore": [25.689193042334487, 43.70951419777616], + "silica": [50.955394878711786, 60.195756684763154], + "silicon": [29.366279985784722, 40.721806786631404], + "superconductors": [550.4122654001872, 557.5656920835077], + "tauMetal": [529.8490780749814, 548.0410526072031], + "water": [29.590038812207577, 37.983999999999995] }, "lastPriceAdjust": { "commodities": { @@ -128925,116 +126463,116 @@ "offers": { "coolant": { "active": false, - "price": 123, + "price": 68, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1671, + "price": 1713, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 235, + "price": 211, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 202, + "price": 452, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 16, - "quantity": 26897, - "type": "sell" + "price": 21, + "quantity": 8029, + "type": "buy" }, "fuel": { - "active": true, - "price": 58, - "quantity": 14946, + "active": false, + "price": 51, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 50, + "price": 33, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 387, + "price": 567, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 81, + "price": 55, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": true, - "price": 45, - "quantity": 42409, - "type": "sell" + "active": false, + "price": 27, + "quantity": 0, + "type": "buy" }, "hydrogen": { "active": false, - "price": 54, + "price": 117, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 17, + "price": 28, "quantity": 0, "type": "buy" }, "metals": { - "active": true, - "price": 78, - "quantity": 11389, + "active": false, + "price": 37, + "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 18, + "price": 34, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 51, + "price": 54, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 30, + "price": 37, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 438, + "price": 555, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 301, + "price": 541, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 41, - "quantity": 4348, + "price": 33, + "quantity": 4363, "type": "buy" } }, @@ -129052,17 +126590,17 @@ }, "name": { "name": "name", - "value": "AMS GJ 1002 III Factory", + "value": "AMS Sedna Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2074, 2073, 2072], + "ids": [2198], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 3.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -129074,34 +126612,122 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 2250 }, - "fuel": { "consumes": 914, "produces": 0 }, + "food": { "consumes": 312, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 2300 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 800, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 525, "produces": 0 } + "water": { "consumes": 156, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1321, + "id": 1369, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1369, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Sector Hub", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 2.6645352591003757e-14, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 3.0000000000000133 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 312, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 156, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1370, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1369, "mask": "BigInt:549755813888" }, "name": { @@ -129116,36 +126742,36 @@ } }, "cooldowns": { "timers": {} }, - "id": 1322, + "id": 1371, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1369, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Storage", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 1000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1323, + "id": 1372, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1369, "mask": "BigInt:549755813888" }, "name": { @@ -129168,95 +126794,215 @@ } }, "cooldowns": { "timers": {} }, - "id": 1324, + "id": 1373, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1369, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1325, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1374, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1369, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1326, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1375, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { - "parent": { - "name": "parent", - "id": 1321, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 185560, + "money": 185560, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1327, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1321, - "mask": "BigInt:549755813888" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" + "modules": { + "name": "modules", + "ids": [1377, 1378, 1379, 1380, 1381, 1382], + "mask": "BigInt:68719476736" }, - "production": { - "buffer": { - "production": { + "position": { + "name": "position", + "angle": 0, + "coord": [1.1497079193472448, -2.6923026150384253], + "sector": 24, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16737253, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fHub", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 8196, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 3041 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 8196, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 3041 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 13333, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6666 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [127.2870745097093, 139.3239937365753], + "drones": [1627.5681179340795, 1647.5615796490713], + "electronics": [339.1641426314467, 350.65425268730104], + "engineParts": [222.649371757518, 238.15421342259233], + "food": [13.818609918664443, 22], + "fuel": [62.93513286241235, 78.16718396839141], + "fuelium": [72.44057353873103, 82.87915361109746], + "gold": [396.6715451660043, 405.18423814736144], + "goldOre": [87.26644844515366, 95.56794390180356], + "hullPlates": [42.50120702223464, 58.96568663736237], + "hydrogen": [85.28088467668812, 101.10257360793796], + "ice": [14.763683523515468, 32.17730064785616], + "metals": [56.6937091533578, 62.74196578262318], + "ore": [22.46625035943145, 29.235207587780486], + "silica": [36.937472545761004, 46.599133370507744], + "silicon": [16.0641703479543, 26.428186280728692], + "superconductors": [318.9434114001036, 333.47673491178625], + "tauMetal": [257.68365659456066, 275.04202052620536], + "water": [28.533495454140944, 41.80949585849879] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.6666666666666403, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -129272,74 +127018,193 @@ "tauMetal": 0, "water": 0 }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } + "time": 2700 }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "offers": { + "coolant": { + "active": false, + "price": 132, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1640, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 348, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 232, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 14, + "quantity": 5137, + "type": "buy" + }, + "fuel": { + "active": false, + "price": 64, + "quantity": 0, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 75, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 404, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 90, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 51, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 87, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 20, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 58, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 26, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 44, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 25, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 323, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 270, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 32, + "quantity": 3625, + "type": "buy" + } + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "AMS GJ 1002 III Hub", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2197], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 3.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 100, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "mask": "BigInt:1024" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1328, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1376, + "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1376, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Sector Hub", "mask": "BigInt:137438953472" }, "production": { @@ -129354,7 +127219,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.22222222222226584, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -129370,21 +127235,21 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, + "food": 1.666666666666683, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 1.333333333333245, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.3333333333333415 } }, "name": "production", @@ -129394,55 +127259,310 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, + "food": { "consumes": 200, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, + "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 100, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1377, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1376, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1378, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1376, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1379, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1376, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1329, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1380, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1376, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1381, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1376, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1382, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 205224, + "money": 205224, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [1384, 1385, 1386, 1387, 1388, 1389], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-2.5886966563262472, -7.956111296368023], + "sector": 31, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16737253, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fHub", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 7757, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 3303 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 7757, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 3303 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 13333, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6666 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [58.98950189262957, 71.31461232724796], + "drones": [929.7447507909237, 946.8630855481982], + "electronics": [349.3624797631826, 363.28530174872486], + "engineParts": [206.91844949251055, 223.70744868365537], + "food": [15.673276226691138, 21.182539058705096], + "fuel": [58.61736681075027, 71.51583600403833], + "fuelium": [52.00877887796072, 58.58109512906782], + "gold": [464.7426991775652, 479.5572397341496], + "goldOre": [93.83142762611075, 107.6695266609315], + "hullPlates": [39.512974660034274, 53.12665631903099], + "hydrogen": [93.90526862171154, 102.68357568165683], + "ice": [15.002431449783275, 30.751365271581307], + "metals": [81.8102357613916, 89.37500318467119], + "ore": [36.90421596039501, 50.65604227265334], + "silica": [27.726122845295038, 44.70321939613585], + "silicon": [34.410799837704594, 44.88487567575873], + "superconductors": [316.96192257109163, 323.4691314544413], + "tauMetal": [545.2327300925454, 550.4030675720225], + "water": [31.924902846098306, 43] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.6666666666666403, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -129458,37 +127578,162 @@ "tauMetal": 0, "water": 0 }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 67, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 943, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 354, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 221, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 17, + "quantity": 5576, + "type": "buy" + }, + "fuel": { + "active": false, + "price": 59, + "quantity": 0, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 54, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 471, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 97, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 46, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 98, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 22, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 83, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 38, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 41, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 40, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 318, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 546, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 34, + "quantity": 3363, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "AMS Wolf 1061 III Hub", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2196], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 3.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 292, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -129501,31 +127746,25 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 146, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "mask": "BigInt:1024" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1330, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1383, + "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1383, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Sector Hub", "mask": "BigInt:137438953472" }, "production": { @@ -129535,7 +127774,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.6666666666666403, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -129556,8 +127795,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, + "food": 6.666666666666712, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -129570,7 +127809,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0.333333333333357 } }, "name": "production", @@ -129580,8 +127819,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 292, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -129594,128 +127833,164 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 146, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1384, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1383, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1385, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1383, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1386, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1383, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1331, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1387, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1321, + "id": 1383, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Hull Plates Factory", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0.22222222222226584, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 2.833333333333245, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 1.333333333333245, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 325, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 1150 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 400, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 12, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1332, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1388, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1383, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1389, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 64, + "allocationIdCounter": 2, "allocations": [ { - "amount": 3610, - "issued": 3519, - "meta": { "tradeId": "1253:2071:buy:3519" }, - "id": 63 + "amount": 384, + "issued": 1977, + "meta": { "tradeId": "1345:2193:buy:1977" }, + "id": 1 } ], - "available": 3556090, - "money": 3559700, + "available": 1916496, + "money": 1916880, "name": "budget", "mask": "BigInt:16" }, @@ -129733,13 +128008,15 @@ }, "modules": { "name": "modules", - "ids": [1334, 1335, 1336, 1337, 1338, 1339, 1340, 1341], + "ids": [ + 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-16.41413014528488, 15.64835267607286], + "coord": [-3.0971392259732973, -9.969144691033216], "sector": 24, "moved": false, "mask": "BigInt:2199023255552" @@ -129755,35 +128032,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 64, + "allocationIdCounter": 2, "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 62, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3420, - "type": "incoming", - "meta": { "tradeId": "1333:2070:sell:3420" }, - "id": 61 - }, { "amount": { "coolant": 0, @@ -129806,37 +128056,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3501, - "type": "incoming", - "meta": { "tradeId": "1333:2069:sell:3501" }, - "id": 62 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 38, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, + "issued": 1977, "type": "incoming", - "meta": { "tradeId": "1333:2071:sell:3519" }, - "id": 63 + "meta": { "tradeId": "1390:2193:sell:1977" }, + "id": 1 } ], "max": 181000, @@ -129845,63 +128068,63 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1624, - "fuel": 20, + "food": 63578, + "fuel": 8062, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 2294, + "hullPlates": 21688, "hydrogen": 0, "ice": 0, - "metals": 34, + "metals": 4647, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 406 + "water": 6281 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 1624, - "fuel": 20, + "food": 63578, + "fuel": 8062, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 2294, + "hullPlates": 21688, "hydrogen": 0, "ice": 0, - "metals": 34, + "metals": 4647, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 406 + "water": 6281 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 47004, - "fuel": 25884, + "food": 91614, + "fuel": 20674, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 72074, + "hullPlates": 35118, "hydrogen": 0, "ice": 0, - "metals": 25069, + "metals": 12215, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 10967 + "water": 21376 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -129910,25 +128133,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [122.4644737592343, 132.5544461832319], - "drones": [1757.537145007399, 1764.4984489005046], - "electronics": [370.4533867806076, 381.2712968461037], - "engineParts": [243.36521337587254, 258.3934166673612], - "food": [19.56583123944447, 21.891216184202488], - "fuel": [41.34083461929559, 51.034122475534005], - "fuelium": [62.46313518703614, 78.67263278449765], - "gold": [524.2684902862247, 531.0008729306503], - "goldOre": [73.72187569675961, 85.00032911204215], - "hullPlates": [45.84447768348018, 49.3089101108734], - "hydrogen": [45.94252349446048, 56.96085173994173], - "ice": [19.46486377785506, 29.68747769087507], - "metals": [86.0939896306476, 100], - "ore": [21.537932680915063, 36.90198454602231], - "silica": [25.070890057981906, 33.57422367599092], - "silicon": [20.80565883657169, 28.289867347773978], - "superconductors": [281.544854560214, 290.3668989810607], - "tauMetal": [595.7973192671386, 603.6591124996962], - "water": [24.518328729556877, 40.874469118832934] + "coolant": [67.92028664285861, 83.23063844860866], + "drones": [1641.8906918835296, 1654.475678767937], + "electronics": [296.61086861318597, 302.5161131304936], + "engineParts": [276.9512368209182, 285.6311381716372], + "food": [15, 15.420801763336295], + "fuel": [55.57928902197744, 69.3], + "fuelium": [39.33017563437838, 51.39540621472892], + "gold": [808.0534013209149, 814.0454622964219], + "goldOre": [50.32963363702692, 69.49348178114114], + "hullPlates": [47, 51.48330883744134], + "hydrogen": [88.1047163614899, 100.09959449309194], + "ice": [20.809500669554915, 37.88666133329315], + "metals": [61.78896089708043, 72.42158619092795], + "ore": [33.76527410528682, 43.33108836457147], + "silica": [17.882131128492293, 24.860530547057817], + "silicon": [30.545908641700315, 48.39926372358363], + "superconductors": [256.5321924278999, 267.02748153278657], + "tauMetal": [661.2730657796662, 678.5534325560487], + "water": [29.476799028592076, 43] }, "lastPriceAdjust": { "commodities": { @@ -129957,116 +128180,116 @@ "offers": { "coolant": { "active": false, - "price": 127, + "price": 68, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1759, + "price": 1643, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 380, + "price": 298, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 256, + "price": 279, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 21, - "quantity": 1624, + "price": 15, + "quantity": 63578, "type": "sell" }, "fuel": { "active": true, - "price": 42, - "quantity": 25864, + "price": 67, + "quantity": 12612, "type": "buy" }, "fuelium": { "active": false, - "price": 68, + "price": 48, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 529, + "price": 808, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 83, + "price": 66, "quantity": 0, "type": "buy" }, "hullPlates": { "active": true, - "price": 45, - "quantity": 2294, + "price": 49, + "quantity": 21688, "type": "sell" }, "hydrogen": { "active": false, - "price": 51, + "price": 94, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 19, + "price": 22, "quantity": 0, "type": "buy" }, "metals": { "active": true, - "price": 89, - "quantity": 25035, + "price": 63, + "quantity": 7568, "type": "buy" }, "ore": { "active": false, - "price": 26, + "price": 40, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 30, + "price": 24, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 22, + "price": 38, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 287, + "price": 258, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 598, + "price": 668, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 25, - "quantity": 10561, + "price": 42, + "quantity": 15095, "type": "buy" } }, @@ -130089,7 +128312,7 @@ }, "subordinates": { "name": "subordinates", - "ids": [2071, 2070, 2069], + "ids": [2195, 2194, 2193], "mask": "BigInt:4294967296" }, "crew": { @@ -130106,8 +128329,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 413, "produces": 0 }, + "food": { "consumes": 0, "produces": 3000 }, + "fuel": { "consumes": 677, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -130120,20 +128343,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 700, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1333, + "id": 1390, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130148,14 +128371,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1334, + "id": 1391, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130170,14 +128393,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1335, + "id": 1392, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130200,14 +128423,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1336, + "id": 1393, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130222,14 +128445,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1337, + "id": 1394, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130244,14 +128467,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1338, + "id": 1395, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130266,14 +128489,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1339, + "id": 1396, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130288,7 +128511,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.22222222222222854, + "food": 0.4696969696969102, "fuel": 0, "fuelium": 0, "gold": 0, @@ -130310,7 +128533,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 1.2666666666666893, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -130323,7 +128546,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.16666666666669894 + "water": 0.8333333333333774 } }, "name": "production", @@ -130359,14 +128582,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1340, + "id": 1397, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1333, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -130386,7 +128609,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0.8037037037038246, + "hullPlates": 0.18686868686870817, "hydrogen": 0, "ice": 0, "metals": 0, @@ -130403,14 +128626,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 5.99999999999994, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 11.99999999999994, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, @@ -130452,590 +128675,20 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1341, + "id": 1398, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "budget": { - "allocationIdCounter": 12, - "allocations": [], - "available": 256816, - "money": 256816, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [ - 1343, 1344, 1345, 1346, 1347, 1348, 1349, 1350, 1351, 1352, 1353 - ], - "mask": "BigInt:68719476736" - }, - "position": { - "name": "position", - "angle": 0, - "coord": [5.94414649201952, -2.6090520124025147], - "sector": 29, - "moved": false, - "mask": "BigInt:2199023255552" + "parent": { + "name": "parent", + "id": 1390, + "mask": "BigInt:549755813888" }, - "render": { - "color": 16750653, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fFactory", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 29, - "allocations": [], - "max": 61000, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 1, - "fuel": 3902, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 24, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 1 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 1, - "fuel": 3902, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 24, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 1 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 31926, - "fuel": 3745, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 10216, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 15111 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [89.41214224835102, 104.32628805561635], - "drones": [1730.738859398419, 1750.4159064225994], - "electronics": [425.3046805470697, 440.62061189095084], - "engineParts": [376.17384676722577, 382.284321153558], - "food": [15, 22], - "fuel": [48.651811387914336, 57.41565342950253], - "fuelium": [43.270971710491196, 48.339319715977126], - "gold": [692.213552861709, 701.4679302981427], - "goldOre": [73.02463602410015, 90.03577453551695], - "hullPlates": [61.25794424845263, 68.40384782561596], - "hydrogen": [48.41794849335526, 58.250552555782846], - "ice": [19.991283595799427, 27], - "metals": [47.39866397794876, 52.56550510432313], - "ore": [27.313613709079455, 44.70406907476341], - "silica": [23.998516746518746, 37.98249006912492], - "silicon": [33.08591002070457, 50.9996626978602], - "superconductors": [250.536540270456, 267.0953298387048], - "tauMetal": [398.7514933241504, 417.7415588918411], - "water": [41.26003033065022, 42.998948917478565] - }, - "lastPriceAdjust": { - "commodities": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 98, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": false, - "price": 1738, - "quantity": 0, - "type": "buy" - }, - "electronics": { - "active": false, - "price": 440, - "quantity": 0, - "type": "buy" - }, - "engineParts": { - "active": false, - "price": 376, - "quantity": 0, - "type": "buy" - }, - "food": { - "active": true, - "price": 21, - "quantity": 1, - "type": "sell" - }, - "fuel": { - "active": true, - "price": 55, - "quantity": 0, - "type": "buy" - }, - "fuelium": { - "active": false, - "price": 44, - "quantity": 0, - "type": "buy" - }, - "gold": { - "active": false, - "price": 696, - "quantity": 0, - "type": "buy" - }, - "goldOre": { - "active": false, - "price": 89, - "quantity": 0, - "type": "buy" - }, - "hullPlates": { - "active": false, - "price": 67, - "quantity": 0, - "type": "buy" - }, - "hydrogen": { - "active": false, - "price": 51, - "quantity": 0, - "type": "buy" - }, - "ice": { - "active": true, - "price": 26, - "quantity": 10192, - "type": "buy" - }, - "metals": { - "active": false, - "price": 52, - "quantity": 0, - "type": "buy" - }, - "ore": { - "active": false, - "price": 44, - "quantity": 0, - "type": "buy" - }, - "silica": { - "active": false, - "price": 24, - "quantity": 0, - "type": "buy" - }, - "silicon": { - "active": false, - "price": 45, - "quantity": 0, - "type": "buy" - }, - "superconductors": { - "active": false, - "price": 259, - "quantity": 0, - "type": "buy" - }, - "tauMetal": { - "active": false, - "price": 417, - "quantity": 0, - "type": "buy" - }, - "water": { - "active": true, - "price": 41, - "quantity": 0, - "type": "sell" - } - }, - "mask": "BigInt:34359738368" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 100000, "regen": 0, "value": 100000 }, - "mask": "BigInt:1048576" - }, - "name": { - "name": "name", - "value": "GBF Wolf 1061 I Farming Facility", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [2163, 2162, 2171], - "mask": "BigInt:4294967296" - }, - "crew": { - "name": "crew", - "workers": { "current": 4.999999999999992, "max": 64 }, - "mood": 50, - "mask": "BigInt:140737488355328" - }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, - "compoundProduction": { - "name": "compoundProduction", - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 440, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 900 } - }, - "mask": "BigInt:1024" - } - }, - "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1342, - "tags": ["selection", "facility"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1343, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Storage", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 1000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1344, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1345, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1346, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" }, "production": { "buffer": { @@ -131044,7 +128697,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.4696969696969102, "fuel": 0, "fuelium": 0, "gold": 0, @@ -131066,7 +128719,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -131079,7 +128732,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -131105,191 +128758,24 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 175, "produces": 0 } }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1347, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1348, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1349, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Habitation Dome", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 50, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1350, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1342, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Water Production", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 8.881784197001252e-16 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } - }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1351, + "id": 1399, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1342, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -131304,7 +128790,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.05555555555555469, + "food": 0.4696969696969102, "fuel": 0, "fuelium": 0, "gold": 0, @@ -131326,7 +128812,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.06666666666666687, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -131339,7 +128825,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.16666666666666696 + "water": 0.8333333333333774 } }, "name": "production", @@ -131375,14 +128861,14 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1352, + "id": 1400, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1342, + "id": 1390, "mask": "BigInt:549755813888" }, "name": { @@ -131397,7 +128883,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.4696969696969102, "fuel": 0, "fuelium": 0, "gold": 0, @@ -131419,7 +128905,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -131432,7 +128918,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -131458,7 +128944,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 175, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -131467,17 +128953,24 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1353, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1401, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 1702226, - "money": 1702226, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 600, + "issued": 306, + "meta": { "tradeId": "1402:2205:sell:306" }, + "id": 1 + } + ], + "available": 3130280, + "money": 3130880, "name": "budget", "mask": "BigInt:16" }, @@ -131495,47 +128988,208 @@ }, "modules": { "name": "modules", - "ids": [ - 1355, 1356, 1357, 1358, 1359, 1360, 1361, 1362, 1363, 1364, 1365 - ], + "ids": [1403, 1404, 1405, 1406, 1407, 1408, 1409], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-9.473207549772692, -6.038417369504659], - "sector": 29, + "coord": [17.559687788757195, 8.10125010572321], + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 252, - "allocations": [], - "max": 81000, + "allocationIdCounter": 7, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 6, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "incoming", + "meta": { "tradeId": "1402:2205:sell:306" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "1402:2183:buy:309" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "1402:2184:buy:309" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 348, + "type": "outgoing", + "meta": { "tradeId": "1402:2186:buy:348" }, + "id": 4 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 351, + "type": "outgoing", + "meta": { "tradeId": "1402:2185:buy:351" }, + "id": 5 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 6, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 2952, + "type": "outgoing", + "meta": { "tradeId": "1402:2182:buy:2952" }, + "id": 6 + } + ], + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 9, + "fuel": 13300, + "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 64680, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 13850, "ore": 0, "silica": 0, "silicon": 0, @@ -131549,14 +129203,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 9, + "fuel": 13300, + "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 66886, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 13850, "ore": 0, "silica": 0, "silicon": 0, @@ -131570,14 +129224,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 43615, - "fuelium": 37384, + "fuel": 31373, + "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 111013, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 38613, "ore": 0, "silica": 0, "silicon": 0, @@ -131592,25 +129246,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [83.52910334781234, 96.90027915481947], - "drones": [1164.3644182278917, 1182.0624218290839], - "electronics": [293.1119554604653, 309.89428706845365], - "engineParts": [319.46974658742465, 335.2303853734463], - "food": [16.12871416137574, 27.52353539153745], - "fuel": [42, 48.22840522340797], - "fuelium": [42.757374909003005, 51.37150309095059], - "gold": [731.2686764100208, 744.3572760190492], - "goldOre": [70.98568066255628, 89.66666613401803], - "hullPlates": [42.65414496818018, 62.424255908025295], - "hydrogen": [39.04645089294395, 48.90808313400292], - "ice": [23.664311587724303, 29.311434622716515], - "metals": [44.396045901748764, 56.62157441491864], - "ore": [37.44258847704935, 45.66194272960617], - "silica": [45.06054093138324, 59.46649581964203], - "silicon": [13.026435999215082, 30.032104864515333], - "superconductors": [339.203851165194, 355.434247962224], - "tauMetal": [639.7961901686964, 656.4781913466373], - "water": [35.889587230255415, 54.56951705439682] + "coolant": [102.62596078955418, 116.77870194807144], + "drones": [627.2183383343771, 634.876774134559], + "electronics": [152.85335922184166, 170.10898607740677], + "engineParts": [266.8479718299305, 285.358334710025], + "food": [13.911151534956002, 28.0021124444767], + "fuel": [60.1565645329985, 65.7193853929771], + "fuelium": [64.49541052464465, 80.36851535163011], + "gold": [858.9071970241674, 874.9800162594277], + "goldOre": [77.0317082116517, 90.0393159230727], + "hullPlates": [42.161620887646556, 44.161620887646556], + "hydrogen": [54.814450846128295, 62.74078022833295], + "ice": [13.616034647456294, 24.33859391746884], + "metals": [77.00624978119978, 85.62974877733203], + "ore": [41.4044872278437, 52.74700511173838], + "silica": [35.80426269983724, 54.95737728811889], + "silicon": [16.25948094838999, 30.313762411498907], + "superconductors": [303.9465835964621, 312.3502264033307], + "tauMetal": [538.5286377469563, 545.6337677616331], + "water": [41.127560907334754, 58.98295231315784] }, "lastPriceAdjust": { "commodities": { @@ -131639,115 +129293,115 @@ "offers": { "coolant": { "active": false, - "price": 96, + "price": 104, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1173, + "price": 634, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 306, + "price": 159, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 333, + "price": 284, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 27, + "price": 21, "quantity": 0, "type": "buy" }, "fuel": { "active": true, - "price": 48, - "quantity": 0, - "type": "sell" + "price": 62, + "quantity": 18073, + "type": "buy" }, "fuelium": { - "active": true, - "price": 46, - "quantity": 37375, + "active": false, + "price": 70, + "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 737, + "price": 863, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 76, + "price": 85, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 44, - "quantity": 0, - "type": "buy" + "active": true, + "price": 43, + "quantity": 64680, + "type": "sell" }, "hydrogen": { "active": false, - "price": 44, + "price": 57, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 24, + "price": 23, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 46, - "quantity": 0, + "active": true, + "price": 82, + "quantity": 24763, "type": "buy" }, "ore": { "active": false, - "price": 43, + "price": 52, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 49, + "price": 38, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 24, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 353, + "price": 308, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 651, + "price": 539, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 54, + "price": 55, "quantity": 0, "type": "buy" } @@ -131756,44 +129410,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 19, - "price": 46, - "target": "THT Trader Freighter A", - "time": 1255 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 100, - "price": 39, - "target": "THT Trader Freighter A", - "time": 2781 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 39, - "target": "THT Trader Freighter A", - "time": 2890 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 48, - "target": "THT Trader Courier B", - "time": 3461 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -131803,21 +129420,21 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Mining Complex", + "value": "AMS Wolf 1061 III Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2161, 2170], + "ids": [2192, 2191], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 13.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -131826,14 +129443,14 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 5600 }, - "fuelium": { "consumes": 4800, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, @@ -131845,14 +129462,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1354, + "id": 1402, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1354, + "id": 1402, "mask": "BigInt:549755813888" }, "name": { @@ -131867,14 +129484,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1355, + "id": 1403, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1354, + "id": 1402, "mask": "BigInt:549755813888" }, "name": { @@ -131889,297 +129506,120 @@ } }, "cooldowns": { "timers": {} }, - "id": 1356, + "id": 1404, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1354, + "id": 1402, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1405, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1402, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1357, + "id": 1406, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1354, + "id": 1402, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9777777777776411, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1358, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1354, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1359, + "id": 1407, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1354, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Fuelium Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9777777777776411, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1360, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1354, + "id": 1402, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1361, + "id": 1408, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1354, + "id": 1402, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9777777777776411, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { "coolant": 0, "drones": 0, "electronics": 0, @@ -132189,101 +129629,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": false, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1362, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1354, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1363, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1354, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Fuelium Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.43164983164969684, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.5170940170942657, "hydrogen": 0, "ice": 0, "metals": 0, @@ -132300,14 +129646,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, @@ -132324,14 +129670,14 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, @@ -132339,56 +129685,51 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 12, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1364, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1409, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 1354, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1365, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { - "allocationIdCounter": 32, - "allocations": [], - "available": 5442402, - "money": 5442402, + "allocationIdCounter": 5, + "allocations": [ + { + "amount": 5440, + "issued": 300, + "meta": { "tradeId": "1345:2190:buy:300" }, + "id": 1 + }, + { + "amount": 5440, + "issued": 306, + "meta": { "tradeId": "1345:2187:buy:306" }, + "id": 2 + }, + { + "amount": 5440, + "issued": 306, + "meta": { "tradeId": "1345:2188:buy:306" }, + "id": 3 + }, + { + "amount": 31960, + "issued": 306, + "meta": { "tradeId": "1345:2189:buy:306" }, + "id": 4 + } + ], + "available": 1763382, + "money": 1811662, "name": "budget", "mask": "BigInt:16" }, @@ -132407,30 +129748,31 @@ "modules": { "name": "modules", "ids": [ - 1367, 1368, 1369, 1370, 1371, 1372, 1373, 1374, 1375, 1376, 1377 + 1411, 1412, 1413, 1414, 1415, 1416, 1417, 1418, 1419, 1420, 1421, + 1422 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-6.236868532317078, 8.247173727455808], - "sector": 29, + "coord": [-19.227456751984896, -1.6472114936409348], + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 110, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -132441,12 +129783,12 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 16, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -132454,75 +129796,156 @@ "tauMetal": 0, "water": 0 }, - "issued": 3588, - "type": "outgoing", - "meta": { "tradeId": "1366:2160:buy:3588" }, - "id": 109 + "issued": 300, + "type": "incoming", + "meta": { "tradeId": "1410:2190:sell:300" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 160, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "incoming", + "meta": { "tradeId": "1410:2187:sell:306" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 160, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "incoming", + "meta": { "tradeId": "1410:2188:sell:306" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 940, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "incoming", + "meta": { "tradeId": "1410:2189:sell:306" }, + "id": 4 } ], - "max": 81000, + "max": 181000, "availableWares": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 252, + "electronics": 306, "engineParts": 0, - "food": 0, - "fuel": 4709, + "food": 56568, + "fuel": 10602, "fuelium": 0, "gold": 0, - "goldOre": 8331, - "hullPlates": 0, + "goldOre": 0, + "hullPlates": 16272, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 2997, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 7358 }, "stored": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 252, + "electronics": 306, "engineParts": 0, - "food": 0, - "fuel": 4709, + "food": 56568, + "fuel": 10602, "fuelium": 0, - "gold": 16, - "goldOre": 8331, - "hullPlates": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 16272, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 2997, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 7358 }, "quota": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 389, + "electronics": 1049, "engineParts": 0, - "food": 0, - "fuel": 7614, + "food": 89975, + "fuel": 20304, "fuelium": 0, - "gold": 8552, - "goldOre": 64833, - "hullPlates": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 36289, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 11996, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 20994 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -132531,25 +129954,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [113.5868530703513, 118.6812048289608], - "drones": [1097.6245743432023, 1111.2086943159504], - "electronics": [362.5422148884679, 380.3558215310038], - "engineParts": [377.1971114680281, 384.3498289517958], - "food": [15.636419058150375, 29.991940155199956], - "fuel": [44.84207384978394, 59.07890137016506], - "fuelium": [60.19222982620603, 66.58109760803568], - "gold": [785.9071725912067, 801.6271725912068], - "goldOre": [96, 98], - "hullPlates": [38.94897062603983, 50.171746855183656], - "hydrogen": [56.45132411653719, 66.70362238013459], - "ice": [10.080949377515092, 21.861726925409044], - "metals": [54.25738006570363, 64.55160587474847], - "ore": [27.399276272598144, 33.20425118995449], - "silica": [49.13808390833486, 64.72522686758711], - "silicon": [17.16093577267164, 36.537036140637184], - "superconductors": [269.9562391561653, 289.1388221371299], - "tauMetal": [467.9372836625731, 474.52582936313786], - "water": [35.11871503392329, 45.13579262565628] + "coolant": [127.91124056887791, 147.60692208965165], + "drones": [958.7028706083976, 980.2028706083976], + "electronics": [344.87900356047277, 358.4454547094353], + "engineParts": [347.30707057252926, 361.0251945914467], + "food": [15, 18.167897039489617], + "fuel": [49.41190319989881, 68.71509721763496], + "fuelium": [27.50850201925109, 42.071459112173784], + "gold": [678.1265257523526, 694.5714658872004], + "goldOre": [51.46670269770464, 65.08357494794464], + "hullPlates": [44, 49.56772563819273], + "hydrogen": [77.46993373388422, 93.1989158636448], + "ice": [20.721475493305068, 28.768949921830334], + "metals": [57.0615250663233, 71.823318918964], + "ore": [22.50964277934915, 32.07469086083543], + "silica": [25.56543773049036, 37.920361882221265], + "silicon": [27.24011490822747, 38.525271528010265], + "superconductors": [189.6395422292005, 203.06531678742795], + "tauMetal": [516.4083469623727, 531.001508818813], + "water": [27.304423467020587, 34.19628244269626] }, "lastPriceAdjust": { "commodities": { @@ -132578,116 +130001,116 @@ "offers": { "coolant": { "active": false, - "price": 116, + "price": 129, "quantity": 0, "type": "buy" }, "drones": { - "active": false, - "price": 1109, - "quantity": 0, - "type": "buy" + "active": true, + "price": 959, + "quantity": 252, + "type": "sell" }, "electronics": { - "active": false, - "price": 377, - "quantity": 0, + "active": true, + "price": 349, + "quantity": 743, "type": "buy" }, "engineParts": { "active": false, - "price": 384, + "price": 353, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 28, - "quantity": 0, - "type": "buy" + "active": true, + "price": 17, + "quantity": 56568, + "type": "sell" }, "fuel": { "active": true, - "price": 54, - "quantity": 2905, + "price": 65, + "quantity": 9702, "type": "buy" }, "fuelium": { "active": false, - "price": 62, + "price": 28, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 786, + "active": false, + "price": 693, "quantity": 0, - "type": "sell" - }, - "goldOre": { - "active": true, - "price": 96, - "quantity": 56502, "type": "buy" }, - "hullPlates": { + "goldOre": { "active": false, - "price": 45, + "price": 62, "quantity": 0, "type": "buy" }, + "hullPlates": { + "active": true, + "price": 47, + "quantity": 16152, + "type": "sell" + }, "hydrogen": { "active": false, - "price": 60, + "price": 89, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 14, + "price": 25, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 55, - "quantity": 0, + "active": true, + "price": 59, + "quantity": 8999, "type": "buy" }, "ore": { "active": false, - "price": 30, + "price": 23, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 56, + "price": 32, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 21, + "price": 28, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 284, + "price": 193, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 468, + "price": 519, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 38, - "quantity": 0, + "active": true, + "price": 28, + "quantity": 13636, "type": "buy" } }, @@ -132705,12 +130128,12 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Mining Complex", + "value": "AMS Sedna Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2160, 2169], + "ids": [2190, 2189, 2188, 2187], "mask": "BigInt:4294967296" }, "crew": { @@ -132719,42 +130142,42 @@ "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 552, "produces": 0 }, + "food": { "consumes": 0, "produces": 3000 }, + "fuel": { "consumes": 677, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 620 }, - "goldOre": { "consumes": 4700, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 700, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1366, + "id": 1410, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { @@ -132769,14 +130192,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1367, + "id": 1411, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { @@ -132791,41 +130214,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1368, + "id": 1412, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1413, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1410, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1369, + "id": 1414, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1415, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1410, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1416, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1410, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -132835,10 +130332,10 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.0632183908045949, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -132857,10 +130354,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -132870,7 +130367,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -132880,11 +130377,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -132894,53 +130391,31 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1370, + "id": 1417, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1366, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1371, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -132953,9 +130428,9 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 0.9636015325670693, "hydrogen": 0, "ice": 0, "metals": 0, @@ -132972,14 +130447,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 2.833333333333245, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 1.333333333333245, "ore": 0, "silica": 0, "silicon": 0, @@ -132996,14 +130471,14 @@ "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, @@ -133016,46 +130491,24 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 12, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1372, + "id": 1418, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1366, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1373, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -133065,10 +130518,10 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.0632183908045949, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -133087,10 +130540,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -133100,7 +130553,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -133110,11 +130563,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -133124,53 +130577,124 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1374, + "id": 1419, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0.9517624521072808, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0.16666666666665564, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 25, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1375, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1420, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Gold Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -133180,10 +130704,10 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.0632183908045949, "fuel": 0, "fuelium": 0, - "gold": 0.19335154826957623, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -133202,10 +130726,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 4.600000000000053, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, - "goldOre": 4.16666666666702, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -133215,7 +130739,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -133225,11 +130749,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 138, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 155 }, - "goldOre": { "consumes": 1175, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -133239,58 +130763,146 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1376, + "id": 1421, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1366, + "id": 1410, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.0632183908045949, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1377, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1422, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 1252202, - "money": 1252202, + "allocationIdCounter": 5, + "allocations": [ + { + "amount": 8320, + "issued": 309, + "meta": { "tradeId": "1402:2183:buy:309" }, + "id": 1 + }, + { + "amount": 8320, + "issued": 309, + "meta": { "tradeId": "1402:2184:buy:309" }, + "id": 2 + }, + { + "amount": 48880, + "issued": 348, + "meta": { "tradeId": "1402:2186:buy:348" }, + "id": 3 + }, + { + "amount": 48880, + "issued": 351, + "meta": { "tradeId": "1402:2185:buy:351" }, + "id": 4 + } + ], + "available": 1723450, + "money": 1837850, "name": "budget", "mask": "BigInt:16" }, @@ -133308,31 +130920,29 @@ }, "modules": { "name": "modules", - "ids": [ - 1379, 1380, 1381, 1382, 1383, 1384, 1385, 1386, 1387, 1388, 1389 - ], + "ids": [1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431, 1432], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-13.748923943224385, -29.78173130245905], - "sector": 29, + "coord": [17.4748732728998, 2.678979115760864], + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 171, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -133345,113 +130955,194 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, - "silica": 32, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3591, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "1378:2168:sell:3591" }, - "id": 170 - } - ], - "max": 81000, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 2649, - "silicon": 28, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 2649, - "silicon": 28, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 30375, - "silicon": 50625, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "trade": { - "auto": { "pricing": true, "quantity": true }, + "meta": { "tradeId": "1423:2183:sell:309" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1423:2184:sell:309" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 348, + "type": "incoming", + "meta": { "tradeId": "1423:2186:sell:348" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 351, + "type": "incoming", + "meta": { "tradeId": "1423:2185:sell:351" }, + "id": 4 + } + ], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 535, + "electronics": 1195, + "engineParts": 0, + "food": 88208, + "fuel": 7668, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 2797, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 12371 + }, + "stored": { + "coolant": 0, + "drones": 535, + "electronics": 1195, + "engineParts": 0, + "food": 88208, + "fuel": 7668, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 2797, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 12371 + }, + "quota": { + "coolant": 0, + "drones": 1102, + "electronics": 2968, + "engineParts": 0, + "food": 127225, + "fuel": 14927, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 5089, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 29686 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [97.91072711563186, 114.821247402602], - "drones": [1816.9768403275948, 1826.306654613277], - "electronics": [295.30444600463534, 304.1156328209162], - "engineParts": [448.18101059308896, 458.06369616344074], - "food": [8.499583605783526, 17.31512139783598], - "fuel": [48.680670328778405, 57.094698277367684], - "fuelium": [74.61233822057797, 83.31702103486319], - "gold": [336.8420528260085, 355.1565870122323], - "goldOre": [94.804866360682, 109.80564815729835], - "hullPlates": [33.940457575000096, 48.11043134811823], - "hydrogen": [49.001727687100114, 65.33240756766912], - "ice": [19.888001366681, 30.36011393097141], - "metals": [95.84707939459065, 104.02357654771284], - "ore": [36.643438828847195, 47.82596733051663], - "silica": [38.16046605131761, 51], - "silicon": [29.73593000919958, 33.95631408095859], - "superconductors": [500.5319721875026, 512.9641432256301], - "tauMetal": [313.47101075784485, 330.43011750738407], - "water": [20.442301644874252, 25.583764427452525] + "coolant": [84.6136153744346, 91.41946903474015], + "drones": [1177.7246150635756, 1205.6046150635757], + "electronics": [344.5000932035494, 352.0277439371843], + "engineParts": [426.5615663135031, 433.47724665139117], + "food": [15, 17.993793998336777], + "fuel": [59.51311916351386, 66.21563706301761], + "fuelium": [43.20096016563302, 49.335630063080444], + "gold": [704.6898891214482, 716.1025519882357], + "goldOre": [94.01422420942086, 108.8604931362021], + "hullPlates": [49.48743093295906, 57.93729402566508], + "hydrogen": [67.40106141199064, 85.89357384370797], + "ice": [19.04457389075915, 37.31035986473444], + "metals": [90.72474785796548, 103.54003079567033], + "ore": [33.608727108753186, 47.704023507636805], + "silica": [27.733693150204303, 45.783102827313044], + "silicon": [13.473691804887025, 28.921814852836953], + "superconductors": [545.0134186014566, 554.8452033069436], + "tauMetal": [630.9674319278026, 646.9614634708184], + "water": [23.702194279672042, 38.468] }, "lastPriceAdjust": { "commodities": { @@ -133480,67 +131171,67 @@ "offers": { "coolant": { "active": false, - "price": 101, + "price": 91, "quantity": 0, "type": "buy" }, "drones": { - "active": false, - "price": 1824, - "quantity": 0, - "type": "buy" + "active": true, + "price": 1199, + "quantity": 535, + "type": "sell" }, "electronics": { - "active": false, - "price": 302, - "quantity": 0, + "active": true, + "price": 351, + "quantity": 1773, "type": "buy" }, "engineParts": { "active": false, - "price": 452, + "price": 428, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 10, - "quantity": 0, - "type": "buy" + "active": true, + "price": 16, + "quantity": 88208, + "type": "sell" }, "fuel": { - "active": false, - "price": 51, - "quantity": 0, + "active": true, + "price": 64, + "quantity": 7259, "type": "buy" }, "fuelium": { "active": false, - "price": 79, + "price": 43, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 353, + "price": 710, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 103, + "price": 108, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 45, - "quantity": 0, + "active": true, + "price": 50, + "quantity": 2292, "type": "buy" }, "hydrogen": { "active": false, - "price": 49, + "price": 79, "quantity": 0, "type": "buy" }, @@ -133552,44 +131243,44 @@ }, "metals": { "active": false, - "price": 96, + "price": 93, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 45, + "price": 35, "quantity": 0, "type": "buy" }, "silica": { - "active": true, - "price": 47, - "quantity": 27726, + "active": false, + "price": 28, + "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 31, - "quantity": 28, - "type": "sell" + "active": false, + "price": 13, + "quantity": 0, + "type": "buy" }, "superconductors": { "active": false, - "price": 501, + "price": 548, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 324, + "price": 645, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 21, - "quantity": 0, + "active": true, + "price": 31, + "quantity": 17315, "type": "buy" } }, @@ -133607,12 +131298,12 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Mining Complex", + "value": "AMS Sedna Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2159, 2168], + "ids": [2186, 2185, 2184, 2183], "mask": "BigInt:4294967296" }, "crew": { @@ -133621,42 +131312,42 @@ "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 3600, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 6000 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1378, + "id": 1423, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { @@ -133671,14 +131362,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1379, + "id": 1424, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { @@ -133693,156 +131384,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1380, + "id": 1425, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1426, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1423, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1381, + "id": 1427, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0.6775956284152533, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 15, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1382, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1428, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1383, + "id": 1429, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -133852,7 +131502,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.611111111111108, "fuel": 0, "fuelium": 0, "gold": 0, @@ -133863,7 +131513,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -133874,7 +131524,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -133887,7 +131537,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -133897,8 +131547,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -133907,64 +131557,42 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1384, + "id": 1430, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1378, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1385, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.96925925925926, "electronics": 0, "engineParts": 0, "food": 0, @@ -133978,7 +131606,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -133986,7 +131614,7 @@ "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -134009,21 +131637,21 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -134033,46 +131661,24 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1386, + "id": 1431, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1378, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1387, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1378, + "id": 1423, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Silicon Purification", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -134082,7 +131688,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.611111111111108, "fuel": 0, "fuelium": 0, "gold": 0, @@ -134093,7 +131699,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0.6775956284152533, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -134104,7 +131710,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -134117,7 +131723,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -134127,8 +131733,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -134137,62 +131743,39 @@ "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 900, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 1500 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 15, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1388, + "id": 1432, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 1378, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1389, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 875372, - "money": 875372, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 258, + "issued": 2952, + "meta": { "tradeId": "1402:2182:buy:2952" }, + "id": 1 + } + ], + "available": 8810277, + "money": 8810535, "name": "budget", "mask": "BigInt:16" }, @@ -134210,36 +131793,34 @@ }, "modules": { "name": "modules", - "ids": [ - 1391, 1392, 1393, 1394, 1395, 1396, 1397, 1398, 1399, 1400, 1401 - ], + "ids": [1434, 1435, 1436, 1437, 1438, 1439, 1440], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [19.36203306345656, -0.8370297257817692], - "sector": 32, + "coord": [-22.998240430167524, 2.85740467110832], + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 250, + "allocationIdCounter": 5, "allocations": [ { "amount": { "coolant": 0, - "drones": 0, + "drones": 6, "electronics": 0, "engineParts": 0, "food": 0, @@ -134256,17 +131837,17 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3528, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "1390:2131:buy:3528" }, - "id": 245 + "meta": { "tradeId": "1433:2208:buy:27" }, + "id": 1 }, { "amount": { "coolant": 0, - "drones": 0, + "drones": 160, "electronics": 0, "engineParts": 0, "food": 0, @@ -134283,28 +131864,82 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3576, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "1433:2209:buy:27" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 160, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "1390:2156:buy:3576" }, - "id": 249 + "meta": { "tradeId": "1433:2210:buy:27" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 6, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 2952, + "type": "incoming", + "meta": { "tradeId": "1433:2182:sell:2952" }, + "id": 4 } ], - "max": 81000, + "max": 181000, "availableWares": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 13924, + "electronics": 37604, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 51085, "hydrogen": 0, - "ice": 6563, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -134315,45 +131950,45 @@ }, "stored": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 14250, + "electronics": 37604, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 51085, "hydrogen": 0, - "ice": 6563, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 176 + "water": 0 }, "quota": { "coolant": 0, - "drones": 0, - "electronics": 0, + "drones": 21787, + "electronics": 58657, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 100555, "hydrogen": 0, - "ice": 46285, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 34714 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -134362,25 +131997,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [141.70198367317556, 151.35852891704104], - "drones": [959.2872464875395, 966.5837540389779], - "electronics": [281.77650009804563, 287.79945306225176], - "engineParts": [177.40098533753283, 190.93993310020068], - "food": [15.42344090660273, 28.106066526418388], - "fuel": [26.54578428696417, 45.28095090533616], - "fuelium": [34.13107309328489, 39.78226796769308], - "gold": [777.2261764400828, 784.5361971005458], - "goldOre": [43.796596888995886, 56.91793992161581], - "hullPlates": [38.51886152789825, 58.44477432005371], - "hydrogen": [43.53286972744073, 54.851716112427695], - "ice": [21.674996393696766, 26.624999672154253], - "metals": [51.91697986010783, 62.03668548297516], - "ore": [41.87667560057024, 56.72950103051353], - "silica": [47.15051612942743, 54.85932221413714], - "silicon": [16.89371451733004, 35.08401491796654], - "superconductors": [511.3159748225014, 524.8266268862086], - "tauMetal": [657.5056834174665, 671.2715005524017], - "water": [34.13117278636294, 41.83127472571609] + "coolant": [105.35318782712685, 123.78956471139833], + "drones": [915, 933.3000000000001], + "electronics": [297.71087595991236, 314.602583116418], + "engineParts": [297.4146950819813, 304.4930805253654], + "food": [12.978426591979776, 18.22739395306974], + "fuel": [40.86259375913666, 47.399743521362694], + "fuelium": [67.96023966156835, 75.20201549808121], + "gold": [906.2131184138044, 911.7189324947047], + "goldOre": [63.95437227127407, 76.86920200117848], + "hullPlates": [39.629215179583746, 51.46816392369774], + "hydrogen": [42.88248723767489, 51.16257704245371], + "ice": [11.439601454935122, 27.39774619706602], + "metals": [56.8055328903683, 67.45866801862891], + "ore": [33.04617421116399, 39.28025153751662], + "silica": [22.97559123642364, 41.19841399283953], + "silicon": [33.93485147576483, 40.93899076379658], + "superconductors": [192.08643585307007, 203.66050514439254], + "tauMetal": [640.5496359288563, 649.7505006445707], + "water": [41.8093200429793, 61.68260615377061] }, "lastPriceAdjust": { "commodities": { @@ -134409,117 +132044,117 @@ "offers": { "coolant": { "active": false, - "price": 150, + "price": 110, "quantity": 0, "type": "buy" }, "drones": { - "active": false, - "price": 962, - "quantity": 0, - "type": "buy" + "active": true, + "price": 920, + "quantity": 13924, + "type": "sell" }, "electronics": { - "active": false, - "price": 286, - "quantity": 0, + "active": true, + "price": 313, + "quantity": 21053, "type": "buy" }, "engineParts": { "active": false, - "price": 178, + "price": 301, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 22, + "price": 16, "quantity": 0, "type": "buy" }, "fuel": { "active": false, - "price": 36, + "price": 41, "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 36, + "price": 68, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 781, + "price": 911, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 48, + "price": 73, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 55, - "quantity": 0, + "active": true, + "price": 45, + "quantity": 49470, "type": "buy" }, "hydrogen": { "active": false, - "price": 51, + "price": 47, "quantity": 0, "type": "buy" }, "ice": { - "active": true, - "price": 22, - "quantity": 39722, + "active": false, + "price": 20, + "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 58, + "price": 67, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 50, + "price": 33, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 49, + "price": 27, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 20, + "price": 37, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 515, + "price": 196, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 666, + "price": 641, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 36, + "active": false, + "price": 44, "quantity": 0, - "type": "sell" + "type": "buy" } }, "mask": "BigInt:34359738368" @@ -134536,12 +132171,12 @@ }, "name": { "name": "name", - "value": "GBF GJ 625 Mining Complex", + "value": "AMS Wolf 1061 III Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2158, 2167], + "ids": [2182, 2181], "mask": "BigInt:4294967296" }, "crew": { @@ -134550,42 +132185,42 @@ "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 4800, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 3600 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1390, + "id": 1433, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1390, + "id": 1433, "mask": "BigInt:549755813888" }, "name": { @@ -134600,14 +132235,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1391, + "id": 1434, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1390, + "id": 1433, "mask": "BigInt:549755813888" }, "name": { @@ -134622,393 +132257,122 @@ } }, "cooldowns": { "timers": {} }, - "id": 1392, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1390, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1393, + "id": 1435, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1390, + "id": 1433, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8235294117647598 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1394, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1436, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1390, + "id": 1433, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1395, + "id": 1437, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1390, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Water Production", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8235294117647598 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 4, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1396, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1390, + "id": 1433, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1397, + "id": 1438, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1390, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Water Production", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8235294117647598 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 4, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1398, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1390, + "id": 1433, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1399, + "id": 1439, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1390, + "id": 1433, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Drone Factory", "mask": "BigInt:137438953472" }, "production": { "buffer": { "production": { "coolant": 0, - "drones": 0, + "drones": 0.09888888888888925, "electronics": 0, "engineParts": 0, "food": 0, @@ -135025,12 +132389,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8235294117647598 + "water": 0 }, "consumption": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.16666666666665564, "engineParts": 0, "food": 0, "fuel": 0, @@ -135053,75 +132417,82 @@ "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 13 }, + "electronics": { "consumes": 35, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 60, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 25, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1400, + "id": 1440, "tags": ["facilityModule", "facilityModuleType:production"] }, - { - "components": { - "parent": { - "name": "parent", - "id": 1390, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1401, - "tags": ["facilityModule", "facilityModuleType:military"] - }, { "components": { "budget": { - "allocationIdCounter": 67, - "allocations": [], - "available": 51667, - "money": 51667, + "allocationIdCounter": 96, + "allocations": [ + { + "amount": 128000, + "issued": 1662, + "meta": { "tradeId": "1321:2177:buy:1662" }, + "id": 41 + }, + { + "amount": 4800, + "issued": 1683, + "meta": { "tradeId": "1321:2178:buy:1683" }, + "id": 43 + }, + { + "amount": 128000, + "issued": 1710, + "meta": { "tradeId": "1321:2179:buy:1710" }, + "id": 45 + }, + { + "amount": 128000, + "issued": 1716, + "meta": { "tradeId": "1321:2176:buy:1716" }, + "id": 46 + }, + { + "amount": 4800, + "issued": 1725, + "meta": { "tradeId": "1321:2180:buy:1725" }, + "id": 47 + }, + { + "amount": 168, + "issued": 3576, + "meta": { "tradeId": "1441:2204:sell:3576" }, + "id": 95 + } + ], + "available": 3994183, + "money": 4387951, "name": "budget", "mask": "BigInt:16" }, @@ -135139,38 +132510,204 @@ }, "modules": { "name": "modules", - "ids": [1403, 1404, 1405, 1406, 1407, 1408], + "ids": [ + 1442, 1443, 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, + 1453 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [1.0371973076578573, -9.853093425886508], - "sector": 16, + "coord": [10.405270243184681, 23.522389697031763], + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 67, - "allocations": [], - "max": 20000, + "allocationIdCounter": 96, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1662, + "type": "incoming", + "meta": { "tradeId": "1441:2177:sell:1662" }, + "id": 41 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 6, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1683, + "type": "incoming", + "meta": { "tradeId": "1441:2178:sell:1683" }, + "id": 43 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1710, + "type": "incoming", + "meta": { "tradeId": "1441:2179:sell:1710" }, + "id": 45 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1716, + "type": "incoming", + "meta": { "tradeId": "1441:2176:sell:1716" }, + "id": 46 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 6, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1725, + "type": "incoming", + "meta": { "tradeId": "1441:2180:sell:1725" }, + "id": 47 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 6, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3576, + "type": "incoming", + "meta": { "tradeId": "1441:2204:sell:3576" }, + "id": 95 + } + ], + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 14861, - "fuel": 0, + "food": 0, + "fuel": 492, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -135180,18 +132717,18 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 504, "superconductors": 0, "tauMetal": 0, - "water": 3379 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 14861, - "fuel": 0, + "food": 0, + "fuel": 492, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -135201,31 +132738,31 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 504, "superconductors": 0, "tauMetal": 0, - "water": 3379 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 3586, "engineParts": 0, - "food": 13333, - "fuel": 0, + "food": 53804, + "fuel": 25443, "fuelium": 0, - "gold": 0, + "gold": 717, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 55000, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 19130, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 10760, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 12554 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -135234,25 +132771,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [50.146111716841204, 56.91835811404531], - "drones": [750.1270636910136, 757.7322713021935], - "electronics": [237.92970038773768, 257.4695828017095], - "engineParts": [253.05925411987516, 260.63823839749136], - "food": [12.665352100231981, 22], - "fuel": [44.78396510992951, 62.68955858178204], - "fuelium": [53.289404123683596, 63.44586358710891], - "gold": [771.813780081734, 782.2594533251422], - "goldOre": [35.760674697619265, 54.862075684313545], - "hullPlates": [66.36505589872986, 83.80538332908651], - "hydrogen": [48.1144552408999, 56.446088215127446], - "ice": [26.80734030613972, 31.835499117689615], - "metals": [74.2790657537182, 80.62835090202803], - "ore": [33.193745182972535, 41.4839813155684], - "silica": [24.476091734838402, 35.03768628587654], - "silicon": [34.491355669350526, 49.42059851150491], - "superconductors": [367.72168725413076, 375.32318643759487], - "tauMetal": [547.699252213122, 563.0640307040737], - "water": [21.058317089240397, 34.485108281317395] + "coolant": [134.87593669740673, 152.9926240286328], + "drones": [1561.8425399283728, 1571.1475383531422], + "electronics": [323, 329.46], + "engineParts": [214.87001042400806, 224.76197665886951], + "food": [17, 22], + "fuel": [68.55547535686138, 77], + "fuelium": [38.73592830126407, 51.18820345344496], + "gold": [781.4988618459081, 790.0007580243245], + "goldOre": [90.83148076452021, 96.92700900589676], + "hullPlates": [38, 43.19730691815381], + "hydrogen": [55.73135351262331, 62.27747040333567], + "ice": [19.047919556986507, 34.32443058638996], + "metals": [46.389290823074155, 54.0859676854173], + "ore": [35.166126919339206, 49.02333506616874], + "silica": [21.88923920937573, 31.430473638675437], + "silicon": [27.438619875565813, 33.88084871896332], + "superconductors": [511.0708322305715, 525.8925882740657], + "tauMetal": [365.5472618545575, 376.98248658059777], + "water": [28.791332761362458, 40.46554483456537] }, "lastPriceAdjust": { "commodities": { @@ -135281,80 +132818,80 @@ "offers": { "coolant": { "active": false, - "price": 56, + "price": 150, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 752, + "price": 1567, "quantity": 0, "type": "buy" }, "electronics": { - "active": false, - "price": 247, + "active": true, + "price": 325, "quantity": 0, - "type": "buy" + "type": "sell" }, "engineParts": { "active": false, - "price": 255, + "price": 221, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 15, + "price": 17, "quantity": 0, - "type": "buy" + "type": "sell" }, "fuel": { - "active": false, - "price": 46, - "quantity": 0, + "active": true, + "price": 69, + "quantity": 24951, "type": "buy" }, "fuelium": { "active": false, - "price": 61, + "price": 44, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 772, - "quantity": 0, + "active": true, + "price": 788, + "quantity": 717, "type": "buy" }, "goldOre": { "active": false, - "price": 36, + "price": 96, "quantity": 0, "type": "buy" }, "hullPlates": { - "active": false, - "price": 79, + "active": true, + "price": 41, "quantity": 0, - "type": "buy" + "type": "sell" }, "hydrogen": { "active": false, - "price": 53, + "price": 61, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 29, + "price": 23, "quantity": 0, "type": "buy" }, "metals": { - "active": false, - "price": 78, - "quantity": 0, + "active": true, + "price": 48, + "quantity": 19130, "type": "buy" }, "ore": { @@ -135365,32 +132902,32 @@ }, "silica": { "active": false, - "price": 32, + "price": 22, "quantity": 0, "type": "buy" }, "silicon": { - "active": false, - "price": 40, - "quantity": 0, + "active": true, + "price": 28, + "quantity": 10256, "type": "buy" }, "superconductors": { "active": false, - "price": 371, + "price": 518, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 549, + "price": 375, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 23, - "quantity": 3287, + "price": 40, + "quantity": 12554, "type": "buy" } }, @@ -135408,61 +132945,201 @@ }, "name": { "name": "name", - "value": "GBF GJ 229 II Hub", + "value": "AMS Sedna Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2157], + "ids": [2180, 2179, 2178, 2177, 2176], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 96, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 2250 }, + "fuel": { "consumes": 1064, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 2300 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 800, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 48, "produces": 0 } + "water": { "consumes": 525, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1402, + "id": 1441, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1402, + "id": 1441, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1442, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1441, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1443, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1441, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1444, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1441, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1445, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1441, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1446, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1441, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1447, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1441, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, "production": { @@ -135493,7 +133170,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 2.533333333333348, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -135507,7 +133184,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.26666666666667393 + "water": 0 } }, "name": "production", @@ -135517,184 +133194,507 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 96, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 48, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 12, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1403, - "tags": ["facilityModule", "facilityModuleType:hub"] + "id": 1448, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1402, + "id": 1441, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Farm", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1404, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1449, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1402, + "id": 1441, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Hull Plates Factory", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 325, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 1150 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 400, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 12, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1405, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1450, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1402, + "id": 1441, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1406, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1451, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1402, + "id": 1441, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 20, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1407, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1452, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1402, + "id": 1441, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1408, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1453, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": 15980, - "issued": 3357, - "meta": { "tradeId": "1409:2153:sell:3357" }, - "id": 22 - }, - { - "amount": 3168, - "issued": 3576, - "meta": { "tradeId": "1390:2156:buy:3576" }, - "id": 24 - } - ], - "available": 100568, - "money": 119716, + "allocationIdCounter": 1, + "allocations": [], + "available": 469553, + "money": 469553, "name": "budget", "mask": "BigInt:16" }, @@ -135712,13 +133712,15 @@ }, "modules": { "name": "modules", - "ids": [1410, 1411, 1412, 1413, 1414, 1415], + "ids": [ + 1455, 1456, 1457, 1458, 1459, 1460, 1461, 1462, 1463, 1464, 1465 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-7.461315878782257, -0.062342633321298635], + "coord": [-23.715707006321537, 19.33112662280167], "sector": 29, "moved": false, "mask": "BigInt:2199023255552" @@ -135728,41 +133730,14 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 2, "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3357, - "type": "incoming", - "meta": { "tradeId": "1409:2153:sell:3357" }, - "id": 22 - }, { "amount": { "coolant": 0, @@ -135776,28 +133751,28 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 160, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3576, + "issued": 351, "type": "incoming", - "meta": { "tradeId": "1409:2156:sell:3576" }, - "id": 24 + "meta": { "tradeId": "1454:2280:sell:351" }, + "id": 1 } ], - "max": 20000, + "max": 61000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 8565, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -135811,14 +133786,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5951 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 8565, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -135832,28 +133807,28 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 5951 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13333, - "fuel": 0, + "food": 31926, + "fuel": 3745, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 10216, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 15111 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -135862,25 +133837,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [94.90517032240385, 100.33762640709885], - "drones": [1137.0674552808825, 1146.9210600727058], - "electronics": [228.68473907979762, 235.59730162676834], - "engineParts": [223.1999372071919, 239.9225265941131], - "food": [16.651734597178656, 19.551612903225806], - "fuel": [65.25091495006052, 79.87392679789552], - "fuelium": [51.25884404011177, 67.88967385995576], - "gold": [345.9110626598631, 353.0839353297069], - "goldOre": [71.88654192664609, 85.7505654880528], - "hullPlates": [39.105874356691736, 50.69873806848185], - "hydrogen": [102.85170685015163, 117.42155072228826], - "ice": [19.697174687689618, 25.32607782278974], - "metals": [40.149834806086844, 52.47330223179753], - "ore": [16.18912540796967, 33.53860145222082], - "silica": [46.6179924559563, 55.023862823546146], - "silicon": [22.000939101235197, 28.431853110185266], - "superconductors": [455.01600053334255, 470.46812697041867], - "tauMetal": [408.94253340126784, 426.11511988454777], - "water": [27.530627763007974, 40.67058823529412] + "coolant": [107.0156348641363, 117.63950289105298], + "drones": [924.9690123966161, 940.3905174534694], + "electronics": [361.1877272305946, 372.9374247697446], + "engineParts": [211.94378834667563, 231.24346019771582], + "food": [16, 22], + "fuel": [46.69276842133759, 52.602782215401255], + "fuelium": [62.555067106457116, 75.03137600807716], + "gold": [536.7068776460666, 546.7221703087382], + "goldOre": [45.93336104061701, 53.855553851785224], + "hullPlates": [59.86237500737929, 67.16179938177027], + "hydrogen": [101.97549634524485, 116.20605063539067], + "ice": [27, 29], + "metals": [37.76367440024678, 49.85770412658268], + "ore": [31.81473680988921, 37.528429229884125], + "silica": [37.890334882124634, 55.678222295555216], + "silicon": [12.534311565809283, 30.09594875660079], + "superconductors": [545.9737676689432, 555.2736795125065], + "tauMetal": [340.67775696007357, 346.6584381812153], + "water": [38.766370781702165, 43] }, "lastPriceAdjust": { "commodities": { @@ -135909,117 +133884,117 @@ "offers": { "coolant": { "active": false, - "price": 95, + "price": 108, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1145, + "price": 932, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 230, + "price": 362, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 226, + "price": 228, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 17, - "quantity": 4768, - "type": "buy" + "price": 19, + "quantity": 0, + "type": "sell" }, "fuel": { - "active": false, - "price": 77, - "quantity": 0, + "active": true, + "price": 49, + "quantity": 3745, "type": "buy" }, "fuelium": { "active": false, - "price": 57, + "price": 71, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 346, + "price": 540, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 76, + "price": 48, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 45, + "price": 66, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 108, + "price": 115, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 21, - "quantity": 0, + "active": true, + "price": 28, + "quantity": 10216, "type": "buy" }, "metals": { "active": false, - "price": 41, + "price": 38, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 23, + "price": 36, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 51, + "price": 46, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 23, + "price": 16, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 460, + "price": 548, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 424, + "price": 344, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 36, - "quantity": 715, - "type": "buy" + "price": 41, + "quantity": 0, + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -136036,17 +134011,17 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Hub", + "value": "GBF Wolf 1061 I Farming Facility", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2156], + "ids": [2272, 2271, 2280], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 4.999999999999992, "max": 64 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -136058,58 +134033,102 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 448, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 3750 }, + "fuel": { "consumes": 440, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 224, "produces": 0 } + "water": { "consumes": 875, "produces": 900 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1409, + "id": 1454, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1409, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1455, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1454, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1456, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1454, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -136121,7 +134140,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 4.933333333333353, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -136135,7 +134154,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.46666666666667656 + "water": 0 } }, "name": "production", @@ -136145,8 +134164,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 448, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -136159,95 +134178,234 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 224, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 0 } }, - "id": 1410, - "tags": ["facilityModule", "facilityModuleType:hub"] + "id": 1457, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1409, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Habitat", + "value": "Farm", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1411, - "tags": ["facilityModule", "facilityModuleType:habitat"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1458, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1409, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Farm", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1412, - "tags": ["facilityModule", "facilityModuleType:storage"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1459, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1409, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1413, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1460, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1409, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { @@ -136270,180 +134428,46 @@ } }, "cooldowns": { "timers": {} }, - "id": 1414, + "id": 1461, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1409, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Habitation Dome", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 50, + "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1415, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1462, + "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { - "budget": { - "allocationIdCounter": 74, - "allocations": [], - "available": 9, - "money": 9, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [1417, 1418, 1419, 1420, 1421, 1422], - "mask": "BigInt:68719476736" - }, - "position": { - "name": "position", - "angle": 0, - "coord": [3.421954887258927, 3.522980228877202], - "sector": 32, - "moved": false, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 16750653, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fHub", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" + "parent": { + "name": "parent", + "id": 1454, + "mask": "BigInt:549755813888" }, - "storage": { - "allocationIdCounter": 72, - "allocations": [], - "max": 20000, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 13290, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6633 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 13290, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6633 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 13333, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6666 - }, - "name": "storage", - "mask": "BigInt:35184372088832" + "name": { + "name": "name", + "value": "Water Production", + "mask": "BigInt:137438953472" }, - "trade": { - "auto": { "pricing": true, "quantity": true }, - "name": "trade", - "pricing": { - "coolant": [115.14829862870445, 127.28195516199892], - "drones": [798.271051046615, 814.3471021500413], - "electronics": [311.60775020930816, 321.4279758709087], - "engineParts": [448.4981115891221, 459.71144666541187], - "food": [13.09, 22], - "fuel": [46.42452027247555, 62.455900419549224], - "fuelium": [62.74735808707817, 78.97597833588205], - "gold": [789.1641262689661, 797.7039333762884], - "goldOre": [67.52489313713795, 86.3530865945313], - "hullPlates": [62.603658343045524, 70.17982941610076], - "hydrogen": [87.45157939274338, 100.3195007553751], - "ice": [17.894533085880127, 25.78556826032011], - "metals": [51.89392880088364, 68.81572831612326], - "ore": [16.270515793459502, 22.16574074032932], - "silica": [45.228706422350115, 54.477872689524126], - "silicon": [22.813245888090066, 34.93428502410988], - "superconductors": [523.986690031717, 542.3718485150821], - "tauMetal": [642.6139172371494, 654.085732271189], - "water": [38.322550712958986, 43] - }, - "lastPriceAdjust": { - "commodities": { + "production": { + "buffer": { + "production": { "coolant": 0, "drones": 0, "electronics": 0, @@ -136464,193 +134488,74 @@ "tauMetal": 0, "water": 0 }, - "time": 2700 - }, - "offers": { - "coolant": { - "active": false, - "price": 118, - "quantity": 0, - "type": "buy" - }, - "drones": { - "active": false, - "price": 803, - "quantity": 0, - "type": "buy" - }, - "electronics": { - "active": false, - "price": 319, - "quantity": 0, - "type": "buy" - }, - "engineParts": { - "active": false, - "price": 457, - "quantity": 0, - "type": "buy" - }, - "food": { - "active": true, - "price": 18, - "quantity": 43, - "type": "buy" - }, - "fuel": { - "active": false, - "price": 49, - "quantity": 0, - "type": "buy" - }, - "fuelium": { - "active": false, - "price": 69, - "quantity": 0, - "type": "buy" - }, - "gold": { - "active": false, - "price": 794, - "quantity": 0, - "type": "buy" - }, - "goldOre": { - "active": false, - "price": 77, - "quantity": 0, - "type": "buy" - }, - "hullPlates": { - "active": false, - "price": 62, - "quantity": 0, - "type": "buy" - }, - "hydrogen": { - "active": false, - "price": 90, - "quantity": 0, - "type": "buy" - }, - "ice": { - "active": false, - "price": 22, - "quantity": 0, - "type": "buy" - }, - "metals": { - "active": false, - "price": 63, - "quantity": 0, - "type": "buy" - }, - "ore": { - "active": false, - "price": 21, - "quantity": 0, - "type": "buy" - }, - "silica": { - "active": false, - "price": 51, - "quantity": 0, - "type": "buy" - }, - "silicon": { - "active": false, - "price": 27, - "quantity": 0, - "type": "buy" - }, - "superconductors": { - "active": false, - "price": 530, - "quantity": 0, - "type": "buy" - }, - "tauMetal": { - "active": false, - "price": 644, - "quantity": 0, - "type": "buy" - }, - "water": { - "active": true, - "price": 39, - "quantity": 33, - "type": "buy" + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 } }, - "mask": "BigInt:34359738368" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 100000, "regen": 0, "value": 100000 }, - "mask": "BigInt:1048576" - }, - "name": { - "name": "name", - "value": "GBF GJ 625 Hub", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [2155], - "mask": "BigInt:4294967296" - }, - "crew": { - "name": "crew", - "workers": { "current": 3.5, "max": 14 }, - "mood": 50, - "mask": "BigInt:140737488355328" - }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, - "compoundProduction": { - "name": "compoundProduction", + "name": "production", + "active": true, "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 156, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 78, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, - "mask": "BigInt:1024" + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1416, - "tags": ["selection", "facility"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1463, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1416, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -136681,7 +134586,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.8000000000000007, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -136695,7 +134600,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2.4000000000000004 + "water": 0 } }, "name": "production", @@ -136705,8 +134610,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 156, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -136719,157 +134624,121 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 78, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1417, - "tags": ["facilityModule", "facilityModuleType:hub"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1416, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1418, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1416, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1419, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1416, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1420, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1416, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1421, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1464, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1416, + "id": 1454, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1422, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1465, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 48, + "allocationIdCounter": 1, "allocations": [], - "available": 319814, - "money": 319814, + "available": 2301376, + "money": 2301376, "name": "budget", "mask": "BigInt:16" }, @@ -136887,14 +134756,16 @@ }, "modules": { "name": "modules", - "ids": [1424, 1425, 1426, 1427, 1428, 1429, 1430, 1431], + "ids": [ + 1467, 1468, 1469, 1470, 1471, 1472, 1473, 1474, 1475, 1476, 1477 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-15.80342233526532, 3.7723833571596437], - "sector": 32, + "coord": [-28.38283104330208, 2.742783055822558], + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, @@ -136903,13 +134774,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 64, + "allocationIdCounter": 6, "allocations": [ { "amount": { @@ -136918,7 +134789,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 48, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -136933,21 +134804,129 @@ "tauMetal": 0, "water": 0 }, - "issued": 3417, - "type": "incoming", - "meta": { "tradeId": "1423:2154:sell:3417" }, - "id": 63 + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "1466:2273:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 6, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "1466:2274:buy:27" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "1466:2275:buy:27" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "1466:2250:buy:309" }, + "id": 4 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "1466:2251:buy:309" }, + "id": 5 } ], - "max": 181000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 70831, - "fuel": 12739, - "fuelium": 0, + "food": 0, + "fuel": 29227, + "fuelium": 25, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -136959,16 +134938,16 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 27461 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 70831, - "fuel": 12739, - "fuelium": 0, + "food": 0, + "fuel": 29873, + "fuelium": 25, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -136980,16 +134959,16 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 27461 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 134007, - "fuel": 15723, - "fuelium": 0, + "food": 0, + "fuel": 43615, + "fuelium": 37384, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -137001,7 +134980,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -137010,25 +134989,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [70.32095267008424, 76.51813469656685], - "drones": [1739.6103095744722, 1756.0434903504552], - "electronics": [257.5439938104631, 275.8445200593752], - "engineParts": [472.641038492176, 481.435131486216], - "food": [13.396672906113974, 18.654302050542388], - "fuel": [47.28435932797632, 60.15731957129866], - "fuelium": [65.55438333030187, 81.12998911713076], - "gold": [606.3159105003745, 617.3286038637194], - "goldOre": [60.11952241863743, 72.82231162409781], - "hullPlates": [23.52590657338145, 37.734019573774056], - "hydrogen": [91.55634751219273, 103.21464216819919], - "ice": [20.856590880434045, 38.768707482311854], - "metals": [61.68092505243554, 69.05087369520224], - "ore": [29.92759727893405, 35.13708401211049], - "silica": [22.576991328613527, 31.2840368592301], - "silicon": [30.026881803344097, 48.724902887574906], - "superconductors": [241.82145887820428, 251.38240573784938], - "tauMetal": [293.35819946353666, 301.93554378739395], - "water": [39.79870846782725, 43] + "coolant": [126.04990908925959, 135.72977134367503], + "drones": [886.3569953945685, 893.4173667517981], + "electronics": [306.5317617999551, 314.2401349801102], + "engineParts": [443.7531900237604, 461.55286589995796], + "food": [10.52225311960046, 15.659291899637761], + "fuel": [52, 62.90111247605578], + "fuelium": [53.6049323461021, 64.71416007598873], + "gold": [484.2658244554211, 503.28665043508454], + "goldOre": [36.994336049956466, 44.96863032170744], + "hullPlates": [56.17524171783414, 73.35979335750622], + "hydrogen": [53.34137385246247, 61.24602041523592], + "ice": [17.250425094648584, 26.155806571595868], + "metals": [61.93878698359147, 79.39584224460695], + "ore": [33.62010913242409, 47.769771143108834], + "silica": [36.870668505114566, 55.81814949308304], + "silicon": [15.718336010243203, 33.820632348673485], + "superconductors": [309.17183933459535, 317.584531738449], + "tauMetal": [588.8176621257594, 595.4493529984787], + "water": [18.721604881322435, 30.542960996203472] }, "lastPriceAdjust": { "commodities": { @@ -137057,116 +135036,116 @@ "offers": { "coolant": { "active": false, - "price": 76, + "price": 134, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1754, + "price": 893, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 260, + "price": 307, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 480, + "price": 446, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 14, - "quantity": 70831, - "type": "sell" + "active": false, + "price": 13, + "quantity": 0, + "type": "buy" }, "fuel": { "active": true, - "price": 51, - "quantity": 2984, - "type": "buy" + "price": 57, + "quantity": 29227, + "type": "sell" }, "fuelium": { - "active": false, - "price": 67, - "quantity": 0, + "active": true, + "price": 64, + "quantity": 37359, "type": "buy" }, "gold": { "active": false, - "price": 612, + "price": 492, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 66, + "price": 38, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 24, + "price": 61, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 97, + "price": 57, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 25, + "price": 23, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 63, + "price": 79, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 33, + "price": 44, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 28, + "price": 53, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 42, + "price": 26, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 248, + "price": 309, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 295, + "price": 594, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 42, - "quantity": 3807, + "active": false, + "price": 26, + "quantity": 0, "type": "buy" } }, @@ -137184,17 +135163,17 @@ }, "name": { "name": "name", - "value": "GBF GJ 625 Factory", + "value": "GBF Wolf 1061 I Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2154, 2153], + "ids": [2270, 2279], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 11.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -137206,9 +135185,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 1500 }, - "fuel": { "consumes": 176, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 5600 }, + "fuelium": { "consumes": 4800, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -137220,20 +135199,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 350, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1423, + "id": 1466, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { @@ -137248,14 +135227,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1424, + "id": 1467, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { @@ -137270,115 +135249,271 @@ } }, "cooldowns": { "timers": {} }, - "id": 1425, + "id": 1468, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1426, - "tags": ["facilityModule", "facilityModuleType:military"] + "id": 1469, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1427, - "tags": ["facilityModule", "facilityModuleType:storage"] + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.7865319865318501, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1470, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1428, + "id": 1471, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Fuelium Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.7865319865318501, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1472, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1466, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1429, + "id": 1473, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -137388,8 +135523,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.7121212121211471, - "fuel": 0, + "food": 0, + "fuel": 0.7865319865318501, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -137410,7 +135545,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -137423,7 +135558,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -137433,9 +135568,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -137447,31 +135582,53 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1430, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1474, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1423, + "id": 1466, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1475, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1466, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Fuelium Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -137481,8 +135638,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.7121212121211471, - "fuel": 0, + "food": 0, + "fuel": 0.6552188552187186, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -137503,7 +135660,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -137516,7 +135673,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -137526,9 +135683,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -137540,28 +135697,58 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 8, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1431, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1476, "tags": ["facilityModule", "facilityModuleType:production"] }, + { + "components": { + "parent": { + "name": "parent", + "id": 1466, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1477, + "tags": ["facilityModule", "facilityModuleType:military"] + }, { "components": { "budget": { - "allocationIdCounter": 119, + "allocationIdCounter": 1, "allocations": [], - "available": 872992, - "money": 872992, + "available": 6015942, + "money": 6015942, "name": "budget", "mask": "BigInt:16" }, @@ -137579,13 +135766,15 @@ }, "modules": { "name": "modules", - "ids": [1433, 1434, 1435, 1436, 1437, 1438, 1439, 1440, 1441, 1442], + "ids": [ + 1479, 1480, 1481, 1482, 1483, 1484, 1485, 1486, 1487, 1488, 1489 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-17.142198077912685, 11.953251769307329], + "coord": [3.283769229692102, 33.14660953606197], "sector": 29, "moved": false, "mask": "BigInt:2199023255552" @@ -137595,13 +135784,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 157, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -137612,61 +135801,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 82 - }, - "issued": 3447, - "type": "incoming", - "meta": { "tradeId": "1432:2151:sell:3447" }, - "id": 152 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 28, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "incoming", - "meta": { "tradeId": "1432:2149:sell:3483" }, - "id": 154 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, + "gold": 6, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -137679,10 +135814,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3492, + "issued": 303, "type": "outgoing", - "meta": { "tradeId": "1432:2152:buy:3492" }, - "id": 155 + "meta": { "tradeId": "1478:2257:buy:303" }, + "id": 1 }, { "amount": { @@ -137693,7 +135828,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -137704,77 +135839,77 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 78 + "water": 0 }, - "issued": 3552, - "type": "incoming", - "meta": { "tradeId": "1432:2150:sell:3552" }, - "id": 156 + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "1478:2256:buy:309" }, + "id": 2 } ], - "max": 181000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, - "electronics": 1846, + "electronics": 0, "engineParts": 0, - "food": 73606, - "fuel": 11186, + "food": 0, + "fuel": 361, "fuelium": 0, - "gold": 1767, - "goldOre": 0, + "gold": 4501, + "goldOre": 4363, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 17592, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 15395 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, - "electronics": 2006, + "electronics": 0, "engineParts": 0, - "food": 73606, - "fuel": 11186, + "food": 0, + "fuel": 361, "fuelium": 0, - "gold": 1767, - "goldOre": 0, + "gold": 4667, + "goldOre": 4363, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 17592, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 15395 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, - "electronics": 7109, + "electronics": 0, "engineParts": 0, - "food": 106637, - "fuel": 19621, + "food": 0, + "fuel": 7614, "fuelium": 0, - "gold": 1421, - "goldOre": 0, + "gold": 8552, + "goldOre": 64833, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 21327, + "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24882 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -137783,25 +135918,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [77.79142190433063, 90.60879849347438], - "drones": [1444.296543736752, 1460.3747423602363], - "electronics": [316.70427920179, 322.5449340053333], - "engineParts": [356.03919649651544, 364.56568632207313], - "food": [16, 18.21811747578182], - "fuel": [51.07839175890499, 70.94523496082667], - "fuelium": [43.03554756206739, 54.06714739067076], - "gold": [661.6353764404439, 679.8672776256949], - "goldOre": [42.78586494219746, 47.91235375311219], - "hullPlates": [26.42769713638791, 39.363659722519856], - "hydrogen": [74.97613598247284, 81.13873825977049], - "ice": [9.151920586988362, 22.188229449845075], - "metals": [39.3238398534987, 58.91991711011224], - "ore": [25.454654289202526, 34.54656445695633], - "silica": [20.93338923506048, 38.63941292005355], - "silicon": [22.752364782949396, 34.9], - "superconductors": [248.7519827591548, 262.9109043816559], - "tauMetal": [453.1974888820462, 466.68014568243257], - "water": [24.29792723044691, 37.694117647058825] + "coolant": [86.75123185921196, 96.93868273811093], + "drones": [1408.0085247695388, 1425.5297542098647], + "electronics": [308.4402824640274, 323.1940067630043], + "engineParts": [451.479168067232, 458.84142832899386], + "food": [13.72108410640911, 33.430386490508255], + "fuel": [44.37490553673395, 56.09704979031747], + "fuelium": [41.57484631785893, 47.56275420408054], + "gold": [776, 791.52], + "goldOre": [96, 98], + "hullPlates": [58.77298887776743, 73.21078437833988], + "hydrogen": [51.23552028747208, 67.01484842490734], + "ice": [26.395832823866403, 39.22455703149497], + "metals": [89.29953004451718, 103.6938663481473], + "ore": [39.65972925933421, 49.099640234591575], + "silica": [21.25104317307219, 31.285819171121535], + "silicon": [18.752388813244707, 38.61859690235593], + "superconductors": [348.8338883345999, 355.8747843736732], + "tauMetal": [630.7789824986112, 645.7805928175117], + "water": [24.67168959348751, 39.57245440065385] }, "lastPriceAdjust": { "commodities": { @@ -137830,116 +135965,116 @@ "offers": { "coolant": { "active": false, - "price": 89, + "price": 95, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1460, + "price": 1422, "quantity": 0, "type": "buy" }, "electronics": { - "active": true, - "price": 321, - "quantity": 1846, - "type": "sell" + "active": false, + "price": 318, + "quantity": 0, + "type": "buy" }, "engineParts": { "active": false, - "price": 356, + "price": 455, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 16, - "quantity": 73606, - "type": "sell" + "active": false, + "price": 13, + "quantity": 0, + "type": "buy" }, "fuel": { "active": true, - "price": 63, - "quantity": 8435, + "price": 54, + "quantity": 7253, "type": "buy" }, "fuelium": { "active": false, - "price": 51, + "price": 44, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 665, - "quantity": 0, - "type": "buy" + "price": 784, + "quantity": 4501, + "type": "sell" }, "goldOre": { - "active": false, - "price": 47, - "quantity": 0, + "active": true, + "price": 96, + "quantity": 60470, "type": "buy" }, "hullPlates": { "active": false, - "price": 27, + "price": 61, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 80, + "price": 55, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 10, + "price": 37, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 44, + "price": 90, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 25, + "price": 42, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 29, + "price": 23, "quantity": 0, "type": "buy" }, "silicon": { - "active": true, - "price": 23, - "quantity": 3735, + "active": false, + "price": 21, + "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 252, + "price": 355, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 460, + "price": 639, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 28, - "quantity": 9487, + "active": false, + "price": 25, + "quantity": 0, "type": "buy" } }, @@ -137947,35 +136082,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "THT Trader Courier B", - "time": 2068 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 14, - "target": "THT Trader Freighter A", - "time": 2366 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "THT Trader Courier B", - "time": 2644 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -137985,12 +136092,12 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Factory", + "value": "GBF Wolf 1061 I Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2152, 2151, 2150, 2149], + "ids": [2269, 2278], "mask": "BigInt:4294967296" }, "crew": { @@ -138005,36 +136112,36 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 2250 }, - "fuel": { "consumes": 414, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 552, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 620 }, + "goldOre": { "consumes": 4700, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 525, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1432, + "id": 1478, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1432, + "id": 1478, "mask": "BigInt:549755813888" }, "name": { @@ -138049,14 +136156,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1433, + "id": 1479, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1432, + "id": 1478, "mask": "BigInt:549755813888" }, "name": { @@ -138071,115 +136178,41 @@ } }, "cooldowns": { "timers": {} }, - "id": 1434, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1432, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1435, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1432, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1436, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1432, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1437, + "id": 1480, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1432, + "id": 1478, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1438, + "id": 1481, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1432, + "id": 1478, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -138189,10 +136222,10 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.611111111111108, + "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.19335154826957623, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -138211,10 +136244,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 4.600000000000053, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 4.16666666666702, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -138224,7 +136257,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -138234,11 +136267,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -138248,31 +136281,53 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1439, + "id": 1482, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1432, + "id": 1478, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1483, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1478, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -138280,12 +136335,12 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.7222222222222274, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.19335154826957623, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -138304,10 +136359,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 4.600000000000053, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 4.16666666666702, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -138325,20 +136380,20 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -138348,24 +136403,46 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1440, + "id": 1484, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1432, + "id": 1478, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1485, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1478, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -138375,10 +136452,10 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.611111111111108, + "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.19335154826957623, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -138397,10 +136474,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 4.600000000000053, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 4.16666666666702, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -138410,7 +136487,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -138420,11 +136497,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -138434,31 +136511,53 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1441, + "id": 1486, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1432, + "id": 1478, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1487, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1478, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Gold Refinery", "mask": "BigInt:137438953472" }, "production": { @@ -138468,10 +136567,10 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.611111111111108, + "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 0.19335154826957623, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -138490,10 +136589,10 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 4.600000000000053, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 4.16666666666702, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -138503,7 +136602,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -138513,11 +136612,11 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 138, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 155 }, + "goldOre": { "consumes": 1175, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, @@ -138527,28 +136626,58 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1442, + "id": 1488, "tags": ["facilityModule", "facilityModuleType:production"] }, + { + "components": { + "parent": { + "name": "parent", + "id": 1478, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1489, + "tags": ["facilityModule", "facilityModuleType:military"] + }, { "components": { "budget": { - "allocationIdCounter": 52, + "allocationIdCounter": 1, "allocations": [], - "available": 2381945, - "money": 2381945, + "available": 1110920, + "money": 1110920, "name": "budget", "mask": "BigInt:16" }, @@ -138567,15 +136696,14 @@ "modules": { "name": "modules", "ids": [ - 1444, 1445, 1446, 1447, 1448, 1449, 1450, 1451, 1452, 1453, 1454, - 1455 + 1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498, 1499, 1500, 1501 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-3.7720875215233463, 8.475991722179153], + "coord": [31.43885391435828, -15.194922499710707], "sector": 29, "moved": false, "mask": "BigInt:2199023255552" @@ -138585,87 +136713,32 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 90, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "outgoing", - "meta": { "tradeId": "1443:2165:buy:3582" }, - "id": 88 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "outgoing", - "meta": { "tradeId": "1443:2147:buy:3588" }, - "id": 89 - } - ], - "max": 181000, + "allocationIdCounter": 1, + "allocations": [], + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, - "electronics": 11162, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 28450, + "fuel": 0, "fuelium": 0, - "gold": 7493, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 67013, + "silica": 1162, + "silicon": 33638, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -138673,20 +136746,20 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 12262, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 28450, + "fuel": 0, "fuelium": 0, - "gold": 7493, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 67013, + "silica": 1162, + "silicon": 33638, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -138694,20 +136767,20 @@ "quota": { "coolant": 0, "drones": 0, - "electronics": 34807, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 34807, + "fuel": 0, "fuelium": 0, - "gold": 6961, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, - "silica": 0, - "silicon": 104423, + "silica": 30375, + "silicon": 50625, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -138719,25 +136792,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [127.10942719713651, 143.97142457491012], - "drones": [799.0684416870472, 804.7870623937428], - "electronics": [324.3715111709896, 331.32929731033005], - "engineParts": [242.00836311428372, 250.67010894453858], - "food": [21.026629457423027, 30.32521693270332], - "fuel": [62.31890201697941, 72.3262799788686], - "fuelium": [72.22565985401806, 90.54701680834312], - "gold": [654.4563774672255, 673.7814196659978], - "goldOre": [67.87027399962552, 75.44090739490777], - "hullPlates": [54.16778607652993, 63.755734814287834], - "hydrogen": [89.8714889607277, 97.76216566047118], - "ice": [22.340899293982396, 41.41721000397957], - "metals": [45.77962503854843, 60.048129923015296], - "ore": [30.56104383849349, 39.74671657450026], - "silica": [34.16278754948118, 42.94116299406423], - "silicon": [28.427606437627972, 36], - "superconductors": [359.732518613402, 368.0187400791082], - "tauMetal": [314.63676853032734, 324.98572091266925], - "water": [40.170445179401725, 58.907919955395954] + "coolant": [103.52079590761281, 115.13811700638314], + "drones": [880.6694313216389, 888.9673352662628], + "electronics": [269.4850069217413, 281.4390939281031], + "engineParts": [243.14214077960162, 254.13326804395479], + "food": [18.005466007653496, 25.03969220342306], + "fuel": [31.520031066303446, 42.903733429338914], + "fuelium": [53.45178160964394, 67.80368178946998], + "gold": [634.0154380868762, 642.7793647739318], + "goldOre": [89.39886306205277, 94.60460670349734], + "hullPlates": [25.53981380451905, 31.35896342405018], + "hydrogen": [74.33693276809143, 88.18028671859504], + "ice": [13.435965274901328, 19.952096090443494], + "metals": [74.43854789679565, 80.0764927819754], + "ore": [17.411646298349538, 34.12480916309107], + "silica": [35.720156815728245, 42.98070817665611], + "silicon": [24, 26], + "superconductors": [404.23810604002256, 417.98471970098103], + "tauMetal": [440.30077761850185, 450.80441110347175], + "water": [25.723459106622975, 45.33726088887509] }, "lastPriceAdjust": { "commodities": { @@ -138766,115 +136839,115 @@ "offers": { "coolant": { "active": false, - "price": 143, + "price": 107, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 801, + "price": 884, "quantity": 0, "type": "buy" }, "electronics": { - "active": true, - "price": 330, - "quantity": 11162, - "type": "sell" + "active": false, + "price": 271, + "quantity": 0, + "type": "buy" }, "engineParts": { "active": false, - "price": 242, + "price": 251, "quantity": 0, "type": "buy" }, "food": { "active": false, - "price": 27, + "price": 19, "quantity": 0, "type": "buy" }, "fuel": { - "active": true, - "price": 69, - "quantity": 6357, + "active": false, + "price": 37, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 79, + "price": 65, "quantity": 0, "type": "buy" }, "gold": { - "active": true, - "price": 659, + "active": false, + "price": 634, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 73, + "price": 94, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 60, + "price": 29, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 94, + "price": 83, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 34, + "price": 16, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 46, + "price": 75, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 31, + "price": 27, "quantity": 0, "type": "buy" }, "silica": { - "active": false, - "price": 37, - "quantity": 0, + "active": true, + "price": 40, + "quantity": 29213, "type": "buy" }, "silicon": { "active": true, - "price": 34, - "quantity": 37410, - "type": "buy" + "price": 24, + "quantity": 33638, + "type": "sell" }, "superconductors": { "active": false, - "price": 362, + "price": 415, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 315, + "price": 450, "quantity": 0, "type": "buy" }, "water": { "active": false, - "price": 57, + "price": 28, "quantity": 0, "type": "buy" } @@ -138883,44 +136956,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 6, - "price": 35, - "target": "THT Trader Courier B", - "time": 1768 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2179 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "THT Trader Freighter A", - "time": 2407 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 940, - "price": 35, - "target": "THT Trader Large Freighter B", - "time": 2465 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -138930,12 +136966,12 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Factory", + "value": "GBF Wolf 1061 I Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2148, 2147], + "ids": [2268, 2277], "mask": "BigInt:4294967296" }, "crew": { @@ -138950,20 +136986,20 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 900 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 900, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 180, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 2700, "produces": 0 }, + "silica": { "consumes": 3600, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 6000 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -138972,14 +137008,14 @@ } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1443, + "id": 1490, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { @@ -138994,14 +137030,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1444, + "id": 1491, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { @@ -139016,115 +137052,41 @@ } }, "cooldowns": { "timers": {} }, - "id": 1445, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1443, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1446, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1443, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1447, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1443, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1448, + "id": 1492, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1449, + "id": 1493, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -139132,7 +137094,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.7261707988980683, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -139145,7 +137107,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.6775956284152533, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -139177,20 +137139,20 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -139200,117 +137162,46 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1450, + "id": 1494, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0.7261707988980683, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 20, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1451, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1495, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -139318,7 +137209,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.7261707988980683, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -139331,7 +137222,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.6775956284152533, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -139363,20 +137254,20 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -139386,24 +137277,46 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1452, + "id": 1496, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1497, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1490, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -139411,7 +137324,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.7261707988980683, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -139424,7 +137337,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.6775956284152533, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -139456,20 +137369,20 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -139479,24 +137392,46 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1453, + "id": 1498, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1499, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1490, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Silicon Purification", "mask": "BigInt:137438953472" }, "production": { @@ -139504,7 +137439,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.7261707988980683, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -139517,7 +137452,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 0.6775956284152533, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -139549,20 +137484,20 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silica": { "consumes": 900, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 1500 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 0, "produces": 0 } @@ -139572,114 +137507,51 @@ }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 15, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1454, + "id": 1500, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1443, + "id": 1490, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Electronics Factory", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0.7261707988980683, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 150, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 20, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1455, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1501, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 44, + "allocationIdCounter": 1, "allocations": [], - "available": 914517, - "money": 914517, + "available": 1014256, + "money": 1014256, "name": "budget", "mask": "BigInt:16" }, @@ -139697,14 +137569,16 @@ }, "modules": { "name": "modules", - "ids": [1457, 1458, 1459, 1460, 1461, 1462, 1463], + "ids": [ + 1503, 1504, 1505, 1506, 1507, 1508, 1509, 1510, 1511, 1512, 1513 + ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-6.576084190678934, 16.51082717226206], - "sector": 29, + "coord": [6.066785842841757, -3.6232509838935925], + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" }, @@ -139713,13 +137587,13 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 53, + "allocationIdCounter": 39, "allocations": [ { "amount": { @@ -139741,77 +137615,77 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 108 }, - "issued": 3366, - "type": "incoming", - "meta": { "tradeId": "1456:2145:sell:3366" }, - "id": 50 + "issued": 3558, + "type": "outgoing", + "meta": { "tradeId": "1502:2267:buy:3558" }, + "id": 38 } ], - "max": 181000, + "max": 81000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 75709, - "fuel": 9823, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 9447, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14856 + "water": 6041 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 75709, - "fuel": 9823, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 9447, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 14856 + "water": 6149 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 134007, - "fuel": 15723, + "food": 0, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 46285, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 34714 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -139820,25 +137694,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [61.007226487744504, 71.58180746183528], - "drones": [1755.125383894636, 1760.5213806179124], - "electronics": [384.2995454615451, 399.61327686618654], - "engineParts": [208.9329796253284, 227.0391055581515], - "food": [13, 18.748299759601665], - "fuel": [49.65028519438498, 65.1649197112992], - "fuelium": [35.22733435558474, 42.475843832950744], - "gold": [413.2383644284359, 418.55228680624595], - "goldOre": [57.80734804404864, 63.32654489572516], - "hullPlates": [41.310686008180305, 52.74035409166942], - "hydrogen": [70.87684177391705, 81.64721608855994], - "ice": [10.23297413198278, 19.26588031847841], - "metals": [42.55493995083819, 50.888848134325826], - "ore": [31.721671181064302, 42.56549208293103], - "silica": [27.865127373872625, 40.32497842996571], - "silicon": [13.703938246646555, 26.02542545786698], - "superconductors": [504.0268856201756, 516.7372954247094], - "tauMetal": [617.9448539179806, 625.9069757235185], - "water": [32.627097677768475, 43] + "coolant": [79.34769316643454, 98.12886808111514], + "drones": [1620.5532883426952, 1634.0385835631541], + "electronics": [379.4202247315884, 386.2032339030984], + "engineParts": [349.9508070390336, 369.4485057071214], + "food": [10.782153017671813, 27.805261036729977], + "fuel": [45.01193894862145, 57.68859729703821], + "fuelium": [66.17182342012651, 75.58574447134092], + "gold": [543.2128076379565, 561.9698793802381], + "goldOre": [50.50555764498098, 65.86254510787705], + "hullPlates": [29.883560105291185, 45.786742697893665], + "hydrogen": [60.60255811846412, 67.53078784560071], + "ice": [27, 29], + "metals": [67.63352623986357, 73.46789560402586], + "ore": [36.20192474053395, 48.210082572830785], + "silica": [35.794500644357775, 46.77239963641223], + "silicon": [27.798042850530017, 41.20020894830732], + "superconductors": [397.52428307544983, 412.5879302354894], + "tauMetal": [370.0435362247699, 381.43802423732177], + "water": [36, 37.379674699017905] }, "lastPriceAdjust": { "commodities": { @@ -139867,117 +137741,117 @@ "offers": { "coolant": { "active": false, - "price": 71, + "price": 93, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1760, + "price": 1621, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 399, + "price": 381, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 221, + "price": 360, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 14, - "quantity": 75709, - "type": "sell" + "active": false, + "price": 16, + "quantity": 0, + "type": "buy" }, "fuel": { - "active": true, - "price": 58, - "quantity": 5900, + "active": false, + "price": 50, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 36, + "price": 72, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 416, + "price": 549, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 61, + "price": 63, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 46, + "price": 44, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 81, + "price": 61, "quantity": 0, "type": "buy" }, "ice": { - "active": false, - "price": 10, - "quantity": 0, + "active": true, + "price": 27, + "quantity": 36838, "type": "buy" }, "metals": { "active": false, - "price": 47, + "price": 69, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 36, + "price": 37, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 27, + "price": 43, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 20, + "price": 28, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 510, + "price": 411, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 625, + "price": 370, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 35, - "quantity": 16412, - "type": "buy" + "price": 36, + "quantity": 6041, + "type": "sell" } }, "mask": "BigInt:34359738368" @@ -139994,17 +137868,17 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Factory", + "value": "GBF GJ 625 Mining Complex", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2146, 2145], + "ids": [2267, 2276], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 6.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -140016,34 +137890,34 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 4800, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 3600 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1456, + "id": 1502, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1456, + "id": 1502, "mask": "BigInt:549755813888" }, "name": { @@ -140058,14 +137932,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1457, + "id": 1503, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1456, + "id": 1502, "mask": "BigInt:549755813888" }, "name": { @@ -140080,115 +137954,386 @@ } }, "cooldowns": { "timers": {} }, - "id": 1458, + "id": 1504, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1456, + "id": 1502, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Medium Container", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1505, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1502, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8235294117647598 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": true, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 4, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1459, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 1 } }, + "id": 1506, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1456, + "id": 1502, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1460, + "id": 1507, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1456, + "id": 1502, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Water Production", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8235294117647598 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1508, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1502, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1461, + "id": 1509, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1456, + "id": 1502, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Water Production", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8235294117647598 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1510, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1502, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 60000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1462, + "id": 1511, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1456, + "id": 1502, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Water Production", "mask": "BigInt:137438953472" }, "production": { @@ -140198,7 +138343,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.16666666666660745, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -140212,7 +138357,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8235294117647598 }, "consumption": { "coolant": 0, @@ -140220,7 +138365,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0.9333333333333642, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -140233,7 +138378,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 0 } }, "name": "production", @@ -140243,42 +138388,72 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 900 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 4, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1463, + "id": 1512, "tags": ["facilityModule", "facilityModuleType:production"] }, + { + "components": { + "parent": { + "name": "parent", + "id": 1502, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1513, + "tags": ["facilityModule", "facilityModuleType:military"] + }, { "components": { "budget": { - "allocationIdCounter": 86, + "allocationIdCounter": 1, "allocations": [], - "available": 915980, - "money": 915980, + "available": 252891, + "money": 252891, "name": "budget", "mask": "BigInt:16" }, @@ -140296,14 +138471,14 @@ }, "modules": { "name": "modules", - "ids": [1465, 1466, 1467, 1468, 1469, 1470, 1471], + "ids": [1515, 1516, 1517, 1518, 1519, 1520], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [23.437941366710888, -6.618233910094073], - "sector": 32, + "coord": [-0.15928033655813856, 2.989488009515849], + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" }, @@ -140312,22 +138487,22 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fHub", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 119, + "allocationIdCounter": 1, "allocations": [], - "max": 181000, + "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 92908, - "fuel": 8621, + "food": 8912, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -140340,15 +138515,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 19426 + "water": 2635 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 92908, - "fuel": 8621, + "food": 8912, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -140361,15 +138536,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 19426 + "water": 2635 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 134007, - "fuel": 15723, + "food": 13333, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -140382,7 +138557,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 6666 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -140391,25 +138566,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [55.47534016468302, 60.58598954532786], - "drones": [1082.1605068038991, 1091.1969083369563], - "electronics": [167.77180261499126, 173.0464663739574], - "engineParts": [206.60241805688017, 225.2640605008297], - "food": [13.012223124905802, 17.516143467827785], - "fuel": [56.347472995485035, 65.38455664510983], - "fuelium": [66.12723934427589, 73.2100697063279], - "gold": [638.5657905442769, 645.7570593776386], - "goldOre": [82.92329449823629, 90.54608903411992], - "hullPlates": [59.58825008340081, 75.20251763903006], - "hydrogen": [46.154582551931405, 59.44853396561376], - "ice": [11.041603256583107, 26.9664233614676], - "metals": [92.38957093683064, 102.28691195818075], - "ore": [37.28187291465683, 47.412221669226334], - "silica": [22.83007409468354, 37.85286120181431], - "silicon": [18.457598225416934, 26.412540969218135], - "superconductors": [224.5068283528623, 233.1454403634805], - "tauMetal": [267.38973860414563, 273.8823241370499], - "water": [38.34089178237229, 43] + "coolant": [72.86327809028847, 82.74388446686979], + "drones": [1339.682377449827, 1358.4760043438528], + "electronics": [439.94570335186233, 459.67547339841434], + "engineParts": [185.24701928883505, 204.0107567551366], + "food": [19.664851361999304, 22], + "fuel": [50.49126558638202, 65.49458549074352], + "fuelium": [72.06027232882457, 89.195061988996], + "gold": [579.9142772854766, 591.3689286506641], + "goldOre": [73.59171981132317, 91.91172742173731], + "hullPlates": [33.197091506425075, 48.05825956303213], + "hydrogen": [66.07486334815673, 82.91727748592106], + "ice": [26.525861916667985, 35.247303657834564], + "metals": [82.57972939341666, 90.16358945404055], + "ore": [29.334073638122927, 37.311375352502345], + "silica": [46.218351212199465, 61.28336840911308], + "silicon": [20.012725263291223, 30.942123618334147], + "superconductors": [285.191316312465, 294.6974736041512], + "tauMetal": [446.1147001498639, 455.85308565638655], + "water": [33.46661440172737, 42.237618812088854] }, "lastPriceAdjust": { "commodities": { @@ -140438,116 +138613,116 @@ "offers": { "coolant": { "active": false, - "price": 57, + "price": 79, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1082, + "price": 1357, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 172, + "price": 444, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 211, + "price": 195, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 15, - "quantity": 92908, - "type": "sell" + "price": 21, + "quantity": 4421, + "type": "buy" }, "fuel": { - "active": true, - "price": 62, - "quantity": 7102, + "active": false, + "price": 53, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 73, + "price": 81, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 644, + "price": 584, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 90, + "price": 79, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 60, + "price": 43, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 56, + "price": 78, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 20, + "price": 28, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 95, + "price": 88, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 45, + "price": 33, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 25, + "price": 53, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 26, + "price": 24, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 226, + "price": 293, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 267, + "price": 449, "quantity": 0, "type": "buy" }, "water": { "active": true, "price": 40, - "quantity": 11842, + "quantity": 4031, "type": "buy" } }, @@ -140565,17 +138740,17 @@ }, "name": { "name": "name", - "value": "GBF GJ 625 Factory", + "value": "GBF GJ 229 II Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2144, 2143], + "ids": [2266], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 6.5, "max": 14 }, + "workers": { "current": 3.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -140587,8 +138762,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 72, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -140601,20 +138776,108 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 36, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1464, + "id": 1514, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1464, + "id": 1514, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Sector Hub", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 2.9333333333333385, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.466666666666669 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 72, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 36, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1515, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1514, "mask": "BigInt:549755813888" }, "name": { @@ -140629,36 +138892,36 @@ } }, "cooldowns": { "timers": {} }, - "id": 1465, + "id": 1516, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1464, + "id": 1514, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Storage", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 1000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1466, + "id": 1517, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1464, + "id": 1514, "mask": "BigInt:549755813888" }, "name": { @@ -140681,199 +138944,100 @@ } }, "cooldowns": { "timers": {} }, - "id": 1467, + "id": 1518, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1464, + "id": 1514, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1468, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1519, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1464, + "id": 1514, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1469, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1520, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { - "parent": { - "name": "parent", - "id": 1464, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 215802, + "money": 215802, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1470, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1464, - "mask": "BigInt:549755813888" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.16666666666660745, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1471, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "budget": { - "allocationIdCounter": 75, - "allocations": [], - "available": 875650, - "money": 875650, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [2141], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [1473, 1474, 1475, 1476, 1477, 1478, 1479, 1480, 1481], - "mask": "BigInt:68719476736" + "modules": { + "name": "modules", + "ids": [1522, 1523, 1524, 1525, 1526, 1527], + "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [4.336995562948388, -14.19273024912284], + "coord": [-6.442757665854663, -7.461927990262908], "sector": 29, "moved": false, "mask": "BigInt:2199023255552" @@ -140883,50 +139047,22 @@ "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fFactory", + "texture": "fHub", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 90, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3456, - "type": "incoming", - "meta": { "tradeId": "1472:2142:sell:3456" }, - "id": 84 - } - ], - "max": 181000, + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 91323, - "fuel": 9071, + "food": 6141, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -140939,15 +139075,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 18719 + "water": 3625 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 91323, - "fuel": 9071, + "food": 6141, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -140960,15 +139096,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 18719 + "water": 3625 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 134007, - "fuel": 15723, + "food": 13333, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -140981,7 +139117,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 31268 + "water": 6666 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -140990,25 +139126,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [58.946798541069576, 66.89526822353679], - "drones": [1662.0940788165149, 1668.5309617048697], - "electronics": [161.36420072837166, 177.96831821095554], - "engineParts": [196.3427038683653, 208.89386046389205], - "food": [15, 17.922329457597694], - "fuel": [53.86616985029282, 65.36353300409161], - "fuelium": [68.34866054747542, 73.85998563796404], - "gold": [488.29919501238066, 496.0576712863808], - "goldOre": [80.9792034539972, 89.57460646236134], - "hullPlates": [38.17062170026166, 53.31291647411791], - "hydrogen": [36.21037338139242, 41.417530261962106], - "ice": [22.450156865310582, 35.92519839803118], - "metals": [65.72269968359437, 79.1479156112286], - "ore": [23.299691243278946, 40.06838074907533], - "silica": [43.74716391845399, 53.694653240116025], - "silicon": [14.085480230412804, 21.17403404841918], - "superconductors": [568.9216618032705, 585.4143718046796], - "tauMetal": [478.24985334459217, 487.2842539674186], - "water": [35.28621311707497, 38.69705882352941] + "coolant": [73.64927403582587, 82.74813142090963], + "drones": [627.5267059099008, 640.5044355974148], + "electronics": [390.17018869238314, 398.37441408860917], + "engineParts": [161.30695038196913, 178.328520675454], + "food": [15.640942184706336, 22], + "fuel": [59.123308597288826, 64.55234067180339], + "fuelium": [65.62129488329722, 73.55110876528332], + "gold": [390.9553408479529, 404.5024685998073], + "goldOre": [93.10160367992532, 107.31361753995144], + "hullPlates": [51.36355062249291, 59.581534204199954], + "hydrogen": [51.048220325929414, 60.77161533761036], + "ice": [10.819723368663926, 25.582320096497064], + "metals": [80.06580969894553, 86.71262140351503], + "ore": [26.858442290499983, 42.990079687928], + "silica": [45.58403559758489, 58.69353069393061], + "silicon": [22.077883047859473, 34.04238257081015], + "superconductors": [435.646842322985, 444.17116352521504], + "tauMetal": [640.1465621486713, 647.2401415437307], + "water": [27.19415835573844, 33.44634941692759] }, "lastPriceAdjust": { "commodities": { @@ -141037,116 +139173,116 @@ "offers": { "coolant": { "active": false, - "price": 59, + "price": 74, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1664, + "price": 633, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 162, + "price": 398, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 198, + "price": 173, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 17, - "quantity": 91323, - "type": "sell" + "price": 18, + "quantity": 7192, + "type": "buy" }, "fuel": { - "active": true, - "price": 62, - "quantity": 6652, + "active": false, + "price": 60, + "quantity": 0, "type": "buy" }, "fuelium": { "active": false, - "price": 72, + "price": 67, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 493, + "price": 391, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 84, + "price": 98, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 40, + "price": 52, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 38, + "price": 53, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 25, + "price": 18, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 76, + "price": 80, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 31, + "price": 36, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 47, + "price": 53, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 17, + "price": 31, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 570, + "price": 436, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 483, + "price": 642, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 38, - "quantity": 12555, + "price": 30, + "quantity": 3041, "type": "buy" } }, @@ -141164,17 +139300,17 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Factory", + "value": "GBF Wolf 1061 I Hub", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2142, 2141], + "ids": [2265], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 3.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -141186,8 +139322,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 2250 }, - "fuel": { "consumes": 264, "produces": 0 }, + "food": { "consumes": 368, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -141200,20 +139336,108 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 525, "produces": 0 } + "water": { "consumes": 184, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1472, + "id": 1521, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1472, + "id": 1521, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Sector Hub", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.6666666666667229, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 4.3333333333333615 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 368, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 184, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1522, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1521, "mask": "BigInt:549755813888" }, "name": { @@ -141228,36 +139452,36 @@ } }, "cooldowns": { "timers": {} }, - "id": 1473, + "id": 1523, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1472, + "id": 1521, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Basic Storage", + "value": "Medium Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 1000, + "storage": 20000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1474, + "id": 1524, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1472, + "id": 1521, "mask": "BigInt:549755813888" }, "name": { @@ -141280,95 +139504,250 @@ } }, "cooldowns": { "timers": {} }, - "id": 1475, + "id": 1525, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1472, + "id": 1521, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1476, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1526, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1472, + "id": 1521, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Large Container", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": {} }, - "id": 1477, - "tags": ["facilityModule", "facilityModuleType:storage"] + "id": 1527, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { - "parent": { - "name": "parent", - "id": 1472, - "mask": "BigInt:549755813888" + "budget": { + "allocationIdCounter": 70, + "allocations": [ + { + "amount": 90, + "issued": 3597, + "meta": { "tradeId": "1580:2264:buy:3597" }, + "id": 69 + } + ], + "available": 131177, + "money": 131267, + "name": "budget", + "mask": "BigInt:16" }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1478, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1472, - "mask": "BigInt:549755813888" + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" }, - "name": { - "name": "name", - "value": "Farm", - "mask": "BigInt:137438953472" + "modules": { + "name": "modules", + "ids": [1529, 1530, 1531, 1532, 1533, 1534], + "mask": "BigInt:68719476736" }, - "production": { - "buffer": { - "production": { + "position": { + "name": "position", + "angle": 0, + "coord": [-2.866055383683223, -2.8533225797942565], + "sector": 32, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16750653, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fHub", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 70, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 6, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3597, + "type": "incoming", + "meta": { "tradeId": "1528:2264:sell:3597" }, + "id": 69 + } + ], + "max": 20000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 5518, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6650 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 5518, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6650 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 13333, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6666 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [146.02375772641437, 156.1890628842671], + "drones": [1410.785785369232, 1428.3795018178823], + "electronics": [179.46991985684465, 185.04357418672748], + "engineParts": [464.17498347661297, 470.36580258295135], + "food": [12.204469293159933, 18.857142857142858], + "fuel": [63.73465455928181, 82.80069686039278], + "fuelium": [31.350574575540918, 39.54813177911599], + "gold": [349.8512830946597, 360.5950276595798], + "goldOre": [44.59110596690448, 58.29890120498308], + "hullPlates": [57.35200498847843, 76.33268304655252], + "hydrogen": [74.03333171995347, 88.79181875620182], + "ice": [18.868322408151222, 24.33219110433928], + "metals": [55.884941339289455, 64.77984856442899], + "ore": [30.122307836616326, 49.03732303349336], + "silica": [27.835019084931403, 43.13892077463408], + "silicon": [30.135825325482816, 40.93646174783777], + "superconductors": [466.66153926711394, 485.901206843367], + "tauMetal": [423.37808845642485, 433.1665443233325], + "water": [24.009491169048488, 41.50717830108706] + }, + "lastPriceAdjust": { + "commodities": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.9166666666666075, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -141384,37 +139763,162 @@ "tauMetal": 0, "water": 0 }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 154, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1419, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 182, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 464, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 17, + "quantity": 7815, + "type": "buy" + }, + "fuel": { + "active": false, + "price": 65, + "quantity": 0, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 34, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 356, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 52, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 72, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 85, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 21, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 60, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 44, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 29, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 37, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 469, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 423, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 28, + "quantity": 16, + "type": "buy" } }, - "name": "production", - "active": true, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "GBF GJ 625 Hub", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2264], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 3.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 188, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -141427,31 +139931,25 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 94, "produces": 0 } }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 5, - "mask": "BigInt:281474976710656" + "mask": "BigInt:1024" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1479, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1528, + "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1472, + "id": 1528, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Sector Hub", "mask": "BigInt:137438953472" }, "production": { @@ -141461,7 +139959,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.9166666666666075, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -141482,8 +139980,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, + "food": 0.8666666666667018, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -141496,7 +139994,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8333333333333774 + "water": 1.933333333333351 } }, "name": "production", @@ -141506,8 +140004,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 188, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -141520,128 +140018,157 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 94, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1529, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1528, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1530, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1528, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1531, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1528, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1480, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1532, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1472, + "id": 1528, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0.9166666666666075, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.9333333333333642, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0.8333333333333774 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, - "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 1, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1481, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1533, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1528, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1534, + "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "budget": { - "allocationIdCounter": 27, - "allocations": [ - { - "amount": 3240, - "issued": 3555, - "meta": { "tradeId": "1520:2139:buy:3555" }, - "id": 26 - } - ], - "available": 1093530, - "money": 1096770, + "allocationIdCounter": 1, + "allocations": [], + "available": 825717, + "money": 825717, "name": "budget", "mask": "BigInt:16" }, @@ -141659,14 +140186,14 @@ }, "modules": { "name": "modules", - "ids": [1483, 1484, 1485, 1486, 1487, 1488, 1489], + "ids": [1536, 1537, 1538, 1539, 1540, 1541, 1542, 1543, 1544], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [-9.400015600987233, -13.115499543655682], - "sector": 16, + "coord": [-4.957051385698225, -22.421543531697957], + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, @@ -141681,71 +140208,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 57, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 60, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "incoming", - "meta": { "tradeId": "1482:2140:sell:3483" }, - "id": 55 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3555, - "type": "incoming", - "meta": { "tradeId": "1482:2139:sell:3555" }, - "id": 56 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 76452, - "fuel": 8523, + "food": 100446, + "fuel": 7334, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -141758,15 +140230,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13613 + "water": 19159 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 76452, - "fuel": 8523, + "food": 100446, + "fuel": 7334, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -141779,7 +140251,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 13613 + "water": 19159 }, "quota": { "coolant": 0, @@ -141809,25 +140281,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [141.58968907892236, 153.63144761873724], - "drones": [916.5973843704847, 929.9368779072903], - "electronics": [221.90703646533026, 241.3623684667964], - "engineParts": [189.91486724934242, 207.24085452649655], - "food": [15, 15.502229617080493], - "fuel": [56.10326826472295, 73.03999999999999], - "fuelium": [33.14123085912345, 52.79644786564275], - "gold": [576.4891895788355, 588.8327908545555], - "goldOre": [47.91395147988111, 59.252096743764234], - "hullPlates": [49.4476646242221, 61.7777577784819], - "hydrogen": [58.130639570460204, 76.45759442726782], - "ice": [17.66907156998461, 27.54158210483386], - "metals": [38.78197846583783, 53.81738958912296], - "ore": [20.08687823315053, 33.86358702167967], - "silica": [29.230140454700575, 43.91449152578523], - "silicon": [22.249371937952276, 31.385853351552193], - "superconductors": [268.3069232200223, 285.45710656576324], - "tauMetal": [403.95232739770887, 419.3901015892449], - "water": [30.920157810800937, 35.483333333333334] + "coolant": [139.46961306629515, 146.23490023643836], + "drones": [1547.8718807034, 1552.9999860708915], + "electronics": [161.3309362455541, 170.79022371540708], + "engineParts": [222.1295552624647, 236.1756983307389], + "food": [12.251970695629606, 12.833633507545951], + "fuel": [47.97369009244558, 65.11924867556374], + "fuelium": [70.12009254432664, 89.82311913572542], + "gold": [417.9976168827005, 428.486861013716], + "goldOre": [76.60165895723398, 82.95828918981648], + "hullPlates": [31.631309558880567, 51.44878538785868], + "hydrogen": [61.30847187516233, 71.46772393185597], + "ice": [22.746407213890915, 41.79150573200299], + "metals": [51.64751818521445, 61.93635720967508], + "ore": [31.16551319507306, 48.13924995785145], + "silica": [30.534085346428178, 45.38321251428468], + "silicon": [12.535293150318848, 20.727654251491828], + "superconductors": [298.6949425882911, 303.9725477478431], + "tauMetal": [231.4453392495664, 238.45482718808728], + "water": [28.872642759569658, 37.98827428710578] }, "lastPriceAdjust": { "commodities": { @@ -141856,116 +140328,116 @@ "offers": { "coolant": { "active": false, - "price": 149, + "price": 143, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 925, + "price": 1548, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 223, + "price": 162, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 198, + "price": 229, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 15, - "quantity": 76452, + "price": 12, + "quantity": 100446, "type": "sell" }, "fuel": { "active": true, - "price": 69, - "quantity": 7200, + "price": 58, + "quantity": 8389, "type": "buy" }, "fuelium": { "active": false, - "price": 36, + "price": 76, "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 583, + "price": 424, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 49, + "price": 79, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 56, + "price": 32, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 75, + "price": 62, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 17, + "price": 41, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 47, + "price": 53, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 31, + "price": 36, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 33, + "price": 32, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 27, + "price": 17, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 268, + "price": 300, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 417, + "price": 233, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 34, - "quantity": 17655, + "price": 29, + "quantity": 12109, "type": "buy" } }, @@ -141983,17 +140455,17 @@ }, "name": { "name": "name", - "value": "GBF GJ 229 II Factory", + "value": "GBF Wolf 1061 I Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2140, 2139], + "ids": [2263, 2262], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 6.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, @@ -142005,8 +140477,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 2250 }, + "fuel": { "consumes": 264, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -142019,20 +140491,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 525, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1482, + "id": 1535, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1482, + "id": 1535, "mask": "BigInt:549755813888" }, "name": { @@ -142047,14 +140519,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1483, + "id": 1536, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1482, + "id": 1535, "mask": "BigInt:549755813888" }, "name": { @@ -142069,14 +140541,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1484, + "id": 1537, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1482, + "id": 1535, "mask": "BigInt:549755813888" }, "name": { @@ -142099,14 +140571,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1485, + "id": 1538, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1482, + "id": 1535, "mask": "BigInt:549755813888" }, "name": { @@ -142121,14 +140593,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1486, + "id": 1539, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1482, + "id": 1535, "mask": "BigInt:549755813888" }, "name": { @@ -142143,14 +140615,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1487, + "id": 1540, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1482, + "id": 1535, "mask": "BigInt:549755813888" }, "name": { @@ -142165,14 +140637,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1488, + "id": 1541, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1482, + "id": 1535, "mask": "BigInt:549755813888" }, "name": { @@ -142187,7 +140659,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.16666666666660745, + "food": 0.9166666666666075, "fuel": 0, "fuelium": 0, "gold": 0, @@ -142258,109 +140730,298 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1489, + "id": 1542, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "budget": { - "allocationIdCounter": 32, - "allocations": [], - "available": 2347726, - "money": 2347726, - "name": "budget", - "mask": "BigInt:16" - }, - "docks": { - "name": "docks", - "docked": [], - "pads": { "large": 1, "medium": 3, "small": 3 }, - "mask": "BigInt:65536" - }, - "facilityModuleQueue": { - "name": "facilityModuleQueue", - "building": null, - "queue": [], - "mask": "BigInt:262144" - }, - "modules": { - "name": "modules", - "ids": [1491, 1492, 1493, 1494, 1495, 1496, 1497, 1498], - "mask": "BigInt:68719476736" - }, - "position": { - "name": "position", - "angle": 0, - "coord": [-3.929811222750434, -13.492325981677782], - "sector": 16, - "moved": false, - "mask": "BigInt:2199023255552" + "parent": { + "name": "parent", + "id": 1535, + "mask": "BigInt:549755813888" }, - "render": { - "color": 16750653, - "defaultScale": 1, - "name": "render", - "layer": "facility", - "texture": "fFactory", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" }, - "storage": { - "allocationIdCounter": 137, - "allocations": [], - "max": 181000, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 2, - "engineParts": 0, - "food": 25092, - "fuel": 19240, - "fuelium": 0, - "gold": 1424, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 18072, - "superconductors": 0, - "tauMetal": 0, - "water": 7456 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 2, - "engineParts": 0, - "food": 25092, - "fuel": 19240, - "fuelium": 0, - "gold": 1424, - "goldOre": 0, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.9166666666666075, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1543, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1535, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.9166666666666075, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1544, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 2321145, + "money": 2321145, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [ + 1546, 1547, 1548, 1549, 1550, 1551, 1552, 1553, 1554, 1555, 1556, + 1557 + ], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [12.36950888981709, 5.642339992911634], + "sector": 29, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16750653, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fFactory", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 4326, + "engineParts": 0, + "food": 45482, + "fuel": 8173, + "fuelium": 0, + "gold": 583, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 15146, + "superconductors": 0, + "tauMetal": 0, + "water": 10470 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 4326, + "engineParts": 0, + "food": 45482, + "fuel": 8173, + "fuelium": 0, + "gold": 583, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 18072, + "silicon": 15146, "superconductors": 0, "tauMetal": 0, - "water": 7456 + "water": 10470 }, "quota": { "coolant": 0, "drones": 0, - "electronics": 15142, + "electronics": 9675, "engineParts": 0, - "food": 75711, - "fuel": 24025, + "food": 96756, + "fuel": 21028, "fuelium": 0, - "gold": 3028, + "gold": 1935, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -142368,10 +141029,10 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 45426, + "silicon": 29027, "superconductors": 0, "tauMetal": 0, - "water": 17665 + "water": 22576 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -142380,25 +141041,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [80.74084432552957, 99.87677791420568], - "drones": [1374.2515301078174, 1386.804886997389], - "electronics": [291, 296.82], - "engineParts": [257.2855938946987, 262.7944348964844], - "food": [16, 20.10102625877446], - "fuel": [58.05920847259179, 69.3], - "fuelium": [53.21478625919677, 68.02147709148474], - "gold": [534.6073006005619, 543.1544037798128], - "goldOre": [88.0174798434168, 107.73568057001901], - "hullPlates": [31.213078680457134, 47.45932944874855], - "hydrogen": [89.37278402836694, 99.40245229092001], - "ice": [11.08355985507771, 16.980666347567556], - "metals": [59.01322680301823, 64.75522639606453], - "ore": [20.97317870065895, 30.939366055741957], - "silica": [45.26338808812681, 56.35700815298506], - "silicon": [32.8734176462243, 36], - "superconductors": [396.76389799249944, 403.98039086606366], - "tauMetal": [621.8863854959785, 629.0315170832978], - "water": [24.407276777840018, 39.48113055088729] + "coolant": [80.01248309549331, 100.01101359281206], + "drones": [891.2954175151535, 903.5691454506825], + "electronics": [309, 311.34127250492935], + "engineParts": [457.3208713836451, 465.8330989011272], + "food": [17, 18.924802042059007], + "fuel": [45.5565979336296, 63.53772832904608], + "fuelium": [64.54162203321525, 75.26018609524013], + "gold": [750.4780698744921, 768.589546984604], + "goldOre": [60.44101647842759, 67.1127964962511], + "hullPlates": [33.92174151368956, 47.761056577938646], + "hydrogen": [34.57940682238605, 49.153543601126565], + "ice": [20.53254244968259, 32.62173369770346], + "metals": [95.25779938377853, 102.3050867297872], + "ore": [39.71552066400656, 53.9562505697453], + "silica": [23.063994946394317, 36.4473109287672], + "silicon": [16.45173528498324, 32.516666666666666], + "superconductors": [437.919096494362, 455.7496077388991], + "tauMetal": [271.8063897495771, 285.47259457787027], + "water": [23.25760919912032, 37.46333333333334] }, "lastPriceAdjust": { "commodities": { @@ -142427,116 +141088,116 @@ "offers": { "coolant": { "active": false, - "price": 96, + "price": 97, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1380, + "price": 896, "quantity": 0, "type": "buy" }, "electronics": { "active": true, - "price": 294, - "quantity": 2, + "price": 309, + "quantity": 4326, "type": "sell" }, "engineParts": { "active": false, - "price": 259, + "price": 457, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 16, - "quantity": 25092, + "price": 17, + "quantity": 45482, "type": "sell" }, "fuel": { "active": true, - "price": 64, - "quantity": 4785, + "price": 52, + "quantity": 12855, "type": "buy" }, "fuelium": { "active": false, - "price": 60, + "price": 68, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 540, - "quantity": 1604, + "price": 757, + "quantity": 1352, "type": "buy" }, "goldOre": { "active": false, - "price": 103, + "price": 64, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 31, + "price": 41, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 96, + "price": 40, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 14, + "price": 26, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 62, + "price": 101, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 23, + "price": 44, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 47, + "price": 31, "quantity": 0, "type": "buy" }, "silicon": { "active": true, - "price": 34, - "quantity": 27354, + "price": 27, + "quantity": 13881, "type": "buy" }, "superconductors": { "active": false, - "price": 398, + "price": 438, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 628, + "price": 280, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 24, - "quantity": 10209, + "price": 25, + "quantity": 12106, "type": "buy" } }, @@ -142544,395 +141205,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 313 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 424 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 463 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 577 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 164, - "target": "THT Large Freighter B", - "time": 585 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 613 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 728 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 763 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 883 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 164, - "target": "THT Large Freighter B", - "time": 890 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 164, - "target": "THT Freighter A", - "time": 913 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 950 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1032 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 224, - "target": "THT Freighter A", - "time": 1036 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 224, - "target": "THT Freighter A", - "time": 1063 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1115 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 869, - "price": 224, - "target": "THT Large Freighter B", - "time": 1196 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1199 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 224, - "target": "THT Trader Freighter A", - "time": 1248 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 5, - "price": 224, - "target": "THT Trader Courier B", - "time": 1270 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1281 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1364 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1448 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1530 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 2, - "price": 224, - "target": "THT Trader Courier B", - "time": 1571 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 11, - "price": 224, - "target": "THT Trader Freighter A", - "time": 1572 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1613 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1697 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 8, - "price": 224, - "target": "THT Trader Freighter A", - "time": 1728 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 17, - "price": 224, - "target": "THT Freighter A", - "time": 1750 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "THT Courier B", - "time": 1779 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 4, - "price": 224, - "target": "THT Trader Courier B", - "time": 1874 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 7, - "price": 251, - "target": "THT Trader Freighter A", - "time": 2161 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 2, - "price": 251, - "target": "THT Trader Freighter A", - "time": 2185 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 16, - "price": 251, - "target": "THT Trader Freighter A", - "time": 2400 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 9, - "price": 251, - "target": "THT Trader Freighter A", - "time": 2546 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 5, - "price": 251, - "target": "THT Trader Freighter A", - "time": 2741 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 251, - "target": "THT Trader Courier B", - "time": 2770 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 4, - "price": 251, - "target": "THT Trader Freighter A", - "time": 2792 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 16, - "price": 294, - "target": "THT Freighter A", - "time": 2899 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 4, - "price": 251, - "target": "THT Trader Large Freighter B", - "time": 3070 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 2, - "price": 251, - "target": "THT Trader Large Freighter B", - "time": 3159 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 34, - "target": "THT Trader Freighter A", - "time": 3519 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -142942,12 +141215,12 @@ }, "name": { "name": "name", - "value": "GBF GJ 229 II Factory", + "value": "GBF Wolf 1061 I Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2138, 2137, 2136, 2135], + "ids": [2261, 2260, 2259, 2258], "mask": "BigInt:4294967296" }, "crew": { @@ -142962,12 +141235,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 300 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 238, "produces": 0 }, + "food": { "consumes": 0, "produces": 3000 }, + "fuel": { "consumes": 652, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 60, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -142975,23 +141248,23 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 900, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 700, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1490, + "id": 1545, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143006,14 +141279,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1491, + "id": 1546, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143028,14 +141301,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1492, + "id": 1547, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143058,14 +141331,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1493, + "id": 1548, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143080,14 +141353,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1494, + "id": 1549, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143102,14 +141375,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1495, + "id": 1550, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143124,14 +141397,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1496, + "id": 1551, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143146,7 +141419,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0.6282051282051135, + "food": 0.8387978142076284, "fuel": 0, "fuelium": 0, "gold": 0, @@ -143217,14 +141490,200 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1497, + "id": 1552, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1490, + "id": 1545, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.8387978142076284, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1553, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1545, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.8387978142076284, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1554, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1545, "mask": "BigInt:549755813888" }, "name": { @@ -143237,7 +141696,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.5256410256410287, + "electronics": 0.7677595628415229, "engineParts": 0, "food": 0, "fuel": 0, @@ -143310,59 +141769,221 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1498, + "id": 1555, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "budget": { - "allocationIdCounter": 155, - "allocations": [ - { - "amount": 5600, - "issued": 3072, - "meta": { "tradeId": "1499:2237:sell:3072" }, - "id": 127 - }, - { - "amount": 5600, - "issued": 3204, - "meta": { "tradeId": "1499:2239:sell:3204" }, - "id": 133 - }, - { - "amount": 210, - "issued": 3435, - "meta": { "tradeId": "1499:2236:sell:3435" }, - "id": 146 + "parent": { + "name": "parent", + "id": 1545, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0.8387978142076284, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - { - "amount": 3168, - "issued": 3528, - "meta": { "tradeId": "1390:2131:buy:3528" }, - "id": 150 + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.9333333333333642, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0.8333333333333774 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1556, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1545, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Electronics Factory", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0.7677595628415229, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 20, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1557, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 3, + "allocations": [ { - "amount": 1960, - "issued": 3534, - "meta": { "tradeId": "1499:2159:sell:3534" }, - "id": 151 + "amount": 3660, + "issued": 303, + "meta": { "tradeId": "1478:2257:buy:303" }, + "id": 1 }, { - "amount": 7088, - "issued": 3588, - "meta": { "tradeId": "1499:2160:sell:3588" }, - "id": 154 + "amount": 97600, + "issued": 309, + "meta": { "tradeId": "1478:2256:buy:309" }, + "id": 2 } ], - "available": 4675067, - "money": 4698693, + "available": 5166102, + "money": 5267362, "name": "budget", "mask": "BigInt:16" }, "docks": { "name": "docks", - "docked": [2133], + "docked": [], "pads": { "large": 1, "medium": 3, "small": 3 }, "mask": "BigInt:65536" }, @@ -143374,14 +141995,14 @@ }, "modules": { "name": "modules", - "ids": [1500, 1501, 1502, 1503, 1504, 1505, 1506, 1507], + "ids": [1559, 1560, 1561, 1562, 1563, 1564, 1565, 1566], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [5.814791069933527, -22.20926234143654], - "sector": 29, + "coord": [0.7409957404725382, -7.1672157586338265], + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" }, @@ -143396,7 +142017,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 171, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -143407,61 +142028,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3072, - "type": "incoming", - "meta": { "tradeId": "1499:2237:sell:3072" }, - "id": 138 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3204, - "type": "incoming", - "meta": { "tradeId": "1499:2239:sell:3204" }, - "id": 144 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, + "gold": 6, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -143469,15 +142036,15 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 6, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3435, + "issued": 303, "type": "incoming", - "meta": { "tradeId": "1499:2236:sell:3435" }, - "id": 158 + "meta": { "tradeId": "1558:2257:sell:303" }, + "id": 1 }, { "amount": { @@ -143488,7 +142055,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -143499,213 +142066,24 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 82 + "water": 0 }, - "issued": 3483, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "1499:2134:sell:3483" }, - "id": 162 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3528, - "type": "incoming", - "meta": { "tradeId": "1499:2131:sell:3528" }, - "id": 163 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 56, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3534, - "type": "incoming", - "meta": { "tradeId": "1499:2159:sell:3534" }, - "id": 164 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 6, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3543, - "type": "incoming", - "meta": { "tradeId": "1499:2133:sell:3543" }, - "id": 165 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 24, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "1499:2132:sell:3558" }, - "id": 167 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 17, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3561, - "type": "outgoing", - "meta": { "tradeId": "1499:2164:buy:3561" }, - "id": 168 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 3, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "outgoing", - "meta": { "tradeId": "1499:2166:buy:3579" }, - "id": 169 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 16, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "incoming", - "meta": { "tradeId": "1499:2160:sell:3588" }, - "id": 170 + "meta": { "tradeId": "1558:2256:sell:309" }, + "id": 2 } ], "max": 181000, "availableWares": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 15932, "engineParts": 0, - "food": 1164, - "fuel": 1117, + "food": 0, + "fuel": 12645, "fuelium": 0, - "gold": 573, + "gold": 2778, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -143713,20 +142091,20 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 3114, + "silicon": 45102, "superconductors": 0, "tauMetal": 0, - "water": 2712 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, - "electronics": 20, + "electronics": 15932, "engineParts": 0, - "food": 1164, - "fuel": 1117, + "food": 0, + "fuel": 12645, "fuelium": 0, - "gold": 573, + "gold": 2778, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -143734,20 +142112,20 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 3114, + "silicon": 45102, "superconductors": 0, "tauMetal": 0, - "water": 2712 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, - "electronics": 15142, + "electronics": 34807, "engineParts": 0, - "food": 75711, - "fuel": 24025, + "food": 0, + "fuel": 34807, "fuelium": 0, - "gold": 3028, + "gold": 6961, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -143755,10 +142133,10 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 45426, + "silicon": 104423, "superconductors": 0, "tauMetal": 0, - "water": 17665 + "water": 0 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -143767,25 +142145,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [122.72431917282442, 130.47832492176136], - "drones": [887.8132892782262, 907.3409862508031], - "electronics": [416.1248584371225, 423.3067896002906], - "engineParts": [185.37242581155303, 199.93331258201766], - "food": [18.930437465934425, 21.946711752287158], - "fuel": [60.86406890919961, 77], - "fuelium": [70.46770590282198, 85.4819349995917], - "gold": [434.7157626941173, 447.2114822252799], - "goldOre": [44.638033228842716, 50.03962255010586], - "hullPlates": [41.95230004927227, 48.37533769544576], - "hydrogen": [90.90781612596646, 103.8377378690127], - "ice": [21.781101879077717, 30.29356046259941], - "metals": [67.37932812594619, 85.82927606875515], - "ore": [37.984442457047564, 49.046311464371534], - "silica": [18.455053550993288, 34.040399682752096], - "silicon": [35.26066297657296, 36], - "superconductors": [422.6980651119535, 434.04877298462304], - "tauMetal": [245.69122498502435, 259.4928770105737], - "water": [25.14205172426632, 34.30275495883064] + "coolant": [125.85960694121573, 142.37004120471244], + "drones": [1088.0766607056655, 1098.4711456383548], + "electronics": [326.0680967819652, 344.05670255449485], + "engineParts": [261.26986399816775, 268.2767278963004], + "food": [8.84956932310768, 16.376044678644817], + "fuel": [38.900018811187955, 58.84338913783067], + "fuelium": [27.41644757284954, 47.366354714550354], + "gold": [716.752306370744, 730.7173113265061], + "goldOre": [85.51276968993311, 95.03683670149101], + "hullPlates": [54.686545089878315, 64.20930723797491], + "hydrogen": [63.285205426814684, 78.34416367862977], + "ice": [20.93101149996575, 37.999869221343914], + "metals": [60.693904861617156, 76.30692403196254], + "ore": [37.74520902831742, 50.85387084243119], + "silica": [24.202482094166978, 35.54642094004147], + "silicon": [18.078556356307306, 28.987501835501938], + "superconductors": [373.0684191107804, 380.9484812382508], + "tauMetal": [506.7303083129928, 516.9304716432445], + "water": [18.46736670701195, 37.002595729744144] }, "lastPriceAdjust": { "commodities": { @@ -143814,116 +142192,116 @@ "offers": { "coolant": { "active": false, - "price": 127, + "price": 129, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 900, + "price": 1094, "quantity": 0, "type": "buy" }, "electronics": { "active": true, - "price": 421, - "quantity": 0, + "price": 338, + "quantity": 15932, "type": "sell" }, "engineParts": { "active": false, - "price": 195, + "price": 267, "quantity": 0, "type": "buy" }, "food": { - "active": true, - "price": 19, - "quantity": 1164, - "type": "sell" + "active": false, + "price": 8, + "quantity": 0, + "type": "buy" }, "fuel": { "active": true, - "price": 71, - "quantity": 22908, + "price": 46, + "quantity": 22162, "type": "buy" }, "fuelium": { "active": false, - "price": 85, + "price": 33, "quantity": 0, "type": "buy" }, "gold": { "active": true, - "price": 443, - "quantity": 2455, + "price": 729, + "quantity": 4183, "type": "buy" }, "goldOre": { "active": false, - "price": 47, + "price": 93, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 47, + "price": 59, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 97, + "price": 73, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 22, + "price": 34, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 81, + "price": 67, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 46, + "price": 38, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 31, + "price": 30, "quantity": 0, "type": "buy" }, "silicon": { "active": true, - "price": 35, - "quantity": 42312, + "price": 19, + "quantity": 59321, "type": "buy" }, "superconductors": { "active": false, - "price": 425, + "price": 378, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 245, + "price": 507, "quantity": 0, "type": "buy" }, "water": { - "active": true, - "price": 33, - "quantity": 14953, + "active": false, + "price": 18, + "quantity": 0, "type": "buy" } }, @@ -143931,35 +142309,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 19, - "price": 71, - "target": "THT Trader Freighter A", - "time": 1293 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 66, - "target": "THT Trader Freighter A", - "time": 2928 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 6, - "price": 35, - "target": "THT Trader Courier B", - "time": 3104 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -143969,12 +142319,12 @@ }, "name": { "name": "name", - "value": "GBF Wolf 1061 I Factory", + "value": "GBF GJ 625 Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2134, 2133, 2132, 2131], + "ids": [2257, 2256], "mask": "BigInt:4294967296" }, "crew": { @@ -143989,12 +142339,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 150 }, + "electronics": { "consumes": 0, "produces": 300 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 238, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 300, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 30, "produces": 0 }, + "gold": { "consumes": 60, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -144002,23 +142352,23 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 450, "produces": 0 }, + "silicon": { "consumes": 900, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1499, + "id": 1558, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { @@ -144033,14 +142383,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1500, + "id": 1559, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { @@ -144055,14 +142405,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1501, + "id": 1560, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { @@ -144085,14 +142435,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1502, + "id": 1561, "tags": ["facilityModule", "facilityModuleType:military"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { @@ -144107,14 +142457,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1503, + "id": 1562, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { @@ -144129,14 +142479,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1504, + "id": 1563, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { @@ -144151,14 +142501,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1505, + "id": 1564, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { @@ -144171,7 +142521,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0.08717948717948865, + "electronics": 0.9796747967479646, "engineParts": 0, "food": 0, "fuel": 0, @@ -144244,19 +142594,19 @@ } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1506, + "id": 1565, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1499, + "id": 1558, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { @@ -144264,9 +142614,9 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.9796747967479646, "engineParts": 0, - "food": 0.9615384615384386, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -144288,7 +142638,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 2.3333333333333592, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -144301,7 +142651,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 2.8333333333333703 + "water": 0 } }, "name": "production", @@ -144309,12 +142659,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -144322,31 +142672,31 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 20, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1507, + "id": 1566, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 148, + "allocationIdCounter": 1, "allocations": [], - "available": 291839, - "money": 291839, + "available": 4718383, + "money": 4718383, "name": "budget", "mask": "BigInt:16" }, @@ -144365,20 +142715,21 @@ "modules": { "name": "modules", "ids": [ - 1509, 1510, 1511, 1512, 1513, 1514, 1515, 1516, 1517, 1518, 1519 + 1568, 1569, 1570, 1571, 1572, 1573, 1574, 1575, 1576, 1577, 1578, + 1579 ], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [17.590562507247647, -17.5493932069924], - "sector": 15, + "coord": [-0.9919308366333439, 21.61070009467972], + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16251995, + "color": 16750653, "defaultScale": 1, "name": "render", "layer": "facility", @@ -144388,99 +142739,71 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 167, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "incoming", - "meta": { "tradeId": "1508:2248:sell:3579" }, - "id": 166 - } - ], - "max": 61000, + "allocationIdCounter": 1, + "allocations": [], + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 14112, "engineParts": 0, - "food": 0, - "fuel": 3328, + "food": 22411, + "fuel": 8300, "fuelium": 0, - "gold": 0, + "gold": 1299, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 48, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 21767, "superconductors": 0, "tauMetal": 0, - "water": 4 + "water": 5328 }, "stored": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 14112, "engineParts": 0, - "food": 0, - "fuel": 3328, + "food": 22411, + "fuel": 8300, "fuelium": 0, - "gold": 0, + "gold": 1299, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 48, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 21767, "superconductors": 0, "tauMetal": 0, - "water": 4 + "water": 5328 }, "quota": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 21103, "engineParts": 0, - "food": 31926, - "fuel": 3745, + "food": 52759, + "fuel": 27294, "fuelium": 0, - "gold": 0, + "gold": 4220, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 10216, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 63311, "superconductors": 0, "tauMetal": 0, - "water": 15111 + "water": 12310 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -144489,25 +142812,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [65.2483588743125, 82.62538787978188], - "drones": [918.0998363440024, 932.8809074542412], - "electronics": [197.52102842573532, 206.71489165666972], - "engineParts": [318.9609524024161, 328.7337923911325], - "food": [18, 20], - "fuel": [63.60665865297631, 69.4502033939937], - "fuelium": [63.15147470776018, 78.05514399722334], - "gold": [751.9991283461497, 765.1318916840838], - "goldOre": [50.35099922351267, 58.18990828889731], - "hullPlates": [61.30652821324809, 70.56725872167411], - "hydrogen": [93.73729996564737, 99.22112909001682], - "ice": [23.356357277891785, 27], - "metals": [65.32538580735725, 74.7741010000444], - "ore": [33.106796557351906, 47.46211736411918], - "silica": [31.895970770653577, 47.76096972961194], - "silicon": [14.288073268271702, 24.87063658443636], - "superconductors": [230.04351703195883, 248.57742983703926], - "tauMetal": [481.7863444588785, 500.9617662199238], - "water": [35, 42.999516707775086] + "coolant": [126.23759698023576, 145.76056722282175], + "drones": [1299.5436643005855, 1318.3043095529117], + "electronics": [296, 301.92], + "engineParts": [420.0566101029404, 432.1827335734099], + "food": [15, 19.556121726241575], + "fuel": [49.835695054105884, 56.938581739478714], + "fuelium": [51.836487922633594, 70.02366144513249], + "gold": [759.6299453956514, 769.8830758069677], + "goldOre": [55.99870321296821, 64.21009360522302], + "hullPlates": [26.57112106922242, 34.67666337250289], + "hydrogen": [89.44701774176482, 106.99532386851787], + "ice": [10.89822131077006, 21.800051315354672], + "metals": [83.85811584209367, 102.96295912609503], + "ore": [30.82466470379237, 40.04304402500238], + "silica": [17.27381226224935, 28.3695790970787], + "silicon": [22.26998571310532, 33.8], + "superconductors": [400.8064798045005, 417.67089727427447], + "tauMetal": [521.5631711872434, 536.7901241240249], + "water": [31.083513604691277, 36.986666666666665] }, "lastPriceAdjust": { "commodities": { @@ -144536,117 +142859,117 @@ "offers": { "coolant": { "active": false, - "price": 72, + "price": 136, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 922, + "price": 1313, "quantity": 0, "type": "buy" }, "electronics": { - "active": false, - "price": 201, - "quantity": 0, - "type": "buy" + "active": true, + "price": 296, + "quantity": 14112, + "type": "sell" }, "engineParts": { "active": false, - "price": 319, + "price": 431, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 19, - "quantity": 0, + "price": 16, + "quantity": 22411, "type": "sell" }, "fuel": { "active": true, - "price": 63, - "quantity": 417, + "price": 55, + "quantity": 18994, "type": "buy" }, "fuelium": { "active": false, - "price": 74, + "price": 62, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 755, - "quantity": 0, + "active": true, + "price": 763, + "quantity": 2921, "type": "buy" }, "goldOre": { "active": false, - "price": 53, + "price": 57, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 67, + "price": 32, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 97, + "price": 105, "quantity": 0, "type": "buy" }, "ice": { - "active": true, - "price": 26, - "quantity": 10168, + "active": false, + "price": 18, + "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 71, + "price": 101, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 45, + "price": 38, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 37, + "price": 25, "quantity": 0, "type": "buy" }, "silicon": { - "active": false, - "price": 19, - "quantity": 0, + "active": true, + "price": 31, + "quantity": 41544, "type": "buy" }, "superconductors": { "active": false, - "price": 244, + "price": 404, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 493, + "price": 530, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 37, - "quantity": 0, - "type": "sell" + "price": 34, + "quantity": 6982, + "type": "buy" } }, "mask": "BigInt:34359738368" @@ -144663,56 +142986,56 @@ }, "name": { "name": "name", - "value": "THT Therr Farming Facility", + "value": "GBF Wolf 1061 I Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2249, 2248, 2251], + "ids": [2255, 2254, 2253, 2252], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 4.999999999999992, "max": 64 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 600 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 3750 }, - "fuel": { "consumes": 440, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 776, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 120, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 1800, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 875, "produces": 900 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1508, + "id": 1567, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { @@ -144727,14 +143050,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1509, + "id": 1568, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { @@ -144749,19 +143072,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1510, + "id": 1569, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1570, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1567, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1571, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1567, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1572, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1567, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1573, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1567, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { @@ -144769,7 +143188,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.3333333333333296, "engineParts": 0, "food": 0, "fuel": 0, @@ -144814,12 +143233,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -144827,29 +143246,29 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 20, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1511, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1574, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { @@ -144864,7 +143283,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.666666666666647, "fuel": 0, "fuelium": 0, "gold": 0, @@ -144886,7 +143305,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -144899,7 +143318,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.33333333333337656 } }, "name": "production", @@ -144925,7 +143344,7 @@ "tauMetal": { "consumes": 0, "produces": 0 }, "water": { "consumes": 175, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { @@ -144934,20 +143353,20 @@ "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1512, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1575, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { @@ -144955,7 +143374,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.3333333333333296, "engineParts": 0, "food": 0, "fuel": 0, @@ -145000,12 +143419,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -145013,108 +143432,34 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 20, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1513, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1576, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1508, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Large Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 60000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1514, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1508, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1515, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1508, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Habitation Dome", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 50, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1516, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Water Production", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -145124,7 +143469,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 0.666666666666647, "fuel": 0, "fuelium": 0, "gold": 0, @@ -145138,7 +143483,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0.8666666666666667 + "water": 0 }, "consumption": { "coolant": 0, @@ -145146,7 +143491,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.7333333333333636, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -145159,7 +143504,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.33333333333337656 } }, "name": "production", @@ -145169,45 +143514,45 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 1200, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 900 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 4, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1517, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1577, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { @@ -145215,7 +143560,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.3333333333333296, "engineParts": 0, "food": 0, "fuel": 0, @@ -145260,12 +143605,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -145273,34 +143618,34 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 20, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1518, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1578, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1508, + "id": 1567, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Farm", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, "production": { @@ -145308,7 +143653,7 @@ "production": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 0.3333333333333296, "engineParts": 0, "food": 0, "fuel": 0, @@ -145353,12 +143698,12 @@ "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 750 }, - "fuel": { "consumes": 88, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -145366,31 +143711,50 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 175, "produces": 0 } + "water": { "consumes": 0, "produces": 0 } }, - "produced": false, + "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 5, + "value": 20, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1519, + "cooldowns": { "timers": { "production": 1 } }, + "id": 1579, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "budget": { - "allocationIdCounter": 1, - "allocations": [], - "available": 2149968, - "money": 2149968, + "allocationIdCounter": 24, + "allocations": [ + { + "amount": 13280, + "issued": 309, + "meta": { "tradeId": "1466:2250:buy:309" }, + "id": 1 + }, + { + "amount": 13280, + "issued": 309, + "meta": { "tradeId": "1466:2251:buy:309" }, + "id": 2 + }, + { + "amount": 3132, + "issued": 3558, + "meta": { "tradeId": "1580:2267:sell:3558" }, + "id": 23 + } + ], + "available": 511119, + "money": 540811, "name": "budget", "mask": "BigInt:16" }, @@ -145408,31 +143772,29 @@ }, "modules": { "name": "modules", - "ids": [ - 1521, 1522, 1523, 1524, 1525, 1526, 1527, 1528, 1529, 1530, 1531 - ], + "ids": [1581, 1582, 1583, 1584, 1585, 1586, 1587, 1588], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [7.3818791092917575, 9.528278270200216], - "sector": 15, + "coord": [22.986157105761464, -22.474417314745423], + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16251995, + "color": 16750653, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fMin", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 320, + "allocationIdCounter": 82, "allocations": [ { "amount": { @@ -145441,7 +143803,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 54, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -145456,10 +143818,37 @@ "tauMetal": 0, "water": 0 }, - "issued": 3555, - "type": "outgoing", - "meta": { "tradeId": "1520:2139:buy:3555" }, - "id": 317 + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1580:2250:sell:309" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1580:2251:sell:309" }, + "id": 2 }, { "amount": { @@ -145468,7 +143857,34 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 58, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 108 + }, + "issued": 3558, + "type": "incoming", + "meta": { "tradeId": "1580:2267:sell:3558" }, + "id": 80 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 6, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -145483,21 +143899,21 @@ "tauMetal": 0, "water": 0 }, - "issued": 3582, + "issued": 3597, "type": "outgoing", - "meta": { "tradeId": "1520:293:buy:3582" }, - "id": 319 + "meta": { "tradeId": "1580:2264:buy:3597" }, + "id": 81 } ], - "max": 81000, + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 168, + "food": 88815, + "fuel": 8384, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -145509,16 +143925,16 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 31148 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 112, - "fuelium": 168, + "food": 88821, + "fuel": 8384, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -145530,16 +143946,16 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 31148 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 43615, - "fuelium": 37384, + "food": 134007, + "fuel": 15723, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -145551,7 +143967,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 31268 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -145560,25 +143976,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [62.8660382957804, 71.1482279085418], - "drones": [1779.2765024829687, 1798.3189481568181], - "electronics": [204.53165217439184, 221.48855191606847], - "engineParts": [387.1649742271345, 396.1698064885606], - "food": [19.330632404895944, 25.352830658572344], - "fuel": [59.97529137529138, 61.97529137529138], - "fuelium": [52.04687292424126, 67.57978739483525], - "gold": [904.4160290397591, 911.7911078585864], - "goldOre": [56.29197193623373, 71.26221835183247], - "hullPlates": [27.694294704009742, 38.51640406444054], - "hydrogen": [36.9407232814727, 48.59717699598386], - "ice": [17.01559283409599, 26.610951799212934], - "metals": [54.59423473492946, 67.68517794279927], - "ore": [26.841014958285026, 33.176998876861546], - "silica": [22.432515494654453, 30.027255764987494], - "silicon": [12.03184936260582, 25.456959161731852], - "superconductors": [520.5586237408372, 530.3597991921192], - "tauMetal": [552.2569499192971, 561.4773599398517], - "water": [17.6362701414153, 23.53103195562602] + "coolant": [80.59598588951775, 91.15470303992727], + "drones": [840.2085397716618, 847.9023691026268], + "electronics": [425.44806634470234, 439.704820454921], + "engineParts": [312.1724601974307, 325.0643069238656], + "food": [15, 16.395562806268828], + "fuel": [62.11705199011362, 67.63853772788732], + "fuelium": [30.151652330696674, 40.182389045029204], + "gold": [619.0917528790171, 629.8234348786336], + "goldOre": [37.695992774627015, 46.185879875326975], + "hullPlates": [62.2960616461128, 78.55636440096721], + "hydrogen": [57.42282670491427, 66.00558450386292], + "ice": [16.322565288570832, 26.37155400579557], + "metals": [97.52214443586305, 109.28851614627807], + "ore": [39.76243847543218, 47.81261144771244], + "silica": [21.033162417465306, 34.31919730393136], + "silicon": [24.463142277138196, 34.868786154775414], + "superconductors": [422.5565151820725, 437.89775625149633], + "tauMetal": [267.5556675065866, 275.93797107852356], + "water": [24.708800388297483, 37.42021242472125] }, "lastPriceAdjust": { "commodities": { @@ -145607,116 +144023,116 @@ "offers": { "coolant": { "active": false, - "price": 69, + "price": 90, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1783, + "price": 843, "quantity": 0, "type": "buy" }, "electronics": { "active": false, - "price": 208, + "price": 434, "quantity": 0, "type": "buy" }, "engineParts": { "active": false, - "price": 392, + "price": 316, "quantity": 0, "type": "buy" }, "food": { - "active": false, - "price": 23, - "quantity": 0, - "type": "buy" + "active": true, + "price": 15, + "quantity": 88815, + "type": "sell" }, "fuel": { "active": true, - "price": 60, - "quantity": 0, - "type": "sell" + "price": 67, + "quantity": 7339, + "type": "buy" }, "fuelium": { - "active": true, - "price": 59, - "quantity": 37216, + "active": false, + "price": 33, + "quantity": 0, "type": "buy" }, "gold": { "active": false, - "price": 908, + "price": 628, "quantity": 0, "type": "buy" }, "goldOre": { "active": false, - "price": 60, + "price": 40, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 29, + "price": 69, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 41, + "price": 59, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 25, + "price": 26, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 64, + "price": 102, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 31, + "price": 41, "quantity": 0, "type": "buy" }, "silica": { "active": false, - "price": 23, + "price": 28, "quantity": 0, "type": "buy" }, "silicon": { "active": false, - "price": 23, + "price": 27, "quantity": 0, "type": "buy" }, "superconductors": { "active": false, - "price": 527, + "price": 431, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 556, + "price": 273, "quantity": 0, "type": "buy" }, "water": { - "active": false, - "price": 18, - "quantity": 0, + "active": true, + "price": 29, + "quantity": 120, "type": "buy" } }, @@ -145724,827 +144140,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 372 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 391 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 509 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 519 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 543 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 551 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 553 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 553 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 558 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 559 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 562 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 581 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 647 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 688 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 697 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 715 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 721 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 727 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 46, - "target": "GBF Large Freighter B", - "time": 768 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 785 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 46, - "target": "GBF Large Freighter B", - "time": 811 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 826 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 841 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 868 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 888 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 895 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "UEN Courier A", - "time": 923 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 927 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "GBF Freighter A", - "time": 964 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 1001 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 1040 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "UEN Courier A", - "time": 1063 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "UEN Freighter B", - "time": 1068 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "UEN Courier A", - "time": 1231 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "UEN Courier A", - "time": 1399 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "UEN Freighter B", - "time": 1460 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "UEN Freighter B", - "time": 1520 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "UEN Freighter B", - "time": 1552 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "UEN Courier A", - "time": 1566 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "UEN Courier A", - "time": 1731 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 1829 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "UEN Courier A", - "time": 1872 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 1898 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 1904 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "UEN Freighter B", - "time": 1919 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "GBF Large Freighter B", - "time": 1946 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 1962 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 1966 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "UEN Freighter B", - "time": 2000 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "UEN Courier A", - "time": 2009 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2048 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 260, - "price": 60, - "target": "UEN Freighter B", - "time": 2050 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2053 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "GBF Large Freighter B", - "time": 2066 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2104 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2131 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "UEN Courier A", - "time": 2147 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2192 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "GBF Large Freighter B", - "time": 2202 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2206 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2242 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "UEN Courier A", - "time": 2285 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "GBF Freighter A", - "time": 2298 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "GBF Large Freighter B", - "time": 2328 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "GBF Freighter A", - "time": 2417 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "UEN Courier A", - "time": 2450 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 45, - "price": 60, - "target": "GBF Freighter A", - "time": 2451 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "GBF Freighter A", - "time": 2495 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "UEN Freighter B", - "time": 2510 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "UEN Courier A", - "time": 2588 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "GBF Freighter A", - "time": 2588 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 45, - "price": 60, - "target": "GBF Freighter A", - "time": 2594 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "GBF Freighter A", - "time": 2662 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "GBF Freighter A", - "time": 2690 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "GBF Freighter A", - "time": 2738 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "GBF Freighter A", - "time": 2759 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "GBF Freighter A", - "time": 2838 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "GBF Freighter A", - "time": 2886 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "GBF Freighter A", - "time": 2928 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 44, - "price": 60, - "target": "GBF Freighter A", - "time": 2982 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "GBF Freighter A", - "time": 2992 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "GBF Freighter A", - "time": 3054 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "GBF Freighter A", - "time": 3125 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 64, - "price": 60, - "target": "GBF Freighter A", - "time": 3179 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "UEN Freighter B", - "time": 3188 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "GBF Freighter A", - "time": 3269 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "GBF Freighter A", - "time": 3306 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "GBF Freighter A", - "time": 3341 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 64, - "price": 60, - "target": "GBF Freighter A", - "time": 3464 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "GBF Freighter A", - "time": 3496 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "GBF Freighter A", - "time": 3567 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -146554,21 +144150,21 @@ }, "name": { "name": "name", - "value": "THT Therr Mining Complex", + "value": "GBF GJ 625 Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2247, 2250], + "ids": [2251, 2250], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 14.5, "max": 14 }, + "workers": { "current": 11.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { @@ -146576,9 +144172,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 5600 }, - "fuelium": { "consumes": 4800, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 176, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -146590,20 +144186,20 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1520, + "id": 1580, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1520, + "id": 1580, "mask": "BigInt:549755813888" }, "name": { @@ -146618,14 +144214,14 @@ } }, "cooldowns": { "timers": {} }, - "id": 1521, + "id": 1581, "tags": ["facilityModule", "facilityModuleType:habitat"] }, { "components": { "parent": { "name": "parent", - "id": 1520, + "id": 1580, "mask": "BigInt:549755813888" }, "name": { @@ -146640,156 +144236,115 @@ } }, "cooldowns": { "timers": {} }, - "id": 1522, + "id": 1582, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1520, + "id": 1580, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1583, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1580, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1523, + "id": 1584, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1520, + "id": 1580, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Large Container", "mask": "BigInt:137438953472" }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.01010101010086828, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" } }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1524, - "tags": ["facilityModule", "facilityModuleType:production"] + "cooldowns": { "timers": {} }, + "id": 1585, + "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1520, + "id": 1580, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Medium Container", + "value": "Large Container", "mask": "BigInt:137438953472" }, "facilityModuleBonus": { "name": "facilityModuleBonus", - "storage": 20000, + "storage": 60000, "mask": "BigInt:70368744177664" } }, "cooldowns": { "timers": {} }, - "id": 1525, + "id": 1586, "tags": ["facilityModule", "facilityModuleType:storage"] }, { "components": { "parent": { "name": "parent", - "id": 1520, + "id": 1580, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -146799,8 +144354,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0.01010101010086828, + "food": 0.7121212121211471, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -146821,7 +144376,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -146834,7 +144389,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -146844,9 +144399,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -146858,53 +144413,31 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1526, + "id": 1587, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1520, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1527, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1520, + "id": 1580, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Fuelium Refinery", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -146914,8 +144447,8 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0.01010101010086828, + "food": 0.7121212121211471, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -146936,7 +144469,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 0.9333333333333642, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -146949,7 +144482,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 0.8333333333333774 } }, "name": "production", @@ -146959,9 +144492,9 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, @@ -146973,175 +144506,37 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, "produced": true, "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 8, + "value": 5, "mask": "BigInt:281474976710656" } }, "cooldowns": { "timers": { "production": 1 } }, - "id": 1528, + "id": 1588, "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "parent": { - "name": "parent", - "id": 1520, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1529, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1520, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Fuelium Refinery", - "mask": "BigInt:137438953472" - }, - "production": { - "buffer": { - "production": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0.01010101010086828, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "consumption": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - } - }, - "name": "production", - "active": true, - "pac": { - "coolant": { "consumes": 0, "produces": 0 }, - "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, - "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 0, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 1400 }, - "fuelium": { "consumes": 1200, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, - "goldOre": { "consumes": 0, "produces": 0 }, - "hullPlates": { "consumes": 0, "produces": 0 }, - "hydrogen": { "consumes": 0, "produces": 0 }, - "ice": { "consumes": 0, "produces": 0 }, - "metals": { "consumes": 0, "produces": 0 }, - "ore": { "consumes": 0, "produces": 0 }, - "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, - "superconductors": { "consumes": 0, "produces": 0 }, - "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 0, "produces": 0 } - }, - "produced": true, - "mask": "BigInt:1099511627776" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 8, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": { "production": 1 } }, - "id": 1530, - "tags": ["facilityModule", "facilityModuleType:production"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1520, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "crewRequirement": { - "name": "crewRequirement", - "value": 1, - "mask": "BigInt:281474976710656" - } - }, - "cooldowns": { "timers": {} }, - "id": 1531, - "tags": ["facilityModule", "facilityModuleType:military"] - }, - { - "components": { - "budget": { - "allocationIdCounter": 29, - "allocations": [], - "available": 114261, - "money": 114261, - "name": "budget", - "mask": "BigInt:16" + "budget": { + "allocationIdCounter": 2, + "allocations": [ + { + "amount": 41360, + "issued": 309, + "meta": { "tradeId": "1589:2347:sell:309" }, + "id": 1 + } + ], + "available": 4548570, + "money": 4589930, + "name": "budget", + "mask": "BigInt:16" }, "docks": { "name": "docks", @@ -147157,37 +144552,65 @@ }, "modules": { "name": "modules", - "ids": [1533, 1534, 1535, 1536, 1537, 1538], + "ids": [1590, 1591, 1592, 1593, 1594, 1595, 1596, 1597, 1598], "mask": "BigInt:68719476736" }, "position": { "name": "position", "angle": 0, - "coord": [2.490789619908412, -2.9497093192887993], - "sector": 15, + "coord": [-15.491385414448224, 13.775023831580398], + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" }, "render": { - "color": 16251995, + "color": 16750653, "defaultScale": 1, "name": "render", "layer": "facility", - "texture": "fHub", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [], - "max": 20000, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 940, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1589:2347:sell:309" }, + "id": 1 + } + ], + "max": 181000, "availableWares": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13452, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -147201,14 +144624,14 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3639 + "water": 0 }, "stored": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 13452, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -147222,17 +144645,17 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 3639 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 9675, "engineParts": 0, - "food": 13333, - "fuel": 0, + "food": 96756, + "fuel": 21028, "fuelium": 0, - "gold": 0, + "gold": 1935, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -147240,10 +144663,10 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 29027, "superconductors": 0, "tauMetal": 0, - "water": 6666 + "water": 22576 }, "name": "storage", "mask": "BigInt:35184372088832" @@ -147252,25 +144675,25 @@ "auto": { "pricing": true, "quantity": true }, "name": "trade", "pricing": { - "coolant": [104.33120158857247, 113.83631907353433], - "drones": [1630.4131024065462, 1640.9273735365564], - "electronics": [203.38527617489797, 214.60995832122052], - "engineParts": [257.3150528380777, 266.6050465497797], - "food": [14.28269009454367, 19.948426372231246], - "fuel": [56.02026215762197, 70.82819805474671], - "fuelium": [39.35978923780854, 58.353465553777475], - "gold": [794.7530522316164, 809.5716617011082], - "goldOre": [40.96184854704753, 59.20601502429142], - "hullPlates": [28.916803005591643, 38.8834362831108], - "hydrogen": [77.18965346607263, 93.38035819785904], - "ice": [15.33986116651306, 24.82985100993467], - "metals": [77.51660434110033, 94.58518928521273], - "ore": [22.555045456078822, 39.11044540517412], - "silica": [47.09455725714251, 62.14032773462046], - "silicon": [21.871875787104727, 41.49421213067065], - "superconductors": [240.35597405242834, 249.4469772082093], - "tauMetal": [583.7903485178473, 591.4146716002793], - "water": [28.940198892975083, 43] + "coolant": [121.74348047165259, 133.22638073038385], + "drones": [1395.7666789066088, 1403.0068975809104], + "electronics": [350, 357], + "engineParts": [474.7738549463079, 489.4836633454343], + "food": [16, 22], + "fuel": [53.57218036793135, 62.06127105010735], + "fuelium": [42.81841088854233, 56.73228219253034], + "gold": [817.763063296824, 828.6137086682186], + "goldOre": [37.45498340135679, 55.77597759211713], + "hullPlates": [33.54787292136125, 45.718605729233104], + "hydrogen": [41.367134124383774, 47.573771335558284], + "ice": [21.95577708934551, 41.89638414509565], + "metals": [41.68655080774278, 60.19882493281212], + "ore": [27.971034573464102, 35.33170142212526], + "silica": [50.64784092897917, 61.084466942941106], + "silicon": [31.743469683383257, 36], + "superconductors": [192.44377677633832, 197.71391742070765], + "tauMetal": [501.85669318516574, 508.27972066988883], + "water": [30.023123679261808, 43] }, "lastPriceAdjust": { "commodities": { @@ -147299,85 +144722,85 @@ "offers": { "coolant": { "active": false, - "price": 112, + "price": 126, "quantity": 0, "type": "buy" }, "drones": { "active": false, - "price": 1636, + "price": 1401, "quantity": 0, "type": "buy" }, "electronics": { - "active": false, - "price": 208, + "active": true, + "price": 354, "quantity": 0, - "type": "buy" + "type": "sell" }, "engineParts": { "active": false, - "price": 261, + "price": 482, "quantity": 0, "type": "buy" }, "food": { "active": true, - "price": 18, + "price": 17, "quantity": 0, - "type": "buy" + "type": "sell" }, "fuel": { - "active": false, - "price": 64, - "quantity": 0, + "active": true, + "price": 58, + "quantity": 21028, "type": "buy" }, "fuelium": { "active": false, - "price": 43, + "price": 53, "quantity": 0, "type": "buy" }, "gold": { - "active": false, - "price": 803, - "quantity": 0, + "active": true, + "price": 817, + "quantity": 1935, "type": "buy" }, "goldOre": { "active": false, - "price": 49, + "price": 41, "quantity": 0, "type": "buy" }, "hullPlates": { "active": false, - "price": 31, + "price": 36, "quantity": 0, "type": "buy" }, "hydrogen": { "active": false, - "price": 89, + "price": 43, "quantity": 0, "type": "buy" }, "ice": { "active": false, - "price": 20, + "price": 22, "quantity": 0, "type": "buy" }, "metals": { "active": false, - "price": 83, + "price": 44, "quantity": 0, "type": "buy" }, "ore": { "active": false, - "price": 22, + "price": 33, "quantity": 0, "type": "buy" }, @@ -147388,27 +144811,27 @@ "type": "buy" }, "silicon": { - "active": false, - "price": 26, - "quantity": 0, + "active": true, + "price": 33, + "quantity": 29027, "type": "buy" }, "superconductors": { "active": false, - "price": 245, + "price": 192, "quantity": 0, "type": "buy" }, "tauMetal": { "active": false, - "price": 590, + "price": 505, "quantity": 0, "type": "buy" }, "water": { "active": true, - "price": 39, - "quantity": 3027, + "price": 35, + "quantity": 22576, "type": "buy" } }, @@ -147416,161 +144839,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1474 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1508 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "GBF Large Freighter B", - "time": 1516 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1532 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1547 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1637 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "GBF Large Freighter B", - "time": 1638 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1687 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1702 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1739 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "GBF Large Freighter B", - "time": 1763 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1799 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1867 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1873 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "GBF Large Freighter B", - "time": 1888 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "GBF Freighter A", - "time": 1931 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "GBF Large Freighter B", - "time": 2009 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -147580,32 +144849,32 @@ }, "name": { "name": "name", - "value": "THT Therr Hub", + "value": "GBF GJ 229 II Factory", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2246], + "ids": [2249, 2248, 2247, 2246], "mask": "BigInt:4294967296" }, "crew": { "name": "crew", - "workers": { "current": 3.5, "max": 14 }, + "workers": { "current": 14.5, "max": 14 }, "mood": 50, "mask": "BigInt:140737488355328" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "compoundProduction": { "name": "compoundProduction", "pac": { "coolant": { "consumes": 0, "produces": 0 }, "drones": { "consumes": 0, "produces": 0 }, - "electronics": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 104, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 1500 }, + "fuel": { "consumes": 326, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, - "gold": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, "hullPlates": { "consumes": 0, "produces": 0 }, "hydrogen": { "consumes": 0, "produces": 0 }, @@ -147613,28 +144882,168 @@ "metals": { "consumes": 0, "produces": 0 }, "ore": { "consumes": 0, "produces": 0 }, "silica": { "consumes": 0, "produces": 0 }, - "silicon": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 52, "produces": 0 } + "water": { "consumes": 350, "produces": 0 } }, "mask": "BigInt:1024" } }, "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, - "id": 1532, + "id": 1589, "tags": ["selection", "facility"] }, { "components": { "parent": { "name": "parent", - "id": 1532, + "id": 1589, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Sector Hub", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1590, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1589, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1591, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1589, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1592, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1589, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1593, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1589, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1594, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1589, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1595, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1589, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", "mask": "BigInt:137438953472" }, "production": { @@ -147665,7 +145074,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 3.733333333333343, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -147679,7 +145088,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 1.8666666666666714 + "water": 0 } }, "name": "production", @@ -147689,8 +145098,8 @@ "drones": { "consumes": 0, "produces": 0 }, "electronics": { "consumes": 0, "produces": 0 }, "engineParts": { "consumes": 0, "produces": 0 }, - "food": { "consumes": 104, "produces": 0 }, - "fuel": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, "fuelium": { "consumes": 0, "produces": 0 }, "gold": { "consumes": 0, "produces": 0 }, "goldOre": { "consumes": 0, "produces": 0 }, @@ -147703,226 +145112,263 @@ "silicon": { "consumes": 0, "produces": 0 }, "superconductors": { "consumes": 0, "produces": 0 }, "tauMetal": { "consumes": 0, "produces": 0 }, - "water": { "consumes": 52, "produces": 0 } + "water": { "consumes": 175, "produces": 0 } }, - "produced": true, + "produced": false, "mask": "BigInt:1099511627776" - } - }, - "cooldowns": { "timers": { "production": 0 } }, - "id": 1533, - "tags": ["facilityModule", "facilityModuleType:hub"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1532, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Basic Habitat", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "workers": 14, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1534, - "tags": ["facilityModule", "facilityModuleType:habitat"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1532, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Medium Container", - "mask": "BigInt:137438953472" - }, - "facilityModuleBonus": { - "name": "facilityModuleBonus", - "storage": 20000, - "mask": "BigInt:70368744177664" - } - }, - "cooldowns": { "timers": {} }, - "id": 1535, - "tags": ["facilityModule", "facilityModuleType:storage"] - }, - { - "components": { - "parent": { - "name": "parent", - "id": 1532, - "mask": "BigInt:549755813888" - }, - "name": { - "name": "name", - "value": "Small Defense Module", - "mask": "BigInt:137438953472" - }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1536, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1596, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1532, + "id": 1589, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Electronics Factory", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 150 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 150, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 30, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 450, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 20, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1537, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1597, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { "parent": { "name": "parent", - "id": 1532, + "id": 1589, "mask": "BigInt:549755813888" }, "name": { "name": "name", - "value": "Small Defense Module", + "value": "Farm", "mask": "BigInt:137438953472" }, - "damage": { - "value": 15, - "range": 3, - "cooldown": 0.7, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" }, "crewRequirement": { "name": "crewRequirement", - "value": 1, + "value": 5, "mask": "BigInt:281474976710656" } }, - "cooldowns": { "timers": {} }, - "id": 1538, - "tags": ["facilityModule", "facilityModuleType:military"] + "cooldowns": { "timers": { "production": 0 } }, + "id": 1598, + "tags": ["facilityModule", "facilityModuleType:production"] }, { "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "trade" }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.1, - "rotary": 0.19198621771937624, - "cruise": 1.1, - "ttc": 13, - "maneuver": 0.1, - "active": true, - "currentSpeed": 0.32000000000000006, - "currentRotary": 1.7763568394002505e-15, - "state": "cruise", - "target": 482, - "targetReached": false, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "goto", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ + "budget": { + "allocationIdCounter": 2, + "allocations": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 482 }, - { "type": "dock", "targetId": 482 }, - { - "targetId": 482, - "offer": { - "initiator": 1539, - "quantity": 313, - "commodity": "water", - "factionId": 222, - "budget": 482, - "allocations": { - "buyer": { "budget": null, "storage": 42 }, - "seller": { "budget": null, "storage": 40 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "amount": 216, + "issued": 771, + "meta": { "tradeId": "1611:294:buy:771" }, + "id": 1 } ], - "mask": "BigInt:134217728" + "available": 526059, + "money": 526275, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [ + 1600, 1601, 1602, 1603, 1604, 1605, 1606, 1607, 1608, 1609, 1610 + ], + "mask": "BigInt:68719476736" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 17.613247343058568, - "coord": [12.734131974419158, 13.315121377071893], - "sector": 2, - "moved": true + "angle": 0, + "coord": [-23.51367875825406, 22.77764552673166], + "sector": 15, + "moved": false, + "mask": "BigInt:2199023255552" }, "render": { - "color": 7326194, - "defaultScale": 0.4, + "color": 16251995, + "defaultScale": 1, "name": "render", - "layer": "ship", - "texture": "lCiv", + "layer": "facility", + "texture": "fFactory", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -147937,6 +145383,33 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, + "ice": 680, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 573, + "type": "incoming", + "meta": { "tradeId": "1599:2356:sell:573" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 6, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, @@ -147944,15 +145417,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 313 + "water": 0 }, - "issued": 3513, - "type": "outgoing", - "meta": { "tradeId": "482:1539:sell:3513" }, - "id": 40 + "issued": 771, + "type": "incoming", + "meta": { "tradeId": "1599:294:sell:771" }, + "id": 2 } ], - "max": 800, + "max": 61000, "availableWares": { "coolant": 0, "drones": 0, @@ -147993,190 +145466,3321 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 313 + "water": 0 }, "quota": { "coolant": 0, "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, - "fuel": 0, + "food": 31926, + "fuel": 3745, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 10216, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 15111 }, "name": "storage", "mask": "BigInt:35184372088832" }, - "dockable": { - "name": "dockable", - "size": "large", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 800, - "price": 65, - "target": "ACT Gaia Mining Complex", - "time": 2099 + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [54.98895639636285, 74.26085723128728], + "drones": [1557.9022319198018, 1568.4490976663192], + "electronics": [442.01209710161663, 453.35495773008785], + "engineParts": [197.89775534155402, 210.39934506888144], + "food": [18, 19.87757492249182], + "fuel": [74.70257899948284, 77], + "fuelium": [62.77496124227818, 76.57174191210486], + "gold": [742.7296392268111, 758.3855244449445], + "goldOre": [34.01090633343455, 48.79941744831612], + "hullPlates": [55.085615949549116, 64.97290960893376], + "hydrogen": [102.82106545081744, 114.26087532638167], + "ice": [21.885575422247165, 27], + "metals": [51.57100834700896, 69.89530417481348], + "ore": [21.533281310894274, 36.50804520915638], + "silica": [47.78776674303349, 61.94892085576413], + "silicon": [34.67154803048136, 51.47376222307618], + "superconductors": [557.3711774505434, 573.2812520107929], + "tauMetal": [402.0154495765063, 416.7564138315116], + "water": [36.57032675657936, 43] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 800, - "price": 65, - "target": "ACT Gaia Mining Complex", - "time": 2464 + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 72, + "quantity": 0, + "type": "buy" }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 800, - "price": 65, - "target": "ACT Gaia Mining Complex", - "time": 2827 + "drones": { + "active": false, + "price": 1568, + "quantity": 0, + "type": "buy" }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 800, - "price": 62, - "target": "ACT Gaia Mining Complex", - "time": 3193 - } - ], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 5, - "range": 1, - "cooldown": 0.3, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "largeFreighterA", - "value": "Large Freighter A", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "UEN Large Freighter A", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 482, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1539, - "tags": ["selection", "ship", "role:transport"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "trade" }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, - "active": true, - "currentSpeed": 0.7, - "currentRotary": -1.3322676295501878e-15, - "state": "cruise", - "target": 35, - "targetReached": false, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "goto", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 153 }, - { "type": "teleport", "targetId": 155 }, - { "type": "move", "targetId": 505 }, - { "type": "dock", "targetId": 505 }, - { - "targetId": 505, - "offer": { - "initiator": 1540, - "quantity": 61, - "commodity": "fuel", - "factionId": 222, - "budget": 482, - "allocations": { - "buyer": { "budget": 41, "storage": 33 }, - "seller": { "budget": null, "storage": 149 } - }, - "price": 62, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 155 }, - { "type": "teleport", "targetId": 153 }, - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 482 }, - { "type": "dock", "targetId": 482 }, - { - "targetId": 482, - "offer": { - "initiator": 1540, - "quantity": 61, - "commodity": "fuel", - "factionId": 222, - "budget": 482, - "allocations": { - "buyer": { "budget": null, "storage": 43 }, - "seller": { "budget": null, "storage": 34 } + "electronics": { + "active": false, + "price": 448, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 206, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 18, + "quantity": 0, + "type": "sell" + }, + "fuel": { + "active": true, + "price": 75, + "quantity": 3745, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 64, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 757, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 34, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 59, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 106, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": true, + "price": 24, + "quantity": 10216, + "type": "buy" + }, + "metals": { + "active": false, + "price": 66, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 27, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 54, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 39, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 564, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 402, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 41, + "quantity": 0, + "type": "sell" + } + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "THT Therr Farming Facility", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [295, 294, 2356], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 4.999999999999992, "max": 64 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 3750 }, + "fuel": { "consumes": 440, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 875, "produces": 900 } + }, + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1599, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1600, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1601, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1602, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1603, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1604, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Large Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 60000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1605, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1606, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Habitation Dome", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 50, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1607, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Water Production", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 1200, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 900 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 4, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1608, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1609, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1599, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Farm", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 750 }, + "fuel": { "consumes": 88, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 175, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 5, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1610, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 2503254, + "money": 2503254, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [ + 1612, 1613, 1614, 1615, 1616, 1617, 1618, 1619, 1620, 1621, 1622 + ], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-1.70459744809156, 4.544672680239336], + "sector": 15, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16251995, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fMin", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 19, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 6, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 771, + "type": "outgoing", + "meta": { "tradeId": "1611:294:buy:771" }, + "id": 7 + } + ], + "max": 81000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 27035, + "fuelium": 22, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 27041, + "fuelium": 22, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 43615, + "fuelium": 37384, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [106.5591481602209, 123.91997133899496], + "drones": [1048.1376447302987, 1063.4954444058185], + "electronics": [356.8041873811543, 369.3958860180154], + "engineParts": [281.21214895654396, 290.2374467602852], + "food": [16.562047612022894, 22.722722014326145], + "fuel": [61, 63], + "fuelium": [63.00492034521761, 75], + "gold": [428.43407186226904, 439.70950107059747], + "goldOre": [37.75418002332861, 54.1454666873102], + "hullPlates": [27.36633913338672, 43.027620080591646], + "hydrogen": [98.00426880015968, 113.8878940142908], + "ice": [26.81814334580354, 46.521094529037015], + "metals": [61.569367980412224, 76.70084295263827], + "ore": [33.95937338752344, 50.205923376025346], + "silica": [23.533340640713295, 40.840527065664915], + "silicon": [27.58544368505961, 42.15210629639387], + "superconductors": [469.0445713309998, 476.58873707688673], + "tauMetal": [528.3702262149757, 536.1982758458932], + "water": [25.856281621498066, 43.81108577794146] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 116, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1056, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 358, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 281, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": false, + "price": 20, + "quantity": 0, + "type": "buy" + }, + "fuel": { + "active": true, + "price": 62, + "quantity": 27035, + "type": "sell" + }, + "fuelium": { + "active": true, + "price": 67, + "quantity": 37362, + "type": "buy" + }, + "gold": { + "active": false, + "price": 430, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 42, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 27, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 98, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 43, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 70, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 36, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 35, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 33, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 473, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 532, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": false, + "price": 32, + "quantity": 0, + "type": "buy" + } + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "THT Therr Mining Complex", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [293, 2355], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 14.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 5600 }, + "fuelium": { "consumes": 4800, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1611, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1612, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Storage", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 1000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1613, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1614, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Fuelium Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.8781144781143713, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1615, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1616, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Fuelium Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.8781144781143713, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1617, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1618, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Fuelium Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.7461279461278423, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1619, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1620, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Fuelium Refinery", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0.7461279461278423, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 0, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 1400 }, + "fuelium": { "consumes": 1200, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 0, "produces": 0 } + }, + "produced": false, + "mask": "BigInt:1099511627776" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 8, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1621, + "tags": ["facilityModule", "facilityModuleType:production"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1611, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1622, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "budget": { + "allocationIdCounter": 1, + "allocations": [], + "available": 265648, + "money": 265648, + "name": "budget", + "mask": "BigInt:16" + }, + "docks": { + "name": "docks", + "docked": [], + "pads": { "large": 1, "medium": 3, "small": 3 }, + "mask": "BigInt:65536" + }, + "facilityModuleQueue": { + "name": "facilityModuleQueue", + "building": null, + "queue": [], + "mask": "BigInt:262144" + }, + "modules": { + "name": "modules", + "ids": [1624, 1625, 1626, 1627, 1628, 1629], + "mask": "BigInt:68719476736" + }, + "position": { + "name": "position", + "angle": 0, + "coord": [-4.57416062373845, -5.547389577501253], + "sector": 15, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16251995, + "defaultScale": 1, + "name": "render", + "layer": "facility", + "texture": "fHub", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 20000, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 8143, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 2647 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 8143, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 2647 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 13333, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6666 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "trade": { + "auto": { "pricing": true, "quantity": true }, + "name": "trade", + "pricing": { + "coolant": [143.70157451139488, 150.8368604507396], + "drones": [1156.9744125581306, 1167.5959009663939], + "electronics": [158.32518810625308, 175.5118481841698], + "engineParts": [324.22232519770023, 334.6604126815021], + "food": [16.358097006831578, 19.93154417233822], + "fuel": [70.22452799206195, 79.74021705686582], + "fuelium": [73.51398119280412, 82.19445548900546], + "gold": [771.6177340491656, 779.5032599290789], + "goldOre": [57.36833203989738, 67.32721349057726], + "hullPlates": [37.88561774273947, 47.16554377164013], + "hydrogen": [35.658527884151596, 43.330176435489605], + "ice": [14.072471378106211, 23.540257090112913], + "metals": [90.94949741058312, 110.52913749845509], + "ore": [24.780535456053634, 35.63466273745979], + "silica": [30.432431892658133, 47.92524976502444], + "silicon": [35.02333095005095, 43.343786736096774], + "superconductors": [523.3292904858171, 529.5351768132787], + "tauMetal": [368.4173916676579, 388.1637947045465], + "water": [29.699828050290037, 43] + }, + "lastPriceAdjust": { + "commodities": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "time": 2700 + }, + "offers": { + "coolant": { + "active": false, + "price": 147, + "quantity": 0, + "type": "buy" + }, + "drones": { + "active": false, + "price": 1159, + "quantity": 0, + "type": "buy" + }, + "electronics": { + "active": false, + "price": 167, + "quantity": 0, + "type": "buy" + }, + "engineParts": { + "active": false, + "price": 333, + "quantity": 0, + "type": "buy" + }, + "food": { + "active": true, + "price": 19, + "quantity": 5190, + "type": "buy" + }, + "fuel": { + "active": false, + "price": 73, + "quantity": 0, + "type": "buy" + }, + "fuelium": { + "active": false, + "price": 74, + "quantity": 0, + "type": "buy" + }, + "gold": { + "active": false, + "price": 772, + "quantity": 0, + "type": "buy" + }, + "goldOre": { + "active": false, + "price": 57, + "quantity": 0, + "type": "buy" + }, + "hullPlates": { + "active": false, + "price": 38, + "quantity": 0, + "type": "buy" + }, + "hydrogen": { + "active": false, + "price": 42, + "quantity": 0, + "type": "buy" + }, + "ice": { + "active": false, + "price": 23, + "quantity": 0, + "type": "buy" + }, + "metals": { + "active": false, + "price": 97, + "quantity": 0, + "type": "buy" + }, + "ore": { + "active": false, + "price": 26, + "quantity": 0, + "type": "buy" + }, + "silica": { + "active": false, + "price": 34, + "quantity": 0, + "type": "buy" + }, + "silicon": { + "active": false, + "price": 36, + "quantity": 0, + "type": "buy" + }, + "superconductors": { + "active": false, + "price": 524, + "quantity": 0, + "type": "buy" + }, + "tauMetal": { + "active": false, + "price": 373, + "quantity": 0, + "type": "buy" + }, + "water": { + "active": true, + "price": 42, + "quantity": 4019, + "type": "buy" + } + }, + "mask": "BigInt:34359738368" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 100000, "regen": 0, "value": 100000 }, + "mask": "BigInt:1048576" + }, + "name": { + "name": "name", + "value": "THT Therr Hub", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [292], + "mask": "BigInt:4294967296" + }, + "crew": { + "name": "crew", + "workers": { "current": 3.5, "max": 14 }, + "mood": 50, + "mask": "BigInt:140737488355328" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "compoundProduction": { + "name": "compoundProduction", + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 104, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 52, "produces": 0 } + }, + "mask": "BigInt:1024" + } + }, + "cooldowns": { "timers": { "facilityModuleBuild": 0 } }, + "id": 1623, + "tags": ["selection", "facility"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1623, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Sector Hub", + "mask": "BigInt:137438953472" + }, + "production": { + "buffer": { + "production": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "consumption": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 3.733333333333343, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 1.8666666666666714 + } + }, + "name": "production", + "active": true, + "pac": { + "coolant": { "consumes": 0, "produces": 0 }, + "drones": { "consumes": 0, "produces": 0 }, + "electronics": { "consumes": 0, "produces": 0 }, + "engineParts": { "consumes": 0, "produces": 0 }, + "food": { "consumes": 104, "produces": 0 }, + "fuel": { "consumes": 0, "produces": 0 }, + "fuelium": { "consumes": 0, "produces": 0 }, + "gold": { "consumes": 0, "produces": 0 }, + "goldOre": { "consumes": 0, "produces": 0 }, + "hullPlates": { "consumes": 0, "produces": 0 }, + "hydrogen": { "consumes": 0, "produces": 0 }, + "ice": { "consumes": 0, "produces": 0 }, + "metals": { "consumes": 0, "produces": 0 }, + "ore": { "consumes": 0, "produces": 0 }, + "silica": { "consumes": 0, "produces": 0 }, + "silicon": { "consumes": 0, "produces": 0 }, + "superconductors": { "consumes": 0, "produces": 0 }, + "tauMetal": { "consumes": 0, "produces": 0 }, + "water": { "consumes": 52, "produces": 0 } + }, + "produced": true, + "mask": "BigInt:1099511627776" + } + }, + "cooldowns": { "timers": { "production": 0 } }, + "id": 1624, + "tags": ["facilityModule", "facilityModuleType:hub"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1623, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Basic Habitat", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "workers": 14, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1625, + "tags": ["facilityModule", "facilityModuleType:habitat"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1623, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Medium Container", + "mask": "BigInt:137438953472" + }, + "facilityModuleBonus": { + "name": "facilityModuleBonus", + "storage": 20000, + "mask": "BigInt:70368744177664" + } + }, + "cooldowns": { "timers": {} }, + "id": 1626, + "tags": ["facilityModule", "facilityModuleType:storage"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1623, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1627, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1623, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1628, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "parent": { + "name": "parent", + "id": 1623, + "mask": "BigInt:549755813888" + }, + "name": { + "name": "name", + "value": "Small Defense Module", + "mask": "BigInt:137438953472" + }, + "damage": { + "value": 15, + "range": 3, + "cooldown": 0.7, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "crewRequirement": { + "name": "crewRequirement", + "value": 1, + "mask": "BigInt:281474976710656" + } + }, + "cooldowns": { "timers": {} }, + "id": 1629, + "tags": ["facilityModule", "facilityModuleType:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.19, + "currentRotary": 0.124752616721167, + "state": "cruise", + "target": 41, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2499 } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 498, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1630, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.19, + "currentRotary": 0.124752616721167, + "state": "cruise", + "target": 41, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2500 } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 498, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1631, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.7, + "currentRotary": 0.06000931793159392, + "state": "cruise", + "target": 2501, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2501 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -0.3272331607564323, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 485, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1632, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 1.5009831567151233, + "cruise": 4, + "ttc": 7, + "maneuver": 0.3, + "active": true, + "currentSpeed": 1.9, + "currentRotary": 0.06421275704868723, + "state": "cruise", + "target": 2502, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2502 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 5.956672631543166, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 11, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "courierA", + "value": "Courier A", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Courier A", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 485, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1633, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.7, + "currentRotary": 0.059212711114905225, + "state": "cruise", + "target": 2503, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2503 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -0.3145767608161094, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 485, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1634, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.05, + "currentRotary": -0.013379204323642035, + "state": "warming", + "target": 476, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "auto", + "type": "trade", + "actions": [ + { "type": "dock", "targetId": 476 }, + { + "targetId": 476, + "offer": { + "initiator": 1635, + "quantity": 260, + "commodity": "food", + "factionId": 222, + "budget": 476, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, "price": 0, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 447 }, + { "type": "dock", "targetId": 447 }, + { + "targetId": 447, + "offer": { + "initiator": 1635, + "quantity": 260, + "commodity": "food", + "factionId": 222, + "budget": 476, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 17, "type": "sell" }, "type": "trade" @@ -148189,8 +148793,405 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 11.03493454711874, - "coord": [-23.070134166028513, 5.600519165443259], + "angle": 0.0371631639309522, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 260, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 774, + "type": "incoming", + "meta": { "tradeId": "476:1635:buy:774" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 260, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 774, + "type": "outgoing", + "meta": { "tradeId": "447:1635:sell:774" }, + "id": 2 + } + ], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 476, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 1635, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 1.5009831567151233, + "cruise": 4, + "ttc": 7, + "maneuver": 0.3, + "active": true, + "currentSpeed": 4, + "currentRotary": -0.00889896647671673, + "state": "cruise", + "target": 2505, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2505 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 12.635872106637645, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 11, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "courierA", + "value": "Courier A", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Courier A", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 476, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1636, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.7, + "currentRotary": -0.039870751352417244, + "state": "cruise", + "target": 2506, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2506 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.126511091403399, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -148205,63 +149206,179 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 61, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3552, - "type": "incoming", - "meta": { "tradeId": "505:1540:buy:3552" }, - "id": 33 - }, + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 467, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1637, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.7, + "currentRotary": -0.041770805114488496, + "state": "cruise", + "target": 2507, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 61, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3552, - "type": "outgoing", - "meta": { "tradeId": "482:1540:sell:3552" }, - "id": 34 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2507 }], + "type": "move" } ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.1397693606422221, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], "max": 260, "availableWares": { "coolant": 0, @@ -148337,35 +149454,182 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 65, - "target": "ACT Gaia Mining Complex", - "time": 2122 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 65, - "target": "ACT Gaia Mining Complex", - "time": 2588 - }, + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 467, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1638, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.19, + "currentRotary": 0.124752616721167, + "state": "cruise", + "target": 41, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 62, - "target": "ACT Gaia Mining Complex", - "time": 3053 + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2508 } + ], + "type": "move" } ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -148398,10 +149662,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 482, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 454, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1540, + "id": 1639, "tags": ["selection", "ship", "role:transport"] }, { @@ -148418,10 +149682,185 @@ "ttc": 22, "maneuver": 0.05, "active": true, - "currentSpeed": 0.05, - "currentRotary": -4.440892098500626e-15, + "currentSpeed": 0.19, + "currentRotary": 0.124752616721167, + "state": "cruise", + "target": 41, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2509 } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 454, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1640, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 1.5009831567151233, + "cruise": 4, + "ttc": 7, + "maneuver": 0.3, + "active": true, + "currentSpeed": 0.3, + "currentRotary": 0.124752616721171, "state": "warming", - "target": 57, + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -148435,9 +149874,9 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 57 }, - { "type": "teleport", "targetId": 59 }, - { "type": "move", "targetId": 24813 } + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2510 } ], "type": "move" } @@ -148447,8 +149886,350 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -29.661681009875032, - "coord": [-7.693236413839524, 4.930050855414812], + "angle": -187.0743261862622, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 11, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "courierA", + "value": "Courier A", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Courier A", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 454, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 6 } }, + "id": 1641, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.7, + "currentRotary": -0.012002903657037045, + "state": "cruise", + "target": 2511, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2511 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 3.4271744061213507, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 260, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "freighterB", + "value": "Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 447, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1642, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, + "active": true, + "currentSpeed": 0.7, + "currentRotary": -0.0003338379145048087, + "state": "cruise", + "target": 2512, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2512 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -1.2531370250078289, + "coord": [5.495220247229675, 0.6632942659718459], "sector": 10, "moved": true }, @@ -148463,7 +150244,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 20, + "allocationIdCounter": 1, "allocations": [], "max": 260, "availableWares": { @@ -148540,53 +150321,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 558 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 1040 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1520 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 2000 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3188 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -148619,10 +150354,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 470, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 440, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 6 } }, - "id": 1541, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1643, "tags": ["selection", "ship", "role:transport"] }, { @@ -148639,10 +150374,10 @@ "ttc": 22, "maneuver": 0.05, "active": true, - "currentSpeed": 0.7, - "currentRotary": 0, + "currentSpeed": 0.19, + "currentRotary": 0.124752616721167, "state": "cruise", - "target": 437, + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -148654,29 +150389,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 437 }, - { "type": "dock", "targetId": 437 }, - { - "targetId": 437, - "offer": { - "initiator": 1542, - "quantity": 260, - "commodity": "food", - "factionId": 222, - "budget": 470, - "allocations": { - "buyer": { "budget": 36, "storage": 36 }, - "seller": { "budget": null, "storage": 24 } - }, - "price": 18, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2513 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -148684,9 +150403,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.520140556746323, - "coord": [9.316935227087395, 8.085089589576784], - "sector": 10, + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -148700,36 +150419,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3339, - "type": "outgoing", - "meta": { "tradeId": "437:1542:sell:3339" }, - "id": 24 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 260, "availableWares": { "coolant": 0, @@ -148757,7 +150448,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 260, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -148805,35 +150496,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 581 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 1068 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1552 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -148866,10 +150529,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 470, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 433, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1542, + "id": 1644, "tags": ["selection", "ship", "role:transport"] }, { @@ -148886,10 +150549,10 @@ "ttc": 13, "maneuver": 0.1, "active": true, - "currentSpeed": 1.1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 349, + "currentSpeed": 0, + "currentRotary": -0.038521224935754717, + "state": "warming", + "target": 2514, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -148901,52 +150564,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 349 }, - { "type": "dock", "targetId": 349 }, - { - "targetId": 349, - "offer": { - "initiator": 1543, - "quantity": 800, - "commodity": "metals", - "factionId": 222, - "budget": 460, - "allocations": { - "buyer": { "budget": 55, "storage": 19 }, - "seller": { "budget": null, "storage": 41 } - }, - "price": 71, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 39 }, - { "type": "teleport", "targetId": 37 }, - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 460 }, - { "type": "dock", "targetId": 460 }, - { - "targetId": 460, - "offer": { - "initiator": 1543, - "quantity": 800, - "commodity": "metals", - "factionId": 222, - "budget": 460, - "allocations": { - "buyer": { "budget": null, "storage": 71 }, - "seller": { "budget": null, "storage": 20 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2514 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -148954,8 +150574,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 6.597080156942933, - "coord": [-9.91606295470693, 11.737706932876332], + "angle": -1.5990606428944178, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -148970,63 +150590,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 21, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 800, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3423, - "type": "incoming", - "meta": { "tradeId": "349:1543:buy:3423" }, - "id": 19 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 800, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3423, - "type": "outgoing", - "meta": { "tradeId": "460:1543:sell:3423" }, - "id": 20 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 800, "availableWares": { "coolant": 0, @@ -149102,17 +150667,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 800, - "price": 62, - "target": "ACT Gaia Mining Complex", - "time": 3211 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -149145,10 +150700,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 460, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 426, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1543, + "cooldowns": { "timers": { "cruise": 12 } }, + "id": 1645, "tags": ["selection", "ship", "role:transport"] }, { @@ -149165,10 +150720,10 @@ "ttc": 7, "maneuver": 0.3, "active": true, - "currentSpeed": 0.12, - "currentRotary": 1.3322676295501878e-15, - "state": "warming", - "target": 35, + "currentSpeed": 1.01, + "currentRotary": -0.09293303033048828, + "state": "cruise", + "target": 2515, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -149180,56 +150735,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 37 }, - { "type": "teleport", "targetId": 39 }, - { "type": "move", "targetId": 349 }, - { "type": "dock", "targetId": 349 }, - { - "targetId": 349, - "offer": { - "initiator": 1544, - "quantity": 11, - "commodity": "metals", - "factionId": 222, - "budget": 460, - "allocations": { - "buyer": { "budget": 60, "storage": 63 }, - "seller": { "budget": null, "storage": 44 } - }, - "price": 71, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 39 }, - { "type": "teleport", "targetId": 37 }, - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 460 }, - { "type": "dock", "targetId": 460 }, - { - "targetId": 460, - "offer": { - "initiator": 1544, - "quantity": 11, - "commodity": "metals", - "factionId": 222, - "budget": 460, - "allocations": { - "buyer": { "budget": null, "storage": 79 }, - "seller": { "budget": null, "storage": 64 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2515 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -149237,8 +150745,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.321243983496307, - "coord": [-20.743470713010655, -14.059838710715702], + "angle": 1.4615797770186005, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -149253,63 +150761,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 65, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 11, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "incoming", - "meta": { "tradeId": "349:1544:buy:3594" }, - "id": 63 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 11, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "outgoing", - "meta": { "tradeId": "460:1544:sell:3594" }, - "id": 64 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 11, "availableWares": { "coolant": 0, @@ -149385,26 +150838,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 62, - "target": "ACT Gaia Mining Complex", - "time": 2921 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 62, - "target": "ACT Gaia Mining Complex", - "time": 3113 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -149437,10 +150871,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 460, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 419, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 4 } }, - "id": 1544, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1646, "tags": ["selection", "ship", "role:transport"] }, { @@ -149457,10 +150891,10 @@ "ttc": 22, "maneuver": 0.05, "active": true, - "currentSpeed": 0.7, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 460, + "currentSpeed": 0.05, + "currentRotary": 0.276710983014429, + "state": "warming", + "target": 340, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -149475,19 +150909,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 460 }, - { "type": "dock", "targetId": 460 }, + { "type": "move", "targetId": 340 }, + { "type": "dock", "targetId": 340 }, { - "targetId": 460, + "targetId": 340, "offer": { - "initiator": 1545, + "initiator": 1647, "quantity": 260, - "commodity": "fuel", + "commodity": "water", + "factionId": 222, + "budget": 412, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 30, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 35 }, + { "type": "teleport", "targetId": 33 }, + { "type": "move", "targetId": 412 }, + { "type": "dock", "targetId": 412 }, + { + "targetId": 412, + "offer": { + "initiator": 1647, + "quantity": 260, + "commodity": "water", "factionId": 222, - "budget": 460, + "budget": 412, "allocations": { - "buyer": { "budget": null, "storage": 63 }, - "seller": { "budget": null, "storage": 18 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -149502,8 +150957,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 12.940521667696967, - "coord": [-22.675241675302537, -9.861762309182417], + "angle": 4.622359571003848, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -149518,7 +150973,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -149527,7 +150982,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -149540,12 +150995,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 260 }, - "issued": 3159, + "issued": 507, + "type": "incoming", + "meta": { "tradeId": "340:1647:buy:507" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 260 + }, + "issued": 507, "type": "outgoing", - "meta": { "tradeId": "460:1545:sell:3159" }, - "id": 18 + "meta": { "tradeId": "412:1647:sell:507" }, + "id": 2 } ], "max": 260, @@ -149576,7 +151058,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -149623,26 +151105,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 62, - "target": "ACT Gaia Mining Complex", - "time": 2931 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 62, - "target": "ACT Gaia Mining Complex", - "time": 3385 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -149675,10 +151138,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 460, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 412, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1545, + "cooldowns": { "timers": { "cruise": 4 } }, + "id": 1647, "tags": ["selection", "ship", "role:transport"] }, { @@ -149690,15 +151153,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "rotary": 1.5009831567151233, + "cruise": 4, + "ttc": 7, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.7, - "currentRotary": -9.769962616701378e-15, - "state": "cruise", - "target": 57, + "currentSpeed": 0.3, + "currentRotary": 0.07590336412259413, + "state": "warming", + "target": 2517, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -149710,52 +151173,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 57 }, - { "type": "teleport", "targetId": 59 }, - { "type": "move", "targetId": 451 }, - { "type": "dock", "targetId": 451 }, - { - "targetId": 451, - "offer": { - "initiator": 1546, - "quantity": 260, - "commodity": "food", - "factionId": 222, - "budget": 451, - "allocations": { - "buyer": { "budget": null, "storage": 21 }, - "seller": { "budget": null, "storage": 40 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 59 }, - { "type": "teleport", "targetId": 57 }, - { "type": "move", "targetId": 437 }, - { "type": "dock", "targetId": 437 }, - { - "targetId": 437, - "offer": { - "initiator": 1546, - "quantity": 260, - "commodity": "food", - "factionId": 222, - "budget": 451, - "allocations": { - "buyer": { "budget": 39, "storage": 39 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 18, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2517 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -149763,9 +151183,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -42.228051727541555, - "coord": [19.492924454961383, 9.974041255843002], - "sector": 10, + "angle": 2.610309845075278, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -149773,70 +151193,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3534, - "type": "incoming", - "meta": { "tradeId": "451:1546:buy:3534" }, - "id": 21 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3534, - "type": "outgoing", - "meta": { "tradeId": "437:1546:sell:3534" }, - "id": 22 - } - ], - "max": 260, + "allocationIdCounter": 1, + "allocations": [], + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -149905,60 +151270,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 543 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 1001 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1460 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1919 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -149967,13 +151295,13 @@ }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "courierA", + "value": "Courier A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Courier A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -149981,10 +151309,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 451, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 400, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1546, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1648, "tags": ["selection", "ship", "role:transport"] }, { @@ -149996,15 +151324,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 1.5009831567151233, - "cruise": 4, - "ttc": 7, - "maneuver": 0.3, + "rotary": 0.19198621771937624, + "cruise": 1.1, + "ttc": 13, + "maneuver": 0.1, "active": true, - "currentSpeed": 0.24, - "currentRotary": -2.042810365310288e-14, + "currentSpeed": 0.1, + "currentRotary": 0.124752616721167, "state": "warming", - "target": 24628, + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -150017,7 +151345,11 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [{ "type": "move", "targetId": 24628 }], + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2518 } + ], "type": "move" } ], @@ -150026,9 +151358,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -204.22319856893955, - "coord": [-24.459390389624016, -18.135191928208606], - "sector": 11, + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -150036,15 +151368,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 58, + "allocationIdCounter": 1, "allocations": [], - "max": 11, + "max": 800, "availableWares": { "coolant": 0, "drones": 0, @@ -150113,105 +151445,23 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 391 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 559 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 727 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 895 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1063 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1231 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1399 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1566 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 61, - "target": "THT Therr Mining Complex", - "time": 1731 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 5, "range": 1, "cooldown": 0.3, "name": "damage", @@ -150220,13 +151470,13 @@ }, "model": { "name": "model", - "slug": "courierA", - "value": "Courier A", + "slug": "largeFreighterA", + "value": "Large Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Courier A", + "value": "UEN Large Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -150234,10 +151484,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 451, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 388, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 1 } }, - "id": 1547, + "cooldowns": { "timers": { "cruise": 12 } }, + "id": 1649, "tags": ["selection", "ship", "role:transport"] }, { @@ -150249,19 +151499,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "rotary": 0.19198621771937624, + "cruise": 1.1, + "ttc": 13, + "maneuver": 0.1, "active": true, - "currentSpeed": 0.05, - "currentRotary": 1.7763568394002505e-15, - "state": "maneuver", - "target": 24833, + "currentSpeed": 0.1, + "currentRotary": 0.124752616721167, + "state": "warming", + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.05, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -150271,7 +151521,9 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24833, "onlyManeuver": true } + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2519 } ], "type": "move" } @@ -150281,9 +151533,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 8.724967483449712, - "coord": [-9.748983606967187, -4.906686194453467], - "sector": 11, + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -150291,15 +151543,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 1, "allocations": [], - "max": 260, + "max": 800, "availableWares": { "coolant": 0, "drones": 0, @@ -150368,7 +151620,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -150379,12 +151631,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 5, "range": 1, "cooldown": 0.3, "name": "damage", @@ -150393,13 +151645,13 @@ }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "largeFreighterA", + "value": "Large Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Large Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -150407,10 +151659,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 444, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 376, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1548, + "cooldowns": { "timers": { "cruise": 12 } }, + "id": 1650, "tags": ["selection", "ship", "role:transport"] }, { @@ -150422,15 +151674,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "rotary": 1.5009831567151233, + "cruise": 4, + "ttc": 7, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.030000000000000006, - "currentRotary": 1.7763568394002505e-15, - "state": "maneuver", - "target": 437, + "currentSpeed": 0.15, + "currentRotary": -0.06634325626450455, + "state": "warming", + "target": 2520, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -150442,29 +151694,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 437 }, - { "type": "dock", "targetId": 437 }, - { - "targetId": 437, - "offer": { - "initiator": 1549, - "quantity": 260, - "commodity": "food", - "factionId": 222, - "budget": 437, - "allocations": { - "buyer": { "budget": null, "storage": 34 }, - "seller": { "budget": null, "storage": 18 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2520 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -150472,9 +151704,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 20.601067496966785, - "coord": [-8.443637023080866, 4.891395417900419], - "sector": 10, + "angle": 5.26034383354366, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -150482,43 +151714,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3309, - "type": "outgoing", - "meta": { "tradeId": "437:1549:sell:3309" }, - "id": 18 - } - ], - "max": 260, + "allocationIdCounter": 1, + "allocations": [], + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -150545,7 +151749,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 260, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -150587,7 +151791,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -150598,12 +151802,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -150612,13 +151816,13 @@ }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "courierA", + "value": "Courier A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Courier A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -150626,10 +151830,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 437, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 364, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1549, + "cooldowns": { "timers": { "cruise": 4 } }, + "id": 1651, "tags": ["selection", "ship", "role:transport"] }, { @@ -150641,19 +151845,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.19198621771937624, - "cruise": 1.1, - "ttc": 13, - "maneuver": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, "active": true, - "currentSpeed": 0, - "currentRotary": -0.19198621771937624, - "state": "maneuver", - "target": 24860, + "currentSpeed": 0.05, + "currentRotary": -0.024117703153054393, + "state": "warming", + "target": 2521, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.1, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -150662,9 +151866,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24860, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2521 }], "type": "move" } ], @@ -150673,9 +151875,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -37.73960330989615, - "coord": [-8.438993773353753, 0.7558047821411926], - "sector": 4, + "angle": 3.92850011606557, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -150683,15 +151885,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 5, + "allocationIdCounter": 1, "allocations": [], - "max": 800, + "max": 260, "availableWares": { "coolant": 0, "drones": 0, @@ -150760,42 +151962,23 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 800, - "price": 20, - "target": "AMS Wolf 1061 III Factory", - "time": 578 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 800, - "price": 20, - "target": "AMS Wolf 1061 III Factory", - "time": 1057 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 5, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -150804,13 +151987,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterA", - "value": "Large Freighter A", + "slug": "freighterB", + "value": "Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Large Freighter A", + "value": "UEN Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -150818,10 +152001,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 430, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 352, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1550, + "cooldowns": { "timers": { "cruise": 10 } }, + "id": 1652, "tags": ["selection", "ship", "role:transport"] }, { @@ -150833,15 +152016,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 1.5009831567151233, - "cruise": 4, - "ttc": 7, - "maneuver": 0.3, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.00001739261920219448, - "state": "maneuver", - "target": 337, + "currentSpeed": 0.245, + "currentRotary": 0.22312367490876994, + "state": "cruise", + "target": 2522, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -150853,52 +152036,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 337 }, - { "type": "dock", "targetId": 337 }, - { - "targetId": 337, - "offer": { - "initiator": 1551, - "quantity": 11, - "commodity": "water", - "factionId": 222, - "budget": 423, - "allocations": { - "buyer": { "budget": 21, "storage": 31 }, - "seller": { "budget": null, "storage": 112 } - }, - "price": 33, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 37 }, - { "type": "teleport", "targetId": 39 }, - { "type": "move", "targetId": 423 }, - { "type": "dock", "targetId": 423 }, - { - "targetId": 423, - "offer": { - "initiator": 1551, - "quantity": 11, - "commodity": "water", - "factionId": 222, - "budget": 423, - "allocations": { - "buyer": { "budget": null, "storage": 21 }, - "seller": { "budget": null, "storage": 32 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2522 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -150906,8 +152046,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 30.042898846047162, - "coord": [14.93646941735249, 13.94761328213766], + "angle": -1.7621242489693283, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -150916,70 +152056,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 11 - }, - "issued": 3507, - "type": "incoming", - "meta": { "tradeId": "337:1551:buy:3507" }, - "id": 31 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 11 - }, - "issued": 3507, - "type": "outgoing", - "meta": { "tradeId": "423:1551:sell:3507" }, - "id": 32 - } - ], - "max": 11, + "allocationIdCounter": 1, + "allocations": [], + "max": 260, "availableWares": { "coolant": 0, "drones": 0, @@ -151048,7 +152133,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -151059,12 +152144,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -151073,13 +152158,13 @@ }, "model": { "name": "model", - "slug": "courierA", - "value": "Courier A", + "slug": "freighterB", + "value": "Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Courier A", + "value": "UEN Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -151087,10 +152172,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 423, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 340, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1551, + "id": 1653, "tags": ["selection", "ship", "role:transport"] }, { @@ -151107,10 +152192,10 @@ "ttc": 22, "maneuver": 0.05, "active": true, - "currentSpeed": 0.7, - "currentRotary": -5.329070518200751e-15, - "state": "cruise", - "target": 416, + "currentSpeed": 0.05, + "currentRotary": -0.0928425735296754, + "state": "warming", + "target": 2523, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -151122,29 +152207,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 416 }, - { "type": "dock", "targetId": 416 }, - { - "targetId": 416, - "offer": { - "initiator": 1552, - "quantity": 260, - "commodity": "food", - "factionId": 222, - "budget": 416, - "allocations": { - "buyer": { "budget": null, "storage": 23 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2523 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -151152,8 +152217,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 33.28477923220733, - "coord": [-3.051627481862492, -9.032485543896454], + "angle": 2.502990548020941, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -151168,36 +152233,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 260, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3477, - "type": "outgoing", - "meta": { "tradeId": "416:1552:sell:3477" }, - "id": 46 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 260, "availableWares": { "coolant": 0, @@ -151225,7 +152262,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 260, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -151306,10 +152343,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 416, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 328, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1552, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 1654, "tags": ["selection", "ship", "role:transport"] }, { @@ -151321,15 +152358,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "rotary": 1.5009831567151233, + "cruise": 4, + "ttc": 7, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.05, - "currentRotary": 8.881784197001252e-16, + "currentSpeed": 0.3, + "currentRotary": 0.124752616721171, "state": "warming", - "target": 33, + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -151344,42 +152381,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 337 }, - { "type": "dock", "targetId": 337 }, + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 376 }, + { "type": "dock", "targetId": 376 }, { - "targetId": 337, + "targetId": 376, "offer": { - "initiator": 1553, - "quantity": 89, - "commodity": "water", + "initiator": 1655, + "quantity": 11, + "commodity": "fuel", "factionId": 222, - "budget": 409, + "budget": 316, "allocations": { - "buyer": { "budget": 12, "storage": 19 }, - "seller": { "budget": null, "storage": 116 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 33, + "price": 71, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 409 }, - { "type": "dock", "targetId": 409 }, + { "type": "move", "targetId": 43 }, + { "type": "teleport", "targetId": 41 }, + { "type": "move", "targetId": 39 }, + { "type": "teleport", "targetId": 37 }, + { "type": "move", "targetId": 316 }, + { "type": "dock", "targetId": 316 }, { - "targetId": 409, + "targetId": 316, "offer": { - "initiator": 1553, - "quantity": 89, - "commodity": "water", + "initiator": 1655, + "quantity": 11, + "commodity": "fuel", "factionId": 222, - "budget": 409, + "budget": 316, "allocations": { - "buyer": { "budget": null, "storage": 12 }, - "seller": { "budget": null, "storage": 20 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -151394,9 +152433,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 7.476157221557742, - "coord": [5.713291566238302, 5.108403181155014], - "sector": 1, + "angle": -199.64069680062138, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -151404,13 +152443,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 21, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -151419,7 +152458,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -151432,12 +152471,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 89 + "water": 0 }, - "issued": 3579, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "337:1553:buy:3579" }, - "id": 19 + "meta": { "tradeId": "376:1655:buy:309" }, + "id": 1 }, { "amount": { @@ -151446,7 +152485,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -151459,15 +152498,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 89 + "water": 0 }, - "issued": 3579, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "409:1553:sell:3579" }, - "id": 20 + "meta": { "tradeId": "316:1655:sell:309" }, + "id": 2 } ], - "max": 260, + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -151536,7 +152575,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -151547,12 +152586,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -151561,13 +152600,13 @@ }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "courierA", + "value": "Courier A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Courier A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -151575,10 +152614,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 409, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 316, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 3 } }, - "id": 1553, + "cooldowns": { "timers": { "cruise": 6 } }, + "id": 1655, "tags": ["selection", "ship", "role:transport"] }, { @@ -151590,29 +152629,39 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "rotary": 0.19198621771937624, + "cruise": 1.1, + "ttc": 13, + "maneuver": 0.1, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.1, + "currentRotary": -0.02580864666395355, + "state": "warming", + "target": 2525, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2525 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 8.621601082224851, - "coord": [-6.549216427472364, -0.859976372501123], - "sector": 11, + "angle": 3.0825094575168883, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -151620,7 +152669,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -151628,7 +152677,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 260, + "max": 800, "availableWares": { "coolant": 0, "drones": 0, @@ -151697,7 +152746,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -151708,12 +152757,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 5, "range": 1, "cooldown": 0.3, "name": "damage", @@ -151722,13 +152771,13 @@ }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "largeFreighterA", + "value": "Large Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Large Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -151736,10 +152785,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 397, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 304, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1554, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1656, "tags": ["selection", "ship", "role:transport"] }, { @@ -151756,10 +152805,10 @@ "ttc": 22, "maneuver": 0.05, "active": true, - "currentSpeed": 0.7, - "currentRotary": 0, - "state": "cruise", - "target": 373, + "currentSpeed": 0.05, + "currentRotary": -0.0258394673766551, + "state": "warming", + "target": 2526, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -151771,48 +152820,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 373 }, - { "type": "dock", "targetId": 373 }, - { - "targetId": 373, - "offer": { - "initiator": 1555, - "quantity": 260, - "commodity": "fuel", - "factionId": 222, - "budget": 385, - "allocations": { - "buyer": { "budget": 63, "storage": 37 }, - "seller": { "budget": null, "storage": 199 } - }, - "price": 49, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 385 }, - { "type": "dock", "targetId": 385 }, - { - "targetId": 385, - "offer": { - "initiator": 1555, - "quantity": 260, - "commodity": "fuel", - "factionId": 222, - "budget": 385, - "allocations": { - "buyer": { "budget": null, "storage": 77 }, - "seller": { "budget": null, "storage": 38 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2526 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -151820,9 +152830,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.854337610241318, - "coord": [-17.950139179014702, -5.97103467224423], - "sector": 4, + "angle": -3.189083816456784, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -151836,63 +152846,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 39, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 260, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "incoming", - "meta": { "tradeId": "373:1555:buy:3516" }, - "id": 37 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 260, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "outgoing", - "meta": { "tradeId": "385:1555:sell:3516" }, - "id": 38 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 260, "availableWares": { "coolant": 0, @@ -152001,10 +152956,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 385, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 304, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1555, + "cooldowns": { "timers": { "cruise": 12 } }, + "id": 1657, "tags": ["selection", "ship", "role:transport"] }, { @@ -152016,15 +152971,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 1.5009831567151233, - "cruise": 4, - "ttc": 7, - "maneuver": 0.3, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, "active": true, - "currentSpeed": 3.01, - "currentRotary": -2.220446049250313e-15, + "currentSpeed": 0.19, + "currentRotary": 0.124752616721167, "state": "cruise", - "target": 373, + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -152039,40 +152994,46 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 373 }, - { "type": "dock", "targetId": 373 }, + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 454 }, + { "type": "dock", "targetId": 454 }, { - "targetId": 373, + "targetId": 454, "offer": { - "initiator": 1556, - "quantity": 11, - "commodity": "fuel", + "initiator": 1658, + "quantity": 260, + "commodity": "hullPlates", "factionId": 222, - "budget": 373, + "budget": 223, "allocations": { - "buyer": { "budget": null, "storage": 102 }, - "seller": { "budget": null, "storage": 201 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 0, + "price": 47, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 385 }, - { "type": "dock", "targetId": 385 }, + { "type": "move", "targetId": 43 }, + { "type": "teleport", "targetId": 41 }, + { "type": "move", "targetId": 39 }, + { "type": "teleport", "targetId": 37 }, + { "type": "move", "targetId": 223 }, + { "type": "dock", "targetId": 223 }, { - "targetId": 385, + "targetId": 223, "offer": { - "initiator": 1556, - "quantity": 11, - "commodity": "fuel", + "initiator": 1658, + "quantity": 260, + "commodity": "hullPlates", "factionId": 222, - "budget": 373, + "budget": 223, "allocations": { - "buyer": { "budget": 64, "storage": 78 }, - "seller": { "budget": null, "storage": 103 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 49, + "price": 0, "type": "sell" }, "type": "trade" @@ -152085,9 +153046,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -32.71111648601159, - "coord": [5.702762390612202, 0.8607870272959942], - "sector": 4, + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -152095,13 +153056,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 104, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -152110,11 +153071,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 11, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, @@ -152125,10 +153086,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3585, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "373:1556:buy:3585" }, - "id": 102 + "meta": { "tradeId": "454:1658:buy:27" }, + "id": 1 }, { "amount": { @@ -152137,11 +153098,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 11, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, @@ -152152,13 +153113,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3585, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "385:1556:sell:3585" }, - "id": 103 + "meta": { "tradeId": "223:1658:sell:27" }, + "id": 2 } ], - "max": 11, + "max": 260, "availableWares": { "coolant": 0, "drones": 0, @@ -152227,7 +153188,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -152238,12 +153199,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -152252,13 +153213,13 @@ }, "model": { "name": "model", - "slug": "courierA", - "value": "Courier A", + "slug": "freighterB", + "value": "Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Courier A", + "value": "UEN Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -152266,10 +153227,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 373, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 223, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1556, + "id": 1658, "tags": ["selection", "ship", "role:transport"] }, { @@ -152286,10 +153247,10 @@ "ttc": 22, "maneuver": 0.05, "active": true, - "currentSpeed": 0.7, - "currentRotary": 0, + "currentSpeed": 0.19, + "currentRotary": 0.124752616721167, "state": "cruise", - "target": 361, + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -152304,44 +153265,46 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 361 }, - { "type": "dock", "targetId": 361 }, + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 454 }, + { "type": "dock", "targetId": 454 }, { - "targetId": 361, + "targetId": 454, "offer": { - "initiator": 1557, + "initiator": 1659, "quantity": 260, - "commodity": "silicon", + "commodity": "hullPlates", "factionId": 222, - "budget": 361, + "budget": 223, "allocations": { - "buyer": { "budget": null, "storage": 17 }, - "seller": { "budget": null, "storage": 54 } + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 0, + "price": 47, "type": "buy" }, "type": "trade" }, + { "type": "move", "targetId": 43 }, + { "type": "teleport", "targetId": 41 }, { "type": "move", "targetId": 39 }, { "type": "teleport", "targetId": 37 }, - { "type": "move", "targetId": 153 }, - { "type": "teleport", "targetId": 155 }, - { "type": "move", "targetId": 653 }, - { "type": "dock", "targetId": 653 }, + { "type": "move", "targetId": 223 }, + { "type": "dock", "targetId": 223 }, { - "targetId": 653, + "targetId": 223, "offer": { - "initiator": 1557, + "initiator": 1659, "quantity": 260, - "commodity": "silicon", + "commodity": "hullPlates", "factionId": 222, - "budget": 361, + "budget": 223, "allocations": { - "buyer": { "budget": 146, "storage": 146 }, - "seller": { "budget": null, "storage": 18 } + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 27, + "price": 0, "type": "sell" }, "type": "trade" @@ -152354,8 +153317,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 5.644059738873788, - "coord": [-22.970683506413163, 21.506462945847836], + "angle": 1.4212330291253732, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -152370,7 +153333,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -152383,21 +153346,21 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 260, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3408, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "361:1557:buy:3408" }, - "id": 17 + "meta": { "tradeId": "454:1659:buy:27" }, + "id": 1 }, { "amount": { @@ -152410,21 +153373,21 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 260, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3408, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "653:1557:sell:3408" }, - "id": 18 + "meta": { "tradeId": "223:1659:sell:27" }, + "id": 2 } ], "max": 260, @@ -152502,80 +153465,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 20, - "target": "ACT Gaia Factory", - "time": 550 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 20, - "target": "ACT Gaia Factory", - "time": 958 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "ACT Gaia Factory", - "time": 1366 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "ACT Gaia Factory", - "time": 1774 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "ACT Gaia Factory", - "time": 2182 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2590 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2998 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 260, - "price": 27, - "target": "ACT Gaia Factory", - "time": 3406 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -152608,10 +153498,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 361, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 223, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1557, + "id": 1659, "tags": ["selection", "ship", "role:transport"] }, { @@ -152623,15 +153513,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.19198621771937624, - "cruise": 1.1, - "ttc": 13, - "maneuver": 0.1, + "rotary": 0.5410520681182421, + "cruise": 0.7, + "ttc": 22, + "maneuver": 0.05, "active": true, - "currentSpeed": 0, - "currentRotary": 0.19198621771937624, - "state": "maneuver", - "target": 37, + "currentSpeed": 0.7, + "currentRotary": 0.06357370713853872, + "state": "cruise", + "target": 485, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -152646,46 +153536,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 37 }, - { "type": "teleport", "targetId": 39 }, - { "type": "move", "targetId": 349 }, - { "type": "dock", "targetId": 349 }, + { "type": "move", "targetId": 485 }, + { "type": "dock", "targetId": 485 }, { - "targetId": 349, + "targetId": 485, "offer": { - "initiator": 1558, - "quantity": 800, - "commodity": "metals", + "initiator": 1660, + "quantity": 260, + "commodity": "hullPlates", "factionId": 222, - "budget": 349, + "budget": 223, "allocations": { - "buyer": { "budget": null, "storage": 17 }, - "seller": { "budget": null, "storage": 43 } + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 0, + "price": 68, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 39 }, - { "type": "teleport", "targetId": 37 }, - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 460 }, - { "type": "dock", "targetId": 460 }, + { "type": "move", "targetId": 35 }, + { "type": "teleport", "targetId": 33 }, + { "type": "move", "targetId": 223 }, + { "type": "dock", "targetId": 223 }, { - "targetId": 460, + "targetId": 223, "offer": { - "initiator": 1558, - "quantity": 800, - "commodity": "metals", + "initiator": 1660, + "quantity": 260, + "commodity": "hullPlates", "factionId": 222, - "budget": 349, + "budget": 223, "allocations": { - "buyer": { "budget": 57, "storage": 75 }, - "seller": { "budget": null, "storage": 18 } + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 81, + "price": 0, "type": "sell" }, "type": "trade" @@ -152698,9 +153584,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 38.27984741835227, - "coord": [12.926099783264338, -29.921970481379624], - "sector": 1, + "angle": -0.3544808847546226, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -152708,13 +153594,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -152727,10 +153613,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, - "metals": 800, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -152738,10 +153624,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3483, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "349:1558:buy:3483" }, - "id": 17 + "meta": { "tradeId": "485:1660:buy:27" }, + "id": 1 }, { "amount": { @@ -152754,10 +153640,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 260, "hydrogen": 0, "ice": 0, - "metals": 800, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -152765,13 +153651,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3483, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "460:1558:sell:3483" }, - "id": 18 + "meta": { "tradeId": "223:1660:sell:27" }, + "id": 2 } ], - "max": 800, + "max": 260, "availableWares": { "coolant": 0, "drones": 0, @@ -152840,7 +153726,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -152851,12 +153737,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 5, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -152865,13 +153751,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterA", - "value": "Large Freighter A", + "slug": "freighterB", + "value": "Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Large Freighter A", + "value": "UEN Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -152879,30 +153765,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 349, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 223, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1558, + "id": 1660, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.19198621771937624, - "cruise": 1.1, - "ttc": 13, - "maneuver": 0.1, + "rotary": 0.9424777960769379, + "cruise": 2, + "ttc": 6, + "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 35, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -152914,32 +153800,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 37 }, - { "type": "teleport", "targetId": 39 }, - { "type": "move", "targetId": 423 }, - { "type": "dock", "targetId": 423 }, - { - "targetId": 423, - "offer": { - "initiator": 1559, - "quantity": 630, - "commodity": "water", - "factionId": 222, - "budget": 337, - "allocations": { - "buyer": { "budget": 20, "storage": 20 }, - "seller": { "budget": null, "storage": 16 } - }, - "price": 33, - "type": "sell" - }, - "type": "trade" - } + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 195 }, + { "targetFieldId": 195, "targetRockId": null, "type": "mine" } ] } ], @@ -152948,9 +153815,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.940281807755017, - "coord": [1.9864491890851228, 11.493412611147818], - "sector": 2, + "angle": -762.9446843516519, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -152958,43 +153825,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 17, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 630 - }, - "issued": 3336, - "type": "outgoing", - "meta": { "tradeId": "423:1559:sell:3336" }, - "id": 16 - } - ], - "max": 800, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -153035,7 +153874,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 630 + "water": 0 }, "quota": { "coolant": 0, @@ -153063,7 +153902,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -153074,27 +153913,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 5, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "largeFreighterA", - "value": "Large Freighter A", + "slug": "minerA", + "value": "Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Large Freighter A", + "value": "UEN Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -153102,44 +153941,82 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 337, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 400, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1559, - "tags": ["selection", "ship", "role:transport"] + "id": 1661, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.5009831567151233, - "cruise": 4, - "ttc": 7, - "maneuver": 0.3, + "rotary": 0.9424777960769379, + "cruise": 2, + "ttc": 6, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.24, - "currentRotary": -1.180236353093278e-9, - "state": "maneuver", - "target": 24881, + "currentSpeed": 0.15, + "currentRotary": 0.124752616721171, + "state": "warming", + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.3, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ + { + "origin": "auto", + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 388 }, + { "type": "dock", "targetId": 388 }, + { + "targetId": 388, + "offer": { + "commodity": "goldOre", + "initiator": 1662, + "quantity": 160, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 222 + }, + "type": "trade" + } + ], + "type": "trade" + }, { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24881, "onlyManeuver": true } + { "type": "move", "targetId": 37 }, + { "type": "teleport", "targetId": 39 }, + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 3362 } ], "type": "move" } @@ -153149,9 +154026,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 35.40834043158698, - "coord": [12.356194899131628, -15.260494607613284], - "sector": 2, + "angle": -124.24247311446636, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -153159,15 +154036,43 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 7, - "allocations": [], - "max": 11, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 160, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 243, + "type": "outgoing", + "meta": { "tradeId": "388:1662:sell:243" }, + "id": 1 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -153198,7 +154103,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 160, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -153236,66 +154141,38 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "gold", - "quantity": 11, - "price": 544, - "target": "ACT Gaia Factory", - "time": 437 - }, - { - "type": "trade", - "action": "sell", - "commodity": "gold", - "quantity": 11, - "price": 544, - "target": "ACT Gaia Factory", - "time": 655 - }, - { - "type": "trade", - "action": "sell", - "commodity": "gold", - "quantity": 11, - "price": 544, - "target": "ACT Gaia Factory", - "time": 875 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "courierA", - "value": "Courier A", + "slug": "minerA", + "value": "Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Courier A", + "value": "UEN Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -153303,30 +154180,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 325, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 388, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1560, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 5, "mine": 0 } }, + "id": 1662, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, - "currentSpeed": 0.7, - "currentRotary": 0, - "state": "cruise", - "target": 39, + "currentSpeed": 0.2772, + "currentRotary": 0.124752616721171, + "state": "warming", + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -153338,31 +154222,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 39 }, - { "type": "teleport", "targetId": 37 }, - { "type": "move", "targetId": 313 }, - { "type": "dock", "targetId": 313 }, - { - "targetId": 313, - "offer": { - "initiator": 1561, - "quantity": 260, - "commodity": "fuel", - "factionId": 222, - "budget": 313, - "allocations": { - "buyer": { "budget": null, "storage": 16 }, - "seller": { "budget": null, "storage": 10 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2832 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -153370,8 +154236,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.6133127092836954, - "coord": [10.435688247147834, -14.706911905219735], + "angle": -199.64069680062138, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -153380,43 +154246,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 11, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 260, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3207, - "type": "outgoing", - "meta": { "tradeId": "313:1561:sell:3207" }, - "id": 10 - } - ], - "max": 260, + "allocationIdCounter": 1, + "allocations": [], + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -153444,7 +154282,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -153485,7 +154323,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -153496,27 +154334,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, + "value": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Slate", "mask": "BigInt:137438953472" }, "subordinates": { @@ -153524,34 +154362,41 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 313, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 376, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1561, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 7, "mine": 0 } }, + "id": 1663, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.5009831567151233, - "cruise": 4, - "ttc": 7, - "maneuver": 0.3, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, - "currentSpeed": 0.27, - "currentRotary": -3.296446360323557e-8, - "state": "maneuver", - "target": 24861, + "currentSpeed": 0.0504, + "currentRotary": 0.09674930005617988, + "state": "warming", + "target": 189, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.3, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -153560,10 +154405,11 @@ "value": [ { "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 24861, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 189 }, + { "targetFieldId": 189, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -153571,9 +154417,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -36.31039015700303, - "coord": [-16.930232588638898, -23.329800982334387], - "sector": 10, + "angle": -49.637137907116156, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -153581,15 +154427,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, + "allocationIdCounter": 1, "allocations": [], - "max": 11, + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -153664,132 +154510,32 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 372 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 509 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 647 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 785 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 923 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 1872 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2009 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2147 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2285 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2450 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 11, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2588 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, - "range": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "courierA", - "value": "Courier A", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Courier A", + "value": "UEN Slate", "mask": "BigInt:137438953472" }, "subordinates": { @@ -153797,34 +154543,41 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 301, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 364, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1562, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 7 } }, + "id": 1664, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, "currentSpeed": 0, - "currentRotary": 0.5410520681182421, + "currentRotary": 1.5265333522306541, "state": "maneuver", - "target": 24921, + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.05, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -153833,10 +154586,13 @@ "value": [ { "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 24921, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 195 }, + { "targetFieldId": 195, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -153844,9 +154600,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -1.029697759771473, - "coord": [-17.212778546773617, -21.504240945176697], - "sector": 10, + "angle": -755.4142183725606, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -153854,15 +154610,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 9, + "allocationIdCounter": 1, "allocations": [], - "max": 260, + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -153931,75 +154687,38 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 519 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 927 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 260, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2050 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2510 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, + "value": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Slate", "mask": "BigInt:137438953472" }, "subordinates": { @@ -154007,30 +154726,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 301, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 352, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1563, - "tags": ["selection", "ship", "role:transport"] + "id": 1665, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "rotary": 0.9424777960769379, + "cruise": 2, + "ttc": 6, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.05, - "currentRotary": 1.3322676295501878e-15, - "state": "warming", - "target": 223, + "currentSpeed": 0.15, + "currentRotary": 0.27824973060064684, + "state": "maneuver", + "target": 340, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -154043,28 +154769,41 @@ "value": [ { "origin": "auto", - "type": "trade", "actions": [ - { "type": "move", "targetId": 223 }, - { "type": "dock", "targetId": 223 }, + { "type": "move", "targetId": 340 }, + { "type": "dock", "targetId": 340 }, { - "targetId": 223, + "targetId": 340, "offer": { - "initiator": 1564, - "quantity": 260, - "commodity": "fuel", - "factionId": 222, - "budget": 223, + "commodity": "ice", + "initiator": 1666, + "quantity": 160, + "price": 0, + "budget": null, "allocations": { - "buyer": { "budget": null, "storage": 33 }, - "seller": { "budget": null, "storage": 16 } + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 0, - "type": "sell" + "type": "sell", + "factionId": 222 }, "type": "trade" } - ] + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 63 }, + { "type": "teleport", "targetId": 61 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 33 }, + { "type": "teleport", "targetId": 35 }, + { "type": "move", "targetId": 4379 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -154072,9 +154811,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 16.67175683268733, - "coord": [12.366468230040063, -29.286861911707234], - "sector": 1, + "angle": 10.883376821441376, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -154082,13 +154821,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 17, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -154097,13 +154836,13 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 160, "metals": 0, "ore": 0, "silica": 0, @@ -154112,13 +154851,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3168, + "issued": 900, "type": "outgoing", - "meta": { "tradeId": "223:1564:sell:3168" }, - "id": 16 + "meta": { "tradeId": "340:1666:sell:900" }, + "id": 1 } ], - "max": 260, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -154146,13 +154885,13 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 260, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 160, "metals": 0, "ore": 0, "silica": 0, @@ -154199,26 +154938,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "minerA", + "value": "Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -154226,30 +154965,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 223, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 340, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 3 } }, - "id": 1564, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 1666, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.5410520681182421, - "cruise": 0.7, - "ttc": 22, - "maneuver": 0.05, + "rotary": 0.9424777960769379, + "cruise": 2, + "ttc": 6, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.12, - "currentRotary": -8.881784197001252e-16, + "currentSpeed": 1.09, + "currentRotary": -0.08603714278898789, "state": "cruise", - "target": 223, + "target": 328, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -154262,28 +155008,37 @@ "value": [ { "origin": "auto", - "type": "trade", "actions": [ - { "type": "move", "targetId": 223 }, - { "type": "dock", "targetId": 223 }, + { "type": "move", "targetId": 328 }, + { "type": "dock", "targetId": 328 }, { - "targetId": 223, + "targetId": 328, "offer": { - "initiator": 1565, - "quantity": 260, - "commodity": "hullPlates", - "factionId": 222, - "budget": 223, + "commodity": "goldOre", + "initiator": 1667, + "quantity": 160, + "price": 0, + "budget": null, "allocations": { - "buyer": { "budget": null, "storage": 35 }, - "seller": { "budget": null, "storage": 16 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 0, - "type": "sell" + "type": "sell", + "factionId": 222 }, "type": "trade" } - ] + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 33 }, + { "type": "teleport", "targetId": 35 }, + { "type": "move", "targetId": 3743 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -154291,9 +155046,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 24.089887318056583, - "coord": [23.12692257870292, -2.6449935658166903], - "sector": 1, + "angle": 8.84050309365178, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -154301,13 +155056,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 17, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -154319,8 +155074,8 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 0, - "hullPlates": 260, + "goldOre": 160, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -154331,13 +155086,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3354, + "issued": 405, "type": "outgoing", - "meta": { "tradeId": "223:1565:sell:3354" }, - "id": 16 + "meta": { "tradeId": "328:1667:sell:405" }, + "id": 1 } ], - "max": 260, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -154368,8 +155123,8 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 0, - "hullPlates": 260, + "goldOre": 160, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -154418,26 +155173,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterB", - "value": "Freighter B", + "slug": "minerA", + "value": "Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Freighter B", + "value": "UEN Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -154445,31 +155200,38 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 223, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 328, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1565, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 1667, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.5009831567151233, - "cruise": 4, - "ttc": 7, - "maneuver": 0.3, + "rotary": 0.9424777960769379, + "cruise": 2, + "ttc": 6, + "maneuver": 0.15, "active": true, - "currentSpeed": 1.4100000000000001, - "currentRotary": -7.105427357601002e-15, - "state": "cruise", - "target": 35, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": null, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -154480,30 +155242,10 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 223 }, - { "type": "dock", "targetId": 223 }, - { - "targetId": 223, - "offer": { - "initiator": 1566, - "quantity": 11, - "commodity": "hullPlates", - "factionId": 222, - "budget": 223, - "allocations": { - "buyer": { "budget": null, "storage": 37 }, - "seller": { "budget": null, "storage": 42 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } + { "targetFieldId": 177, "targetRockId": 2752, "type": "mine" } ] } ], @@ -154512,53 +155254,26 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 53.79238174842409, - "coord": [-22.097682646322262, -10.799773858208429], - "sector": 2, - "moved": true + "angle": -66.1432924331173, + "coord": [4.511476911537627, 23.14495134910186], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 11, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3534, - "type": "outgoing", - "meta": { "tradeId": "223:1566:sell:3534" }, - "id": 42 - } - ], - "max": 11, + "allocationIdCounter": 15, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -154568,7 +155283,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 0, + "goldOre": 21, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -154589,8 +155304,8 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 0, - "hullPlates": 11, + "goldOre": 21, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -154627,7 +155342,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -154638,27 +155353,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "courierA", - "value": "Courier A", + "slug": "minerA", + "value": "Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Courier A", + "value": "UEN Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -154666,11 +155381,18 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 223, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": 2752, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 316, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1566, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 5 } }, + "id": 1668, + "tags": ["selection", "ship", "role:mining"] }, { "components": { @@ -154686,11 +155408,11 @@ "ttc": 6, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.15, + "currentRotary": -0.02580549094888429, + "state": "cruise", + "target": 304, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -154700,12 +155422,43 @@ "orders": { "name": "orders", "value": [ + { + "origin": "auto", + "actions": [ + { "type": "move", "targetId": 304 }, + { "type": "dock", "targetId": 304 }, + { + "targetId": 304, + "offer": { + "commodity": "ice", + "initiator": 1669, + "quantity": 160, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 222 + }, + "type": "trade" + } + ], + "type": "trade" + }, { "origin": "OrderPlanningSystem:auto", - "type": "mine", "actions": [ - { "targetFieldId": 192, "targetRockId": 7277, "type": "mine" } - ] + { "type": "move", "targetId": 63 }, + { "type": "teleport", "targetId": 61 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 33 }, + { "type": "teleport", "targetId": 35 }, + { "type": "move", "targetId": 4586 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -154713,9 +155466,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -29.52246586337975, - "coord": [-9.787965596192691, -6.039678528665155], - "sector": 11, + "angle": -47.1721120023136, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -154729,8 +155482,36 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, - "allocations": [], + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 160, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1062, + "type": "outgoing", + "meta": { "tradeId": "304:1669:sell:1062" }, + "id": 1 + } + ], "max": 160, "availableWares": { "coolant": 0, @@ -154746,7 +155527,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 76, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -154765,9 +155546,9 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 160, "metals": 0, - "ore": 76, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -154841,36 +155622,36 @@ }, "mining": { "name": "mining", - "buffer": 3, + "buffer": 1, "efficiency": 1, - "entityId": 7277, + "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 397, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 304, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 3 } }, - "id": 1567, + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 1669, "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 2, - "ttc": 6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.1, + "currentRotary": 0.0026541917594182785, + "state": "cruise", + "target": 2372, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -154881,11 +155662,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 183, "targetRockId": 6865, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 11, + "actions": [{ "type": "move", "targetId": 2372 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -154893,9 +155674,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.272453706985764, - "coord": [22.463595803791662, 12.149328493611335], - "sector": 4, + "angle": -3.075668242033518, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -154903,15 +155684,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -154921,7 +155702,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 141, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -154942,7 +155723,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 141, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -154991,66 +155772,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerA", - "value": "Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Miner A", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1765, 1764, 1763], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 5, - "efficiency": 1, - "entityId": 6865, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 385, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 1 } }, - "id": 1568, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1670, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, - "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.1, + "currentRotary": -0.010290982146455185, + "state": "cruise", + "target": 2373, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -155061,11 +155834,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 182, "targetRockId": 3968, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 11, + "actions": [{ "type": "move", "targetId": 2373 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -155073,9 +155846,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 4.316979819200766, - "coord": [-11.40540097872251, 1.2818332077299106], - "sector": 4, + "angle": -2.742364362221438, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -155083,15 +155856,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, + "allocationIdCounter": 1, "allocations": [], - "max": 680, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -155099,7 +155872,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 561, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -155120,7 +155893,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 561, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -155160,7 +155933,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -155171,13 +155944,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -155185,65 +155958,69 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Large Miner A", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1762, 1761, 1760], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1.6, - "efficiency": 1.6, - "entityId": 3968, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 373, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 5 } }, - "id": 1569, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1671, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.2325, + "currentRotary": -0.09364354951863607, + "state": "cruise", + "target": 2374, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "type": "patrol", + "origin": "auto", + "sectorId": 11, + "actions": [{ "type": "move", "targetId": 2374 }], + "clockwise": true + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.33495364100978, - "coord": [-25.16081880925035, 24.797159370443495], - "sector": 3, + "angle": -2.2729617906224253, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -155251,15 +156028,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 30, + "allocationIdCounter": 1, "allocations": [], - "max": 32, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -155275,7 +156052,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 32, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -155296,7 +156073,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 32, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -155328,7 +156105,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -155339,66 +156116,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, - "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Slate", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1759, 1758, 1757], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1, - "efficiency": 1, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 361, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 3 } }, - "id": 1570, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1672, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 2, - "ttc": 6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.1, + "currentRotary": 0.013031338356717548, + "state": "cruise", + "target": 2375, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -155409,11 +156178,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 180, "targetRockId": 3493, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 11, + "actions": [{ "type": "move", "targetId": 2375 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -155421,9 +156190,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -33.00924787252525, - "coord": [-17.022167292439264, 9.238234832648788], - "sector": 3, + "angle": -3.382818295029729, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -155431,15 +156200,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 14, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -155454,7 +156223,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 86, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -155475,7 +156244,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 86, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -155519,66 +156288,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerA", - "value": "Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Miner A", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1756, 1755, 1754], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 3, - "efficiency": 1, - "entityId": 3493, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 349, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 3 } }, - "id": 1571, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1673, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, - "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.1, + "currentRotary": -0.006993363079784931, + "state": "cruise", + "target": 2376, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -155589,11 +156350,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 179, "targetRockId": 3804, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 10, + "actions": [{ "type": "move", "targetId": 2376 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -155601,9 +156362,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -10.518891808572588, - "coord": [17.083847256638318, 25.8768271788719], - "sector": 2, + "angle": -4.109122336828122, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -155611,15 +156372,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, + "allocationIdCounter": 1, "allocations": [], - "max": 680, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -155632,7 +156393,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 601, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -155653,7 +156414,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 601, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -155688,7 +156449,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -155699,13 +156460,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -155713,52 +156474,44 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Large Miner A", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1753, 1752, 1751], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 4.800000000000001, - "efficiency": 1.6, - "entityId": 3804, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 337, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 3 } }, - "id": 1572, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1674, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, - "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.1, + "currentRotary": 0.004906011979417979, + "state": "cruise", + "target": 2377, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -155769,11 +156522,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 178, "targetRockId": 10091, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 10, + "actions": [{ "type": "move", "targetId": 2377 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -155781,9 +156534,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 19.067894550508125, - "coord": [18.65635144949875, -16.68942014567648], - "sector": 2, + "angle": 0.7361727885396445, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -155791,15 +156544,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, + "allocationIdCounter": 1, "allocations": [], - "max": 680, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -155809,7 +156562,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 505, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -155830,7 +156583,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 505, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -155868,7 +156621,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -155879,13 +156632,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -155893,51 +156646,43 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Large Miner A", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1750, 1749, 1748], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 4.800000000000001, - "efficiency": 1.6, - "entityId": 10091, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 325, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 3 } }, - "id": 1573, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1675, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 2, - "ttc": 6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.045, - "currentRotary": 0.000004188140792393824, - "state": "warming", - "target": 313, + "currentSpeed": 1.1, + "currentRotary": -0.0018626943593598178, + "state": "cruise", + "target": 2378, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -155949,36 +156694,11 @@ "name": "orders", "value": [ { + "type": "patrol", "origin": "auto", - "actions": [ - { "type": "move", "targetId": 313 }, - { "type": "dock", "targetId": 313 }, - { - "targetId": 313, - "offer": { - "commodity": "goldOre", - "initiator": 1574, - "quantity": 160, - "price": 0, - "budget": null, - "allocations": { - "buyer": { "budget": null, "storage": 18 }, - "seller": { "budget": null, "storage": 13 } - }, - "type": "sell", - "factionId": 222 - }, - "type": "trade" - } - ], - "type": "trade" - }, - { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24906, "onlyManeuver": true } - ], - "type": "move" + "sectorId": 10, + "actions": [{ "type": "move", "targetId": 2378 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -155986,9 +156706,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.755124710918798, - "coord": [4.965693237903892, 14.59827535169944], - "sector": 1, + "angle": -1.7177295933029892, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -155996,43 +156716,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 14, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 160, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "outgoing", - "meta": { "tradeId": "313:1574:sell:3594" }, - "id": 13 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -156063,7 +156755,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 160, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -156112,66 +156804,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerA", - "value": "Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Miner A", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1747, 1746, 1745], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1, - "efficiency": 1, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 313, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 5, "mine": 0 } }, - "id": 1574, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1676, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 1 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 2, - "ttc": 6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.1, + "currentRotary": -0.0029678727248683145, + "state": "cruise", + "target": 2379, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -156182,11 +156866,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 187, "targetRockId": 4154, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 10, + "actions": [{ "type": "move", "targetId": 2379 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -156194,9 +156878,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -14.180804105883333, - "coord": [-26.570808953556572, -2.821547849557388], - "sector": 6, + "angle": -1.742708344943916, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -156204,15 +156888,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 8, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -156225,7 +156909,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 56, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -156246,7 +156930,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 56, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -156292,46 +156976,38 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerA", - "value": "Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Miner A", + "value": "UEN Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1744, 1743, 1742], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1, - "efficiency": 1, - "entityId": 4154, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 301, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 5 } }, - "id": 1575, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1677, + "tags": ["selection", "ship", "role:military"] }, { "components": { @@ -156347,10 +157023,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 5.329070518200751e-15, - "state": "cruise", - "target": 24784, + "currentSpeed": 0.15, + "currentRotary": 0.124752616721171, + "state": "warming", + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -156364,8 +157040,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 11, - "actions": [{ "type": "move", "targetId": 24784 }], + "sectorId": 4, + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2380 } + ], "clockwise": true } ], @@ -156374,9 +157054,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -105.38191744772348, - "coord": [7.471225792281116, -21.037223471975903], - "sector": 11, + "angle": -124.24247311446636, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -156497,12 +157177,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1671, 1670, 1669], + "ids": [1741, 1740, 1739], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1576, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1678, "tags": ["selection", "ship", "role:military"] }, { @@ -156519,10 +157199,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 24809, + "currentSpeed": 0.15, + "currentRotary": 0.124752616721171, + "state": "warming", + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -156536,8 +157216,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 11, - "actions": [{ "type": "move", "targetId": 24809 }], + "sectorId": 4, + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2381 } + ], "clockwise": true } ], @@ -156546,9 +157230,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.663909765973598, - "coord": [-22.60655945376445, -2.3156866049534854], - "sector": 11, + "angle": -124.24247311446636, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -156669,12 +157353,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1668, 1667, 1666], + "ids": [1738, 1737, 1736], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1577, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1679, "tags": ["selection", "ship", "role:military"] }, { @@ -156691,10 +157375,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.8925000000000001, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 24873, + "currentSpeed": 0.15, + "currentRotary": 0.124752616721171, + "state": "warming", + "target": 41, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -156708,8 +157392,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 11, - "actions": [{ "type": "move", "targetId": 24873 }], + "sectorId": 4, + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2382 } + ], "clockwise": true } ], @@ -156718,9 +157406,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 6.463212409864851, - "coord": [-22.67727165561379, 6.714329877858018], - "sector": 11, + "angle": -124.24247311446636, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -156841,12 +157529,188 @@ }, "subordinates": { "name": "subordinates", - "ids": [1665, 1664, 1663], + "ids": [1735, 1734, 1733], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1578, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1680, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, + "active": true, + "currentSpeed": 0.15, + "currentRotary": 0.124752616721171, + "state": "warming", + "target": 41, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "patrol", + "origin": "auto", + "sectorId": 4, + "actions": [ + { "type": "move", "targetId": 41 }, + { "type": "teleport", "targetId": 43 }, + { "type": "move", "targetId": 2383 } + ], + "clockwise": false + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -124.24247311446636, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 80, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 13, + "range": 1.4, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "gunboat", + "value": "Gunboat", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Patrol Leader Gunboat", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1732, 1731, 1730], + "mask": "BigInt:4294967296" + } + }, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1681, "tags": ["selection", "ship", "role:military"] }, { @@ -156864,9 +157728,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 1.1, - "currentRotary": 2.6645352591003757e-15, + "currentRotary": -0.025261784753917382, "state": "cruise", - "target": 24818, + "target": 2384, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -156880,8 +157744,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 11, - "actions": [{ "type": "move", "targetId": 24818 }], + "sectorId": 3, + "actions": [{ "type": "move", "targetId": 2384 }], "clockwise": true } ], @@ -156890,9 +157754,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 21.178235302442747, - "coord": [21.220053354491743, -14.367604718801264], - "sector": 11, + "angle": -0.9761391122640775, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -157013,12 +157877,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1662, 1661, 1660], + "ids": [1729, 1728, 1727], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1579, + "id": 1682, "tags": ["selection", "ship", "role:military"] }, { @@ -157035,10 +157899,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.3975, - "currentRotary": 4.440892098500626e-15, - "state": "cruise", - "target": 24903, + "currentSpeed": 0.15, + "currentRotary": 0.015829461392036226, + "state": "warming", + "target": 2385, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -157052,8 +157916,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 10, - "actions": [{ "type": "move", "targetId": 24903 }], + "sectorId": 3, + "actions": [{ "type": "move", "targetId": 2385 }], "clockwise": false } ], @@ -157062,9 +157926,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -18.295180041692635, - "coord": [15.062133723959356, 8.90092252728426], - "sector": 10, + "angle": -3.0330900592254295, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -157185,12 +158049,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1659, 1658, 1657], + "ids": [1726, 1725, 1724], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1580, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1683, "tags": ["selection", "ship", "role:military"] }, { @@ -157207,10 +158071,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 1.0658141036401503e-14, - "state": "cruise", - "target": 24852, + "currentSpeed": 0.045, + "currentRotary": 0.03453727430469655, + "state": "warming", + "target": 2386, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -157224,8 +158088,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 10, - "actions": [{ "type": "move", "targetId": 24852 }], + "sectorId": 3, + "actions": [{ "type": "move", "targetId": 2386 }], "clockwise": true } ], @@ -157234,9 +158098,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -38.010962523219746, - "coord": [-15.816863090260924, 24.193889617977835], - "sector": 10, + "angle": 3.2478724064252975, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -157357,12 +158221,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1656, 1655, 1654], + "ids": [1723, 1722, 1721], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1581, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1684, "tags": ["selection", "ship", "role:military"] }, { @@ -157379,10 +158243,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.8925000000000001, - "currentRotary": -4.440892098500626e-16, + "currentSpeed": 1.1, + "currentRotary": -0.020550168931657176, "state": "cruise", - "target": 24876, + "target": 2387, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -157396,8 +158260,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 10, - "actions": [{ "type": "move", "targetId": 24876 }], + "sectorId": 3, + "actions": [{ "type": "move", "targetId": 2387 }], "clockwise": true } ], @@ -157406,9 +158270,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -5.204203939395422, - "coord": [-20.857925864373172, -12.678227137431561], - "sector": 10, + "angle": -1.833260519323034, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -157529,12 +158393,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1653, 1652, 1651], + "ids": [1720, 1719, 1718], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1582, + "id": 1685, "tags": ["selection", "ship", "role:military"] }, { @@ -157551,10 +158415,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.15, - "currentRotary": 1.3766765505351941e-14, - "state": "maneuver", - "target": 24727, + "currentSpeed": 1.1, + "currentRotary": -0.04321506912362505, + "state": "cruise", + "target": 2388, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -157568,8 +158432,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 10, - "actions": [{ "type": "move", "targetId": 24727 }], + "sectorId": 2, + "actions": [{ "type": "move", "targetId": 2388 }], "clockwise": true } ], @@ -157578,9 +158442,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.077238989733615, - "coord": [-2.0253871696174377, -32.428150425301816], - "sector": 10, + "angle": 2.4710037111271896, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -157701,12 +158565,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1650, 1649, 1648], + "ids": [1717, 1716, 1715], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1583, + "id": 1686, "tags": ["selection", "ship", "role:military"] }, { @@ -157724,9 +158588,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 1.1, - "currentRotary": 4.440892098500626e-16, + "currentRotary": 0.02678607231047403, "state": "cruise", - "target": 24738, + "target": 2389, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -157740,8 +158604,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 4, - "actions": [{ "type": "move", "targetId": 24738 }], + "sectorId": 2, + "actions": [{ "type": "move", "targetId": 2389 }], "clockwise": false } ], @@ -157750,9 +158614,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -25.564885525322556, - "coord": [16.30387515304578, -28.29039308191317], - "sector": 4, + "angle": 3.6199560189101705, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -157873,12 +158737,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1647, 1646, 1645], + "ids": [1714, 1713, 1712], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1584, + "id": 1687, "tags": ["selection", "ship", "role:military"] }, { @@ -157895,10 +158759,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.0675, - "currentRotary": 3.552713678800501e-15, - "state": "warming", - "target": 24916, + "currentSpeed": 1.1, + "currentRotary": 0.03559196621883576, + "state": "cruise", + "target": 2390, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -157912,9 +158776,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 4, - "actions": [{ "type": "move", "targetId": 24916 }], - "clockwise": false + "sectorId": 2, + "actions": [{ "type": "move", "targetId": 2390 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -157922,9 +158786,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 33.26012357759669, - "coord": [-20.921177401317852, 11.204105199098132], - "sector": 4, + "angle": 3.7110659285020566, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -158045,12 +158909,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1644, 1643, 1642], + "ids": [1711, 1710, 1709], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 1 } }, - "id": 1585, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1688, "tags": ["selection", "ship", "role:military"] }, { @@ -158067,10 +158931,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 24830, + "currentSpeed": 0.15, + "currentRotary": -0.1190144098079271, + "state": "warming", + "target": 2391, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -158084,8 +158948,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 4, - "actions": [{ "type": "move", "targetId": 24830 }], + "sectorId": 2, + "actions": [{ "type": "move", "targetId": 2391 }], "clockwise": false } ], @@ -158094,9 +158958,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 15.410457014507355, - "coord": [-25.645973841768033, -2.7443997120923056], - "sector": 4, + "angle": 52.79668397178524, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -158217,12 +159081,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1641, 1640, 1639], + "ids": [1708, 1707, 1706], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1586, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1689, "tags": ["selection", "ship", "role:military"] }, { @@ -158239,10 +159103,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 2.220446049250313e-15, - "state": "cruise", - "target": 24810, + "currentSpeed": 0, + "currentRotary": 1.064650843716541, + "state": "maneuver", + "target": 7909, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -158256,8 +159120,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 4, - "actions": [{ "type": "move", "targetId": 24810 }], + "sectorId": 1, + "actions": [{ "type": "move", "targetId": 7909 }], "clockwise": true } ], @@ -158266,10 +159130,11 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -24.351637486918943, - "coord": [-19.106493394664025, -21.93802322375691], - "sector": 4, - "moved": true + "angle": -86.97197738598, + "coord": [-20.056725756527324, -25.045440307352738], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, @@ -158389,12 +159254,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1638, 1637, 1636], + "ids": [1705, 1704, 1703], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1587, + "id": 1690, "tags": ["selection", "ship", "role:military"] }, { @@ -158411,10 +159276,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-15, - "state": "cruise", - "target": 24747, + "currentSpeed": 0.09, + "currentRotary": 6.638757543697693e-9, + "state": "warming", + "target": 7903, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -158428,8 +159293,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 3, - "actions": [{ "type": "move", "targetId": 24747 }], + "sectorId": 1, + "actions": [{ "type": "move", "targetId": 7903 }], "clockwise": false } ], @@ -158438,10 +159303,11 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 36.14052014954765, - "coord": [-5.550311595986475, -25.744140243681443], - "sector": 3, - "moved": true + "angle": 40.952520292576395, + "coord": [-11.534837731583321, -24.28204387286757], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, @@ -158561,12 +159427,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1635, 1634, 1633], + "ids": [1702, 1701, 1700], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1588, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 1691, "tags": ["selection", "ship", "role:military"] }, { @@ -158583,10 +159449,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, + "currentSpeed": 0.15, + "currentRotary": 8.881784197001252e-16, "state": "maneuver", - "target": 24932, + "target": 7877, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -158600,9 +159466,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 3, - "actions": [{ "type": "move", "targetId": 24932 }], - "clockwise": true + "sectorId": 1, + "actions": [{ "type": "move", "targetId": 7877 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -158610,10 +159476,11 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.04203553372347, - "coord": [-31.751451850745905, -6.7992339096548156], - "sector": 3, - "moved": true + "angle": 10.333726162828988, + "coord": [-17.6999045841093, -11.359984113252528], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, @@ -158733,12 +159600,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1632, 1631, 1630], + "ids": [1699, 1698, 1697], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1589, + "id": 1692, "tags": ["selection", "ship", "role:military"] }, { @@ -158755,10 +159622,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.2325, - "currentRotary": -6.136300356729407e-10, + "currentSpeed": 0.8925000000000001, + "currentRotary": 8.881784197001252e-16, "state": "cruise", - "target": 24904, + "target": 7891, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -158772,9 +159639,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 3, - "actions": [{ "type": "move", "targetId": 24904 }], - "clockwise": false + "sectorId": 1, + "actions": [{ "type": "move", "targetId": 7891 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -158782,10 +159649,11 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.721292754819713, - "coord": [-17.841900586847608, 1.9409071610650785], - "sector": 3, - "moved": true + "angle": -9.195415357320087, + "coord": [21.76219874743546, 4.460160087462102], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, @@ -158905,48 +159773,50 @@ }, "subordinates": { "name": "subordinates", - "ids": [1629, 1628, 1627], + "ids": [1696, 1695, 1694], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1590, + "id": 1693, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1693 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-16, + "currentSpeed": 0.76, + "currentRotary": -0.21407811579558622, "state": "cruise", - "target": 24841, - "targetReached": false, + "target": 1693, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 3, - "actions": [{ "type": "move", "targetId": 24841 }], - "clockwise": false + "targetId": 1693, + "actions": [ + { "type": "move", "targetId": 1693, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -158954,17 +159824,18 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -4.577134768326593, - "coord": [15.328003419164475, 21.77015072556658], - "sector": 3, - "moved": true + "angle": -153.51143008359867, + "coord": [21.807957516032083, 2.788282908025049], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -158972,7 +159843,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -159041,7 +159912,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -159052,73 +159923,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1626, 1625, 1624], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1693, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1591, + "id": 1694, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1693 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -1.064650843716541, - "state": "maneuver", - "target": 24926, - "targetReached": false, + "currentSpeed": 0.88, + "currentRotary": -0.0008168205768184222, + "state": "cruise", + "target": 1693, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 2, - "actions": [{ "type": "move", "targetId": 24926 }], - "clockwise": true + "targetId": 1693, + "actions": [ + { "type": "move", "targetId": 1693, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -159126,17 +160000,18 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.848504409080508, - "coord": [15.36778185669905, -18.859984245280266], - "sector": 2, - "moved": true + "angle": -9.19443100920926, + "coord": [22.204003951046968, 2.568777298932548], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -159144,7 +160019,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -159213,7 +160088,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -159224,73 +160099,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1623, 1622, 1621], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1693, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1592, + "id": 1695, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1693 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": -1.3322676295501878e-15, + "currentSpeed": 0.88, + "currentRotary": 0.06011141707846068, "state": "cruise", - "target": 24826, - "targetReached": false, + "target": 1693, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 2, - "actions": [{ "type": "move", "targetId": 24826 }], - "clockwise": false + "targetId": 1693, + "actions": [ + { "type": "move", "targetId": 1693, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -159298,17 +160176,18 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 23.831995332011218, - "coord": [3.9701377141900376, -24.74202635788504], - "sector": 2, - "moved": true + "angle": 204.36682810721226, + "coord": [22.47540457656944, 2.7010893297437857], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -159316,7 +160195,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -159385,7 +160264,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -159396,73 +160275,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1620, 1619, 1618], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1693, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1593, + "id": 1696, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1692 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.045, - "currentRotary": -1.2434497875801753e-14, - "state": "maneuver", - "target": 24778, - "targetReached": false, + "currentSpeed": 2.2800000000000002, + "currentRotary": -0.13129352137888883, + "state": "cruise", + "target": 1692, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 2, - "actions": [{ "type": "move", "targetId": 24778 }], - "clockwise": false + "targetId": 1692, + "actions": [ + { "type": "move", "targetId": 1692, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -159470,17 +160352,18 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 59.24204043232684, - "coord": [18.008844664033248, -8.84545505940423], - "sector": 2, - "moved": true + "angle": -247.40363220151886, + "coord": [-18.861195908793214, -10.992078823957643], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -159488,7 +160371,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -159557,7 +160440,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -159568,73 +160451,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1617, 1616, 1615], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1692, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1594, + "id": 1697, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1692 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": -3.552713678800501e-15, + "currentSpeed": 0, + "currentRotary": 2.478367537831948, "state": "cruise", - "target": 24847, - "targetReached": false, + "target": 1692, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 2, - "actions": [{ "type": "move", "targetId": 24847 }], - "clockwise": true + "targetId": 1692, + "actions": [ + { "type": "move", "targetId": 1692, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -159642,17 +160528,18 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -64.89852792618218, - "coord": [2.178781432477953, 24.26602243479798], - "sector": 2, - "moved": true + "angle": 38.04741960325595, + "coord": [-17.840966636929494, -11.100611834281224], + "sector": 1, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 7326194, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -159660,7 +160547,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -159729,7 +160616,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -159740,73 +160627,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1614, 1613, 1612], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1692, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1595, + "id": 1698, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1692 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, + "currentRotary": 2.478367537831948, + "state": "cruise", + "target": 1692, "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 1, - "actions": [], - "clockwise": true + "targetId": 1692, + "actions": [ + { "type": "move", "targetId": 1692, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -159814,8 +160704,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -36.70381346463058, - "coord": [8.425563320804823, -27.09117668846375], + "angle": 214.02504438945343, + "coord": [-17.78518505970481, -10.78567024240868], "sector": 1, "moved": true, "mask": "BigInt:2199023255552" @@ -159825,7 +160715,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -159833,7 +160723,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -159902,7 +160792,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -159913,73 +160803,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1611, 1610, 1609], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1692, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1596, + "id": 1699, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1691 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.7275, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 24877, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": 1.3251465306265775, + "state": "maneuver", + "target": 1691, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 1, - "actions": [{ "type": "move", "targetId": 24877 }], - "clockwise": true + "targetId": 1691, + "actions": [ + { "type": "move", "targetId": 1691, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -159987,8 +160880,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -21.56895107775557, - "coord": [25.10997000049724, -0.15353512803902114], + "angle": -223.59033870496714, + "coord": [-11.852212914247035, -24.572233208291443], "sector": 1, "moved": true, "mask": "BigInt:2199023255552" @@ -159998,7 +160891,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -160006,7 +160899,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -160075,7 +160968,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -160086,73 +160979,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1608, 1607, 1606], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1691, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1597, + "id": 1700, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1691 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.08, - "currentRotary": -5.329070518200751e-15, - "state": "cruise", - "target": 24853, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": 0.6876546620591779, + "state": "maneuver", + "target": 1691, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 1, - "actions": [{ "type": "move", "targetId": 24853 }], - "clockwise": true + "targetId": 1691, + "actions": [ + { "type": "move", "targetId": 1691, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -160160,8 +161056,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -61.96790237371151, - "coord": [-13.347673487128231, -23.961138699173002], + "angle": -35.226888355456154, + "coord": [-11.579280437643787, -24.553821387063213], "sector": 1, "moved": true, "mask": "BigInt:2199023255552" @@ -160171,7 +161067,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -160179,7 +161075,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -160248,7 +161144,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -160259,73 +161155,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1605, 1604, 1603], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1691, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1598, + "id": 1701, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1691 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 1.7763568394002505e-15, - "state": "cruise", - "target": 24811, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": -0.00889725178811318, + "state": "maneuver", + "target": 1691, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 1, - "actions": [{ "type": "move", "targetId": 24811 }], - "clockwise": false + "targetId": 1691, + "actions": [ + { "type": "move", "targetId": 1691, "ignoreReached": true } + ], + "ordersForSector": 1 } ], "mask": "BigInt:134217728" @@ -160333,8 +161232,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -14.729357427584377, - "coord": [-21.378317485030447, -18.087802375165435], + "angle": 186.92244944431795, + "coord": [-10.823134011296844, -24.438290209167647], "sector": 1, "moved": true, "mask": "BigInt:2199023255552" @@ -160344,7 +161243,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -160352,7 +161251,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -160421,7 +161320,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -160432,57 +161331,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Patrol Leader Gunboat", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1602, 1601, 1600], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1691, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1599, + "id": 1702, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1599 }, + "default": { "type": "escort", "targetId": 1690 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 1.52, - "currentRotary": 0.0045176725163753595, + "currentRotary": -0.055342660920863374, "state": "cruise", - "target": 1599, + "target": 1690, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -160496,9 +161396,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1599, + "targetId": 1690, "actions": [ - { "type": "move", "targetId": 1599, "ignoreReached": true } + { "type": "move", "targetId": 1690, "ignoreReached": true } ], "ordersForSector": 1 } @@ -160508,8 +161408,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -322.60508687159114, - "coord": [-19.262072379474247, -19.864107680479616], + "angle": -311.11042240096367, + "coord": [-19.82393189072233, -24.85101563332468], "sector": 1, "moved": true, "mask": "BigInt:2199023255552" @@ -160621,13 +161521,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -160635,30 +161535,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1599, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1690, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1600, + "id": 1703, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1599 }, + "default": { "type": "escort", "targetId": 1690 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": 0.004097548610339619, - "state": "cruise", - "target": 1599, + "currentSpeed": 0, + "currentRotary": -0.5661868049124616, + "state": "maneuver", + "target": 1690, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -160672,9 +161572,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1599, + "targetId": 1690, "actions": [ - { "type": "move", "targetId": 1599, "ignoreReached": true } + { "type": "move", "targetId": 1690, "ignoreReached": true } ], "ordersForSector": 1 } @@ -160684,8 +161584,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 104.65199993777458, - "coord": [-19.14057687564647, -19.584193230865715], + "angle": -12.634234450767535, + "coord": [-20.04373865751665, -24.86051372703163], "sector": 1, "moved": true, "mask": "BigInt:2199023255552" @@ -160797,13 +161697,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -160811,30 +161711,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1599, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1690, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1601, + "id": 1704, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1599 }, + "default": { "type": "escort", "targetId": 1690 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 1.52, - "currentRotary": 0.004087910206002299, + "currentRotary": 0.16911568664092025, "state": "cruise", - "target": 1599, + "target": 1690, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -160848,9 +161748,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1599, + "targetId": 1690, "actions": [ - { "type": "move", "targetId": 1599, "ignoreReached": true } + { "type": "move", "targetId": 1690, "ignoreReached": true } ], "ordersForSector": 1 } @@ -160860,8 +161760,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 293.148038572537, - "coord": [-19.010892079171946, -19.309097150742595], + "angle": 179.06057553585316, + "coord": [-20.090861844629362, -24.723919857906246], "sector": 1, "moved": true, "mask": "BigInt:2199023255552" @@ -160973,13 +161873,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -160987,31 +161887,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1599, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1690, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1602, + "id": 1705, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1598 }, + "default": { "type": "escort", "targetId": 1689 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.5, - "currentRotary": 0.06523601008256685, - "state": "cruise", - "target": 1598, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.2714562793408746, + "state": "maneuver", + "target": 1689, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -161024,11 +161924,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1598, - "actions": [ - { "type": "move", "targetId": 1598, "ignoreReached": true } - ], - "ordersForSector": 1 + "targetId": 1689, + "actions": [{ "type": "move", "targetId": 1689 }], + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -161036,11 +161934,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -388.61908971765473, - "coord": [-13.358251669778467, -23.594909575726465], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 48.52505995560512, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -161149,13 +162046,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -161163,30 +162060,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1598, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1689, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1603, + "id": 1706, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1598 }, + "default": { "type": "escort", "targetId": 1689 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.26, - "currentRotary": -0.03905181159824922, - "state": "cruise", - "target": 1598, + "currentSpeed": 0, + "currentRotary": -0.2714562793408648, + "state": "maneuver", + "target": 1689, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -161200,11 +162097,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1598, + "targetId": 1689, "actions": [ - { "type": "move", "targetId": 1598, "ignoreReached": true } + { "type": "move", "targetId": 1689, "ignoreReached": true } ], - "ordersForSector": 1 + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -161212,11 +162109,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -24.31020552172492, - "coord": [-14.389800270622512, -22.993217498826645], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 49.77410572800338, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -161325,13 +162221,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -161339,31 +162235,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1598, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1689, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1604, + "id": 1707, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1598 }, + "default": { "type": "escort", "targetId": 1689 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": 0.04077027780074305, - "state": "cruise", - "target": 1598, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": -0.27145627934087635, + "state": "maneuver", + "target": 1689, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -161376,11 +162272,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1598, - "actions": [ - { "type": "move", "targetId": 1598, "ignoreReached": true } - ], - "ordersForSector": 1 + "targetId": 1689, + "actions": [{ "type": "move", "targetId": 1689 }], + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -161388,11 +162282,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 233.31481981615525, - "coord": [-15.48261311963827, -22.530765066726318], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 51.02315150040163, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -161501,13 +162394,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -161515,31 +162408,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1598, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1689, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1605, + "id": 1708, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1597 }, + "default": { "type": "escort", "targetId": 1688 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.5, - "currentRotary": -0.12317473215399044, - "state": "cruise", - "target": 1597, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.030296910805746258, + "state": "maneuver", + "target": 1688, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -161552,11 +162445,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1597, - "actions": [ - { "type": "move", "targetId": 1597, "ignoreReached": true } - ], - "ordersForSector": 1 + "targetId": 1688, + "actions": [{ "type": "move", "targetId": 1688 }], + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -161564,11 +162455,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -285.3577247821552, - "coord": [25.497723642279833, -1.7070721716123953], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -0.7151644637048249, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -161677,13 +162567,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -161691,30 +162581,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1597, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1688, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1606, + "id": 1709, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1597 }, + "default": { "type": "escort", "targetId": 1688 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.24, - "currentRotary": -0.13849112486470272, - "state": "warming", - "target": 1597, + "currentSpeed": 0, + "currentRotary": -0.03029691080574981, + "state": "maneuver", + "target": 1688, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -161728,11 +162618,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1597, + "targetId": 1688, "actions": [ - { "type": "move", "targetId": 1597, "ignoreReached": true } + { "type": "move", "targetId": 1688, "ignoreReached": true } ], - "ordersForSector": 1 + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -161740,11 +162630,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -52.91749083157799, - "coord": [25.822458614594368, -1.6795952010263668], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 0.5338813086934295, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -161853,13 +162742,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -161867,31 +162756,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1597, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1688, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 1607, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1710, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1597 }, + "default": { "type": "escort", "targetId": 1688 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.008012463961905247, - "state": "warming", - "target": 1597, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.030296910805748034, + "state": "maneuver", + "target": 1688, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -161904,11 +162793,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1597, - "actions": [ - { "type": "move", "targetId": 1597, "ignoreReached": true } - ], - "ordersForSector": 1 + "targetId": 1688, + "actions": [{ "type": "move", "targetId": 1688 }], + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -161916,11 +162803,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 267.4491830651045, - "coord": [26.138340438733117, -1.7294648492802436], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 1.782927081091684, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -162029,13 +162915,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -162043,31 +162929,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1597, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1688, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 1608, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1711, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1596 }, + "default": { "type": "escort", "targetId": 1687 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.005183717870735904, + "currentSpeed": 0.6, + "currentRotary": -0.06564086888995613, "state": "maneuver", - "target": 1596, - "targetReached": true, + "target": 1687, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -162080,11 +162966,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1596, - "actions": [ - { "type": "move", "targetId": 1596, "ignoreReached": true } - ], - "ordersForSector": 1 + "targetId": 1687, + "actions": [{ "type": "move", "targetId": 1687 }], + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -162092,11 +162976,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -319.42216583662236, - "coord": [8.29630381226324, -26.657007925354932], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -0.7974684793883506, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -162205,13 +163088,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -162219,30 +163102,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1596, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1687, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1609, + "id": 1712, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1596 }, + "default": { "type": "escort", "targetId": 1687 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.7550771052645535, - "state": "cruise", - "target": 1596, + "currentSpeed": 0.12, + "currentRotary": -0.06564086888995169, + "state": "maneuver", + "target": 1687, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -162256,11 +163139,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1596, + "targetId": 1687, "actions": [ - { "type": "move", "targetId": 1596, "ignoreReached": true } + { "type": "move", "targetId": 1687, "ignoreReached": true } ], - "ordersForSector": 1 + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -162268,11 +163151,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -49.39838996149552, - "coord": [7.395918869672354, -26.234148436410038], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 0.45157729300991, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -162381,13 +163263,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -162395,31 +163277,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1596, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1687, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1610, + "id": 1713, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1596 }, + "default": { "type": "escort", "targetId": 1687 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -0.0013683535545911951, + "currentSpeed": 0.6, + "currentRotary": -0.06564086888995879, "state": "maneuver", - "target": 1596, - "targetReached": true, + "target": 1687, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -162432,11 +163314,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1596, - "actions": [ - { "type": "move", "targetId": 1596, "ignoreReached": true } - ], - "ordersForSector": 1 + "targetId": 1687, + "actions": [{ "type": "move", "targetId": 1687 }], + "ordersForSector": 2 } ], "mask": "BigInt:134217728" @@ -162444,11 +163324,10 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 208.36990144031842, - "coord": [8.044945841204925, -27.207340053975063], - "sector": 1, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 1.7006230654081569, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, + "moved": true }, "render": { "color": 7326194, @@ -162557,13 +163436,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -162571,31 +163450,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1596, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1687, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1611, + "id": 1714, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1595 }, + "default": { "type": "escort", "targetId": 1686 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.000007629721834767622, - "state": "cruise", - "target": 1595, - "targetReached": true, + "currentSpeed": 0.48, + "currentRotary": -0.11363119514598186, + "state": "maneuver", + "target": 1686, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -162608,10 +163487,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1595, - "actions": [ - { "type": "move", "targetId": 1595, "ignoreReached": true } - ], + "targetId": 1686, + "actions": [{ "type": "move", "targetId": 1686 }], "ordersForSector": 2 } ], @@ -162620,8 +163497,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -385.34095143947104, - "coord": [2.728412578713296, 23.627612970076644], + "angle": -1.8764196457372329, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -162732,13 +163609,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -162746,30 +163623,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1595, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1686, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1612, + "id": 1715, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1595 }, + "default": { "type": "escort", "targetId": 1686 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.000004124647837944195, - "state": "cruise", - "target": 1595, + "currentSpeed": 0.12, + "currentRotary": -0.11363119514598541, + "state": "maneuver", + "target": 1686, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -162783,9 +163660,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1595, + "targetId": 1686, "actions": [ - { "type": "move", "targetId": 1595, "ignoreReached": true } + { "type": "move", "targetId": 1686, "ignoreReached": true } ], "ordersForSector": 2 } @@ -162795,8 +163672,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -58.61534705342794, - "coord": [2.393919799112423, 24.14965427173708], + "angle": -0.6273738733389811, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -162907,13 +163784,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -162921,31 +163798,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1595, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1686, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1613, + "id": 1716, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1595 }, + "default": { "type": "escort", "targetId": 1686 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.0003308482723562989, - "state": "cruise", - "target": 1595, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.11363119514598052, + "state": "maneuver", + "target": 1686, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -162958,10 +163835,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1595, - "actions": [ - { "type": "move", "targetId": 1595, "ignoreReached": true } - ], + "targetId": 1686, + "actions": [{ "type": "move", "targetId": 1686 }], "ordersForSector": 2 } ], @@ -162970,8 +163845,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 293.2497406369151, - "coord": [3.4566285489739457, 23.917237610348558], + "angle": 0.6216718990592747, + "coord": [-11.646747847317787, -4.916705615640465], "sector": 2, "moved": true }, @@ -163082,13 +163957,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -163096,31 +163971,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1595, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1686, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1614, + "id": 1717, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1594 }, + "default": { "type": "escort", "targetId": 1685 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": -0.005026319301615345, - "state": "cruise", - "target": 1594, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.00541966785285819, + "state": "maneuver", + "target": 1685, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -163133,11 +164008,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1594, - "actions": [ - { "type": "move", "targetId": 1594, "ignoreReached": true } - ], - "ordersForSector": 2 + "targetId": 1685, + "actions": [{ "type": "move", "targetId": 1685 }], + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -163145,9 +164018,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -204.03931430877978, - "coord": [17.64581796554167, -8.689508225246552], - "sector": 2, + "angle": 0.0798365308001645, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -163257,13 +164130,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -163271,30 +164144,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1594, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1685, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1615, + "id": 1718, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1594 }, + "default": { "type": "escort", "targetId": 1685 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.02851029797373661, + "currentRotary": 0.005419667852851084, "state": "maneuver", - "target": 1594, + "target": 1685, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -163308,11 +164181,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1594, + "targetId": 1685, "actions": [ - { "type": "move", "targetId": 1594, "ignoreReached": true } + { "type": "move", "targetId": 1685, "ignoreReached": true } ], - "ordersForSector": 2 + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -163320,9 +164193,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 90.74974319464633, - "coord": [17.912957722247043, -9.064891470398635], - "sector": 2, + "angle": 1.3288823031984123, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -163432,13 +164305,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -163446,31 +164319,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1594, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1685, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1616, + "id": 1719, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1594 }, + "default": { "type": "escort", "targetId": 1685 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.03758807856172286, - "state": "cruise", - "target": 1594, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.005419667852859078, + "state": "maneuver", + "target": 1685, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -163483,11 +164356,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1594, - "actions": [ - { "type": "move", "targetId": 1594, "ignoreReached": true } - ], - "ordersForSector": 2 + "targetId": 1685, + "actions": [{ "type": "move", "targetId": 1685 }], + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -163495,9 +164366,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 378.2832776367973, - "coord": [18.006896056189834, -9.061066461814285], - "sector": 2, + "angle": 2.5779280755966725, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -163607,13 +164478,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -163621,31 +164492,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1594, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1685, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1617, + "id": 1720, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1593 }, + "default": { "type": "escort", "targetId": 1684 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": 0.0001536212477875054, - "state": "cruise", - "target": 1593, - "targetReached": true, + "currentSpeed": 0.045, + "currentRotary": 0.10463100797169655, + "state": "maneuver", + "target": 1684, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -163658,11 +164529,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1593, - "actions": [ - { "type": "move", "targetId": 1593, "ignoreReached": true } - ], - "ordersForSector": 2 + "targetId": 1684, + "actions": [{ "type": "move", "targetId": 1684 }], + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -163670,9 +164539,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -290.37222102425636, - "coord": [6.294242361686204, -24.461807988974524], - "sector": 2, + "angle": 5.105882013312141, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -163782,13 +164651,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -163796,30 +164665,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1593, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1684, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1618, + "id": 1721, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1593 }, + "default": { "type": "escort", "targetId": 1684 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": -0.010352878279009214, - "state": "cruise", - "target": 1593, + "currentSpeed": 0, + "currentRotary": 0.10463100797166414, + "state": "maneuver", + "target": 1684, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -163833,11 +164702,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1593, + "targetId": 1684, "actions": [ - { "type": "move", "targetId": 1593, "ignoreReached": true } + { "type": "move", "targetId": 1684, "ignoreReached": true } ], - "ordersForSector": 2 + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -163845,9 +164714,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 17.556746929420918, - "coord": [7.1918148539837405, -23.8448130885911], - "sector": 2, + "angle": 6.354927785710382, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -163957,13 +164826,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -163971,31 +164840,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1593, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1684, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1619, + "id": 1722, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1593 }, + "default": { "type": "escort", "targetId": 1684 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": -0.034132829464454506, - "state": "cruise", - "target": 1593, - "targetReached": true, + "currentSpeed": 0.045, + "currentRotary": 0.10463100797169123, + "state": "maneuver", + "target": 1684, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -164008,11 +164877,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1593, - "actions": [ - { "type": "move", "targetId": 1593, "ignoreReached": true } - ], - "ordersForSector": 2 + "targetId": 1684, + "actions": [{ "type": "move", "targetId": 1684 }], + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -164020,9 +164887,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 319.1667221731896, - "coord": [6.923206695678849, -23.589497911973876], - "sector": 2, + "angle": 1.3207882509290618, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -164132,13 +164999,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -164146,31 +165013,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1593, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1684, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1620, + "id": 1723, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1592 }, + "default": { "type": "escort", "targetId": 1683 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.14433307890539515, + "currentSpeed": 0.15, + "currentRotary": 0.04837529831125442, "state": "maneuver", - "target": 1592, - "targetReached": true, + "target": 1683, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -164183,11 +165050,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1592, - "actions": [ - { "type": "move", "targetId": 1592, "ignoreReached": true } - ], - "ordersForSector": 2 + "targetId": 1683, + "actions": [{ "type": "move", "targetId": 1683 }], + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -164195,9 +165060,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -315.5816463227698, - "coord": [15.712480527842605, -19.09303234345867], - "sector": 2, + "angle": -1.1563726394259248, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -164307,13 +165172,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -164321,30 +165186,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1592, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1683, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1621, + "id": 1724, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1592 }, + "default": { "type": "escort", "targetId": 1683 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 1.0165972967831562, + "currentSpeed": 0.12, + "currentRotary": 0.04837529831125842, "state": "maneuver", - "target": 1592, + "target": 1683, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -164358,11 +165223,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1592, + "targetId": 1683, "actions": [ - { "type": "move", "targetId": 1592, "ignoreReached": true } + { "type": "move", "targetId": 1683, "ignoreReached": true } ], - "ordersForSector": 2 + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -164370,9 +165235,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 5.626328127822563, - "coord": [15.520479734355732, -18.825709948618698], - "sector": 2, + "angle": 6.375858440151916, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -164482,13 +165347,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -164496,31 +165361,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1592, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1683, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1622, + "id": 1725, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1592 }, + "default": { "type": "escort", "targetId": 1683 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -2.1949221209853524, + "currentSpeed": 0.15, + "currentRotary": 0.048375298311250425, "state": "maneuver", - "target": 1592, - "targetReached": true, + "target": 1683, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -164533,11 +165398,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1592, - "actions": [ - { "type": "move", "targetId": 1592, "ignoreReached": true } - ], - "ordersForSector": 2 + "targetId": 1683, + "actions": [{ "type": "move", "targetId": 1683 }], + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -164545,9 +165408,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 303.26597919874416, - "coord": [15.472124268117392, -18.696849798592705], - "sector": 2, + "angle": 1.341718905370581, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -164657,13 +165520,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -164671,31 +165534,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1592, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1683, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1623, + "id": 1726, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1591 }, + "default": { "type": "escort", "targetId": 1682 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -2.406880065797058, - "state": "cruise", - "target": 1591, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.011561137881786365, + "state": "maneuver", + "target": 1682, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -164708,10 +165571,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1591, - "actions": [ - { "type": "move", "targetId": 1591, "ignoreReached": true } - ], + "targetId": 1682, + "actions": [{ "type": "move", "targetId": 1682 }], "ordersForSector": 3 } ], @@ -164720,8 +165581,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -293.55833215225414, - "coord": [13.071780620161572, 21.718150392015833], + "angle": 0.9416695536813791, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -164832,13 +165693,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -164846,30 +165707,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1591, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1682, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1624, + "id": 1727, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1591 }, + "default": { "type": "escort", "targetId": 1682 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -0.9936921279973574, - "state": "cruise", - "target": 1591, + "currentSpeed": 0.12, + "currentRotary": -0.011561137881799688, + "state": "maneuver", + "target": 1682, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -164883,9 +165744,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1591, + "targetId": 1682, "actions": [ - { "type": "move", "targetId": 1591, "ignoreReached": true } + { "type": "move", "targetId": 1682, "ignoreReached": true } ], "ordersForSector": 3 } @@ -164895,8 +165756,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 95.15428701299113, - "coord": [13.890407369546466, 21.802959125618166], + "angle": 2.190715326079624, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -165007,13 +165868,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -165021,31 +165882,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1591, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1682, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1625, + "id": 1728, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1591 }, + "default": { "type": "escort", "targetId": 1682 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.8201797372551844, - "state": "cruise", - "target": 1591, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.011561137881787253, + "state": "maneuver", + "target": 1682, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -165058,10 +165919,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1591, - "actions": [ - { "type": "move", "targetId": 1591, "ignoreReached": true } - ], + "targetId": 1682, + "actions": [{ "type": "move", "targetId": 1682 }], "ordersForSector": 3 } ], @@ -165070,8 +165929,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 291.3001118006632, - "coord": [13.825478809582629, 21.01127027383623], + "angle": -2.843424208701697, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -165182,13 +166041,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -165196,31 +166055,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1591, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1682, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1626, + "id": 1729, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1590 }, + "default": { "type": "escort", "targetId": 1681 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.1875, - "currentRotary": -0.21331070007832853, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143817, "state": "maneuver", - "target": 1590, - "targetReached": true, + "target": 1681, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -165233,10 +166092,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1590, - "actions": [ - { "type": "move", "targetId": 1590, "ignoreReached": true } - ], + "targetId": 1681, + "actions": [{ "type": "move", "targetId": 1681 }], "ordersForSector": 3 } ], @@ -165245,8 +166102,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -277.92259978175815, - "coord": [-17.85179803779881, 1.514897552839082], + "angle": -122.474678849996, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -165357,13 +166214,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -165371,30 +166228,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1590, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1681, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1627, + "id": 1730, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1590 }, + "default": { "type": "escort", "targetId": 1681 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -1.8990453298963548, + "currentRotary": -0.03016206398144794, "state": "maneuver", - "target": 1590, + "target": 1681, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -165408,9 +166265,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1590, + "targetId": 1681, "actions": [ - { "type": "move", "targetId": 1590, "ignoreReached": true } + { "type": "move", "targetId": 1681, "ignoreReached": true } ], "ordersForSector": 3 } @@ -165420,8 +166277,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 35.551731366022004, - "coord": [-17.703030849801998, 1.5957888418239814], + "angle": -121.22563307759775, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -165532,13 +166389,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -165546,31 +166403,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1590, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1681, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1628, + "id": 1731, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1590 }, + "default": { "type": "escort", "targetId": 1681 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.1875, - "currentRotary": 0.2841218169376707, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143151, "state": "maneuver", - "target": 1590, - "targetReached": true, + "target": 1681, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -165583,10 +166440,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1590, - "actions": [ - { "type": "move", "targetId": 1590, "ignoreReached": true } - ], + "targetId": 1681, + "actions": [{ "type": "move", "targetId": 1681 }], "ordersForSector": 3 } ], @@ -165595,8 +166450,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 302.9093029598982, - "coord": [-17.474289966196242, 1.6605446488048388], + "angle": -126.25977261237908, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -165707,13 +166562,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -165721,31 +166576,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1590, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1681, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1629, + "id": 1732, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1589 }, + "default": { "type": "escort", "targetId": 1680 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -2.886579864025407e-14, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143817, "state": "maneuver", - "target": 1589, - "targetReached": true, + "target": 1680, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -165758,10 +166613,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1589, - "actions": [ - { "type": "move", "targetId": 1589, "ignoreReached": true } - ], + "targetId": 1680, + "actions": [{ "type": "move", "targetId": 1680 }], "ordersForSector": 3 } ], @@ -165770,8 +166623,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -360.8818581045033, - "coord": [-32.026922489791765, -6.92787719838055], + "angle": -122.474678849996, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -165882,13 +166735,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -165896,30 +166749,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1589, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1680, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1630, + "id": 1733, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1589 }, + "default": { "type": "escort", "targetId": 1680 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -5.773159728050814e-15, + "currentRotary": -0.03016206398144794, "state": "maneuver", - "target": 1589, + "target": 1680, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -165933,9 +166786,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1589, + "targetId": 1680, "actions": [ - { "type": "move", "targetId": 1589, "ignoreReached": true } + { "type": "move", "targetId": 1680, "ignoreReached": true } ], "ordersForSector": 3 } @@ -165945,8 +166798,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -91.12009744173821, - "coord": [-31.773197360382035, -7.0228768454470885], + "angle": -121.22563307759775, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -166057,13 +166910,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -166071,31 +166924,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1589, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1680, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1631, + "id": 1734, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1589 }, + "default": { "type": "escort", "targetId": 1680 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 1.3322676295501878e-15, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143151, "state": "maneuver", - "target": 1589, - "targetReached": true, + "target": 1680, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -166108,10 +166961,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1589, - "actions": [ - { "type": "move", "targetId": 1589, "ignoreReached": true } - ], + "targetId": 1680, + "actions": [{ "type": "move", "targetId": 1680 }], "ordersForSector": 3 } ], @@ -166120,8 +166971,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 296.7740292276107, - "coord": [-31.78555460993596, -6.924281970199645], + "angle": -126.25977261237908, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -166232,13 +167083,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -166246,30 +167097,203 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1589, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1680, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1632, + "id": 1735, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "escort", "targetId": 1679 }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, + "active": true, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143817, + "state": "maneuver", + "target": 1679, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "follow", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "escort", + "origin": "auto", + "targetId": 1679, + "actions": [{ "type": "move", "targetId": 1679 }], + "ordersForSector": 3 + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -122.474678849996, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, + "moved": true + }, + "render": { + "color": 7326194, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 10, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 3, + "range": 1.2, + "cooldown": 0.2, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "dart", + "value": "Dart", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "UEN Dart", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 1679, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1736, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1588 }, + "default": { "type": "escort", "targetId": 1679 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.01825191045575103, - "state": "cruise", - "target": 1588, + "currentRotary": -0.03016206398144794, + "state": "maneuver", + "target": 1679, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -166283,9 +167307,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1588, + "targetId": 1679, "actions": [ - { "type": "move", "targetId": 1588, "ignoreReached": true } + { "type": "move", "targetId": 1679, "ignoreReached": true } ], "ordersForSector": 3 } @@ -166295,8 +167319,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -259.16968385957136, - "coord": [-2.1314656541901615, -26.003530523742658], + "angle": -121.22563307759775, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -166407,13 +167431,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -166421,31 +167445,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1588, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1679, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1633, + "id": 1737, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1588 }, + "default": { "type": "escort", "targetId": 1679 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 0.004493039603731042, - "state": "cruise", - "target": 1588, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143151, + "state": "maneuver", + "target": 1679, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -166458,10 +167482,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1588, - "actions": [ - { "type": "move", "targetId": 1588, "ignoreReached": true } - ], + "targetId": 1679, + "actions": [{ "type": "move", "targetId": 1679 }], "ordersForSector": 3 } ], @@ -166470,8 +167492,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 42.42712716673227, - "coord": [-5.2282329154442, -25.73827053691462], + "angle": -126.25977261237908, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -166582,13 +167604,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -166596,31 +167618,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1588, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1679, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1634, + "id": 1738, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1588 }, + "default": { "type": "escort", "targetId": 1678 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 0.007468987653822534, - "state": "cruise", - "target": 1588, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143817, + "state": "maneuver", + "target": 1678, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -166633,10 +167655,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1588, - "actions": [ - { "type": "move", "targetId": 1588, "ignoreReached": true } - ], + "targetId": 1678, + "actions": [{ "type": "move", "targetId": 1678 }], "ordersForSector": 3 } ], @@ -166645,8 +167665,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 331.4579490724174, - "coord": [-5.036252459998282, -25.434893786242725], + "angle": -122.474678849996, + "coord": [19.28931090270224, -0.8899005751496976], "sector": 3, "moved": true }, @@ -166757,13 +167777,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -166771,30 +167791,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1588, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1678, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1635, + "id": 1739, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1587 }, + "default": { "type": "escort", "targetId": 1678 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.06834808605650622, - "state": "cruise", - "target": 1587, + "currentSpeed": 0, + "currentRotary": -0.03016206398144794, + "state": "maneuver", + "target": 1678, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -166808,11 +167828,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1587, + "targetId": 1678, "actions": [ - { "type": "move", "targetId": 1587, "ignoreReached": true } + { "type": "move", "targetId": 1678, "ignoreReached": true } ], - "ordersForSector": 4 + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -166820,9 +167840,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -326.02339903946915, - "coord": [-21.039315196955496, -19.377226064295744], - "sector": 4, + "angle": -121.22563307759775, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -166932,13 +167952,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -166946,31 +167966,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1587, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1678, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1636, + "id": 1740, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1587 }, + "default": { "type": "escort", "targetId": 1678 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": -0.006804466988290958, - "state": "cruise", - "target": 1587, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": -0.03016206398143151, + "state": "maneuver", + "target": 1678, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -166983,11 +168003,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1587, - "actions": [ - { "type": "move", "targetId": 1587, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1678, + "actions": [{ "type": "move", "targetId": 1678 }], + "ordersForSector": 3 } ], "mask": "BigInt:134217728" @@ -166995,9 +168013,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -93.46768515473165, - "coord": [-21.00983417976296, -20.001402038585592], - "sector": 4, + "angle": -126.25977261237908, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -167107,13 +168125,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -167121,31 +168139,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1587, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1678, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1637, + "id": 1741, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1587 }, + "default": { "type": "escort", "targetId": 1677 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": -0.0012410716335296001, - "state": "cruise", - "target": 1587, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.005063491062375469, + "state": "maneuver", + "target": 1677, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -167158,11 +168176,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1587, - "actions": [ - { "type": "move", "targetId": 1587, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1677, + "actions": [{ "type": "move", "targetId": 1677 }], + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -167170,9 +168186,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 245.8251805937657, - "coord": [-21.238597055020783, -20.21062087812834], - "sector": 4, + "angle": -6.130378898207094, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -167282,13 +168298,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -167296,30 +168312,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1587, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1677, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1638, + "id": 1742, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1586 }, + "default": { "type": "escort", "targetId": 1677 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": 0.011802476692640784, - "state": "cruise", - "target": 1586, + "currentSpeed": 0, + "currentRotary": 0.005063491062373693, + "state": "maneuver", + "target": 1677, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -167333,11 +168349,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1586, + "targetId": 1677, "actions": [ - { "type": "move", "targetId": 1586, "ignoreReached": true } + { "type": "move", "targetId": 1677, "ignoreReached": true } ], - "ordersForSector": 4 + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -167345,9 +168361,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -279.9103320598989, - "coord": [-26.922833483546576, -5.835586214637774], - "sector": 4, + "angle": -4.881333125808841, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -167457,13 +168473,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -167471,31 +168487,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1586, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1677, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1639, + "id": 1743, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1586 }, + "default": { "type": "escort", "targetId": 1677 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.03399279327722038, - "state": "cruise", - "target": 1586, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.005063491062376357, + "state": "maneuver", + "target": 1677, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -167508,11 +168524,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1586, - "actions": [ - { "type": "move", "targetId": 1586, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1677, + "actions": [{ "type": "move", "targetId": 1677 }], + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -167520,9 +168534,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 59.42187183425437, - "coord": [-26.450783687836733, -5.490276170807269], - "sector": 4, + "angle": 8.934083260948587, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -167632,13 +168646,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -167646,31 +168660,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1586, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1677, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1640, + "id": 1744, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1586 }, + "default": { "type": "escort", "targetId": 1676 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.06895566801738662, - "state": "cruise", - "target": 1586, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.003154253508728999, + "state": "maneuver", + "target": 1676, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -167683,11 +168697,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1586, - "actions": [ - { "type": "move", "targetId": 1586, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1676, + "actions": [{ "type": "move", "targetId": 1676 }], + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -167695,9 +168707,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 304.49776396507775, - "coord": [-26.131852844014, -5.612817993763769], - "sector": 4, + "angle": -6.106505324931676, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -167807,13 +168819,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -167821,30 +168833,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1586, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1676, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1641, + "id": 1745, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1585 }, + "default": { "type": "escort", "targetId": 1676 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.0675, - "currentRotary": -0.08181534717764638, + "currentSpeed": 0, + "currentRotary": 0.003154253508728111, "state": "maneuver", - "target": 1585, + "target": 1676, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -167858,11 +168870,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1585, + "targetId": 1676, "actions": [ - { "type": "move", "targetId": 1585, "ignoreReached": true } + { "type": "move", "targetId": 1676, "ignoreReached": true } ], - "ordersForSector": 4 + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -167870,9 +168882,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -292.8113785368979, - "coord": [-21.357386776300437, 11.198233152606438], - "sector": 4, + "angle": -4.857459552533423, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -167982,13 +168994,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -167996,31 +169008,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1585, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1676, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1642, + "id": 1746, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1585 }, + "default": { "type": "escort", "targetId": 1676 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.029855886754640792, - "state": "cruise", - "target": 1585, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.003154253508728999, + "state": "maneuver", + "target": 1676, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -168033,11 +169045,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1585, - "actions": [ - { "type": "move", "targetId": 1585, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1676, + "actions": [{ "type": "move", "targetId": 1676 }], + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -168045,9 +169055,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 49.98327528491589, - "coord": [-20.849245885878332, 12.003937766595108], - "sector": 4, + "angle": 8.957956834224005, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -168157,13 +169167,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -168171,31 +169181,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1585, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1676, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1643, + "id": 1747, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1585 }, + "default": { "type": "escort", "targetId": 1675 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.0675, - "currentRotary": -0.16437572050832472, + "currentSpeed": 0.6, + "currentRotary": -0.008970322021688126, "state": "maneuver", - "target": 1585, - "targetReached": true, + "target": 1675, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -168208,11 +169218,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1585, - "actions": [ - { "type": "move", "targetId": 1585, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1675, + "actions": [{ "type": "move", "targetId": 1675 }], + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -168220,9 +169228,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 260.99684363049994, - "coord": [-20.957950058847665, 10.650164139610098], - "sector": 4, + "angle": -3.659371649427821, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -168332,13 +169340,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -168346,30 +169354,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1585, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1675, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1644, + "id": 1748, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1584 }, + "default": { "type": "escort", "targetId": 1675 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.06907084628515836, - "state": "cruise", - "target": 1584, + "currentSpeed": 0, + "currentRotary": -0.008970322021690347, + "state": "maneuver", + "target": 1675, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -168383,11 +169391,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1584, + "targetId": 1675, "actions": [ - { "type": "move", "targetId": 1584, "ignoreReached": true } + { "type": "move", "targetId": 1675, "ignoreReached": true } ], - "ordersForSector": 4 + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -168395,9 +169403,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -289.37644246624507, - "coord": [17.797089890380654, -25.434808807395605], - "sector": 4, + "angle": -2.4103258770295697, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -168507,13 +169515,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -168521,31 +169529,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1584, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1675, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1645, + "id": 1749, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1584 }, + "default": { "type": "escort", "targetId": 1675 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.01795341899363745, - "state": "cruise", - "target": 1584, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.008970322021688126, + "state": "maneuver", + "target": 1675, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -168558,11 +169566,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1584, - "actions": [ - { "type": "move", "targetId": 1584, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1675, + "actions": [{ "type": "move", "targetId": 1675 }], + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -168570,9 +169576,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 68.69748534731094, - "coord": [17.467137259664405, -25.7283103572261], - "sector": 4, + "angle": 11.40509050972786, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -168682,13 +169688,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -168696,31 +169702,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1584, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1675, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1646, + "id": 1750, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1584 }, + "default": { "type": "escort", "targetId": 1674 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.2590471175990121, - "state": "cruise", - "target": 1584, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.015506933029465486, + "state": "maneuver", + "target": 1674, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -168733,11 +169739,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1584, - "actions": [ - { "type": "move", "targetId": 1584, "ignoreReached": true } - ], - "ordersForSector": 4 + "targetId": 1674, + "actions": [{ "type": "move", "targetId": 1674 }], + "ordersForSector": 10 } ], "mask": "BigInt:134217728" @@ -168745,9 +169749,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 319.9160252029271, - "coord": [17.01189521532574, -26.059032050909277], - "sector": 4, + "angle": -8.492767399736385, + "coord": [5.495220247229675, 0.6632942659718459], + "sector": 10, "moved": true }, "render": { @@ -168857,13 +169861,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -168871,30 +169875,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1584, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1674, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1647, + "id": 1751, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1583 }, + "default": { "type": "escort", "targetId": 1674 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": -0.10907969059128275, + "currentSpeed": 0.24, + "currentRotary": 0.01550693302946371, "state": "maneuver", - "target": 1583, + "target": 1674, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -168908,9 +169912,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1583, + "targetId": 1674, "actions": [ - { "type": "move", "targetId": 1583, "ignoreReached": true } + { "type": "move", "targetId": 1674, "ignoreReached": true } ], "ordersForSector": 10 } @@ -168920,8 +169924,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -329.1370006379869, - "coord": [-2.038247765056566, -32.91812614747697], + "angle": -7.243721627338132, + "coord": [5.495220247229675, 0.6632942659718459], "sector": 10, "moved": true }, @@ -169032,13 +170036,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -169046,31 +170050,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1583, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1674, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1648, + "id": 1752, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1583 }, + "default": { "type": "escort", "targetId": 1674 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": -0.022107151521770785, + "currentSpeed": 0.6, + "currentRotary": 0.015506933029466374, "state": "maneuver", - "target": 1583, - "targetReached": true, + "target": 1674, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -169083,10 +170087,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1583, - "actions": [ - { "type": "move", "targetId": 1583, "ignoreReached": true } - ], + "targetId": 1674, + "actions": [{ "type": "move", "targetId": 1674 }], "ordersForSector": 10 } ], @@ -169095,8 +170097,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -90.45555127163094, - "coord": [-1.7973483593338633, -32.74032277655286], + "angle": 6.571694759419297, + "coord": [5.495220247229675, 0.6632942659718459], "sector": 10, "moved": true }, @@ -169207,13 +170209,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -169221,31 +170223,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1583, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1674, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1649, + "id": 1753, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1583 }, + "default": { "type": "escort", "targetId": 1673 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.15, - "currentRotary": 0.21756606112362897, + "currentSpeed": 0.6, + "currentRotary": 0.015075814842881119, "state": "maneuver", - "target": 1583, - "targetReached": true, + "target": 1673, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -169258,11 +170260,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1583, - "actions": [ - { "type": "move", "targetId": 1583, "ignoreReached": true } - ], - "ordersForSector": 10 + "targetId": 1673, + "actions": [{ "type": "move", "targetId": 1673 }], + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -169270,9 +170270,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 311.73258869711816, - "coord": [-1.5369896679172352, -32.51741870449066], - "sector": 10, + "angle": 17.34625316934385, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -169382,13 +170382,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -169396,30 +170396,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1583, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1673, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1650, + "id": 1754, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1582 }, + "default": { "type": "escort", "targetId": 1673 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1, - "currentRotary": 0.006966206852874635, - "state": "cruise", - "target": 1582, + "currentSpeed": 0, + "currentRotary": 0.01507581484288023, + "state": "maneuver", + "target": 1673, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -169433,11 +170433,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1582, + "targetId": 1673, "actions": [ - { "type": "move", "targetId": 1582, "ignoreReached": true } + { "type": "move", "targetId": 1673, "ignoreReached": true } ], - "ordersForSector": 10 + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -169445,9 +170445,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -300.47591792454807, - "coord": [-21.673263318228145, -11.912784400451486], - "sector": 10, + "angle": 12.312113634562518, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -169557,13 +170557,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -169571,31 +170571,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1582, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1673, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1651, + "id": 1755, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1582 }, + "default": { "type": "escort", "targetId": 1673 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": 0.06344425466051584, - "state": "cruise", - "target": 1582, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.015075814842889113, + "state": "maneuver", + "target": 1673, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -169608,11 +170608,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1582, - "actions": [ - { "type": "move", "targetId": 1582, "ignoreReached": true } - ], - "ordersForSector": 10 + "targetId": 1673, + "actions": [{ "type": "move", "targetId": 1673 }], + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -169620,9 +170618,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -68.04063860960301, - "coord": [-22.265809873357842, -11.984294237531286], - "sector": 10, + "angle": 26.12753002131995, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -169732,13 +170730,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -169746,31 +170744,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1582, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1673, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1652, + "id": 1756, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1582 }, + "default": { "type": "escort", "targetId": 1672 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.9275, - "currentRotary": -0.15943733062867382, - "state": "cruise", - "target": 1582, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.08887774658907244, + "state": "maneuver", + "target": 1672, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -169783,11 +170781,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1582, - "actions": [ - { "type": "move", "targetId": 1582, "ignoreReached": true } - ], - "ordersForSector": 10 + "targetId": 1672, + "actions": [{ "type": "move", "targetId": 1672 }], + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -169795,9 +170791,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 334.1573748542911, - "coord": [-21.75158998004012, -12.367756221255625], - "sector": 10, + "angle": 12.279599254446921, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -169907,13 +170903,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -169921,30 +170917,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1582, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1672, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1653, + "id": 1757, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1581 }, + "default": { "type": "escort", "targetId": 1672 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.6400000000000001, - "currentRotary": -0.0021695327942197196, - "state": "cruise", - "target": 1581, + "currentSpeed": 0, + "currentRotary": -0.088877746589072, + "state": "maneuver", + "target": 1672, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -169958,11 +170954,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1581, + "targetId": 1672, "actions": [ - { "type": "move", "targetId": 1581, "ignoreReached": true } + { "type": "move", "targetId": 1672, "ignoreReached": true } ], - "ordersForSector": 10 + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -169970,9 +170966,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -301.8958696245306, - "coord": [-15.309238711474976, 24.764697110267505], - "sector": 10, + "angle": 13.528645026845181, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -170082,13 +171078,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -170096,31 +171092,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1581, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1672, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1654, + "id": 1758, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1581 }, + "default": { "type": "escort", "targetId": 1672 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.6400000000000001, - "currentRotary": 0.0008301647121036204, - "state": "cruise", - "target": 1581, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.0888777465890751, + "state": "maneuver", + "target": 1672, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -170133,11 +171129,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1581, - "actions": [ - { "type": "move", "targetId": 1581, "ignoreReached": true } - ], - "ordersForSector": 10 + "targetId": 1672, + "actions": [{ "type": "move", "targetId": 1672 }], + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -170145,9 +171139,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -125.93026984382153, - "coord": [-15.566983171486536, 24.90792672453571], - "sector": 10, + "angle": 27.344061413602603, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -170257,13 +171251,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -170271,31 +171265,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1581, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1672, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1655, + "id": 1759, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1581 }, + "default": { "type": "escort", "targetId": 1671 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 0.10439792517716207, - "state": "cruise", - "target": 1581, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.006150793802276677, + "state": "maneuver", + "target": 1671, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -170308,11 +171302,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1581, - "actions": [ - { "type": "move", "targetId": 1581, "ignoreReached": true } - ], - "ordersForSector": 10 + "targetId": 1671, + "actions": [{ "type": "move", "targetId": 1671 }], + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -170320,9 +171312,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 269.86284782256047, - "coord": [-16.06371389553155, 24.784801842618318], - "sector": 10, + "angle": 11.726844115475728, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -170432,13 +171424,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -170446,30 +171438,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1581, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1671, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1656, + "id": 1760, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1580 }, + "default": { "type": "escort", "targetId": 1671 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.3075, - "currentRotary": -0.0503665276161116, + "currentSpeed": 0.24, + "currentRotary": -0.006150793802275789, "state": "maneuver", - "target": 1580, + "target": 1671, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -170483,11 +171475,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1580, + "targetId": 1671, "actions": [ - { "type": "move", "targetId": 1580, "ignoreReached": true } + { "type": "move", "targetId": 1671, "ignoreReached": true } ], - "ordersForSector": 10 + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -170495,9 +171487,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -338.7040380229866, - "coord": [14.984539738164711, 9.615912245809085], - "sector": 10, + "angle": 12.975889887873981, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -170607,13 +171599,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -170621,31 +171613,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1580, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1671, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1657, + "id": 1761, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1580 }, + "default": { "type": "escort", "targetId": 1671 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.3075, - "currentRotary": -0.32393440313386224, + "currentSpeed": 0.6, + "currentRotary": -0.0061507938022780095, "state": "maneuver", - "target": 1580, - "targetReached": true, + "target": 1671, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -170658,11 +171650,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1580, - "actions": [ - { "type": "move", "targetId": 1580, "ignoreReached": true } - ], - "ordersForSector": 10 + "targetId": 1671, + "actions": [{ "type": "move", "targetId": 1671 }], + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -170670,9 +171660,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 38.26905922871377, - "coord": [14.865601450051464, 9.403324001798108], - "sector": 10, + "angle": 26.79130627463141, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -170782,13 +171772,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -170796,31 +171786,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1580, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1671, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1658, + "id": 1762, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1580 }, + "default": { "type": "escort", "targetId": 1670 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -2.478367537831948, + "currentSpeed": 0.6, + "currentRotary": 0.006171510467967156, "state": "maneuver", - "target": 1580, - "targetReached": true, + "target": 1670, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -170833,11 +171823,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1580, - "actions": [ - { "type": "move", "targetId": 1580, "ignoreReached": true } - ], - "ordersForSector": 10 + "targetId": 1670, + "actions": [{ "type": "move", "targetId": 1670 }], + "ordersForSector": 11 } ], "mask": "BigInt:134217728" @@ -170845,9 +171833,9 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 290.14844424900576, - "coord": [14.482050519881595, 9.236239664795692], - "sector": 10, + "angle": 11.380595061757775, + "coord": [-0.4765044490324213, -16.399521320225322], + "sector": 11, "moved": true }, "render": { @@ -170957,13 +171945,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -170971,30 +171959,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1580, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1670, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1659, + "id": 1763, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1579 }, + "default": { "type": "escort", "targetId": 1670 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 2.1927028662335326, - "state": "cruise", - "target": 1579, + "currentSpeed": 0.12, + "currentRotary": 0.006171510467965824, + "state": "maneuver", + "target": 1670, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -171008,9 +171996,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1579, + "targetId": 1670, "actions": [ - { "type": "move", "targetId": 1579, "ignoreReached": true } + { "type": "move", "targetId": 1670, "ignoreReached": true } ], "ordersForSector": 11 } @@ -171020,8 +172008,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -328.4729726835844, - "coord": [20.22599996588438, -14.98951374227638], + "angle": 12.629640834156028, + "coord": [-0.4765044490324213, -16.399521320225322], "sector": 11, "moved": true }, @@ -171132,13 +172120,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -171146,31 +172134,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1579, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1670, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1660, + "id": 1764, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1579 }, + "default": { "type": "escort", "targetId": 1670 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -0.004372867076745113, - "state": "cruise", - "target": 1579, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.006171510467962715, + "state": "maneuver", + "target": 1670, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -171183,10 +172171,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1579, - "actions": [ - { "type": "move", "targetId": 1579, "ignoreReached": true } - ], + "targetId": 1670, + "actions": [{ "type": "move", "targetId": 1670 }], "ordersForSector": 11 } ], @@ -171195,8 +172181,8 @@ "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -3.958812962181622, - "coord": [20.28745304566133, -15.249749409807045], + "angle": 26.445057220913455, + "coord": [-0.4765044490324213, -16.399521320225322], "sector": 11, "moved": true }, @@ -171307,13 +172293,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "UEN Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -171321,66 +172307,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1579, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1670, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1661, + "id": 1765, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1579 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.026644797804534104, - "state": "cruise", - "target": 1579, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 2527, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1579, - "actions": [ - { "type": "move", "targetId": 1579, "ignoreReached": true } - ], - "ordersForSector": 11 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2527 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 266.19964145435193, - "coord": [19.328894348025504, -16.532239823325067], - "sector": 11, + "angle": 6.085206689863004, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -171388,7 +172370,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -171457,7 +172439,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -171468,27 +172450,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -171496,66 +172478,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1579, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 865, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1662, - "tags": ["selection", "ship", "role:military"] + "id": 1766, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1578 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 0.004181100666417414, - "state": "cruise", - "target": 1578, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 1.412283286193838, + "state": "maneuver", + "target": 2528, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1578, - "actions": [ - { "type": "move", "targetId": 1578, "ignoreReached": true } - ], - "ordersForSector": 11 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2528 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -358.004882948696, - "coord": [-22.57304049567258, 7.809847188221304], - "sector": 11, + "angle": 6.221718439132747, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -171563,7 +172541,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -171643,27 +172621,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 1, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -171671,66 +172649,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1578, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 865, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1663, - "tags": ["selection", "ship", "role:military"] + "id": 1767, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1578 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.88, - "currentRotary": -0.05022595016235165, - "state": "cruise", - "target": 1578, - "targetReached": true, + "currentSpeed": 0.03900000000000001, + "currentRotary": -0.046559144779311, + "state": "warming", + "target": 2529, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1578, - "actions": [ - { "type": "move", "targetId": 1578, "ignoreReached": true } - ], - "ordersForSector": 11 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2529 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -62.663529717005325, - "coord": [-22.8876619885217, 8.146801477031072], - "sector": 11, + "angle": -12.301164591174285, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -171738,7 +172712,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -171807,7 +172781,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -171818,27 +172792,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -171846,74 +172820,168 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1578, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 856, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1664, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 1.2999999999999998 } }, + "id": 1768, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1578 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.88, - "currentRotary": 0.009958702679854436, - "state": "cruise", - "target": 1578, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8061399988928444, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", "origin": "auto", - "targetId": 1578, + "type": "trade", "actions": [ - { "type": "move", "targetId": 1578, "ignoreReached": true } - ], - "ordersForSector": 11 + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 591 }, + { "type": "dock", "targetId": 591 }, + { + "targetId": 591, + "offer": { + "initiator": 1769, + "quantity": 160, + "commodity": "fuel", + "factionId": 232, + "budget": 856, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 7 } + }, + "price": 52, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 856 }, + { "type": "dock", "targetId": 856 }, + { + "targetId": 856, + "offer": { + "initiator": 1769, + "quantity": 160, + "commodity": "fuel", + "factionId": 232, + "budget": 856, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 320.6290911979614, - "coord": [-23.24310740725061, 8.082175364340833], - "sector": 11, + "angle": -65.33478819040481, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 2952, + "type": "incoming", + "meta": { "tradeId": "591:1769:buy:2952" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 2952, + "type": "outgoing", + "meta": { "tradeId": "856:1769:sell:2952" }, + "id": 2 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -171982,7 +173050,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -171993,27 +173061,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -172021,66 +173089,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1578, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 856, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1665, - "tags": ["selection", "ship", "role:military"] + "id": 1769, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1577 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.52, - "currentRotary": -0.006089108417016931, - "state": "cruise", - "target": 1577, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.5309821074755963, + "state": "warming", + "target": 2531, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1577, - "actions": [ - { "type": "move", "targetId": 1577, "ignoreReached": true } - ], - "ordersForSector": 11 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2531 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -363.52121702757216, - "coord": [-24.675099458544686, -0.2907329094942622], - "sector": 11, + "angle": -0.9867797533213736, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -172088,7 +173152,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -172157,7 +173221,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -172168,27 +173232,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -172196,66 +173260,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1577, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 843, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1666, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 2.3 } }, + "id": 1770, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1577 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1.52, - "currentRotary": -0.005414363663914568, - "state": "cruise", - "target": 1577, - "targetReached": true, + "currentSpeed": 0.009, + "currentRotary": 0.11658114363769911, + "state": "warming", + "target": 2532, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1577, - "actions": [ - { "type": "move", "targetId": 1577, "ignoreReached": true } - ], - "ordersForSector": 11 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2532 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -80.77895630056211, - "coord": [-24.786363157501555, -0.5841237431293579], - "sector": 11, + "angle": -1.0369766437311974, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -172263,7 +173323,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -172332,7 +173392,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -172343,27 +173403,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 1, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -172371,66 +173431,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1577, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 843, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1667, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 6 } }, + "id": 1771, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1577 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.52, - "currentRotary": 0.0013328459374628565, - "state": "cruise", - "target": 1577, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.5300563246462522, + "state": "warming", + "target": 2533, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1577, - "actions": [ - { "type": "move", "targetId": 1577, "ignoreReached": true } - ], - "ordersForSector": 11 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2533 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 252.23011708155423, - "coord": [-24.91377052314417, -0.8793160448870319], - "sector": 11, + "angle": -0.9812222780109634, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -172438,7 +173494,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -172507,7 +173563,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -172518,27 +173574,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -172546,66 +173602,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1577, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 843, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1668, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 2.3 } }, + "id": 1772, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1576 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": -0.006167731820808875, - "state": "cruise", - "target": 1576, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.5294466795345176, + "state": "maneuver", + "target": 2534, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1576, - "actions": [ - { "type": "move", "targetId": 1576, "ignoreReached": true } - ], - "ordersForSector": 11 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2534 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -312.72201890195225, - "coord": [4.165405757615326, -20.277231674815322], - "sector": 11, + "angle": -1.0527831930996112, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -172613,7 +173665,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -172682,7 +173734,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -172693,27 +173745,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -172721,66 +173773,66 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1576, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 843, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1669, - "tags": ["selection", "ship", "role:military"] + "id": 1773, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1576 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": -0.020245150298219272, - "state": "cruise", - "target": 1576, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1576, + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1576, "ignoreReached": true } + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2535 } ], - "ordersForSector": 11 + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -86.51398193873887, - "coord": [4.051208744223064, -20.578741677854236], - "sector": 11, + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -172788,7 +173840,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -172857,7 +173909,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -172868,27 +173920,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -172896,66 +173948,66 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1576, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 835, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1670, - "tags": ["selection", "ship", "role:military"] + "id": 1774, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1576 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": 0.006133053043413383, - "state": "cruise", - "target": 1576, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1576, + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1576, "ignoreReached": true } + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2536 } ], - "ordersForSector": 11 + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 222, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 284.1704212330329, - "coord": [4.063466625017925, -20.860511474601445], - "sector": 11, + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { - "color": 7326194, + "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -172963,7 +174015,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -173032,7 +174084,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -173043,27 +174095,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "UEN Fighter", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -173071,11 +174123,11 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1576, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 835, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1671, - "tags": ["selection", "ship", "role:military"] + "id": 1775, + "tags": ["selection", "ship", "role:transport"] }, { "components": { @@ -173086,16 +174138,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, - "active": false, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, + "active": true, + "currentSpeed": 0.045, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -173106,29 +174158,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 815 }, - { "type": "dock", "targetId": 815 }, - { - "targetId": 815, - "offer": { - "initiator": 1672, - "quantity": 24, - "commodity": "metals", - "factionId": 232, - "budget": 815, - "allocations": { - "buyer": { "budget": null, "storage": 192 }, - "seller": { "budget": null, "storage": 52 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2537 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -173136,8 +174172,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.638782967697963, - "coord": [8.9817470569212, -26.673738953474192], + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -173146,43 +174182,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", - "visible": false, + "texture": "lCiv", + "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 53, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 24, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3564, - "type": "outgoing", - "meta": { "tradeId": "815:1672:sell:3564" }, - "id": 52 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -173217,7 +174225,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 24, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -173251,8 +174259,8 @@ }, "dockable": { "name": "dockable", - "size": "medium", - "dockedIn": 529, + "size": "large", + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { @@ -173262,12 +174270,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -173276,13 +174284,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -173290,10 +174298,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 815, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 827, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1672, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1776, "tags": ["selection", "ship", "role:transport"] }, { @@ -173310,10 +174318,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 815, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -173325,29 +174333,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 815 }, - { "type": "dock", "targetId": 815 }, - { - "targetId": 815, - "offer": { - "initiator": 1673, - "quantity": 20, - "commodity": "metals", - "factionId": 232, - "budget": 815, - "allocations": { - "buyer": { "budget": null, "storage": 189 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2538 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -173355,8 +174347,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.815316056746614, - "coord": [4.660226563929813, -16.163782439365388], + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -173371,36 +174363,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "outgoing", - "meta": { "tradeId": "815:1673:sell:3540" }, - "id": 46 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -173436,7 +174400,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 20, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -173509,10 +174473,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 815, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 827, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1673, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1777, "tags": ["selection", "ship", "role:transport"] }, { @@ -173529,10 +174493,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 9.769962616701378e-15, + "currentSpeed": 0.45199999999999996, + "currentRotary": 0.003448823222512054, "state": "cruise", - "target": 529, + "target": 2539, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -173544,48 +174508,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 529 }, - { "type": "dock", "targetId": 529 }, - { - "targetId": 529, - "offer": { - "initiator": 1674, - "quantity": 20, - "commodity": "metals", - "factionId": 232, - "budget": 815, - "allocations": { - "buyer": { "budget": 102, "storage": 45 }, - "seller": { "budget": null, "storage": 86 } - }, - "price": 74, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 815 }, - { "type": "dock", "targetId": 815 }, - { - "targetId": 815, - "offer": { - "initiator": 1674, - "quantity": 20, - "commodity": "metals", - "factionId": 232, - "budget": 815, - "allocations": { - "buyer": { "budget": null, "storage": 193 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2539 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -173593,9 +174518,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 56.95118336839875, - "coord": [3.8741561855880375, -14.673023673695234], - "sector": 7, + "angle": 4.144318685860896, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -173609,63 +174534,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "incoming", - "meta": { "tradeId": "529:1674:buy:3579" }, - "id": 45 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "outgoing", - "meta": { "tradeId": "815:1674:sell:3579" }, - "id": 46 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -173774,10 +174644,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 815, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 814, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1674, + "id": 1778, "tags": ["selection", "ship", "role:transport"] }, { @@ -173789,15 +174659,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 9.769962616701378e-15, + "currentSpeed": 4.255000000000001, + "currentRotary": -0.0013069606306177484, "state": "cruise", - "target": 617, + "target": 2540, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -173809,29 +174679,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1675, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 815, - "allocations": { - "buyer": { "budget": 27, "storage": 27 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2540 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -173839,9 +174689,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -33.64353199682284, - "coord": [16.651783576852644, -11.49992591660374], - "sector": 25, + "angle": 4.118999990198155, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -173849,43 +174699,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3522, - "type": "outgoing", - "meta": { "tradeId": "617:1675:sell:3522" }, - "id": 46 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -173912,7 +174734,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -173954,7 +174776,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -173965,12 +174787,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -173979,13 +174801,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -173993,10 +174815,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 815, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 814, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1675, + "id": 1779, "tags": ["selection", "ship", "role:transport"] }, { @@ -174013,10 +174835,10 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 0.05500000000000001, - "currentRotary": -4.440892098500626e-16, - "state": "warming", - "target": 53, + "currentSpeed": 4.255000000000001, + "currentRotary": -0.0015802734185026424, + "state": "cruise", + "target": 2541, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -174028,31 +174850,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 805 }, - { "type": "dock", "targetId": 805 }, - { - "targetId": 805, - "offer": { - "initiator": 1676, - "quantity": 6, - "commodity": "water", - "factionId": 232, - "budget": 805, - "allocations": { - "buyer": { "budget": null, "storage": 49 }, - "seller": { "budget": null, "storage": 52 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2541 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -174060,9 +174860,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.667311936856322, - "coord": [18.396707831049874, -11.049756342244775], - "sector": 7, + "angle": 4.117610514346192, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -174076,36 +174876,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 53, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6 - }, - "issued": 3564, - "type": "outgoing", - "meta": { "tradeId": "805:1676:sell:3564" }, - "id": 52 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 6, "availableWares": { "coolant": 0, @@ -174147,7 +174919,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, "quota": { "coolant": 0, @@ -174181,17 +174953,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 6, - "price": 44, - "target": "AMS Wolf 1061 III Factory", - "time": 1873 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -174224,10 +174986,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 805, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 814, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 1 } }, - "id": 1676, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1780, "tags": ["selection", "ship", "role:transport"] }, { @@ -174239,15 +175001,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 53, + "currentSpeed": 0.45199999999999996, + "currentRotary": -0.0015213056194962604, + "state": "cruise", + "target": 2542, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -174259,54 +175021,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 805 }, - { "type": "dock", "targetId": 805 }, - { - "targetId": 805, - "offer": { - "initiator": 1677, - "quantity": 940, - "commodity": "food", - "factionId": 232, - "budget": 805, - "allocations": { - "buyer": { "budget": null, "storage": 13 }, - "seller": { "budget": null, "storage": 47 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 55 }, - { "type": "teleport", "targetId": 53 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1677, - "quantity": 940, - "commodity": "food", - "factionId": 232, - "budget": 805, - "allocations": { - "buyer": { "budget": 21, "storage": 21 }, - "seller": { "budget": null, "storage": 14 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2542 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -174314,9 +175031,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -36.75824524513178, - "coord": [-8.476465960704827, -24.695415040676735], - "sector": 7, + "angle": 4.117661065635266, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -174324,70 +175041,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "incoming", - "meta": { "tradeId": "805:1677:buy:3447" }, - "id": 13 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "outgoing", - "meta": { "tradeId": "617:1677:sell:3447" }, - "id": 14 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -174456,33 +175118,23 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 940, - "price": 44, - "target": "AMS Wolf 1061 III Factory", - "time": 2386 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -174491,13 +175143,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -174505,10 +175157,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 805, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 814, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1677, + "id": 1781, "tags": ["selection", "ship", "role:transport"] }, { @@ -174520,16 +175172,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.03900000000000001, + "currentRotary": -0.07397254500641903, + "state": "warming", + "target": 2543, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -174540,28 +175192,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "dock", "targetId": 805 }, - { - "targetId": 805, - "offer": { - "initiator": 1678, - "quantity": 940, - "commodity": "fuel", - "factionId": 232, - "budget": 805, - "allocations": { - "buyer": { "budget": null, "storage": 40 }, - "seller": { "budget": null, "storage": 12 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2543 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -174569,9 +175202,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.731527555713562, - "coord": [2.497059898231164, -6.295798756962507], - "sector": 8, + "angle": -75.19670580884929, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -174579,43 +175212,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 13, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 940, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3045, - "type": "outgoing", - "meta": { "tradeId": "805:1678:sell:3045" }, - "id": 12 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -174643,7 +175248,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -174684,42 +175289,23 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 940, - "price": 44, - "target": "AMS Wolf 1061 III Factory", - "time": 2254 - }, - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 940, - "price": 44, - "target": "AMS Wolf 1061 III Factory", - "time": 2778 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -174728,13 +175314,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -174742,10 +175328,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 805, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 804, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1678, + "cooldowns": { "timers": { "cruise": 1.2999999999999998 } }, + "id": 1782, "tags": ["selection", "ship", "role:transport"] }, { @@ -174762,10 +175348,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 505, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -174780,42 +175366,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 505 }, - { "type": "dock", "targetId": 505 }, + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 684 }, + { "type": "dock", "targetId": 684 }, { - "targetId": 505, + "targetId": 684, "offer": { - "initiator": 1679, - "quantity": 54, - "commodity": "fuel", + "initiator": 1783, + "quantity": 160, + "commodity": "electronics", "factionId": 232, - "budget": 805, + "budget": 804, "allocations": { - "buyer": { "budget": 46, "storage": 21 }, - "seller": { "budget": null, "storage": 151 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 4 } }, - "price": 62, + "price": 351, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 805 }, - { "type": "dock", "targetId": 805 }, + { "type": "move", "targetId": 95 }, + { "type": "teleport", "targetId": 93 }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 804 }, + { "type": "dock", "targetId": 804 }, { - "targetId": 805, + "targetId": 804, "offer": { - "initiator": 1679, - "quantity": 54, - "commodity": "fuel", + "initiator": 1783, + "quantity": 160, + "commodity": "electronics", "factionId": 232, - "budget": 805, + "budget": 804, "allocations": { - "buyer": { "budget": null, "storage": 50 }, - "seller": { "budget": null, "storage": 22 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -174830,9 +175418,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -9.995006517743683, - "coord": [-3.5017531114387923, -13.92465032930732], - "sector": 6, + "angle": -136.2893465709809, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -174846,16 +175434,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, - "fuel": 54, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -174870,19 +175458,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3579, + "issued": 870, "type": "incoming", - "meta": { "tradeId": "505:1679:buy:3579" }, - "id": 21 + "meta": { "tradeId": "684:1783:buy:870" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, - "fuel": 54, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -174897,10 +175485,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3579, + "issued": 870, "type": "outgoing", - "meta": { "tradeId": "805:1679:sell:3579" }, - "id": 22 + "meta": { "tradeId": "804:1783:sell:870" }, + "id": 2 } ], "max": 160, @@ -174978,26 +175566,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 160, - "price": 44, - "target": "AMS Wolf 1061 III Factory", - "time": 2258 - }, - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 160, - "price": 44, - "target": "AMS Wolf 1061 III Factory", - "time": 2587 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -175030,10 +175599,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 805, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 804, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1679, + "id": 1783, "tags": ["selection", "ship", "role:transport"] }, { @@ -175045,15 +175614,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.9, - "currentRotary": -9.325873406851315e-15, - "state": "cruise", - "target": 775, + "currentSpeed": 0.05500000000000001, + "currentRotary": -0.29250163204002755, + "state": "maneuver", + "target": 113, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -175068,21 +175637,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 775 }, - { "type": "dock", "targetId": 775 }, + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 684 }, + { "type": "dock", "targetId": 684 }, + { + "targetId": 684, + "offer": { + "initiator": 1784, + "quantity": 6, + "commodity": "electronics", + "factionId": 232, + "budget": 804, + "allocations": { + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 6 } + }, + "price": 329, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 95 }, + { "type": "teleport", "targetId": 93 }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 804 }, + { "type": "dock", "targetId": 804 }, { - "targetId": 775, + "targetId": 804, "offer": { - "initiator": 1680, - "quantity": 276, + "initiator": 1784, + "quantity": 6, "commodity": "electronics", "factionId": 232, - "budget": 792, + "budget": 804, "allocations": { - "buyer": { "budget": 32, "storage": 33 }, - "seller": { "budget": null, "storage": 24 } + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 346, + "price": 0, "type": "sell" }, "type": "trade" @@ -175095,8 +175691,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -40.104321361530225, - "coord": [12.73358594873742, -4.723567790090433], + "angle": -335.51175639912697, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -175105,19 +175701,46 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 276, + "electronics": 6, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 2859, + "type": "incoming", + "meta": { "tradeId": "684:1784:buy:2859" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 6, "engineParts": 0, "food": 0, "fuel": 0, @@ -175135,13 +175758,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3324, + "issued": 2859, "type": "outgoing", - "meta": { "tradeId": "775:1680:sell:3324" }, - "id": 24 + "meta": { "tradeId": "804:1784:sell:2859" }, + "id": 2 } ], - "max": 940, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -175166,7 +175789,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 276, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -175210,7 +175833,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -175221,8 +175844,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -175235,13 +175858,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -175249,10 +175872,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 804, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1680, + "id": 1784, "tags": ["selection", "ship", "role:transport"] }, { @@ -175269,10 +175892,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 123, + "currentSpeed": 0.08099999999999999, + "currentRotary": 0.10252861903124799, + "state": "warming", + "target": 2546, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -175284,33 +175907,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 775 }, - { "type": "dock", "targetId": 775 }, - { - "targetId": 775, - "offer": { - "initiator": 1681, - "quantity": 167, - "commodity": "electronics", - "factionId": 232, - "budget": 792, - "allocations": { - "buyer": { "budget": 33, "storage": 34 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 346, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2546 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -175318,9 +175917,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -33.338206147074196, - "coord": [-18.740368513133475, 21.423431545720398], - "sector": 9, + "angle": 5.732682444751461, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -175334,36 +175933,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 167, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3411, - "type": "outgoing", - "meta": { "tradeId": "775:1681:sell:3411" }, - "id": 22 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 940, "availableWares": { "coolant": 0, @@ -175389,7 +175960,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 167, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -175472,10 +176043,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 791, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1681, + "cooldowns": { "timers": { "cruise": 7 } }, + "id": 1785, "tags": ["selection", "ship", "role:transport"] }, { @@ -175487,15 +176058,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 121, + "currentSpeed": 4.255000000000001, + "currentRotary": -0.04135541639318818, + "state": "cruise", + "target": 2547, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -175507,54 +176078,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 792 }, - { "type": "dock", "targetId": 792 }, - { - "targetId": 792, - "offer": { - "initiator": 1682, - "quantity": 940, - "commodity": "hullPlates", - "factionId": 232, - "budget": 792, - "allocations": { - "buyer": { "budget": null, "storage": 23 }, - "seller": { "budget": null, "storage": 222 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 697 }, - { "type": "dock", "targetId": 697 }, - { - "targetId": 697, - "offer": { - "initiator": 1682, - "quantity": 940, - "commodity": "hullPlates", - "factionId": 232, - "budget": 792, - "allocations": { - "buyer": { "budget": 26, "storage": 26 }, - "seller": { "budget": null, "storage": 24 } - }, - "price": 46, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2547 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -175562,9 +176088,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.66724890863448, - "coord": [-24.883973580266105, 3.33464784803246], - "sector": 6, + "angle": 5.409836140469121, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -175572,70 +176098,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 940, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3504, - "type": "incoming", - "meta": { "tradeId": "792:1682:buy:3504" }, - "id": 23 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 940, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3504, - "type": "outgoing", - "meta": { "tradeId": "697:1682:sell:3504" }, - "id": 24 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -175704,7 +176175,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -175715,8 +176186,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -175729,13 +176200,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -175743,10 +176214,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 791, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1682, + "id": 1786, "tags": ["selection", "ship", "role:transport"] }, { @@ -175758,15 +176229,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.27, - "currentRotary": 0, - "state": "cruise", - "target": 123, + "currentSpeed": 0.13, + "currentRotary": 0.3368936272720182, + "state": "maneuver", + "target": 2548, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -175778,33 +176249,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 697 }, - { "type": "dock", "targetId": 697 }, - { - "targetId": 697, - "offer": { - "initiator": 1683, - "quantity": 940, - "commodity": "hullPlates", - "factionId": 232, - "budget": 792, - "allocations": { - "buyer": { "budget": 28, "storage": 28 }, - "seller": { "budget": null, "storage": 24 } - }, - "price": 46, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2548 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -175812,9 +176259,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -12.19750294373113, - "coord": [-18.789670800252196, 20.033290410717115], - "sector": 9, + "angle": -62.93540184372547, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -175822,43 +176269,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 940, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "697:1683:sell:3558" }, - "id": 24 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -175890,7 +176309,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 940, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -175927,7 +176346,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -175938,12 +176357,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -175952,13 +176371,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -175966,10 +176385,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 791, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1683, + "id": 1787, "tags": ["selection", "ship", "role:transport"] }, { @@ -175986,10 +176405,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0.9, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 49, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -176004,23 +176423,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 775 }, - { "type": "dock", "targetId": 775 }, + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 726 }, + { "type": "dock", "targetId": 726 }, + { + "targetId": 726, + "offer": { + "initiator": 1788, + "quantity": 940, + "commodity": "electronics", + "factionId": 232, + "budget": 791, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 317, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 95 }, + { "type": "teleport", "targetId": 93 }, + { "type": "move", "targetId": 791 }, + { "type": "dock", "targetId": 791 }, { - "targetId": 775, + "targetId": 791, "offer": { - "initiator": 1684, - "quantity": 138, + "initiator": 1788, + "quantity": 940, "commodity": "electronics", "factionId": 232, - "budget": 792, + "budget": 791, "allocations": { - "buyer": { "budget": 30, "storage": 31 }, - "seller": { "budget": null, "storage": 18 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 346, + "price": 0, "type": "sell" }, "type": "trade" @@ -176033,9 +176473,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.516466619408769, - "coord": [0.5681022223044896, -16.520374053016642], - "sector": 6, + "angle": 5.8677210039572465, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -176049,13 +176489,40 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 138, + "electronics": 940, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3591, + "type": "incoming", + "meta": { "tradeId": "726:1788:buy:3591" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 940, "engineParts": 0, "food": 0, "fuel": 0, @@ -176073,10 +176540,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3234, + "issued": 3591, "type": "outgoing", - "meta": { "tradeId": "775:1684:sell:3234" }, - "id": 18 + "meta": { "tradeId": "791:1788:sell:3591" }, + "id": 2 } ], "max": 940, @@ -176104,7 +176571,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 138, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -176187,10 +176654,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 791, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1684, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1788, "tags": ["selection", "ship", "role:transport"] }, { @@ -176207,10 +176674,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.15200000000000002, - "currentRotary": 3.3306690738754696e-14, + "currentSpeed": 0.2, + "currentRotary": -0.10899845073766201, "state": "cruise", - "target": 775, + "target": 591, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -176225,21 +176692,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 775 }, - { "type": "dock", "targetId": 775 }, + { "type": "move", "targetId": 591 }, + { "type": "dock", "targetId": 591 }, { - "targetId": 775, + "targetId": 591, "offer": { - "initiator": 1685, + "initiator": 1789, "quantity": 160, - "commodity": "hullPlates", + "commodity": "fuel", "factionId": 232, - "budget": 792, + "budget": 780, "allocations": { - "buyer": { "budget": 34, "storage": 35 }, - "seller": { "budget": null, "storage": 32 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 47, + "price": 38, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 780 }, + { "type": "dock", "targetId": 780 }, + { + "targetId": 780, + "offer": { + "initiator": 1789, + "quantity": 160, + "commodity": "fuel", + "factionId": 232, + "budget": 780, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, "type": "sell" }, "type": "trade" @@ -176252,9 +176742,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -65.23701465375628, - "coord": [18.257913170171573, -10.81471061250603], - "sector": 7, + "angle": -59.71601711900469, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -176268,7 +176758,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -176277,11 +176767,38 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 160, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 300, + "type": "incoming", + "meta": { "tradeId": "591:1789:buy:300" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -176292,10 +176809,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3429, + "issued": 300, "type": "outgoing", - "meta": { "tradeId": "775:1685:sell:3429" }, - "id": 32 + "meta": { "tradeId": "780:1789:sell:300" }, + "id": 2 } ], "max": 160, @@ -176330,7 +176847,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 160, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -176406,10 +176923,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 780, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1685, + "id": 1789, "tags": ["selection", "ship", "role:transport"] }, { @@ -176421,15 +176938,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.275, - "currentRotary": 8.881784197001252e-16, - "state": "maneuver", - "target": 49, + "currentSpeed": 0.2, + "currentRotary": -0.10899845073766201, + "state": "cruise", + "target": 591, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -176444,23 +176961,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 783 }, - { "type": "dock", "targetId": 783 }, + { "type": "move", "targetId": 591 }, + { "type": "dock", "targetId": 591 }, { - "targetId": 783, + "targetId": 591, "offer": { - "initiator": 1686, - "quantity": 6, + "initiator": 1790, + "quantity": 160, "commodity": "fuel", "factionId": 232, - "budget": 783, + "budget": 780, "allocations": { - "buyer": { "budget": null, "storage": 168 }, - "seller": { "budget": null, "storage": 170 } + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 38, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 780 }, + { "type": "dock", "targetId": 780 }, + { + "targetId": 780, + "offer": { + "initiator": 1790, + "quantity": 160, + "commodity": "fuel", + "factionId": 232, + "budget": 780, + "allocations": { + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -176475,9 +177011,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 26.707268476556315, - "coord": [-24.996646432517892, 3.3342274725664987], - "sector": 6, + "angle": -59.71601711900469, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -176485,13 +177021,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 171, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -176500,7 +177036,34 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 312, + "type": "incoming", + "meta": { "tradeId": "591:1790:buy:312" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -176515,174 +177078,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3507, + "issued": 312, "type": "outgoing", - "meta": { "tradeId": "783:1686:sell:3507" }, - "id": 170 + "meta": { "tradeId": "780:1790:sell:312" }, + "id": 2 } ], - "max": 6, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "courierB", - "value": "Courier B", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "ACT Courier B", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 783, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1686, - "tags": ["selection", "ship", "role:transport"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "trade" }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, - "active": false, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "goto", - "mask": "BigInt:131072" - }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": -3.400414026504875, - "coord": [8.3576730823512, -5.209732725558633], - "sector": 25, - "moved": true - }, - "render": { - "color": 16761677, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sCiv", - "visible": false, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 135, - "allocations": [], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -176751,8 +177153,8 @@ }, "dockable": { "name": "dockable", - "size": "small", - "dockedIn": 617, + "size": "medium", + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { @@ -176762,12 +177164,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -176776,13 +177178,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -176790,10 +177192,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 783, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 780, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1687, + "id": 1790, "tags": ["selection", "ship", "role:transport"] }, { @@ -176805,15 +177207,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.54, - "currentRotary": -3.1086244689504383e-15, + "currentSpeed": 0.2, + "currentRotary": -0.10899845073766201, "state": "cruise", - "target": 775, + "target": 591, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -176828,19 +177230,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 775 }, - { "type": "dock", "targetId": 775 }, + { "type": "move", "targetId": 591 }, + { "type": "dock", "targetId": 591 }, { - "targetId": 775, + "targetId": 591, "offer": { - "initiator": 1688, - "quantity": 940, - "commodity": "electronics", + "initiator": 1791, + "quantity": 160, + "commodity": "fuel", "factionId": 232, - "budget": 775, + "budget": 780, "allocations": { - "buyer": { "budget": null, "storage": 32 }, - "seller": { "budget": null, "storage": 20 } + "buyer": { "budget": 4, "storage": 1 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 38, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 780 }, + { "type": "dock", "targetId": 780 }, + { + "targetId": 780, + "offer": { + "initiator": 1791, + "quantity": 160, + "commodity": "fuel", + "factionId": 232, + "budget": 780, + "allocations": { + "buyer": { "budget": null, "storage": 4 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -176855,9 +177280,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -36.6820354906566, - "coord": [-17.723535188038845, 25.888118411022052], - "sector": 7, + "angle": -47.14964650464552, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -176865,22 +177290,49 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 21, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 940, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 312, + "type": "incoming", + "meta": { "tradeId": "591:1791:buy:312" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -176895,13 +177347,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3309, + "issued": 312, "type": "outgoing", - "meta": { "tradeId": "775:1688:sell:3309" }, - "id": 20 + "meta": { "tradeId": "780:1791:sell:312" }, + "id": 2 } ], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -176926,7 +177378,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 940, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -176970,7 +177422,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -176981,12 +177433,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -176995,13 +177447,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -177009,10 +177461,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 775, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 780, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1688, + "id": 1791, "tags": ["selection", "ship", "role:transport"] }, { @@ -177029,10 +177481,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.15200000000000002, - "currentRotary": 0, + "currentSpeed": 0.2, + "currentRotary": -0.10899845073766201, "state": "cruise", - "target": 631, + "target": 591, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -177047,40 +177499,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, + { "type": "move", "targetId": 591 }, + { "type": "dock", "targetId": 591 }, { - "targetId": 631, + "targetId": 591, "offer": { - "initiator": 1689, + "initiator": 1792, "quantity": 160, - "commodity": "electronics", + "commodity": "fuel", "factionId": 232, - "budget": 775, + "budget": 780, "allocations": { - "buyer": { "budget": 35, "storage": 37 }, - "seller": { "budget": null, "storage": 261 } + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 3 } }, - "price": 267, + "price": 38, "type": "buy" }, "type": "trade" }, { "type": "move", "targetId": 115 }, { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 775 }, - { "type": "dock", "targetId": 775 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 780 }, + { "type": "dock", "targetId": 780 }, { - "targetId": 775, + "targetId": 780, "offer": { - "initiator": 1689, + "initiator": 1792, "quantity": 160, - "commodity": "electronics", + "commodity": "fuel", "factionId": 232, - "budget": 775, + "budget": 780, "allocations": { - "buyer": { "budget": null, "storage": 36 }, - "seller": { "budget": null, "storage": 38 } + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -177095,8 +177549,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 42.32597336634534, - "coord": [27.676203424454737, -20.198299638190388], + "angle": -65.99920242618428, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -177111,16 +177565,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 39, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -177135,19 +177589,19 @@ "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "631:1689:buy:3570" }, - "id": 37 + "meta": { "tradeId": "591:1792:buy:309" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -177162,10 +177616,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "775:1689:sell:3570" }, - "id": 38 + "meta": { "tradeId": "780:1792:sell:309" }, + "id": 2 } ], "max": 160, @@ -177276,10 +177730,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 775, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 780, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1689, + "id": 1792, "tags": ["selection", "ship", "role:transport"] }, { @@ -177296,10 +177750,10 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 1.0995574287564196, - "state": "maneuver", - "target": 53, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.041852106020194846, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -177311,31 +177765,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 766 }, - { "type": "dock", "targetId": 766 }, - { - "targetId": 766, - "offer": { - "initiator": 1690, - "quantity": 1, - "commodity": "hullPlates", - "factionId": 232, - "budget": 766, - "allocations": { - "buyer": { "budget": null, "storage": 89 }, - "seller": { "budget": null, "storage": 56 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2554 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -177343,9 +177779,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 12.162416835131879, - "coord": [-8.032802793038547, -24.270057861759966], - "sector": 7, + "angle": -117.23832350400019, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -177359,36 +177795,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 57, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "outgoing", - "meta": { "tradeId": "766:1690:sell:3540" }, - "id": 56 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 6, "availableWares": { "coolant": 0, @@ -177421,7 +177829,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 1, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -177497,10 +177905,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 766, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 771, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1690, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 1793, "tags": ["selection", "ship", "role:transport"] }, { @@ -177517,10 +177925,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.252, - "currentRotary": -1.3322676295501878e-15, - "state": "cruise", - "target": 115, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -177532,33 +177940,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 766 }, - { "type": "dock", "targetId": 766 }, - { - "targetId": 766, - "offer": { - "initiator": 1691, - "quantity": 160, - "commodity": "electronics", - "factionId": 232, - "budget": 766, - "allocations": { - "buyer": { "budget": null, "storage": 84 }, - "seller": { "budget": null, "storage": 18 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2555 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -177566,8 +177954,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -67.62975900840449, - "coord": [-21.24438003376401, -16.004535011627798], + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -177582,36 +177970,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3384, - "type": "outgoing", - "meta": { "tradeId": "766:1691:sell:3384" }, - "id": 18 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -177637,7 +177997,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -177720,10 +178080,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 766, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 771, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1691, + "id": 1794, "tags": ["selection", "ship", "role:transport"] }, { @@ -177735,16 +178095,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 93, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -177755,49 +178115,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "dock", "targetId": 815 }, - { - "targetId": 815, - "offer": { - "initiator": 1692, - "quantity": 6, - "commodity": "hullPlates", - "factionId": 232, - "budget": 766, - "allocations": { - "buyer": { "budget": 90, "storage": 51 }, - "seller": { "budget": null, "storage": 191 } - }, - "price": 51, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 766 }, - { "type": "dock", "targetId": 766 }, - { - "targetId": 766, - "offer": { - "initiator": 1692, - "quantity": 6, - "commodity": "hullPlates", - "factionId": 232, - "budget": 766, - "allocations": { - "buyer": { "budget": null, "storage": 90 }, - "seller": { "budget": null, "storage": 52 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2556 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -177805,9 +178129,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -47.52784457691451, - "coord": [0.0020710160847235495, -5.473394526789325], - "sector": 7, + "angle": 5.8677210039572465, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -177815,70 +178139,190 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 53, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "815:1692:buy:3558" }, - "id": 51 - }, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "large", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "largeFreighterB", + "value": "Large Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "ACT Large Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 762, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1795, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, + "active": true, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "766:1692:sell:3558" }, - "id": 52 + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2557 } + ], + "type": "move" } ], - "max": 6, + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, + "moved": true + }, + "render": { + "color": 16761677, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -177947,7 +178391,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -177958,12 +178402,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -177972,13 +178416,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -177986,10 +178430,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 766, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 762, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1692, + "id": 1796, "tags": ["selection", "ship", "role:transport"] }, { @@ -178001,29 +178445,78 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, - "active": false, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, + "active": true, + "currentSpeed": 0.2, + "currentRotary": -0.10899845073766201, + "state": "cruise", + "target": 591, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "auto", + "type": "trade", + "actions": [ + { "type": "move", "targetId": 591 }, + { "type": "dock", "targetId": 591 }, + { + "targetId": 591, + "offer": { + "initiator": 1797, + "quantity": 160, + "commodity": "fuel", + "factionId": 232, + "budget": 750, + "allocations": { + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 6 } + }, + "price": 52, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 750 }, + { "type": "dock", "targetId": 750 }, + { + "targetId": 750, + "offer": { + "initiator": 1797, + "quantity": 160, + "commodity": "fuel", + "factionId": 232, + "budget": 750, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 15.825952758160646, - "coord": [6.422454905897931, -19.213546177873912], - "sector": 8, + "angle": -59.71601711900469, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -178031,15 +178524,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", - "visible": false, + "texture": "mCiv", + "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 53, - "allocations": [], - "max": 6, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1845, + "type": "incoming", + "meta": { "tradeId": "591:1797:buy:1845" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1845, + "type": "outgoing", + "meta": { "tradeId": "750:1797:sell:1845" }, + "id": 2 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -178108,8 +178656,8 @@ }, "dockable": { "name": "dockable", - "size": "small", - "dockedIn": 766, + "size": "medium", + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { @@ -178119,12 +178667,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -178133,13 +178681,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -178147,10 +178695,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 766, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 750, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1693, + "id": 1797, "tags": ["selection", "ship", "role:transport"] }, { @@ -178167,10 +178715,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 123, + "currentSpeed": 0, + "currentRotary": -0.7302575078572411, + "state": "maneuver", + "target": 2559, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -178182,31 +178730,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 233 }, - { "type": "dock", "targetId": 233 }, - { - "targetId": 233, - "offer": { - "initiator": 1694, - "quantity": 160, - "commodity": "drones", - "factionId": 232, - "budget": 754, - "allocations": { - "buyer": { "budget": 55, "storage": 55 }, - "seller": { "budget": null, "storage": 34 } - }, - "price": 1252, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2559 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -178214,9 +178740,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.890747289073731, - "coord": [-12.851772355045556, 7.235650421610789], - "sector": 9, + "angle": -247.43309026704787, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -178230,36 +178756,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 160, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3570, - "type": "outgoing", - "meta": { "tradeId": "233:1694:sell:3570" }, - "id": 34 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -178284,7 +178782,7 @@ }, "stored": { "coolant": 0, - "drones": 160, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -178368,10 +178866,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 754, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 750, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1694, + "id": 1798, "tags": ["selection", "ship", "role:transport"] }, { @@ -178383,15 +178881,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": -1.7763568394002505e-15, - "state": "cruise", - "target": 123, + "currentSpeed": 0.045, + "currentRotary": 0.02351357407022725, + "state": "warming", + "target": 2560, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -178403,31 +178901,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 233 }, - { "type": "dock", "targetId": 233 }, - { - "targetId": 233, - "offer": { - "initiator": 1695, - "quantity": 160, - "commodity": "drones", - "factionId": 232, - "budget": 754, - "allocations": { - "buyer": { "budget": 54, "storage": 54 }, - "seller": { "budget": null, "storage": 34 } - }, - "price": 1252, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2560 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -178435,9 +178911,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 60.14586586307233, - "coord": [-14.020044243156052, 9.395412759525914], - "sector": 9, + "angle": 2.02317446603229, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -178445,43 +178921,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 160, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3564, - "type": "outgoing", - "meta": { "tradeId": "233:1695:sell:3564" }, - "id": 34 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -178505,7 +178953,7 @@ }, "stored": { "coolant": 0, - "drones": 160, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -178550,7 +178998,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -178561,12 +179009,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -178575,13 +179023,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -178589,10 +179037,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 754, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 739, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1695, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1799, "tags": ["selection", "ship", "role:transport"] }, { @@ -178609,10 +179057,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.265, - "currentRotary": 6.217248937900877e-15, - "state": "cruise", - "target": 51, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.023885553442099194, + "state": "warming", + "target": 2561, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -178624,33 +179072,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 754 }, - { "type": "dock", "targetId": 754 }, - { - "targetId": 754, - "offer": { - "initiator": 1696, - "quantity": 20, - "commodity": "metals", - "factionId": 232, - "budget": 754, - "allocations": { - "buyer": { "budget": null, "storage": 139 }, - "seller": { "budget": null, "storage": 36 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2561 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -178658,9 +179082,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.3880040030139, - "coord": [9.285160349318446, -26.05710175886025], - "sector": 7, + "angle": -54.53054496823038, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -178674,36 +179098,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "outgoing", - "meta": { "tradeId": "754:1696:sell:3501" }, - "id": 36 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -178739,7 +179135,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 20, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -178812,10 +179208,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 754, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 739, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1696, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1800, "tags": ["selection", "ship", "role:transport"] }, { @@ -178832,10 +179228,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.013000000000000001, - "currentRotary": -4.440892098500626e-16, - "state": "warming", - "target": 121, + "currentSpeed": 0.226, + "currentRotary": 0.022153057946627808, + "state": "cruise", + "target": 2562, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -178847,31 +179243,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 754 }, - { "type": "dock", "targetId": 754 }, - { - "targetId": 754, - "offer": { - "initiator": 1697, - "quantity": 20, - "commodity": "metals", - "factionId": 232, - "budget": 754, - "allocations": { - "buyer": { "budget": null, "storage": 138 }, - "seller": { "budget": null, "storage": 34 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2562 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -178879,9 +179253,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 13.47453364290702, - "coord": [-24.873724705593343, 3.3266503129158096], - "sector": 6, + "angle": -54.49687471677442, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -178895,36 +179269,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 20, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3405, - "type": "outgoing", - "meta": { "tradeId": "754:1697:sell:3405" }, - "id": 34 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -178960,7 +179306,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 20, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -179033,10 +179379,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 754, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 739, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 3.3 } }, - "id": 1697, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1801, "tags": ["selection", "ship", "role:transport"] }, { @@ -179053,10 +179399,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": -0.9424777960769379, - "state": "maneuver", - "target": 741, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.019654451481570412, + "state": "warming", + "target": 2563, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -179068,48 +179414,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 741 }, - { "type": "dock", "targetId": 741 }, - { - "targetId": 741, - "offer": { - "initiator": 1698, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": null, "storage": 35 }, - "seller": { "budget": null, "storage": 150 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1698, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": 30, "storage": 30 }, - "seller": { "budget": null, "storage": 36 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2563 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -179117,8 +179424,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -12.99340047768173, - "coord": [22.586284438608008, 10.396233836305008], + "angle": -54.46040906650614, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -179133,63 +179440,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3567, - "type": "incoming", - "meta": { "tradeId": "741:1698:buy:3567" }, - "id": 35 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3567, - "type": "outgoing", - "meta": { "tradeId": "617:1698:sell:3567" }, - "id": 36 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -179298,10 +179550,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 741, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 739, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1698, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1802, "tags": ["selection", "ship", "role:transport"] }, { @@ -179318,10 +179570,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.026000000000000002, - "currentRotary": 4.884981308350689e-15, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.0238470692253947, "state": "warming", - "target": 115, + "target": 2564, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -179333,56 +179585,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 517 }, - { "type": "dock", "targetId": 517 }, - { - "targetId": 517, - "offer": { - "initiator": 1699, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": 102, "storage": 33 }, - "seller": { "budget": null, "storage": 159 } - }, - "price": 32, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 741 }, - { "type": "dock", "targetId": 741 }, - { - "targetId": 741, - "offer": { - "initiator": 1699, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": null, "storage": 149 }, - "seller": { "budget": null, "storage": 34 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2564 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -179390,8 +179595,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -17.289745282291246, - "coord": [-22.54678763462539, -19.66754593910359], + "angle": -54.52934241052517, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -179406,63 +179611,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3549, - "type": "incoming", - "meta": { "tradeId": "517:1699:buy:3549" }, - "id": 33 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3549, - "type": "outgoing", - "meta": { "tradeId": "741:1699:sell:3549" }, - "id": 34 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -179571,10 +179721,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 741, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 739, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 2.3 } }, - "id": 1699, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1803, "tags": ["selection", "ship", "role:transport"] }, { @@ -179586,15 +179736,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.11699999999999999, - "currentRotary": 5.5639434837218005e-8, - "state": "maneuver", - "target": 741, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -179606,48 +179756,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 741 }, - { "type": "dock", "targetId": 741 }, - { - "targetId": 741, - "offer": { - "initiator": 1700, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": null, "storage": 29 }, - "seller": { "budget": null, "storage": 145 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1700, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": 22, "storage": 22 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2565 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -179655,8 +179770,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.537382194235974, - "coord": [21.81192215359124, 10.208417153939436], + "angle": 5.8677210039572465, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -179665,70 +179780,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3477, - "type": "incoming", - "meta": { "tradeId": "741:1700:buy:3477" }, - "id": 29 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3477, - "type": "outgoing", - "meta": { "tradeId": "617:1700:sell:3477" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -179797,7 +179857,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -179808,12 +179868,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -179822,13 +179882,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -179836,10 +179896,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 741, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 726, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1700, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1804, "tags": ["selection", "ship", "role:transport"] }, { @@ -179851,15 +179911,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.9, - "currentRotary": -6.661338147750939e-15, - "state": "cruise", - "target": 617, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.041852106020194846, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -179871,29 +179931,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1701, - "quantity": 940, - "commodity": "food", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": 24, "storage": 24 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2566 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -179901,8 +179945,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 43.27421662278826, - "coord": [11.780723330235858, -1.151751998627823], + "angle": -117.23832350400019, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -179911,43 +179955,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "outgoing", - "meta": { "tradeId": "617:1701:sell:3501" }, - "id": 22 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -179974,7 +179990,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -180016,7 +180032,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -180027,8 +180043,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -180041,13 +180057,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -180055,10 +180071,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 741, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 726, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1701, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 1805, "tags": ["selection", "ship", "role:transport"] }, { @@ -180076,10 +180092,10 @@ "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 93, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -180090,55 +180106,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 517 }, - { "type": "dock", "targetId": 517 }, - { - "targetId": 517, - "offer": { - "initiator": 1702, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": 101, "storage": 33 }, - "seller": { "budget": null, "storage": 156 } - }, - "price": 32, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 741 }, - { "type": "dock", "targetId": 741 }, - { - "targetId": 741, - "offer": { - "initiator": 1702, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 741, - "allocations": { - "buyer": { "budget": null, "storage": 146 }, - "seller": { "budget": null, "storage": 34 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2567 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -180146,8 +180120,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 23.550959214375997, - "coord": [27.967164065601608, -20.22249875433363], + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -180162,63 +180136,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3480, - "type": "incoming", - "meta": { "tradeId": "517:1702:buy:3480" }, - "id": 33 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3480, - "type": "outgoing", - "meta": { "tradeId": "741:1702:sell:3480" }, - "id": 34 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -180327,10 +180246,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 741, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 726, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1702, + "id": 1806, "tags": ["selection", "ship", "role:transport"] }, { @@ -180347,10 +180266,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": -1.3322676295501878e-15, - "state": "cruise", - "target": 115, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -180362,56 +180281,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 517 }, - { "type": "dock", "targetId": 517 }, - { - "targetId": 517, - "offer": { - "initiator": 1703, - "quantity": 72, - "commodity": "water", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": 80, "storage": 29 }, - "seller": { "budget": null, "storage": 162 } - }, - "price": 32, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 729 }, - { "type": "dock", "targetId": 729 }, - { - "targetId": 729, - "offer": { - "initiator": 1703, - "quantity": 72, - "commodity": "water", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": null, "storage": 128 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2568 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -180419,8 +180295,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 7.16429350433069, - "coord": [2.5993249985498084, 0.6930662728217497], + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -180435,63 +180311,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 72 - }, - "issued": 3564, - "type": "incoming", - "meta": { "tradeId": "517:1703:buy:3564" }, - "id": 29 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 72 - }, - "issued": 3564, - "type": "outgoing", - "meta": { "tradeId": "729:1703:sell:3564" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -180600,10 +180421,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 729, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 726, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1703, + "id": 1807, "tags": ["selection", "ship", "role:transport"] }, { @@ -180620,10 +180441,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 113, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -180635,31 +180456,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 729 }, - { "type": "dock", "targetId": 729 }, - { - "targetId": 729, - "offer": { - "initiator": 1704, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": null, "storage": 124 }, - "seller": { "budget": null, "storage": 26 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2569 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -180667,9 +180470,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -27.64688105134021, - "coord": [-19.06960645005049, 25.901685422459252], - "sector": 7, + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -180683,36 +180486,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3423, - "type": "outgoing", - "meta": { "tradeId": "729:1704:sell:3423" }, - "id": 26 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -180751,7 +180526,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -180821,10 +180596,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 729, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 726, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1704, + "id": 1808, "tags": ["selection", "ship", "role:transport"] }, { @@ -180841,10 +180616,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.46499999999999997, - "currentRotary": 0, - "state": "cruise", - "target": 729, + "currentSpeed": 0.03900000000000001, + "currentRotary": 0.14175227034032245, + "state": "warming", + "target": 2570, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -180856,29 +180631,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 729 }, - { "type": "dock", "targetId": 729 }, - { - "targetId": 729, - "offer": { - "initiator": 1705, - "quantity": 27, - "commodity": "fuel", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": null, "storage": 127 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2570 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -180886,9 +180641,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -21.12706006249963, - "coord": [-2.910220173289858, 4.282615622799169], - "sector": 25, + "angle": -5.236514560973639, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -180902,36 +180657,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 27, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3549, - "type": "outgoing", - "meta": { "tradeId": "729:1705:sell:3549" }, - "id": 28 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -180960,7 +180687,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 27, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -181040,10 +180767,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 729, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 713, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1705, + "cooldowns": { "timers": { "cruise": 1.2999999999999998 } }, + "id": 1809, "tags": ["selection", "ship", "role:transport"] }, { @@ -181060,10 +180787,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 115, + "currentSpeed": 0.03900000000000001, + "currentRotary": 0.14789029342968396, + "state": "warming", + "target": 2571, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -181075,56 +180802,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 517 }, - { "type": "dock", "targetId": 517 }, - { - "targetId": 517, - "offer": { - "initiator": 1706, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": 81, "storage": 23 }, - "seller": { "budget": null, "storage": 163 } - }, - "price": 32, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 729 }, - { "type": "dock", "targetId": 729 }, - { - "targetId": 729, - "offer": { - "initiator": 1706, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": null, "storage": 129 }, - "seller": { "budget": null, "storage": 24 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2571 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -181132,9 +180812,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.675833050396763, - "coord": [-7.4403123046403525, 8.417342329962935], - "sector": 25, + "angle": -5.195356969794094, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -181148,63 +180828,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3576, - "type": "incoming", - "meta": { "tradeId": "517:1706:buy:3576" }, - "id": 23 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3576, - "type": "outgoing", - "meta": { "tradeId": "729:1706:sell:3576" }, - "id": 24 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -181313,10 +180938,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 729, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 713, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1706, + "cooldowns": { "timers": { "cruise": 1.2999999999999998 } }, + "id": 1810, "tags": ["selection", "ship", "role:transport"] }, { @@ -181328,15 +180953,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": 1.7763568394002505e-15, - "state": "cruise", - "target": 541, + "currentSpeed": 0.018, + "currentRotary": 0.126159184014639, + "state": "warming", + "target": 2572, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -181348,50 +180973,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 541 }, - { "type": "dock", "targetId": 541 }, - { - "targetId": 541, - "offer": { - "initiator": 1707, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": 77, "storage": 23 }, - "seller": { "budget": null, "storage": 141 } - }, - "price": 32, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 729 }, - { "type": "dock", "targetId": 729 }, - { - "targetId": 729, - "offer": { - "initiator": 1707, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 729, - "allocations": { - "buyer": { "budget": null, "storage": 125 }, - "seller": { "budget": null, "storage": 24 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2572 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -181399,8 +180983,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 25.760316081742502, - "coord": [-15.382472651237544, 20.818767183776256], + "angle": 1.0922831033133522, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -181409,70 +180993,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "incoming", - "meta": { "tradeId": "541:1707:buy:3501" }, - "id": 23 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "outgoing", - "meta": { "tradeId": "729:1707:sell:3501" }, - "id": 24 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -181541,7 +181070,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -181552,12 +181081,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -181566,13 +181095,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -181580,10 +181109,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 729, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 713, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1707, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1811, "tags": ["selection", "ship", "role:transport"] }, { @@ -181595,15 +181124,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 505, + "currentSpeed": 0.21300000000000002, + "currentRotary": 0.13807931045151145, + "state": "cruise", + "target": 2573, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -181615,50 +181144,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 505 }, - { "type": "dock", "targetId": 505 }, - { - "targetId": 505, - "offer": { - "initiator": 1708, - "quantity": 6, - "commodity": "fuel", - "factionId": 232, - "budget": 717, - "allocations": { - "buyer": { "budget": 76, "storage": 53 }, - "seller": { "budget": null, "storage": 150 } - }, - "price": 62, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 717 }, - { "type": "dock", "targetId": 717 }, - { - "targetId": 717, - "offer": { - "initiator": 1708, - "quantity": 6, - "commodity": "fuel", - "factionId": 232, - "budget": 717, - "allocations": { - "buyer": { "budget": null, "storage": 78 }, - "seller": { "budget": null, "storage": 54 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2573 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -181666,9 +181154,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -10.38222632911842, - "coord": [-24.883973580266105, 3.33464784803246], - "sector": 6, + "angle": -5.234574254715708, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -181676,70 +181164,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 55, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3576, - "type": "incoming", - "meta": { "tradeId": "505:1708:buy:3576" }, - "id": 53 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3576, - "type": "outgoing", - "meta": { "tradeId": "717:1708:sell:3576" }, - "id": 54 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -181808,7 +181241,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -181819,12 +181252,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -181833,13 +181266,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -181847,10 +181280,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 717, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 713, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1708, + "id": 1812, "tags": ["selection", "ship", "role:transport"] }, { @@ -181862,15 +181295,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": -0.15707963267948966, - "state": "maneuver", - "target": 617, + "currentSpeed": 1.8550000000000004, + "currentRotary": -0.014089546894513028, + "state": "cruise", + "target": 2574, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -181882,29 +181315,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1709, - "quantity": 940, - "commodity": "food", - "factionId": 232, - "budget": 717, - "allocations": { - "buyer": { "budget": 19, "storage": 19 }, - "seller": { "budget": null, "storage": 18 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2574 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -181912,9 +181325,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 5.700999476661284, - "coord": [27.957172645650708, -20.2223889873001], - "sector": 25, + "angle": 1.0298541692097867, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -181922,43 +181335,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3327, - "type": "outgoing", - "meta": { "tradeId": "617:1709:sell:3327" }, - "id": 18 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -181985,7 +181370,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -182027,7 +181412,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -182038,8 +181423,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -182052,13 +181437,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -182066,10 +181451,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 717, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 705, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1709, + "id": 1813, "tags": ["selection", "ship", "role:transport"] }, { @@ -182081,15 +181466,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.013000000000000001, - "currentRotary": -0.3324264403426773, - "state": "maneuver", - "target": 51, + "currentSpeed": 1.2550000000000003, + "currentRotary": -0.0015767471808629807, + "state": "cruise", + "target": 2575, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -182101,31 +181486,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 233 }, - { "type": "dock", "targetId": 233 }, - { - "targetId": 233, - "offer": { - "initiator": 1710, - "quantity": 25, - "commodity": "drones", - "factionId": 232, - "budget": 717, - "allocations": { - "buyer": { "budget": 56, "storage": 56 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 1252, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2575 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -182133,9 +181496,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -24.03840292104486, - "coord": [-16.41458901701659, 6.971936257759364], - "sector": 7, + "angle": 0.9893778406993561, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -182143,43 +181506,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 25, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3591, - "type": "outgoing", - "meta": { "tradeId": "233:1710:sell:3591" }, - "id": 28 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -182203,7 +181538,7 @@ }, "stored": { "coolant": 0, - "drones": 25, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -182248,7 +181583,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -182259,12 +181594,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -182273,13 +181608,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -182287,10 +181622,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 717, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 705, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1710, + "id": 1814, "tags": ["selection", "ship", "role:transport"] }, { @@ -182307,10 +181642,10 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 1.2550000000000003, - "currentRotary": 4.440892098500626e-16, + "currentSpeed": 1.8550000000000004, + "currentRotary": -0.0609801755078756, "state": "cruise", - "target": 115, + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -182322,31 +181657,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 717 }, - { "type": "dock", "targetId": 717 }, - { - "targetId": 717, - "offer": { - "initiator": 1711, - "quantity": 6, - "commodity": "fuel", - "factionId": 232, - "budget": 717, - "allocations": { - "buyer": { "budget": null, "storage": 77 }, - "seller": { "budget": null, "storage": 58 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2576 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -182354,9 +181671,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.665252375030382, - "coord": [-0.2166409787395912, 2.083674109044809], - "sector": 25, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -182370,36 +181687,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 59, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3540, - "type": "outgoing", - "meta": { "tradeId": "717:1711:sell:3540" }, - "id": 58 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 6, "availableWares": { "coolant": 0, @@ -182428,7 +181717,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -182508,10 +181797,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 717, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 694, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1711, + "id": 1815, "tags": ["selection", "ship", "role:transport"] }, { @@ -182528,10 +181817,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 121, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -182543,54 +181832,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 792 }, - { "type": "dock", "targetId": 792 }, - { - "targetId": 792, - "offer": { - "initiator": 1712, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 708, - "allocations": { - "buyer": { "budget": 81, "storage": 27 }, - "seller": { "budget": null, "storage": 224 } - }, - "price": 40, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 708 }, - { "type": "dock", "targetId": 708 }, - { - "targetId": 708, - "offer": { - "initiator": 1712, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 708, - "allocations": { - "buyer": { "budget": null, "storage": 81 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2577 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -182598,9 +181846,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 0.9081964746010471, - "coord": [0.42079270061458485, -16.412326852087837], - "sector": 6, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -182614,63 +181862,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3525, - "type": "incoming", - "meta": { "tradeId": "792:1712:buy:3525" }, - "id": 27 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3525, - "type": "outgoing", - "meta": { "tradeId": "708:1712:sell:3525" }, - "id": 28 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -182779,10 +181972,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 708, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 694, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1712, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1816, "tags": ["selection", "ship", "role:transport"] }, { @@ -182794,15 +181987,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.078, - "currentRotary": 0.000003748937164704813, - "state": "maneuver", - "target": 121, + "currentSpeed": 0.045, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -182814,54 +182007,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 792 }, - { "type": "dock", "targetId": 792 }, - { - "targetId": 792, - "offer": { - "initiator": 1713, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 708, - "allocations": { - "buyer": { "budget": 80, "storage": 29 }, - "seller": { "budget": null, "storage": 221 } - }, - "price": 40, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 708 }, - { "type": "dock", "targetId": 708 }, - { - "targetId": 708, - "offer": { - "initiator": 1713, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 708, - "allocations": { - "buyer": { "budget": null, "storage": 80 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2578 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -182869,9 +182021,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 48.04252975196922, - "coord": [15.974791657852501, -28.5467910764104], - "sector": 6, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -182879,70 +182031,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "incoming", - "meta": { "tradeId": "792:1713:buy:3483" }, - "id": 29 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "outgoing", - "meta": { "tradeId": "708:1713:sell:3483" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -183011,7 +182108,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -183022,12 +182119,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -183036,13 +182133,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -183050,10 +182147,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 708, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 694, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1713, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1817, "tags": ["selection", "ship", "role:transport"] }, { @@ -183065,16 +182162,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, - "active": false, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, + "active": true, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -183085,48 +182182,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { - "targetId": 577, - "offer": { - "initiator": 1714, - "quantity": 6, - "commodity": "fuel", - "factionId": 232, - "budget": 708, - "allocations": { - "buyer": { "budget": 82, "storage": 57 }, - "seller": { "budget": null, "storage": 419 } - }, - "price": 54, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 708 }, - { "type": "dock", "targetId": 708 }, - { - "targetId": 708, - "offer": { - "initiator": 1714, - "quantity": 6, - "commodity": "fuel", - "factionId": 232, - "budget": 708, - "allocations": { - "buyer": { "budget": null, "storage": 82 }, - "seller": { "budget": null, "storage": 58 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2579 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -183134,9 +182196,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -49.36419052004131, - "coord": [-1.7569448551367497, 3.303179268051232], - "sector": 25, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -183144,70 +182206,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", - "visible": false, + "texture": "mCiv", + "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 59, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3543, - "type": "incoming", - "meta": { "tradeId": "577:1714:buy:3543" }, - "id": 57 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3543, - "type": "outgoing", - "meta": { "tradeId": "708:1714:sell:3543" }, - "id": 58 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -183276,8 +182283,8 @@ }, "dockable": { "name": "dockable", - "size": "small", - "dockedIn": 577, + "size": "medium", + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { @@ -183287,12 +182294,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -183301,13 +182308,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -183315,10 +182322,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 708, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 694, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1714, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1818, "tags": ["selection", "ship", "role:transport"] }, { @@ -183330,15 +182337,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.6519999999999999, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 49, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -183350,31 +182357,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 708 }, - { "type": "dock", "targetId": 708 }, - { - "targetId": 708, - "offer": { - "initiator": 1715, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 708, - "allocations": { - "buyer": { "budget": null, "storage": 78 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2580 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -183382,9 +182371,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.516614932221533, - "coord": [13.85091611968623, -26.891464823470038], - "sector": 6, + "angle": 5.8677210039572465, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -183392,43 +182381,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3429, - "type": "outgoing", - "meta": { "tradeId": "708:1715:sell:3429" }, - "id": 28 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -183460,7 +182421,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 160, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -183497,7 +182458,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -183508,12 +182469,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -183522,13 +182483,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -183536,10 +182497,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 708, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 684, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1715, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1819, "tags": ["selection", "ship", "role:transport"] }, { @@ -183551,15 +182512,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": -1.021405182655144e-14, - "state": "cruise", - "target": 631, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -183571,50 +182532,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1716, - "quantity": 160, - "commodity": "electronics", - "factionId": 232, - "budget": 697, - "allocations": { - "buyer": { "budget": 27, "storage": 29 }, - "seller": { "budget": null, "storage": 259 } - }, - "price": 267, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 697 }, - { "type": "dock", "targetId": 697 }, - { - "targetId": 697, - "offer": { - "initiator": 1716, - "quantity": 160, - "commodity": "electronics", - "factionId": 232, - "budget": 697, - "allocations": { - "buyer": { "budget": null, "storage": 27 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2581 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -183622,8 +182546,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 42.32602899452267, - "coord": [11.918472878069762, -18.845400558470384], + "angle": 5.8677210039572465, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -183632,70 +182556,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "incoming", - "meta": { "tradeId": "631:1716:buy:3519" }, - "id": 29 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "outgoing", - "meta": { "tradeId": "697:1716:sell:3519" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -183764,7 +182633,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -183775,12 +182644,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -183789,13 +182658,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -183803,10 +182672,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 697, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 684, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1716, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1820, "tags": ["selection", "ship", "role:transport"] }, { @@ -183823,10 +182692,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0.9, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 631, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -183838,50 +182707,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1717, - "quantity": 940, - "commodity": "electronics", - "factionId": 232, - "budget": 697, - "allocations": { - "buyer": { "budget": 25, "storage": 21 }, - "seller": { "budget": null, "storage": 256 } - }, - "price": 267, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 697 }, - { "type": "dock", "targetId": 697 }, - { - "targetId": 697, - "offer": { - "initiator": 1717, - "quantity": 940, - "commodity": "electronics", - "factionId": 232, - "budget": 697, - "allocations": { - "buyer": { "budget": null, "storage": 25 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2582 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -183889,8 +182721,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 4.6269221446418864, - "coord": [-19.075024788202626, -16.189846577702966], + "angle": 5.8677210039572465, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -183905,63 +182737,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "incoming", - "meta": { "tradeId": "631:1717:buy:3447" }, - "id": 21 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "outgoing", - "meta": { "tradeId": "697:1717:sell:3447" }, - "id": 22 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 940, "availableWares": { "coolant": 0, @@ -184070,10 +182847,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 697, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 684, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1717, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1821, "tags": ["selection", "ship", "role:transport"] }, { @@ -184090,10 +182867,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 113, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -184105,31 +182882,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1718, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 688, - "allocations": { - "buyer": { "budget": 31, "storage": 31 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2583 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -184137,9 +182896,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 3.196078340926721, - "coord": [-18.158826333951033, -8.901440373483556], - "sector": 7, + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -184153,36 +182912,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3573, - "type": "outgoing", - "meta": { "tradeId": "617:1718:sell:3573" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -184210,7 +182941,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -184291,10 +183022,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 688, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 684, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1718, + "id": 1822, "tags": ["selection", "ship", "role:transport"] }, { @@ -184306,15 +183037,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.5519999999999999, - "currentRotary": -9.769962616701378e-15, - "state": "cruise", - "target": 617, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.041852106020194846, + "state": "warming", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -184326,29 +183057,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1719, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 688, - "allocations": { - "buyer": { "budget": 28, "storage": 28 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 21, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2584 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -184356,8 +183071,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 48.03768623614674, - "coord": [26.46061755787842, -19.0680827587529], + "angle": -117.23832350400019, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -184366,43 +183081,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3522, - "type": "outgoing", - "meta": { "tradeId": "617:1719:sell:3522" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -184429,7 +183116,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -184471,7 +183158,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -184482,12 +183169,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -184496,13 +183183,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -184510,10 +183197,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 688, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 684, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1719, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 1823, "tags": ["selection", "ship", "role:transport"] }, { @@ -184525,15 +183212,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.6649999999999999, - "currentRotary": 4.884981308350689e-15, + "currentSpeed": 6, + "currentRotary": -0.018138091882107688, "state": "cruise", - "target": 49, + "target": 2585, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -184545,33 +183232,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 675 }, - { "type": "dock", "targetId": 675 }, - { - "targetId": 675, - "offer": { - "initiator": 1720, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 675, - "allocations": { - "buyer": { "budget": null, "storage": 185 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2585 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -184579,9 +183242,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -16.3333788400364, - "coord": [-30.98047313339149, -5.107894798162096], - "sector": 6, + "angle": 0.34747858391992414, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -184589,43 +183252,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3459, - "type": "outgoing", - "meta": { "tradeId": "675:1720:sell:3459" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -184666,7 +183301,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, "quota": { "coolant": 0, @@ -184694,7 +183329,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -184705,12 +183340,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -184719,13 +183354,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -184736,7 +183371,7 @@ "commander": { "name": "commander", "id": 675, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1720, + "id": 1824, "tags": ["selection", "ship", "role:transport"] }, { @@ -184748,15 +183383,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": -1.945300566923836, - "state": "maneuver", - "target": 675, + "currentSpeed": 0.279, + "currentRotary": -0.011305586825264058, + "state": "cruise", + "target": 2586, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -184768,29 +183403,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 675 }, - { "type": "dock", "targetId": 675 }, - { - "targetId": 675, - "offer": { - "initiator": 1721, - "quantity": 6, - "commodity": "hullPlates", - "factionId": 232, - "budget": 675, - "allocations": { - "buyer": { "budget": null, "storage": 187 }, - "seller": { "budget": null, "storage": 64 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2586 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -184798,9 +183413,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -208.73859301094137, - "coord": [27.957172645650708, -20.2223889873001], - "sector": 25, + "angle": 0.3807042342388769, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -184808,43 +183423,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 65, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3528, - "type": "outgoing", - "meta": { "tradeId": "675:1721:sell:3528" }, - "id": 64 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -184876,7 +183463,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -184913,7 +183500,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -184924,8 +183511,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { @@ -184938,13 +183525,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -184955,7 +183542,7 @@ "commander": { "name": "commander", "id": 675, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1721, + "id": 1825, "tags": ["selection", "ship", "role:transport"] }, { @@ -184972,10 +183559,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.6649999999999999, - "currentRotary": -1.7763568394002505e-15, - "state": "cruise", - "target": 113, + "currentSpeed": 0, + "currentRotary": 0.5661543567639544, + "state": "maneuver", + "target": 2587, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -184987,31 +183574,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 675 }, - { "type": "dock", "targetId": 675 }, - { - "targetId": 675, - "offer": { - "initiator": 1722, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 675, - "allocations": { - "buyer": { "budget": null, "storage": 186 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2587 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -185019,8 +183584,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 66.60112775327912, - "coord": [-1.1017809806039898, 1.1386736908582407], + "angle": -4.3232971065693615, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -185035,36 +183600,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3495, - "type": "outgoing", - "meta": { "tradeId": "675:1722:sell:3495" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -185103,7 +183640,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -185173,10 +183710,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 675, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 663, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1722, + "id": 1826, "tags": ["selection", "ship", "role:transport"] }, { @@ -185188,15 +183725,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0.15707963267948966, + "currentRotary": 0.5324919252948908, "state": "maneuver", - "target": 675, + "target": 2588, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -185208,29 +183745,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 675 }, - { "type": "dock", "targetId": 675 }, - { - "targetId": 675, - "offer": { - "initiator": 1723, - "quantity": 940, - "commodity": "fuel", - "factionId": 232, - "budget": 675, - "allocations": { - "buyer": { "budget": null, "storage": 175 }, - "seller": { "budget": null, "storage": 14 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2588 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -185238,9 +183755,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -5.168350262627451, - "coord": [7.1647092737767615, -23.840256392541278], - "sector": 25, + "angle": -4.299472372459742, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -185248,43 +183765,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 940, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3135, - "type": "outgoing", - "meta": { "tradeId": "675:1723:sell:3135" }, - "id": 14 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -185312,7 +183801,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -185353,7 +183842,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -185364,12 +183853,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -185378,13 +183867,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -185392,10 +183881,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 675, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 663, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1723, + "id": 1827, "tags": ["selection", "ship", "role:transport"] }, { @@ -185407,15 +183896,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-15, - "state": "cruise", - "target": 675, + "currentSpeed": 0, + "currentRotary": 0.5495091469528939, + "state": "maneuver", + "target": 2589, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -185427,29 +183916,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 675 }, - { "type": "dock", "targetId": 675 }, - { - "targetId": 675, - "offer": { - "initiator": 1724, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 675, - "allocations": { - "buyer": { "budget": null, "storage": 184 }, - "seller": { "budget": null, "storage": 26 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2589 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -185457,9 +183926,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 30.014880283416684, - "coord": [13.076753605070286, -22.775182736122016], - "sector": 25, + "angle": -4.313751810428306, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -185467,43 +183936,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3435, - "type": "outgoing", - "meta": { "tradeId": "675:1724:sell:3435" }, - "id": 26 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -185541,7 +183982,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -185572,7 +184013,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -185583,12 +184024,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -185597,13 +184038,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -185611,10 +184052,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 675, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 663, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1724, + "id": 1828, "tags": ["selection", "ship", "role:transport"] }, { @@ -185631,10 +184072,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 9.769962616701378e-15, - "state": "cruise", - "target": 49, + "currentSpeed": 0, + "currentRotary": 0.5740134126430148, + "state": "maneuver", + "target": 2590, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -185646,31 +184087,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 666 }, - { "type": "dock", "targetId": 666 }, - { - "targetId": 666, - "offer": { - "initiator": 1725, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 666, - "allocations": { - "buyer": { "budget": null, "storage": 103 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2590 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -185678,9 +184097,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 35.465682218035575, - "coord": [-1.5665448880441435, -14.860711227991743], - "sector": 6, + "angle": -4.286625969050323, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -185694,36 +184113,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3384, - "type": "outgoing", - "meta": { "tradeId": "666:1725:sell:3384" }, - "id": 28 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -185756,7 +184147,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 160, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -185832,10 +184223,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 666, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 663, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1725, + "id": 1829, "tags": ["selection", "ship", "role:transport"] }, { @@ -185847,15 +184238,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": -2.0420352248333655, + "currentRotary": 0.5489667635483593, "state": "maneuver", - "target": 121, + "target": 2591, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -185867,54 +184258,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 754 }, - { "type": "dock", "targetId": 754 }, - { - "targetId": 754, - "offer": { - "initiator": 1726, - "quantity": 6, - "commodity": "hullPlates", - "factionId": 232, - "budget": 666, - "allocations": { - "buyer": { "budget": 108, "storage": 57 }, - "seller": { "budget": null, "storage": 142 } - }, - "price": 47, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 666 }, - { "type": "dock", "targetId": 666 }, - { - "targetId": 666, - "offer": { - "initiator": 1726, - "quantity": 6, - "commodity": "hullPlates", - "factionId": 232, - "budget": 666, - "allocations": { - "buyer": { "budget": null, "storage": 108 }, - "seller": { "budget": null, "storage": 58 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2591 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -185922,9 +184268,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.417262858350074, - "coord": [16.189516367984734, -28.716462323476954], - "sector": 6, + "angle": -4.351013086100034, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -185932,70 +184278,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 59, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "754:1726:buy:3558" }, - "id": 57 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 6, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "666:1726:sell:3558" }, - "id": 58 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -186064,7 +184355,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -186075,12 +184366,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -186089,13 +184380,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -186103,10 +184394,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 666, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 663, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1726, + "id": 1830, "tags": ["selection", "ship", "role:transport"] }, { @@ -186123,10 +184414,10 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 4.855, - "currentRotary": 1.7763568394002505e-15, + "currentSpeed": 1.8550000000000004, + "currentRotary": 0.0214556963851944, "state": "cruise", - "target": 123, + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -186141,23 +184432,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 666 }, - { "type": "dock", "targetId": 666 }, + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, { - "targetId": 666, + "targetId": 739, "offer": { - "initiator": 1727, + "initiator": 1831, "quantity": 6, - "commodity": "hullPlates", + "commodity": "electronics", "factionId": 232, - "budget": 666, + "budget": 653, "allocations": { - "buyer": { "budget": null, "storage": 107 }, - "seller": { "budget": null, "storage": 60 } + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 288, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 653 }, + { "type": "dock", "targetId": 653 }, + { + "targetId": 653, + "offer": { + "initiator": 1831, + "quantity": 6, + "commodity": "electronics", + "factionId": 232, + "budget": 653, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -186172,9 +184482,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.25953741656173, - "coord": [-15.721322343733245, 12.81430551693257], - "sector": 9, + "angle": -35.63930730356064, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -186188,20 +184498,47 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 61, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 6, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "incoming", + "meta": { "tradeId": "739:1831:buy:306" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 6, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -186212,10 +184549,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3519, + "issued": 306, "type": "outgoing", - "meta": { "tradeId": "666:1727:sell:3519" }, - "id": 60 + "meta": { "tradeId": "653:1831:sell:306" }, + "id": 2 } ], "max": 6, @@ -186250,7 +184587,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -186326,10 +184663,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 666, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 653, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1727, + "id": 1831, "tags": ["selection", "ship", "role:transport"] }, { @@ -186341,15 +184678,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 6, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 49, + "currentSpeed": 0.045, + "currentRotary": 0.021455696385193956, + "state": "warming", + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -186364,21 +184701,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 666 }, - { "type": "dock", "targetId": 666 }, + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, { - "targetId": 666, + "targetId": 739, "offer": { - "initiator": 1728, - "quantity": 6, - "commodity": "hullPlates", + "initiator": 1832, + "quantity": 940, + "commodity": "electronics", + "factionId": 232, + "budget": 653, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 288, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 653 }, + { "type": "dock", "targetId": 653 }, + { + "targetId": 653, + "offer": { + "initiator": 1832, + "quantity": 940, + "commodity": "electronics", "factionId": 232, - "budget": 666, + "budget": 653, "allocations": { - "buyer": { "budget": null, "storage": 106 }, - "seller": { "budget": null, "storage": 60 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -186393,9 +184751,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.516614932221533, - "coord": [-10.59501509977093, -7.8154979852316595], - "sector": 6, + "angle": 2.0598045395168754, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -186403,26 +184761,26 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 61, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 940, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -186433,13 +184791,40 @@ "tauMetal": 0, "water": 0 }, - "issued": 3516, + "issued": 303, + "type": "incoming", + "meta": { "tradeId": "739:1832:buy:303" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 940, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 303, "type": "outgoing", - "meta": { "tradeId": "666:1728:sell:3516" }, - "id": 60 + "meta": { "tradeId": "653:1832:sell:303" }, + "id": 2 } ], - "max": 6, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -186471,7 +184856,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -186508,7 +184893,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -186519,8 +184904,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { @@ -186533,13 +184918,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -186547,10 +184932,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 666, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 653, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1728, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 1832, "tags": ["selection", "ship", "role:transport"] }, { @@ -186567,10 +184952,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 1.3322676295501878e-15, - "state": "cruise", - "target": 653, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.0214556963851944, + "state": "warming", + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -186585,19 +184970,42 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, + { + "targetId": 739, + "offer": { + "initiator": 1833, + "quantity": 160, + "commodity": "electronics", + "factionId": 232, + "budget": 653, + "allocations": { + "buyer": { "budget": 4, "storage": 1 }, + "seller": { "budget": null, "storage": 8 } + }, + "price": 288, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, { "type": "move", "targetId": 653 }, { "type": "dock", "targetId": 653 }, { "targetId": 653, "offer": { - "initiator": 1729, - "quantity": 60, - "commodity": "fuel", + "initiator": 1833, + "quantity": 160, + "commodity": "electronics", "factionId": 232, "budget": 653, "allocations": { - "buyer": { "budget": null, "storage": 142 }, - "seller": { "budget": null, "storage": 32 } + "buyer": { "budget": null, "storage": 4 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -186612,9 +185020,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -80.60079682452705, - "coord": [-12.287753875595689, -3.3912620171525316], - "sector": 6, + "angle": -60.77204853227898, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -186628,16 +185036,43 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 315, + "type": "incoming", + "meta": { "tradeId": "739:1833:buy:315" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 160, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -186652,10 +185087,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3273, + "issued": 315, "type": "outgoing", - "meta": { "tradeId": "653:1729:sell:3273" }, - "id": 32 + "meta": { "tradeId": "653:1833:sell:315" }, + "id": 2 } ], "max": 160, @@ -186686,7 +185121,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -186768,8 +185203,8 @@ }, "commander": { "name": "commander", "id": 653, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1729, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1833, "tags": ["selection", "ship", "role:transport"] }, { @@ -186781,15 +185216,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.05500000000000001, - "currentRotary": 0, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.021455696385187295, "state": "warming", - "target": 49, + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -186804,27 +185239,27 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 541 }, - { "type": "dock", "targetId": 541 }, + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, { - "targetId": 541, + "targetId": 739, "offer": { - "initiator": 1730, - "quantity": 6, - "commodity": "silicon", + "initiator": 1834, + "quantity": 160, + "commodity": "electronics", "factionId": 232, "budget": 653, "allocations": { - "buyer": { "budget": 150, "storage": 73 }, - "seller": { "budget": null, "storage": 142 } + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 6 } }, - "price": 32, + "price": 288, "type": "buy" }, "type": "trade" }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, { "type": "move", "targetId": 51 }, { "type": "teleport", "targetId": 49 }, { "type": "move", "targetId": 653 }, @@ -186832,14 +185267,14 @@ { "targetId": 653, "offer": { - "initiator": 1730, - "quantity": 6, - "commodity": "silicon", + "initiator": 1834, + "quantity": 160, + "commodity": "electronics", "factionId": 232, "budget": 653, "allocations": { - "buyer": { "budget": null, "storage": 150 }, - "seller": { "budget": null, "storage": 74 } + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -186854,9 +185289,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -30.339030563999568, - "coord": [-25.31981639950784, 3.569309384964733], - "sector": 6, + "angle": -54.4888632250994, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -186864,19 +185299,19 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 75, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -186889,21 +185324,21 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 6, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3582, + "issued": 309, "type": "incoming", - "meta": { "tradeId": "541:1730:buy:3582" }, - "id": 73 + "meta": { "tradeId": "739:1834:buy:309" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, "food": 0, "fuel": 0, @@ -186916,18 +185351,18 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 6, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3582, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "653:1730:sell:3582" }, - "id": 74 + "meta": { "tradeId": "653:1834:sell:309" }, + "id": 2 } ], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -186996,7 +185431,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -187007,12 +185442,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -187021,13 +185456,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -187037,8 +185472,8 @@ }, "commander": { "name": "commander", "id": 653, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 1 } }, - "id": 1730, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1834, "tags": ["selection", "ship", "role:transport"] }, { @@ -187055,10 +185490,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 653, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -187070,29 +185505,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 653 }, - { "type": "dock", "targetId": 653 }, - { - "targetId": 653, - "offer": { - "initiator": 1731, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 653, - "allocations": { - "buyer": { "budget": null, "storage": 147 }, - "seller": { "budget": null, "storage": 36 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2596 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -187100,9 +185519,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.49314094884406, - "coord": [7.7156980750462125, -14.371931563223256], - "sector": 6, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -187116,36 +185535,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3420, - "type": "outgoing", - "meta": { "tradeId": "653:1731:sell:3420" }, - "id": 36 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -187184,7 +185575,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -187254,10 +185645,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 653, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 645, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1731, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1835, "tags": ["selection", "ship", "role:transport"] }, { @@ -187269,15 +185660,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.2550000000000003, - "currentRotary": -5.773159728050814e-15, - "state": "cruise", - "target": 49, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -187289,52 +185680,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 541 }, - { "type": "dock", "targetId": 541 }, - { - "targetId": 541, - "offer": { - "initiator": 1732, - "quantity": 6, - "commodity": "silicon", - "factionId": 232, - "budget": 653, - "allocations": { - "buyer": { "budget": 152, "storage": 75 }, - "seller": { "budget": null, "storage": 145 } - }, - "price": 32, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 653 }, - { "type": "dock", "targetId": 653 }, - { - "targetId": 653, - "offer": { - "initiator": 1732, - "quantity": 6, - "commodity": "silicon", - "factionId": 232, - "budget": 653, - "allocations": { - "buyer": { "budget": null, "storage": 152 }, - "seller": { "budget": null, "storage": 76 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2597 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -187342,9 +185694,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 104.7420633205869, - "coord": [7.063792034777456, -14.172070068420092], - "sector": 6, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -187352,70 +185704,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 77, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 6, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "incoming", - "meta": { "tradeId": "541:1732:buy:3594" }, - "id": 75 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 6, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "outgoing", - "meta": { "tradeId": "653:1732:sell:3594" }, - "id": 76 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -187484,7 +185781,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -187495,12 +185792,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -187509,13 +185806,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -187523,10 +185820,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 653, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 645, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1732, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1836, "tags": ["selection", "ship", "role:transport"] }, { @@ -187543,10 +185840,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.565, - "currentRotary": -1.7763568394002505e-15, - "state": "cruise", - "target": 49, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -187558,52 +185855,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 541 }, - { "type": "dock", "targetId": 541 }, - { - "targetId": 541, - "offer": { - "initiator": 1733, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 653, - "allocations": { - "buyer": { "budget": 151, "storage": 39 }, - "seller": { "budget": null, "storage": 143 } - }, - "price": 32, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 653 }, - { "type": "dock", "targetId": 653 }, - { - "targetId": 653, - "offer": { - "initiator": 1733, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 653, - "allocations": { - "buyer": { "budget": null, "storage": 151 }, - "seller": { "budget": null, "storage": 40 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2598 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -187611,9 +185869,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 48.189729261266635, - "coord": [6.850629327397736, -14.206852199811943], - "sector": 6, + "angle": -117.43979064944212, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -187627,63 +185885,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "incoming", - "meta": { "tradeId": "541:1733:buy:3588" }, - "id": 39 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "outgoing", - "meta": { "tradeId": "653:1733:sell:3588" }, - "id": 40 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -187792,10 +185995,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 653, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 638, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1733, + "id": 1837, "tags": ["selection", "ship", "role:transport"] }, { @@ -187807,16 +186010,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.6550000000000001, + "currentRotary": -0.06550496840512476, + "state": "cruise", + "target": 2599, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -187827,29 +186030,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 640 }, - { "type": "dock", "targetId": 640 }, - { - "targetId": 640, - "offer": { - "initiator": 1734, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 640, - "allocations": { - "buyer": { "budget": null, "storage": 198 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2599 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -187857,9 +186040,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -32.07266306021518, - "coord": [18.445747698046215, -11.024854706857091], - "sector": 7, + "angle": 28.000509046113592, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -187867,43 +186050,186 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ + "allocationIdCounter": 1, + "allocations": [], + "max": 6, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "courierB", + "value": "Courier B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "ACT Courier B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 631, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1838, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, + "active": true, + "currentSpeed": 0.018, + "currentRotary": -0.15707963267948966, + "state": "maneuver", + "target": 2600, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3504, - "type": "outgoing", - "meta": { "tradeId": "640:1734:sell:3504" }, - "id": 28 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2600 }], + "type": "move" } ], - "max": 160, + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 3.2274864225678703, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, + "moved": true + }, + "render": { + "color": 16761677, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "lCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -187944,7 +186270,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, "quota": { "coolant": 0, @@ -187972,7 +186298,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -187983,12 +186309,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -187997,13 +186323,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -188011,10 +186337,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 640, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 624, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1734, + "id": 1839, "tags": ["selection", "ship", "role:transport"] }, { @@ -188031,10 +186357,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-15, - "state": "cruise", - "target": 121, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -188046,54 +186372,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 754 }, - { "type": "dock", "targetId": 754 }, - { - "targetId": 754, - "offer": { - "initiator": 1735, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 640, - "allocations": { - "buyer": { "budget": 103, "storage": 31 }, - "seller": { "budget": null, "storage": 141 } - }, - "price": 47, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 123 }, - { "type": "teleport", "targetId": 121 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 640 }, - { "type": "dock", "targetId": 640 }, - { - "targetId": 640, - "offer": { - "initiator": 1735, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 640, - "allocations": { - "buyer": { "budget": null, "storage": 199 }, - "seller": { "budget": null, "storage": 32 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2601 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -188101,9 +186386,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -43.07413412170926, - "coord": [10.670161034513256, -24.40941666663711], - "sector": 6, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -188117,63 +186402,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "incoming", - "meta": { "tradeId": "754:1735:buy:3519" }, - "id": 31 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3519, - "type": "outgoing", - "meta": { "tradeId": "640:1735:sell:3519" }, - "id": 32 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -188282,10 +186512,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 640, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 617, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1735, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1840, "tags": ["selection", "ship", "role:transport"] }, { @@ -188302,10 +186532,10 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 3.0550000000000006, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 49, + "currentSpeed": 0.55, + "currentRotary": 0.3454124034656827, + "state": "maneuver", + "target": 2602, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -188317,31 +186547,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 640 }, - { "type": "dock", "targetId": 640 }, - { - "targetId": 640, - "offer": { - "initiator": 1736, - "quantity": 6, - "commodity": "water", - "factionId": 232, - "budget": 640, - "allocations": { - "buyer": { "budget": null, "storage": 201 }, - "seller": { "budget": null, "storage": 62 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2602 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -188349,9 +186557,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -54.03218307540398, - "coord": [-27.022824114393394, 0.370808548633208], - "sector": 6, + "angle": -5.096565646818475, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -188365,36 +186573,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 63, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6 - }, - "issued": 3561, - "type": "outgoing", - "meta": { "tradeId": "640:1736:sell:3561" }, - "id": 62 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 6, "availableWares": { "coolant": 0, @@ -188436,7 +186616,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, "quota": { "coolant": 0, @@ -188503,10 +186683,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 640, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 610, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1736, + "id": 1841, "tags": ["selection", "ship", "role:transport"] }, { @@ -188518,15 +186698,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.385, - "currentRotary": 4.440892098500626e-16, - "state": "maneuver", - "target": 55, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -188541,21 +186721,44 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 567 }, + { "type": "dock", "targetId": 567 }, + { + "targetId": 567, + "offer": { + "initiator": 1842, + "quantity": 160, + "commodity": "water", + "factionId": 232, + "budget": 603, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 51, + "type": "buy" + }, + "type": "trade" + }, { "type": "move", "targetId": 55 }, { "type": "teleport", "targetId": 53 }, - { "type": "move", "targetId": 640 }, - { "type": "dock", "targetId": 640 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 603 }, + { "type": "dock", "targetId": 603 }, { - "targetId": 640, + "targetId": 603, "offer": { - "initiator": 1737, - "quantity": 6, + "initiator": 1842, + "quantity": 160, "commodity": "water", "factionId": 232, - "budget": 640, + "budget": 603, "allocations": { - "buyer": { "budget": null, "storage": 200 }, - "seller": { "budget": null, "storage": 58 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -188570,9 +186773,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -25.1075209107817, - "coord": [1.0022255902322494, 26.51131729010814], - "sector": 8, + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -188580,13 +186783,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 59, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -188608,15 +186811,42 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 160 + }, + "issued": 312, + "type": "incoming", + "meta": { "tradeId": "567:1842:buy:312" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 160 }, - "issued": 3540, + "issued": 312, "type": "outgoing", - "meta": { "tradeId": "640:1737:sell:3540" }, - "id": 58 + "meta": { "tradeId": "603:1842:sell:312" }, + "id": 2 } ], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -188657,7 +186887,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, "quota": { "coolant": 0, @@ -188685,7 +186915,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -188696,12 +186926,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -188710,13 +186940,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -188724,10 +186954,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 640, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 603, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1737, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1842, "tags": ["selection", "ship", "role:transport"] }, { @@ -188744,10 +186974,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.15200000000000002, - "currentRotary": 1.3322676295501878e-15, + "currentSpeed": 0.2, + "currentRotary": -0.11243408344151806, "state": "cruise", - "target": 49, + "target": 2604, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -188759,31 +186989,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 640 }, - { "type": "dock", "targetId": 640 }, - { - "targetId": 640, - "offer": { - "initiator": 1738, - "quantity": 160, - "commodity": "hullPlates", - "factionId": 232, - "budget": 640, - "allocations": { - "buyer": { "budget": null, "storage": 195 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2604 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -188791,9 +186999,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -46.21572677529905, - "coord": [15.63264356279682, -28.281805543749275], - "sector": 6, + "angle": -53.41566695090509, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -188807,36 +187015,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 160, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3399, - "type": "outgoing", - "meta": { "tradeId": "640:1738:sell:3399" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -188869,7 +187049,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 160, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -188945,10 +187125,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 640, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 591, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1738, + "id": 1843, "tags": ["selection", "ship", "role:transport"] }, { @@ -188965,10 +187145,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 7.105427357601002e-15, + "currentSpeed": 0.1, + "currentRotary": -0.18248916301330054, "state": "cruise", - "target": 631, + "target": 2605, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -188980,29 +187160,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1739, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 631, - "allocations": { - "buyer": { "budget": null, "storage": 250 }, - "seller": { "budget": null, "storage": 48 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2605 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -189010,9 +187170,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 86.30547624586114, - "coord": [3.953102528703509, -18.0967780584886], - "sector": 25, + "angle": 1.502144695270177, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -189026,36 +187186,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 49, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3396, - "type": "outgoing", - "meta": { "tradeId": "631:1739:sell:3396" }, - "id": 48 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -189094,7 +187226,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -189164,10 +187296,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 631, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 579, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1739, + "id": 1844, "tags": ["selection", "ship", "role:transport"] }, { @@ -189184,10 +187316,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.03900000000000001, - "currentRotary": -0.004319017842323802, - "state": "maneuver", - "target": 113, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0609801755078756, + "state": "warming", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -189199,31 +187331,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1740, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 631, - "allocations": { - "buyer": { "budget": null, "storage": 253 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2606 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -189231,8 +187345,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -125.06433848095254, - "coord": [-20.19583145661051, 27.459890553070018], + "angle": 0.17064892232813866, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -189247,36 +187361,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3426, - "type": "outgoing", - "meta": { "tradeId": "631:1740:sell:3426" }, - "id": 46 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -189315,7 +187401,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -189385,10 +187471,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 631, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 567, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1740, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1845, "tags": ["selection", "ship", "role:transport"] }, { @@ -189400,15 +187486,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.05500000000000001, - "currentRotary": 1.7763568394002505e-15, - "state": "warming", - "target": 631, + "currentSpeed": 0.1, + "currentRotary": 0.007353729603776671, + "state": "cruise", + "target": 2607, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -189420,29 +187506,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1741, - "quantity": 1, - "commodity": "hullPlates", - "factionId": 232, - "budget": 631, - "allocations": { - "buyer": { "budget": null, "storage": 258 }, - "seller": { "budget": null, "storage": 98 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2607 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -189450,9 +187516,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -33.073986346945254, - "coord": [27.902381922979, -20.217595584634758], - "sector": 25, + "angle": -93.80182440675222, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -189460,43 +187526,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 99, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3516, - "type": "outgoing", - "meta": { "tradeId": "631:1741:sell:3516" }, - "id": 98 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -189528,7 +187566,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 1, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -189565,7 +187603,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -189576,12 +187614,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -189590,13 +187628,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -189604,10 +187642,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 631, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 555, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 1 } }, - "id": 1741, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1846, "tags": ["selection", "ship", "role:transport"] }, { @@ -189619,15 +187657,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 4.255000000000001, - "currentRotary": -1.7763568394002505e-15, - "state": "cruise", - "target": 631, + "currentSpeed": 0.03900000000000001, + "currentRotary": -0.01689049441481405, + "state": "warming", + "target": 543, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -189642,21 +187680,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, + { "type": "move", "targetId": 543 }, + { "type": "dock", "targetId": 543 }, { - "targetId": 631, + "targetId": 543, "offer": { - "initiator": 1742, - "quantity": 6, - "commodity": "hullPlates", + "initiator": 1847, + "quantity": 160, + "commodity": "metals", "factionId": 232, - "budget": 631, + "budget": 543, "allocations": { - "buyer": { "budget": null, "storage": 257 }, - "seller": { "budget": null, "storage": 114 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, "price": 0, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 684 }, + { "type": "dock", "targetId": 684 }, + { + "targetId": 684, + "offer": { + "initiator": 1847, + "quantity": 160, + "commodity": "metals", + "factionId": 232, + "budget": 543, + "allocations": { + "buyer": { "budget": 1, "storage": 5 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 84, "type": "sell" }, "type": "trade" @@ -189669,9 +187730,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 67.45749826042491, - "coord": [10.78199304955742, -18.72880074352576], - "sector": 25, + "angle": -118.9982027463466, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -189679,13 +187740,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 115, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -189698,10 +187759,37 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1209, + "type": "incoming", + "meta": { "tradeId": "543:1847:buy:1209" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -189709,13 +187797,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3513, + "issued": 1209, "type": "outgoing", - "meta": { "tradeId": "631:1742:sell:3513" }, - "id": 114 + "meta": { "tradeId": "684:1847:sell:1209" }, + "id": 2 } ], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -189747,7 +187835,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 6, + "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, @@ -189784,7 +187872,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -189795,12 +187883,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -189809,13 +187897,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Courier B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -189823,10 +187911,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 631, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 543, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1742, + "cooldowns": { "timers": { "cruise": 2.3 } }, + "id": 1847, "tags": ["selection", "ship", "role:transport"] }, { @@ -189838,19 +187926,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": -0.15707963267948966, - "state": "maneuver", - "target": 24882, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.021455696385187295, + "state": "warming", + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -189858,11 +187946,29 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24882, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, + { + "targetId": 739, + "offer": { + "initiator": 1848, + "quantity": 160, + "commodity": "water", + "factionId": 232, + "budget": 531, + "allocations": { + "buyer": { "budget": 1, "storage": 7 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 51, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -189870,9 +187976,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 34.11076496747016, - "coord": [0.7144488087360987, 3.332510103619675], - "sector": 26, + "angle": -54.4888632250994, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -189880,15 +187986,43 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, - "allocations": [], - "max": 940, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 160 + }, + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "739:1848:sell:309" }, + "id": 2 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -189929,7 +188063,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 160 }, "quota": { "coolant": 0, @@ -189957,7 +188091,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -189968,12 +188102,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -189982,13 +188116,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -189996,10 +188130,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 624, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 531, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1743, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1848, "tags": ["selection", "ship", "role:transport"] }, { @@ -190016,10 +188150,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.252, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 53, + "currentSpeed": 0, + "currentRotary": -0.6935992976486771, + "state": "maneuver", + "target": 750, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -190034,46 +188168,21 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 553 }, - { "type": "dock", "targetId": 553 }, + { "type": "move", "targetId": 750 }, + { "type": "dock", "targetId": 750 }, { - "targetId": 553, + "targetId": 750, "offer": { - "initiator": 1744, - "quantity": 38, - "commodity": "water", - "factionId": 232, - "budget": 617, - "allocations": { - "buyer": { "budget": 29, "storage": 25 }, - "seller": { "budget": null, "storage": 307 } - }, - "price": 35, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 55 }, - { "type": "teleport", "targetId": 53 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, - { - "targetId": 617, - "offer": { - "initiator": 1744, - "quantity": 38, - "commodity": "water", + "initiator": 1849, + "quantity": 160, + "commodity": "fuel", "factionId": 232, - "budget": 617, + "budget": 519, "allocations": { - "buyer": { "budget": null, "storage": 29 }, - "seller": { "budget": null, "storage": 26 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 0, + "price": 63, "type": "sell" }, "type": "trade" @@ -190086,9 +188195,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -31.188791984554236, - "coord": [-20.017020463103435, 26.853592260539425], - "sector": 7, + "angle": -272.4619744055021, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -190102,7 +188211,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -190111,34 +188220,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 38 - }, - "issued": 3546, - "type": "incoming", - "meta": { "tradeId": "553:1744:buy:3546" }, - "id": 25 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -190151,12 +188233,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 38 + "water": 0 }, - "issued": 3546, + "issued": 303, "type": "outgoing", - "meta": { "tradeId": "617:1744:sell:3546" }, - "id": 26 + "meta": { "tradeId": "750:1849:sell:303" }, + "id": 2 } ], "max": 160, @@ -190187,7 +188269,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -190267,10 +188349,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 617, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 519, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1744, + "id": 1849, "tags": ["selection", "ship", "role:transport"] }, { @@ -190287,10 +188369,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.15200000000000002, - "currentRotary": 1.0658141036401503e-13, - "state": "cruise", - "target": 792, + "currentSpeed": 0.026000000000000002, + "currentRotary": 0.35986584224509244, + "state": "maneuver", + "target": 2611, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -190302,48 +188384,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 792 }, - { "type": "dock", "targetId": 792 }, - { - "targetId": 792, - "offer": { - "initiator": 1745, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 610, - "allocations": { - "buyer": { "budget": 18, "storage": 31 }, - "seller": { "budget": null, "storage": 226 } - }, - "price": 15, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 610 }, - { "type": "dock", "targetId": 610 }, - { - "targetId": 610, - "offer": { - "initiator": 1745, - "quantity": 160, - "commodity": "food", - "factionId": 232, - "budget": 610, - "allocations": { - "buyer": { "budget": null, "storage": 18 }, - "seller": { "budget": null, "storage": 32 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2611 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -190351,8 +188394,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 29.30055938705341, - "coord": [8.767225095025362, 4.449682313716002], + "angle": 5.469886425950579, + "coord": [-7.0021203099463225, 4.1715278599185295], "sector": 9, "moved": true }, @@ -190367,63 +188410,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3591, - "type": "incoming", - "meta": { "tradeId": "792:1745:buy:3591" }, - "id": 31 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3591, - "type": "outgoing", - "meta": { "tradeId": "610:1745:sell:3591" }, - "id": 32 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -190532,10 +188520,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 610, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 507, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1745, + "id": 1850, "tags": ["selection", "ship", "role:transport"] }, { @@ -190547,15 +188535,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": -9.769962616701378e-15, - "state": "cruise", - "target": 53, + "currentSpeed": 0.018, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 2612, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -190567,31 +188555,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 53 }, - { "type": "teleport", "targetId": 55 }, - { "type": "move", "targetId": 603 }, - { "type": "dock", "targetId": 603 }, - { - "targetId": 603, - "offer": { - "initiator": 1746, - "quantity": 88, - "commodity": "water", - "factionId": 232, - "budget": 603, - "allocations": { - "buyer": { "budget": null, "storage": 30 }, - "seller": { "budget": null, "storage": 60 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2612 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -190599,9 +188565,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 49.16454113493954, - "coord": [7.658760226741803, -16.502308978133282], - "sector": 7, + "angle": 5.291839842749852, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -190609,43 +188575,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 61, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3432, - "type": "outgoing", - "meta": { "tradeId": "603:1746:sell:3432" }, - "id": 60 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -190686,7 +188624,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, "quota": { "coolant": 0, @@ -190714,7 +188652,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -190725,12 +188663,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -190739,13 +188677,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -190753,10 +188691,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 603, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 507, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1746, + "cooldowns": { "timers": { "cruise": 14 } }, + "id": 1851, "tags": ["selection", "ship", "role:transport"] }, { @@ -190768,15 +188706,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.9, - "currentRotary": 1.3322676295501878e-15, - "state": "cruise", - "target": 596, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.021455696385187295, + "state": "warming", + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -190791,19 +188729,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 596 }, - { "type": "dock", "targetId": 596 }, + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, { - "targetId": 596, + "targetId": 739, "offer": { - "initiator": 1747, - "quantity": 940, - "commodity": "food", + "initiator": 1852, + "quantity": 160, + "commodity": "electronics", "factionId": 232, - "budget": 596, + "budget": 233, "allocations": { - "buyer": { "budget": null, "storage": 14 }, - "seller": { "budget": null, "storage": 22 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 288, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 1852, + "quantity": 160, + "commodity": "electronics", + "factionId": 232, + "budget": 233, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -190818,9 +188779,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -18.039786867485198, - "coord": [3.027267482774371, 5.304708771966873], - "sector": 7, + "angle": -54.4888632250994, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -190828,21 +188789,21 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 160, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -190858,13 +188819,40 @@ "tauMetal": 0, "water": 0 }, - "issued": 3348, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "739:1852:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 160, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "596:1747:sell:3348" }, - "id": 22 + "meta": { "tradeId": "233:1852:sell:27" }, + "id": 2 } ], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -190891,7 +188879,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -190933,7 +188921,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -190944,12 +188932,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -190958,13 +188946,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -190972,10 +188960,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 596, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 233, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1747, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1852, "tags": ["selection", "ship", "role:transport"] }, { @@ -190992,10 +188980,10 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 153, + "currentSpeed": 1.8550000000000004, + "currentRotary": 0.021455696385192624, + "state": "cruise", + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -191010,21 +188998,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 153 }, - { "type": "teleport", "targetId": 155 }, - { "type": "move", "targetId": 589 }, - { "type": "dock", "targetId": 589 }, + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, { - "targetId": 589, + "targetId": 739, "offer": { - "initiator": 1748, + "initiator": 1853, "quantity": 6, - "commodity": "water", + "commodity": "electronics", "factionId": 232, - "budget": 589, + "budget": 233, "allocations": { - "buyer": { "budget": null, "storage": 32 }, - "seller": { "budget": null, "storage": 54 } + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 288, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 1853, + "quantity": 6, + "commodity": "electronics", + "factionId": 232, + "budget": 233, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -191039,9 +189048,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -43.31709536417282, - "coord": [23.986657915164805, -2.1441542576358916], - "sector": 1, + "angle": -10.506566074842297, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -191055,13 +189064,13 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 55, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 0, + "electronics": 6, "engineParts": 0, "food": 0, "fuel": 0, @@ -191077,12 +189086,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, - "issued": 3489, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "739:1853:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 6, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "589:1748:sell:3489" }, - "id": 54 + "meta": { "tradeId": "233:1853:sell:27" }, + "id": 2 } ], "max": 6, @@ -191126,7 +189162,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, "quota": { "coolant": 0, @@ -191160,44 +189196,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "UEN Luna Mining Complex", - "time": 2978 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "UEN Luna Mining Complex", - "time": 3245 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "UEN Luna Mining Complex", - "time": 3406 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 33, - "target": "UEN Luna Mining Complex", - "time": 3568 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -191230,10 +189229,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 589, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 233, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1748, + "id": 1853, "tags": ["selection", "ship", "role:transport"] }, { @@ -191245,19 +189244,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 24835, + "currentSpeed": 0.052000000000000005, + "currentRotary": 0.021455696385187295, + "state": "warming", + "target": 739, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -191265,11 +189264,52 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24835, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 739 }, + { "type": "dock", "targetId": 739 }, + { + "targetId": 739, + "offer": { + "initiator": 1854, + "quantity": 160, + "commodity": "electronics", + "factionId": 232, + "budget": 233, + "allocations": { + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 3 } + }, + "price": 288, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 51 }, + { "type": "teleport", "targetId": 49 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 1854, + "quantity": 160, + "commodity": "electronics", + "factionId": 232, + "budget": 233, + "allocations": { + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -191277,8 +189317,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -24.91559843749468, - "coord": [-2.6873385468674957, 4.267119710385439], + "angle": -54.4888632250994, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -191287,15 +189327,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, - "allocations": [], - "max": 940, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 160, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "739:1854:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 160, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "233:1854:sell:27" }, + "id": 2 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -191364,7 +189459,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -191375,12 +189470,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -191389,13 +189484,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -191403,30 +189498,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 577, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 233, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1749, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 1854, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.352, - "currentRotary": 7.105427357601002e-15, + "currentSpeed": 0.33000000000000007, + "currentRotary": -0.10691683048097822, "state": "cruise", - "target": 505, + "target": 591, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -191439,49 +189534,39 @@ "value": [ { "origin": "auto", - "type": "trade", "actions": [ - { "type": "move", "targetId": 505 }, - { "type": "dock", "targetId": 505 }, - { - "targetId": 505, - "offer": { - "initiator": 1750, - "quantity": 63, - "commodity": "fuel", - "factionId": 232, - "budget": 565, - "allocations": { - "buyer": { "budget": 16, "storage": 31 }, - "seller": { "budget": null, "storage": 148 } - }, - "price": 62, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 121 }, - { "type": "teleport", "targetId": 123 }, - { "type": "move", "targetId": 565 }, - { "type": "dock", "targetId": 565 }, + { "type": "move", "targetId": 591 }, + { "type": "dock", "targetId": 591 }, { - "targetId": 565, + "targetId": 591, "offer": { - "initiator": 1750, - "quantity": 63, - "commodity": "fuel", - "factionId": 232, - "budget": 565, + "commodity": "fuelium", + "initiator": 1855, + "quantity": 96, + "price": 0, + "budget": null, "allocations": { - "buyer": { "budget": null, "storage": 102 }, - "seller": { "budget": null, "storage": 32 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 0, - "type": "sell" + "type": "sell", + "factionId": 232 }, "type": "trade" } - ] + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 49 }, + { "type": "teleport", "targetId": 51 }, + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 2879 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -191489,9 +189574,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -46.87205635648673, - "coord": [15.634191832473146, -27.59723746477413], - "sector": 6, + "angle": -53.44397651600425, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -191499,13 +189584,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -191514,35 +189599,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 63, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3531, - "type": "incoming", - "meta": { "tradeId": "505:1750:buy:3531" }, - "id": 31 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 63, - "fuelium": 0, + "fuel": 0, + "fuelium": 96, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -191556,13 +189614,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3531, + "issued": 99, "type": "outgoing", - "meta": { "tradeId": "565:1750:sell:3531" }, - "id": 32 + "meta": { "tradeId": "591:1855:sell:99" }, + "id": 1 } ], - "max": 160, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -191591,7 +189649,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 96, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -191643,26 +189701,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -191670,34 +189728,41 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 565, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1.4, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 591, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1750, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 1855, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.03900000000000001, - "currentRotary": 0.0001236273901787932, - "state": "maneuver", - "target": 24907, + "currentSpeed": 1.9200000000000002, + "currentRotary": -0.10274856768817786, + "state": "cruise", + "target": 178, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -191706,10 +189771,11 @@ "value": [ { "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 24907, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 178 }, + { "targetFieldId": 178, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -191717,9 +189783,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 0.4001220783636321, - "coord": [0.9203977054334955, 15.072848157917134], - "sector": 8, + "angle": -10.54239325029209, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -191727,15 +189793,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -191816,26 +189882,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -191843,30 +189909,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 553, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 579, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1751, - "tags": ["selection", "ship", "role:transport"] + "id": 1856, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 1, - "currentRotary": 3.9968028886505635e-15, - "state": "cruise", - "target": 631, + "currentSpeed": 0.03, + "currentRotary": 0.22236048501748495, + "state": "warming", + "target": 3802, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -191878,28 +189951,11 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1752, - "quantity": 160, - "commodity": "silicon", - "factionId": 232, - "budget": 541, - "allocations": { - "buyer": { "budget": 149, "storage": 249 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 30, - "type": "sell" - }, - "type": "trade" - } + { "type": "move", "targetId": 3802 }, + { "targetFieldId": 179, "targetRockId": 3802, "type": "mine" } ] } ], @@ -191908,9 +189964,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -20.50587970545053, - "coord": [17.896083299420514, -19.359785273435257], - "sector": 25, + "angle": -7.151388382672657, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -191918,43 +189974,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 160, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3393, - "type": "outgoing", - "meta": { "tradeId": "631:1752:sell:3393" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -191967,7 +189995,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 96, "metals": 0, "ore": 0, "silica": 0, @@ -191988,11 +190016,11 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 96, "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -192035,26 +190063,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -192062,30 +190090,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 541, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 5.6, + "efficiency": 1.4, + "entityId": 3802, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 567, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1752, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 3.5, "mine": 2 } }, + "id": 1857, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, + "currentSpeed": 0.9611999999999999, + "currentRotary": -0.047040494541497946, "state": "cruise", - "target": 49, + "target": 181, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -192098,12 +190133,11 @@ "value": [ { "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 24551 } - ], - "type": "move" + { "type": "move", "targetId": 181 }, + { "targetFieldId": 181, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -192111,9 +190145,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.233429625041947, - "coord": [10.259079734371257, -24.08863636258852], - "sector": 6, + "angle": -1.488531633572146, + "coord": [19.28931090270224, -0.8899005751496976], + "sector": 3, "moved": true }, "render": { @@ -192121,15 +190155,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -192198,7 +190232,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -192209,27 +190243,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, + "value": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Slate", "mask": "BigInt:137438953472" }, "subordinates": { @@ -192237,34 +190271,41 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 529, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 555, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1753, - "tags": ["selection", "ship", "role:transport"] + "id": 1858, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 24883, + "currentSpeed": 0.09, + "currentRotary": -0.02159735124810558, + "state": "warming", + "target": 188, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -192273,10 +190314,11 @@ "value": [ { "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 24883, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 188 }, + { "targetFieldId": 188, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -192284,9 +190326,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.062830998142981, - "coord": [-32.53385258989612, -8.116884067101015], - "sector": 6, + "angle": -31.063571840474268, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -192294,15 +190336,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, + "allocationIdCounter": 1, "allocations": [], - "max": 940, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -192371,7 +190413,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -192382,27 +190424,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Freighter B", + "value": "ACT Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -192410,30 +190452,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 517, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 543, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1754, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 1.5 } }, + "id": 1859, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 113, + "currentSpeed": 0, + "currentRotary": 0.41186005240657453, + "state": "maneuver", + "target": 7043, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -192445,30 +190494,11 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 783 }, - { "type": "dock", "targetId": 783 }, - { - "targetId": 783, - "offer": { - "initiator": 1755, - "quantity": 54, - "commodity": "fuel", - "factionId": 232, - "budget": 505, - "allocations": { - "buyer": { "budget": 160, "storage": 169 }, - "seller": { "budget": null, "storage": 20 } - }, - "price": 54, - "type": "sell" - }, - "type": "trade" - } + { "type": "move", "targetId": 7043 }, + { "targetFieldId": 179, "targetRockId": 7043, "type": "mine" } ] } ], @@ -192477,9 +190507,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 16.495791506212218, - "coord": [2.07484935397052, 5.269450095506333], - "sector": 7, + "angle": 143.65870900967607, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -192487,43 +190517,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 21, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3507, - "type": "outgoing", - "meta": { "tradeId": "783:1755:sell:3507" }, - "id": 20 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -192536,7 +190538,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 32, "metals": 0, "ore": 0, "silica": 0, @@ -192551,13 +190553,13 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 54, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 32, "metals": 0, "ore": 0, "silica": 0, @@ -192592,7 +190594,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -192603,27 +190605,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, + "value": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Slate", "mask": "BigInt:137438953472" }, "subordinates": { @@ -192631,31 +190633,38 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 505, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 4, + "efficiency": 1, + "entityId": 7043, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 531, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1755, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, + "id": 1860, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, + "acceleration": 0.09, + "rotary": 0.22689280275926285, "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "ttc": 10, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 493, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": null, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -192666,28 +190675,10 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 493 }, - { "type": "dock", "targetId": 493 }, - { - "targetId": 493, - "offer": { - "initiator": 1756, - "quantity": 64, - "commodity": "fuel", - "factionId": 232, - "budget": 493, - "allocations": { - "buyer": { "budget": null, "storage": 38 }, - "seller": { "budget": null, "storage": 18 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } + { "targetFieldId": 186, "targetRockId": 2498, "type": "mine" } ] } ], @@ -192696,53 +190687,26 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -5.679115148075361, - "coord": [22.740692891020423, -4.99626261433124], - "sector": 8, - "moved": true + "angle": 6.421841246064766, + "coord": [-0.38787154986592653, -10.270405209709219], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 64, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3246, - "type": "outgoing", - "meta": { "tradeId": "493:1756:sell:3246" }, - "id": 18 - } - ], - "max": 160, + "allocationIdCounter": 7, + "allocations": [], + "max": 680, "availableWares": { "coolant": 0, "drones": 0, @@ -192750,7 +190714,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 369, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -192770,8 +190734,8 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 64, - "fuelium": 0, + "fuel": 0, + "fuelium": 369, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -192811,7 +190775,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -192822,12 +190786,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 830, "regen": 0.2, "value": 830 }, + "shield": { "max": 310, "regen": 6.5, "value": 310 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 3, "range": 1, "cooldown": 0.3, "name": "damage", @@ -192836,13 +190800,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeMinerA", + "value": "Large Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Large Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -192850,30 +190814,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 493, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 6.4, + "efficiency": 1.6, + "entityId": 2498, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 519, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1756, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, + "id": 1861, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0, - "currentRotary": 0, + "currentSpeed": 0.03, + "currentRotary": -0.32963566930322985, "state": "maneuver", - "target": 493, + "target": 179, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -192885,28 +190856,11 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 493 }, - { "type": "dock", "targetId": 493 }, - { - "targetId": 493, - "offer": { - "initiator": 1757, - "quantity": 54, - "commodity": "fuel", - "factionId": 232, - "budget": 493, - "allocations": { - "buyer": { "budget": null, "storage": 39 }, - "seller": { "budget": null, "storage": 18 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } + { "type": "move", "targetId": 179 }, + { "targetFieldId": 179, "targetRockId": null, "type": "mine" } ] } ], @@ -192915,9 +190869,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.0560507558359395, - "coord": [1.0022255902322499, 26.511317290108128], - "sector": 8, + "angle": 152.8380678943039, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -192925,43 +190879,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3291, - "type": "outgoing", - "meta": { "tradeId": "493:1757:sell:3291" }, - "id": 18 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -192989,7 +190915,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 54, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -193042,26 +190968,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -193069,30 +190995,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 493, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 507, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1757, - "tags": ["selection", "ship", "role:transport"] + "id": 1862, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 1, - "currentRotary": 3.552713678800501e-15, - "state": "cruise", - "target": 51, + "currentSpeed": 0, + "currentRotary": 0.8995988462396634, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -193104,31 +191037,15 @@ "name": "orders", "value": [ { + "type": "patrol", "origin": "auto", - "type": "trade", + "sectorId": 26, "actions": [ - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 233 }, - { "type": "dock", "targetId": 233 }, - { - "targetId": 233, - "offer": { - "initiator": 1758, - "quantity": 160, - "commodity": "drones", - "factionId": 232, - "budget": 233, - "allocations": { - "buyer": { "budget": null, "storage": 49 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2396 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -193136,9 +191053,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 57.33652909774193, - "coord": [-9.309153635315038, 16.593652247617722], - "sector": 7, + "angle": -154.93743534707772, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -193146,43 +191063,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 160, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3366, - "type": "outgoing", - "meta": { "tradeId": "233:1758:sell:3366" }, - "id": 22 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -193206,7 +191095,7 @@ }, "stored": { "coolant": 0, - "drones": 160, + "drones": 0, "electronics": 0, "engineParts": 0, "food": 0, @@ -193262,13 +191151,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -193276,44 +191165,43 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1970, 1969], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 233, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1758, - "tags": ["selection", "ship", "role:transport"] + "id": 1863, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 1, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 631, + "currentSpeed": 0, + "currentRotary": 0.8995988462396634, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -193325,52 +191213,15 @@ "name": "orders", "value": [ { + "type": "patrol", "origin": "auto", - "type": "trade", + "sectorId": 26, "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1759, - "quantity": 160, - "commodity": "electronics", - "factionId": 232, - "budget": 233, - "allocations": { - "buyer": { "budget": 51, "storage": 23 }, - "seller": { "budget": null, "storage": 254 } - }, - "price": 267, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 233 }, - { "type": "dock", "targetId": 233 }, - { - "targetId": 233, - "offer": { - "initiator": 1759, - "quantity": 160, - "commodity": "electronics", - "factionId": 232, - "budget": 233, - "allocations": { - "buyer": { "budget": null, "storage": 51 }, - "seller": { "budget": null, "storage": 24 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2397 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -193378,8 +191229,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -14.222694398270942, - "coord": [-4.02350133288926, -17.480474349982458], + "angle": -154.93743534707772, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -193388,70 +191239,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3435, - "type": "incoming", - "meta": { "tradeId": "631:1759:buy:3435" }, - "id": 23 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3435, - "type": "outgoing", - "meta": { "tradeId": "233:1759:sell:3435" }, - "id": 24 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -193531,13 +191327,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -193545,44 +191341,43 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1968, 1967], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 233, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1759, - "tags": ["selection", "ship", "role:transport"] + "id": 1864, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 631, + "currentSpeed": 0, + "currentRotary": 0.8995988462396634, + "state": "maneuver", + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -193594,52 +191389,15 @@ "name": "orders", "value": [ { + "type": "patrol", "origin": "auto", - "type": "trade", + "sectorId": 26, "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 1760, - "quantity": 160, - "commodity": "electronics", - "factionId": 232, - "budget": 233, - "allocations": { - "buyer": { "budget": 52, "storage": 21 }, - "seller": { "budget": null, "storage": 255 } - }, - "price": 267, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 115 }, - { "type": "teleport", "targetId": 113 }, - { "type": "move", "targetId": 51 }, - { "type": "teleport", "targetId": 49 }, - { "type": "move", "targetId": 233 }, - { "type": "dock", "targetId": 233 }, - { - "targetId": 233, - "offer": { - "initiator": 1760, - "quantity": 160, - "commodity": "electronics", - "factionId": 232, - "budget": 233, - "allocations": { - "buyer": { "budget": null, "storage": 52 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2398 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -193647,8 +191405,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 4.6268615232678165, - "coord": [-10.997914624987825, -16.882511783429294], + "angle": -154.93743534707772, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -193657,70 +191415,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3438, - "type": "incoming", - "meta": { "tradeId": "631:1760:buy:3438" }, - "id": 21 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3438, - "type": "outgoing", - "meta": { "tradeId": "233:1760:sell:3438" }, - "id": 22 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -193800,13 +191503,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -193814,45 +191517,44 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Freighter A", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1966, 1965], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 233, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1760, - "tags": ["selection", "ship", "role:transport"] + "id": 1865, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.8995988462396634, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 93, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -193863,11 +191565,15 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "type": "patrol", + "origin": "auto", + "sectorId": 26, "actions": [ - { "targetFieldId": 211, "targetRockId": 6102, "type": "mine" } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2399 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -193875,8 +191581,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -44.79711410239776, - "coord": [-9.808270948767976, -2.0257293741589293], + "angle": -154.93743534707772, + "coord": [-10.683155796946867, -5.972399064411784], "sector": 25, "moved": true }, @@ -193885,15 +191591,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, + "allocationIdCounter": 1, "allocations": [], - "max": 96, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -193901,7 +191607,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 92, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -193922,7 +191628,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 92, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -193973,65 +191679,57 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Miner B", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1964, 1963], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 2.8, - "efficiency": 1.4, - "entityId": 6102, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 577, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 4 } }, - "id": 1761, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1866, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.09, - "currentRotary": -1.7763568394002505e-15, + "currentSpeed": 0, + "currentRotary": 0.8995988462396634, "state": "maneuver", - "target": 191, + "target": 93, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -194043,12 +191741,15 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "type": "patrol", + "origin": "auto", + "sectorId": 26, "actions": [ - { "type": "move", "targetId": 191 }, - { "targetFieldId": 191, "targetRockId": null, "type": "mine" } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2400 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -194056,9 +191757,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 20.463369532568137, - "coord": [3.1951659645543242, -9.544437150385148], - "sector": 9, + "angle": -154.93743534707772, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -194066,15 +191767,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 26, + "allocationIdCounter": 1, "allocations": [], - "max": 96, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -194154,66 +191855,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Miner B", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1962, 1961], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 565, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 1762, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1867, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.8995988462396634, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 93, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -194224,11 +191917,15 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "type": "patrol", + "origin": "auto", + "sectorId": 26, "actions": [ - { "targetFieldId": 190, "targetRockId": 3340, "type": "mine" } - ] + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 2401 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -194236,9 +191933,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 17.914020996828736, - "coord": [22.002101556568157, 15.55568759093454], - "sector": 8, + "angle": -154.93743534707772, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -194246,15 +191943,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 1, "allocations": [], - "max": 96, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -194267,7 +191964,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 85, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -194288,7 +191985,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 85, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -194334,65 +192031,57 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Miner B", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1960, 1959], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": 3340, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 553, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 5 } }, - "id": 1763, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1868, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": -1.1868238913561442, - "state": "maneuver", - "target": 541, + "currentSpeed": 0.0675, + "currentRotary": 0.04512615149079524, + "state": "warming", + "target": 2402, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -194404,36 +192093,11 @@ "name": "orders", "value": [ { + "type": "patrol", "origin": "auto", - "actions": [ - { "type": "move", "targetId": 541 }, - { "type": "dock", "targetId": 541 }, - { - "targetId": 541, - "offer": { - "commodity": "silica", - "initiator": 1764, - "quantity": 96, - "price": 0, - "budget": null, - "allocations": { - "buyer": { "budget": null, "storage": 144 }, - "seller": { "budget": null, "storage": 27 } - }, - "type": "sell", - "factionId": 232 - }, - "type": "trade" - } - ], - "type": "trade" - }, - { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24862, "onlyManeuver": true } - ], - "type": "move" + "sectorId": 25, + "actions": [{ "type": "move", "targetId": 2402 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -194441,9 +192105,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 34.4499146165127, - "coord": [0.034149538970476456, -0.5864055239550069], - "sector": 7, + "angle": -54.917600384638874, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -194451,43 +192115,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 28, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 96, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "outgoing", - "meta": { "tradeId": "541:1764:sell:3588" }, - "id": 27 - } - ], - "max": 96, + "allocationIdCounter": 1, + "allocations": [], + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -194524,7 +192160,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 96, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -194567,65 +192203,57 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Miner B", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1958, 1957], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 541, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 1764, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1869, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, - "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": -0.22689280275926285, - "state": "maneuver", - "target": 188, + "currentSpeed": 0.045, + "currentRotary": 0.09164064591375753, + "state": "warming", + "target": 2403, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -194637,12 +192265,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "type": "move", "targetId": 188 }, - { "targetFieldId": 188, "targetRockId": null, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 25, + "actions": [{ "type": "move", "targetId": 2403 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -194650,9 +192277,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 1.6485174728387477, - "coord": [16.720023969478348, -19.684741621491195], - "sector": 7, + "angle": -55.462360597622165, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -194660,15 +192287,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, + "allocationIdCounter": 1, "allocations": [], - "max": 680, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -194737,34 +192364,24 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "sell", - "commodity": "silica", - "quantity": 680, - "price": 42, - "target": "AMS Wolf 1061 III Mining Complex", - "time": 1093 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -194772,51 +192389,43 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Miner A", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1956, 1955], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1.6, - "efficiency": 1.6, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 529, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 1765, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1870, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.1764, - "currentRotary": 1.3322676295501878e-15, + "currentSpeed": 0.0225, + "currentRotary": -0.16544034587619016, "state": "warming", - "target": 517, + "target": 2404, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -194828,36 +192437,11 @@ "name": "orders", "value": [ { + "type": "patrol", "origin": "auto", - "actions": [ - { "type": "move", "targetId": 517 }, - { "type": "dock", "targetId": 517 }, - { - "targetId": 517, - "offer": { - "commodity": "ice", - "initiator": 1766, - "quantity": 32, - "price": 0, - "budget": null, - "allocations": { - "buyer": { "budget": null, "storage": 164 }, - "seller": { "budget": null, "storage": 32 } - }, - "type": "sell", - "factionId": 232 - }, - "type": "trade" - } - ], - "type": "trade" - }, - { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24884, "onlyManeuver": true } - ], - "type": "move" + "sectorId": 25, + "actions": [{ "type": "move", "targetId": 2404 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -194865,9 +192449,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 11.599691987376366, - "coord": [-26.02784593756845, -2.753243086235736], - "sector": 6, + "angle": -53.477808600921634, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -194875,43 +192459,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 32, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3591, - "type": "outgoing", - "meta": { "tradeId": "517:1766:sell:3591" }, - "id": 32 - } - ], - "max": 32, + "allocationIdCounter": 1, + "allocations": [], + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -194945,7 +192501,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 32, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -194980,7 +192536,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -194991,65 +192547,57 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, - "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Slate", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1954, 1953], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1, - "efficiency": 1, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 517, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 2, "mine": 0 } }, - "id": 1766, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1871, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, - "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": -0.22689280275926285, - "state": "maneuver", - "target": 5825, + "currentSpeed": 0.045, + "currentRotary": -0.15700398728253706, + "state": "warming", + "target": 2405, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -195061,12 +192609,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "type": "move", "targetId": 5825 }, - { "targetFieldId": 186, "targetRockId": 5825, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 25, + "actions": [{ "type": "move", "targetId": 2405 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -195074,9 +192621,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -1.9596682301243264, - "coord": [3.220091416539103, 4.813168699820057], - "sector": 6, + "angle": -53.01928483919899, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -195084,15 +192631,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, + "allocationIdCounter": 1, "allocations": [], - "max": 680, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -195100,7 +192647,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 49, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -195121,7 +192668,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 49, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -195161,7 +192708,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -195172,13 +192719,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1, + "value": 13, + "range": 1.4, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -195186,51 +192733,43 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Large Miner A", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1952, 1951], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 4.800000000000001, - "efficiency": 1.6, - "entityId": 5825, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 505, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 3 } }, - "id": 1767, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1872, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 6 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 493, + "currentSpeed": 0.045, + "currentRotary": -0.19922336397664608, + "state": "warming", + "target": 2406, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -195242,35 +192781,11 @@ "name": "orders", "value": [ { + "type": "patrol", "origin": "auto", - "actions": [ - { "type": "dock", "targetId": 493 }, - { - "targetId": 493, - "offer": { - "commodity": "ice", - "initiator": 1768, - "quantity": 96, - "price": 0, - "budget": null, - "allocations": { - "buyer": { "budget": null, "storage": 42 }, - "seller": { "budget": null, "storage": 24 } - }, - "type": "sell", - "factionId": 232 - }, - "type": "trade" - } - ], - "type": "trade" - }, - { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24814, "onlyManeuver": true } - ], - "type": "move" + "sectorId": 25, + "actions": [{ "type": "move", "targetId": 2406 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -195278,9 +192793,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.747697531421428, - "coord": [23.333551678068865, -5.434698697746337], - "sector": 8, + "angle": -52.64800975874981, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -195288,43 +192803,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 96, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "outgoing", - "meta": { "tradeId": "493:1768:sell:3582" }, - "id": 24 - } - ], - "max": 96, + "allocationIdCounter": 1, + "allocations": [], + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -195358,7 +192845,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 96, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -195404,46 +192891,38 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Miner B", + "value": "ACT Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [1950, 1949], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 493, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 1768, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1873, + "tags": ["selection", "ship", "role:military"] }, { "components": { @@ -195460,9 +192939,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 1.1, - "currentRotary": 3.552713678800501e-15, + "currentRotary": -0.04445018466748074, "state": "cruise", - "target": 24842, + "target": 2407, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -195476,8 +192955,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 26, - "actions": [{ "type": "move", "targetId": 24842 }], + "sectorId": 25, + "actions": [{ "type": "move", "targetId": 2407 }], "clockwise": true } ], @@ -195486,9 +192965,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -37.87595949215947, - "coord": [-14.83367280960137, 12.845379299494116], - "sector": 26, + "angle": -57.68561092721945, + "coord": [-10.683155796946867, -5.972399064411784], + "sector": 25, "moved": true }, "render": { @@ -195609,12 +193088,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1876, 1875], + "ids": [1948, 1947], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1769, + "id": 1874, "tags": ["selection", "ship", "role:military"] }, { @@ -195631,10 +193110,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -3.9968028886505635e-15, - "state": "cruise", - "target": 24827, + "currentSpeed": 0, + "currentRotary": 0.4754384421720981, + "state": "maneuver", + "target": 2408, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -195648,9 +193127,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 26, - "actions": [{ "type": "move", "targetId": 24827 }], - "clockwise": true + "sectorId": 9, + "actions": [{ "type": "move", "targetId": 2408 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -195658,9 +193137,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -38.792999146105274, - "coord": [-17.008094879002563, 24.463460761851334], - "sector": 26, + "angle": -5.972815420308191, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -195781,12 +193260,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1874, 1873], + "ids": [1946, 1945], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1770, + "id": 1875, "tags": ["selection", "ship", "role:military"] }, { @@ -195803,10 +193282,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 6.217248937900877e-15, - "state": "cruise", - "target": 24819, + "currentSpeed": 0.0225, + "currentRotary": -0.21248197415513959, + "state": "warming", + "target": 2409, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -195820,8 +193299,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 26, - "actions": [{ "type": "move", "targetId": 24819 }], + "sectorId": 9, + "actions": [{ "type": "move", "targetId": 2409 }], "clockwise": false } ], @@ -195830,9 +193309,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 64.72650617474778, - "coord": [-17.03047026408094, 13.022875870291754], - "sector": 26, + "angle": -4.753354235767638, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -195953,12 +193432,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1872, 1871], + "ids": [1944, 1943], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1771, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1876, "tags": ["selection", "ship", "role:military"] }, { @@ -195975,10 +193454,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.7275, - "currentRotary": -3.552713678800501e-15, - "state": "cruise", - "target": 24891, + "currentSpeed": 0.0225, + "currentRotary": -0.21414567711605637, + "state": "warming", + "target": 2410, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -195992,8 +193471,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 26, - "actions": [{ "type": "move", "targetId": 24891 }], + "sectorId": 9, + "actions": [{ "type": "move", "targetId": 2410 }], "clockwise": true } ], @@ -196002,9 +193481,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -19.90999565574748, - "coord": [-15.892484525883027, 20.077961272816633], - "sector": 26, + "angle": -4.562300732762264, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -196125,12 +193604,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1870, 1869], + "ids": [1942, 1941], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1772, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1877, "tags": ["selection", "ship", "role:military"] }, { @@ -196147,10 +193626,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -1.7763568394002505e-15, - "state": "cruise", - "target": 24828, + "currentSpeed": 0.11249999999999999, + "currentRotary": -0.22163113531059864, + "state": "warming", + "target": 2411, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -196164,8 +193643,180 @@ { "type": "patrol", "origin": "auto", - "sectorId": 26, - "actions": [{ "type": "move", "targetId": 24828 }], + "sectorId": 9, + "actions": [{ "type": "move", "targetId": 2411 }], + "clockwise": true + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -4.159253197343893, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, + "moved": true + }, + "render": { + "color": 16761677, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 80, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 13, + "range": 1.4, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "gunboat", + "value": "Gunboat", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "ACT Patrol Leader Gunboat", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1940, 1939], + "mask": "BigInt:4294967296" + } + }, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1878, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, + "active": true, + "currentSpeed": 0, + "currentRotary": 0.5297453635928133, + "state": "maneuver", + "target": 2412, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "patrol", + "origin": "auto", + "sectorId": 9, + "actions": [{ "type": "move", "targetId": 2412 }], "clockwise": false } ], @@ -196174,9 +193825,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.763281736139582, - "coord": [-15.500116542813794, -11.129164328123789], - "sector": 26, + "angle": -5.773757609579878, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -196297,184 +193948,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1868, 1867], + "ids": [1938, 1937], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1773, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "hold" }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, - "active": true, - "currentSpeed": 0.0675, - "currentRotary": 4.884981308350689e-15, - "state": "warming", - "target": 24779, - "targetReached": false, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "goto", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "patrol", - "origin": "auto", - "sectorId": 26, - "actions": [{ "type": "move", "targetId": 24779 }], - "clockwise": true - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": -44.632336361847, - "coord": [14.169540386701383, -10.108002063703063], - "sector": 26, - "moved": true - }, - "render": { - "color": 16761677, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "mMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 80, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "medium", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "gunboat", - "value": "Gunboat", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "ACT Patrol Leader Gunboat", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [1866, 1865], - "mask": "BigInt:4294967296" - } - }, - "cooldowns": { "timers": { "cruise": 1 } }, - "id": 1774, + "id": 1879, "tags": ["selection", "ship", "role:military"] }, { @@ -196491,10 +193970,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.8925000000000001, - "currentRotary": -2.6645352591003757e-15, + "currentSpeed": 1.1, + "currentRotary": -0.010011157032418616, "state": "cruise", - "target": 24874, + "target": 2413, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -196508,9 +193987,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 25, - "actions": [{ "type": "move", "targetId": 24874 }], - "clockwise": true + "sectorId": 9, + "actions": [{ "type": "move", "targetId": 2413 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -196518,9 +193997,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 18.36410277606106, - "coord": [-8.564824489914033, 25.446140581732983], - "sector": 25, + "angle": -5.262132389342847, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -196641,12 +194120,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1864, 1863], + "ids": [1936, 1935], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1775, + "id": 1880, "tags": ["selection", "ship", "role:military"] }, { @@ -196663,10 +194142,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.15, - "currentRotary": 9.769962616701378e-15, - "state": "maneuver", - "target": 24795, + "currentSpeed": 0.2325, + "currentRotary": -0.0609801755078756, + "state": "cruise", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -196680,9 +194159,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 25, - "actions": [{ "type": "move", "targetId": 24795 }], - "clockwise": false + "sectorId": 8, + "actions": [ + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2414 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -196690,9 +194173,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 46.015746919465506, - "coord": [-2.799995665593031, 19.435812030433024], - "sector": 25, + "angle": -6.112536384851447, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -196813,12 +194296,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1862, 1861], + "ids": [1934, 1933], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1776, + "id": 1881, "tags": ["selection", "ship", "role:military"] }, { @@ -196835,10 +194318,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.8925000000000001, - "currentRotary": 8.881784197001252e-16, + "currentSpeed": 0.2325, + "currentRotary": -0.0609801755078756, "state": "cruise", - "target": 24869, + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -196852,8 +194335,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 25, - "actions": [{ "type": "move", "targetId": 24869 }], + "sectorId": 8, + "actions": [ + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2415 } + ], "clockwise": true } ], @@ -196862,9 +194349,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 12.888942759834364, - "coord": [-15.719044395894347, -5.263082287594226], - "sector": 25, + "angle": -6.112536384851447, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -196985,12 +194472,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1860, 1859], + "ids": [1932, 1931], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1777, + "id": 1882, "tags": ["selection", "ship", "role:military"] }, { @@ -197007,11 +194494,11 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.2325, + "currentRotary": -0.0609801755078756, + "state": "cruise", + "target": 53, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -197024,8 +194511,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 25, - "actions": [], + "sectorId": 8, + "actions": [ + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2416 } + ], "clockwise": true } ], @@ -197034,9 +194525,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 20.55153168027456, - "coord": [11.499544436492638, 12.755104618510417], - "sector": 25, + "angle": -6.112536384851447, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -197157,12 +194648,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1858, 1857], + "ids": [1930, 1929], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1778, + "id": 1883, "tags": ["selection", "ship", "role:military"] }, { @@ -197179,10 +194670,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.045, - "currentRotary": -8.881784197001252e-16, - "state": "warming", - "target": 24918, + "currentSpeed": 0.2325, + "currentRotary": -0.0609801755078756, + "state": "cruise", + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -197196,9 +194687,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 25, - "actions": [{ "type": "move", "targetId": 24918 }], - "clockwise": true + "sectorId": 8, + "actions": [ + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2417 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -197206,9 +194701,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.540671770007184, - "coord": [5.357275316894737, 22.948032805546067], - "sector": 25, + "angle": -6.112536384851447, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -197329,12 +194824,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1856, 1855], + "ids": [1928, 1927], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 2 } }, - "id": 1779, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1884, "tags": ["selection", "ship", "role:military"] }, { @@ -197351,10 +194846,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 3.1086244689504383e-15, + "currentSpeed": 0.2325, + "currentRotary": -0.0609801755078756, "state": "cruise", - "target": 24843, + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -197368,9 +194863,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 25, - "actions": [{ "type": "move", "targetId": 24843 }], - "clockwise": true + "sectorId": 8, + "actions": [ + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2418 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -197378,9 +194877,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -58.01685827441927, - "coord": [-10.50867299536274, 18.08974923369379], - "sector": 25, + "angle": -6.112536384851447, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -197501,12 +195000,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1854, 1853], + "ids": [1926, 1925], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1780, + "id": 1885, "tags": ["selection", "ship", "role:military"] }, { @@ -197523,10 +195022,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 3.552713678800501e-15, + "currentSpeed": 0.2325, + "currentRotary": -0.0609801755078756, "state": "cruise", - "target": 24848, + "target": 53, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -197540,9 +195039,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 9, - "actions": [{ "type": "move", "targetId": 24848 }], - "clockwise": true + "sectorId": 8, + "actions": [ + { "type": "move", "targetId": 53 }, + { "type": "teleport", "targetId": 55 }, + { "type": "move", "targetId": 2419 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -197550,9 +195053,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -66.29811038471765, - "coord": [15.298452505245383, -11.632485379434643], - "sector": 9, + "angle": -6.112536384851447, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -197673,12 +195176,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1852, 1851], + "ids": [1924, 1923], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1781, + "id": 1886, "tags": ["selection", "ship", "role:military"] }, { @@ -197695,10 +195198,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.3975, - "currentRotary": 2.6645352591003757e-15, - "state": "cruise", - "target": 24896, + "currentSpeed": 0, + "currentRotary": 0.9180826991161206, + "state": "maneuver", + "target": 2420, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -197712,9 +195215,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 9, - "actions": [{ "type": "move", "targetId": 24896 }], - "clockwise": true + "sectorId": 7, + "actions": [{ "type": "move", "targetId": 2420 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -197722,9 +195225,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.42683000736785, - "coord": [23.60647168052698, -9.869463944998289], - "sector": 9, + "angle": -4.042644745762968, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -197845,12 +195348,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1850, 1849], + "ids": [1922, 1921], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1782, + "id": 1887, "tags": ["selection", "ship", "role:military"] }, { @@ -197867,10 +195370,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -2.220446049250313e-15, + "currentSpeed": 0.495, + "currentRotary": 0.0929099489652283, "state": "cruise", - "target": 24796, + "target": 2421, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -197884,8 +195387,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 9, - "actions": [{ "type": "move", "targetId": 24796 }], + "sectorId": 7, + "actions": [{ "type": "move", "targetId": 2421 }], "clockwise": true } ], @@ -197894,9 +195397,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -48.82182406977065, - "coord": [11.066667727992495, -21.672290325019677], - "sector": 9, + "angle": -5.4766451643444505, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -198017,12 +195520,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1848, 1847], + "ids": [1920, 1919], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1783, + "id": 1888, "tags": ["selection", "ship", "role:military"] }, { @@ -198039,10 +195542,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.3975, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 24892, + "currentSpeed": 0, + "currentRotary": -0.629163833597115, + "state": "maneuver", + "target": 2422, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -198056,8 +195559,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 9, - "actions": [{ "type": "move", "targetId": 24892 }], + "sectorId": 7, + "actions": [{ "type": "move", "targetId": 2422 }], "clockwise": false } ], @@ -198066,9 +195569,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 66.40031254999069, - "coord": [-24.86346949146631, -20.95321994705718], - "sector": 9, + "angle": -52.37496777764804, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -198189,12 +195692,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1846, 1845], + "ids": [1918, 1917], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1784, + "id": 1889, "tags": ["selection", "ship", "role:military"] }, { @@ -198211,10 +195714,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.2325, - "currentRotary": -1.7763568394002505e-15, - "state": "cruise", - "target": 24897, + "currentSpeed": 0.15, + "currentRotary": 0.28451513411750895, + "state": "maneuver", + "target": 2423, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -198228,8 +195731,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 9, - "actions": [{ "type": "move", "targetId": 24897 }], + "sectorId": 7, + "actions": [{ "type": "move", "targetId": 2423 }], "clockwise": false } ], @@ -198238,9 +195741,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 57.30513604797772, - "coord": [17.378509039499885, 6.296245922190784], - "sector": 9, + "angle": -4.177887023240938, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -198361,12 +195864,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1844, 1843], + "ids": [1916, 1915], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1785, + "id": 1890, "tags": ["selection", "ship", "role:military"] }, { @@ -198383,10 +195886,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.0225, - "currentRotary": -2.6645352591003757e-15, - "state": "maneuver", - "target": 24760, + "currentSpeed": 0.0675, + "currentRotary": 0.08512867679463065, + "state": "warming", + "target": 2424, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -198400,9 +195903,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 9, - "actions": [{ "type": "move", "targetId": 24760 }], - "clockwise": true + "sectorId": 7, + "actions": [{ "type": "move", "targetId": 2424 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -198410,9 +195913,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.95350295446297, - "coord": [-14.343704599472115, -16.855117191649743], - "sector": 9, + "angle": -5.501861007281054, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -198533,12 +196036,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1842, 1841], + "ids": [1914, 1913], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1786, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 1891, "tags": ["selection", "ship", "role:military"] }, { @@ -198556,9 +196059,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.3947684747465514, "state": "maneuver", - "target": 24933, + "target": 2425, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -198572,9 +196075,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 8, - "actions": [{ "type": "move", "targetId": 24933 }], - "clockwise": true + "sectorId": 7, + "actions": [{ "type": "move", "targetId": 2425 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -198582,9 +196085,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -73.53587666104863, - "coord": [-4.317447531580552, -16.160656969706622], - "sector": 8, + "angle": -4.52306607623314, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -198705,12 +196208,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1840, 1839], + "ids": [1912, 1911], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1787, + "id": 1892, "tags": ["selection", "ship", "role:military"] }, { @@ -198727,10 +196230,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.7275, - "currentRotary": -8.881784197001252e-16, + "currentSpeed": 1.1, + "currentRotary": -2.220446049250313e-15, "state": "cruise", - "target": 24893, + "target": 7883, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -198744,9 +196247,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 8, - "actions": [{ "type": "move", "targetId": 24893 }], - "clockwise": true + "sectorId": 6, + "actions": [{ "type": "move", "targetId": 7883 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -198754,10 +196257,184 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.607101521088808, - "coord": [10.571751268569372, 25.362322298736725], - "sector": 8, - "moved": true + "angle": 27.952679370479032, + "coord": [-25.552948278393185, 5.872617878917881], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16761677, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 80, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 13, + "range": 1.4, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "gunboat", + "value": "Gunboat", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "ACT Patrol Leader Gunboat", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [1910, 1909], + "mask": "BigInt:4294967296" + } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1893, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, + "active": true, + "currentSpeed": 0.045, + "currentRotary": 0.0001660663445366417, + "state": "warming", + "target": 7907, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "patrol", + "origin": "auto", + "sectorId": 6, + "actions": [{ "type": "move", "targetId": 7907 }], + "clockwise": false + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.4396848882086952, + "coord": [-22.582207079569166, 23.488411808108445], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, @@ -198877,12 +196554,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1838, 1837], + "ids": [1908, 1907], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1788, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 1894, "tags": ["selection", "ship", "role:military"] }, { @@ -198899,10 +196576,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.09, - "currentRotary": 5.329070518200751e-15, - "state": "maneuver", - "target": 24761, + "currentSpeed": 1.0575, + "currentRotary": 4.440892098500626e-16, + "state": "cruise", + "target": 7892, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -198916,9 +196593,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 8, - "actions": [{ "type": "move", "targetId": 24761 }], - "clockwise": true + "sectorId": 6, + "actions": [{ "type": "move", "targetId": 7892 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -198926,10 +196603,11 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -54.16982190580614, - "coord": [-16.68516345340088, 12.614658679953783], - "sector": 8, - "moved": true + "angle": 14.30572734406074, + "coord": [-16.559930483147003, 26.68311377469769], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, @@ -199049,12 +196727,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1836, 1835], + "ids": [1906, 1905], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1789, + "id": 1895, "tags": ["selection", "ship", "role:military"] }, { @@ -199071,10 +196749,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 2.6645352591003757e-15, + "currentSpeed": 0.2325, + "currentRotary": 1.6487353704519592e-9, "state": "cruise", - "target": 24870, + "target": 7901, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -199088,8 +196766,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 8, - "actions": [{ "type": "move", "targetId": 24870 }], + "sectorId": 6, + "actions": [{ "type": "move", "targetId": 7901 }], "clockwise": false } ], @@ -199098,10 +196776,11 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -25.399276492499812, - "coord": [12.067840174874306, -15.21855745674487], - "sector": 8, - "moved": true + "angle": 82.17438651845646, + "coord": [24.042677937098947, 18.147454007557965], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, @@ -199221,12 +196900,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1834, 1833], + "ids": [1904, 1903], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1790, + "id": 1896, "tags": ["selection", "ship", "role:military"] }, { @@ -199243,10 +196922,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 4.440892098500626e-16, + "currentSpeed": 0.8925000000000001, + "currentRotary": -2.220446049250313e-15, "state": "cruise", - "target": 24844, + "target": 7893, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -199260,8 +196939,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 8, - "actions": [{ "type": "move", "targetId": 24844 }], + "sectorId": 6, + "actions": [{ "type": "move", "targetId": 7893 }], "clockwise": true } ], @@ -199270,182 +196949,11 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -3.4550090225012378, - "coord": [18.80056384494642, -16.152419346381862], - "sector": 8, - "moved": true - }, - "render": { - "color": 16761677, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "mMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 80, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "medium", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "gunboat", - "value": "Gunboat", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "ACT Patrol Leader Gunboat", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [1832, 1831], - "mask": "BigInt:4294967296" - } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1791, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "hold" }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, - "active": true, - "currentSpeed": 0.045, - "currentRotary": 3.1086244689504383e-15, - "state": "maneuver", - "target": 24769, - "targetReached": false, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "goto", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "patrol", - "origin": "auto", - "sectorId": 8, - "actions": [{ "type": "move", "targetId": 24769 }], - "clockwise": false - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": 4.3403043262700844, - "coord": [19.975237722011865, 23.995921551466125], - "sector": 8, - "moved": true + "angle": 22.509679907233895, + "coord": [9.493911847501405, 18.333582494768564], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, @@ -199565,12 +197073,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1830, 1829], + "ids": [1902, 1901], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1792, + "id": 1897, "tags": ["selection", "ship", "role:military"] }, { @@ -199587,10 +197095,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.8925000000000001, - "currentRotary": -9.769962616701378e-15, + "currentSpeed": 1.1, + "currentRotary": -8.881784197001252e-16, "state": "cruise", - "target": 24878, + "target": 7885, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -199604,9 +197112,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 7, - "actions": [{ "type": "move", "targetId": 24878 }], - "clockwise": false + "sectorId": 6, + "actions": [{ "type": "move", "targetId": 7885 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -199614,10 +197122,11 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 50.48886902671896, - "coord": [8.200362769009473, 26.483857131484346], - "sector": 7, - "moved": true + "angle": -22.019534806406874, + "coord": [25.61795939497917, 5.234867709412415], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, @@ -199737,48 +197246,50 @@ }, "subordinates": { "name": "subordinates", - "ids": [1828, 1827], + "ids": [1900, 1899], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1793, + "id": 1898, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1898 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 1.064650843716541, - "state": "maneuver", - "target": 24929, - "targetReached": false, + "currentSpeed": 0.76, + "currentRotary": -0.10316142600689604, + "state": "cruise", + "target": 1898, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 7, - "actions": [{ "type": "move", "targetId": 24929 }], - "clockwise": false + "targetId": 1898, + "actions": [ + { "type": "move", "targetId": 1898, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -199786,17 +197297,18 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -4.368351985287605, - "coord": [-15.771234786377047, -17.608926785258387], - "sector": 7, - "moved": true + "angle": -235.51187113715972, + "coord": [25.546632132779795, 2.2673939977329964], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -199804,7 +197316,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -199873,7 +197385,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -199884,73 +197396,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1826, 1825], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1898, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1794, + "id": 1899, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1898 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 1.0122909661567077, - "state": "maneuver", - "target": 24801, - "targetReached": false, + "currentSpeed": 2.2800000000000002, + "currentRotary": -0.034944696000190234, + "state": "cruise", + "target": 1898, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 7, - "actions": [{ "type": "move", "targetId": 24801 }], - "clockwise": false + "targetId": 1898, + "actions": [ + { "type": "move", "targetId": 1898, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -199958,17 +197473,18 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 37.493589797980896, - "coord": [-16.134792038184006, 12.238561252299673], - "sector": 7, - "moved": true + "angle": 109.91179249663948, + "coord": [25.65503774704228, 4.052294356819901], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -199976,7 +197492,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -200045,7 +197561,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -200056,73 +197572,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1824, 1823], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1898, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1795, + "id": 1900, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1897 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.2325, - "currentRotary": -4.440892098500626e-16, + "currentSpeed": 0.88, + "currentRotary": 0.00451397180935853, "state": "cruise", - "target": 24898, - "targetReached": false, + "target": 1897, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 7, - "actions": [{ "type": "move", "targetId": 24898 }], - "clockwise": false + "targetId": 1897, + "actions": [ + { "type": "move", "targetId": 1897, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -200130,17 +197649,18 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 30.00485261755868, - "coord": [-2.9667353121347, -17.52895661904462], - "sector": 7, - "moved": true + "angle": -197.4065171645793, + "coord": [10.277823658311465, 16.657030594648223], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -200148,7 +197668,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -200217,7 +197737,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -200228,73 +197748,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1822, 1821], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1897, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1796, + "id": 1901, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1897 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 3.552713678800501e-15, + "currentSpeed": 1.6400000000000001, + "currentRotary": 0.08687592978140879, "state": "cruise", - "target": 24797, - "targetReached": false, + "target": 1897, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 7, - "actions": [{ "type": "move", "targetId": 24797 }], - "clockwise": true + "targetId": 1897, + "actions": [ + { "type": "move", "targetId": 1897, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -200302,17 +197825,18 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -49.54270595940605, - "coord": [-21.590969009949077, -6.516154075911434], - "sector": 7, - "moved": true + "angle": 104.2451535209093, + "coord": [9.868115497701078, 18.193180619919882], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -200320,7 +197844,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -200389,7 +197913,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -200400,73 +197924,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1820, 1819], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1897, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1797, + "id": 1902, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1896 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 3.552713678800501e-15, - "state": "cruise", - "target": 24820, - "targetReached": false, + "currentSpeed": 0.1875, + "currentRotary": -0.19848911289206228, + "state": "maneuver", + "target": 1896, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 7, - "actions": [{ "type": "move", "targetId": 24820 }], - "clockwise": false + "targetId": 1896, + "actions": [ + { "type": "move", "targetId": 1896, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -200474,17 +198001,18 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -19.192863723989557, - "coord": [20.23290588334088, -20.552997389290034], - "sector": 7, - "moved": true + "angle": -173.8560082595048, + "coord": [23.837522297779287, 18.45467668547929], + "sector": 6, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16761677, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -200492,7 +198020,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -200561,7 +198089,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -200572,73 +198100,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1818, 1817], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1896, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1798, + "id": 1903, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1896 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.0575, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 24879, - "targetReached": false, + "currentSpeed": 0.1875, + "currentRotary": 0.0008199346683377406, + "state": "maneuver", + "target": 1896, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 6, - "actions": [{ "type": "move", "targetId": 24879 }], - "clockwise": false + "targetId": 1896, + "actions": [ + { "type": "move", "targetId": 1896, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -200646,8 +198177,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.99131236933869, - "coord": [-16.865560636821453, -11.004727672604707], + "angle": 188.9854537741121, + "coord": [23.670477395171822, 18.524144235780945], "sector": 6, "moved": true, "mask": "BigInt:2199023255552" @@ -200657,7 +198188,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -200665,7 +198196,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -200734,7 +198265,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -200745,73 +198276,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1816, 1815], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1896, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1799, + "id": 1904, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1895 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.8925000000000001, - "currentRotary": -8.881784197001252e-16, + "currentSpeed": 0, + "currentRotary": 0.46838861193784265, "state": "cruise", - "target": 24875, - "targetReached": false, + "target": 1895, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 6, - "actions": [{ "type": "move", "targetId": 24875 }], - "clockwise": true + "targetId": 1895, + "actions": [ + { "type": "move", "targetId": 1895, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -200819,8 +198353,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -36.19755580272378, - "coord": [-17.613569627735185, -19.962459386589146], + "angle": -135.96357539451623, + "coord": [-17.814781620634506, 26.562830293264774], "sector": 6, "moved": true, "mask": "BigInt:2199023255552" @@ -200830,7 +198364,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -200838,7 +198372,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -200907,7 +198441,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -200918,73 +198452,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1814, 1813], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1895, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1800, + "id": 1905, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1895 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.15, - "currentRotary": -7.549516567451064e-15, - "state": "maneuver", - "target": 24780, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": 0.5272385769238843, + "state": "cruise", + "target": 1895, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 6, - "actions": [{ "type": "move", "targetId": 24780 }], - "clockwise": false + "targetId": 1895, + "actions": [ + { "type": "move", "targetId": 1895, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -200992,8 +198529,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 61.71287015885295, - "coord": [9.905877991727861, -26.264362294641664], + "angle": 153.13579210150928, + "coord": [-17.912089993658835, 26.1126543310638], "sector": 6, "moved": true, "mask": "BigInt:2199023255552" @@ -201003,7 +198540,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -201011,7 +198548,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -201080,7 +198617,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -201091,73 +198628,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1812, 1811], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1895, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1801, + "id": 1906, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1894 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.0675, - "currentRotary": 4.440892098500626e-15, + "currentSpeed": 0.045, + "currentRotary": 0.008942377328427398, "state": "maneuver", - "target": 24740, - "targetReached": false, + "target": 1894, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 6, - "actions": [{ "type": "move", "targetId": 24740 }], - "clockwise": false + "targetId": 1894, + "actions": [ + { "type": "move", "targetId": 1894, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -201165,8 +198705,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.255215281273584, - "coord": [-17.669972432985155, -5.641525028191843], + "angle": -157.30428778189838, + "coord": [-22.62800762776953, 24.00063203277406], "sector": 6, "moved": true, "mask": "BigInt:2199023255552" @@ -201176,7 +198716,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -201184,7 +198724,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -201253,7 +198793,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -201264,73 +198804,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1810, 1809], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1894, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1802, + "id": 1907, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1894 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.0675, - "currentRotary": -1.7763568394002505e-15, + "currentSpeed": 0.045, + "currentRotary": 0.08826624484614332, "state": "maneuver", - "target": 24745, - "targetReached": false, + "target": 1894, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 6, - "actions": [{ "type": "move", "targetId": 24745 }], - "clockwise": true + "targetId": 1894, + "actions": [ + { "type": "move", "targetId": 1894, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -201338,8 +198881,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -21.092766063522213, - "coord": [-14.386295899713943, -22.303864950423257], + "angle": 232.75675849078158, + "coord": [-22.841160733017222, 23.67799442936973], "sector": 6, "moved": true, "mask": "BigInt:2199023255552" @@ -201349,7 +198892,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -201357,7 +198900,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -201426,7 +198969,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -201437,73 +198980,76 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1808, 1807], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1894, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1803, + "id": 1908, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 1893 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 5.773159728050814e-15, + "currentSpeed": 2.2800000000000002, + "currentRotary": 0.053732166369047984, "state": "cruise", - "target": 24802, - "targetReached": false, + "target": 1893, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 6, - "actions": [{ "type": "move", "targetId": 24802 }], - "clockwise": true + "targetId": 1893, + "actions": [ + { "type": "move", "targetId": 1893, "ignoreReached": true } + ], + "ordersForSector": 6 } ], "mask": "BigInt:134217728" @@ -201511,8 +199057,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -36.242668494344905, - "coord": [12.760041991109228, -28.49701112747972], + "angle": -135.39288864795788, + "coord": [-25.988731122921326, 4.646421915745523], "sector": 6, "moved": true, "mask": "BigInt:2199023255552" @@ -201522,7 +199068,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -201530,7 +199076,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -201599,7 +199145,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -201610,57 +199156,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Patrol Leader Gunboat", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1806, 1805], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 1893, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1804, + "id": 1909, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1804 }, + "default": { "type": "escort", "targetId": 1893 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.00011351964806172177, + "currentSpeed": 0, + "currentRotary": 2.478367537831948, "state": "cruise", - "target": 1804, + "target": 1893, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -201674,9 +199221,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1804, + "targetId": 1893, "actions": [ - { "type": "move", "targetId": 1804, "ignoreReached": true } + { "type": "move", "targetId": 1893, "ignoreReached": true } ], "ordersForSector": 6 } @@ -201686,8 +199233,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -293.8522779066493, - "coord": [11.695325246873116, -28.22384460986926], + "angle": 256.69298259843043, + "coord": [-25.49975823618642, 5.442141714176101], "sector": 6, "moved": true, "mask": "BigInt:2199023255552" @@ -201799,13 +199346,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -201813,31 +199360,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1804, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1893, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1805, + "id": 1910, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1804 }, + "default": { "type": "escort", "targetId": 1892 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 0.028797751021720774, - "state": "cruise", - "target": 1804, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.2176304805251572, + "state": "maneuver", + "target": 1892, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -201850,11 +199397,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1804, - "actions": [ - { "type": "move", "targetId": 1804, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1892, + "actions": [{ "type": "move", "targetId": 1892 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -201862,11 +199407,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 221.39355226435535, - "coord": [12.344059252918528, -28.611479253491876], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -2.7590356206372277, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -201975,13 +199519,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -201989,31 +199533,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1804, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1892, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1806, + "id": 1911, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1803 }, + "default": { "type": "escort", "targetId": 1892 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.0675, - "currentRotary": -0.04018062241227138, + "currentSpeed": 0, + "currentRotary": 0.21763048052515543, "state": "maneuver", - "target": 1803, - "targetReached": true, + "target": 1892, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -202026,11 +199570,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1803, - "actions": [ - { "type": "move", "targetId": 1803, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1892, + "actions": [{ "type": "move", "targetId": 1892 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -202038,11 +199580,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -265.64604802986526, - "coord": [-14.015106987649016, -22.58950952808856], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -0.7934481741425712, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -202151,13 +199692,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -202165,31 +199706,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1803, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1892, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1807, + "id": 1912, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1803 }, + "default": { "type": "escort", "targetId": 1891 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": 0.07240341667953354, - "state": "cruise", - "target": 1803, - "targetReached": true, + "currentSpeed": 0.0675, + "currentRotary": 0.04725605707993674, + "state": "maneuver", + "target": 1891, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -202202,11 +199743,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1803, - "actions": [ - { "type": "move", "targetId": 1803, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1891, + "actions": [{ "type": "move", "targetId": 1891 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -202214,11 +199753,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 204.97268480291436, - "coord": [-14.229807019663598, -22.14157821605642], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -3.4281907537332224, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -202327,13 +199865,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -202341,31 +199879,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1803, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1891, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1808, + "id": 1913, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1802 }, + "default": { "type": "escort", "targetId": 1891 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0.0675, - "currentRotary": -0.09110633537280943, + "currentRotary": 0.04725605707994207, "state": "maneuver", - "target": 1802, - "targetReached": true, + "target": 1891, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -202378,11 +199916,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1802, - "actions": [ - { "type": "move", "targetId": 1802, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1891, + "actions": [{ "type": "move", "targetId": 1891 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -202390,11 +199926,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -161.02541865683358, - "coord": [-17.733232189426243, -5.662191611737993], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -1.4626033072385627, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -202503,13 +200038,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -202517,31 +200052,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1802, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1891, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1809, + "id": 1914, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1802 }, + "default": { "type": "escort", "targetId": 1890 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.0675, - "currentRotary": 0.08020134211748875, + "currentSpeed": 0.15, + "currentRotary": 0.21484468006556146, "state": "maneuver", - "target": 1802, - "targetReached": true, + "target": 1890, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -202554,11 +200089,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1802, - "actions": [ - { "type": "move", "targetId": 1802, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1890, + "actions": [{ "type": "move", "targetId": 1890 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -202566,11 +200099,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 292.92112048311566, - "coord": [-17.657000960990125, -5.649200650247739], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -2.3036032270159827, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -202679,13 +200211,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -202693,31 +200225,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1802, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1890, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1810, + "id": 1915, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1801 }, + "default": { "type": "escort", "targetId": 1890 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0.15, - "currentRotary": 0.00047394519150678605, + "currentRotary": 0.2148446800655628, "state": "maneuver", - "target": 1801, - "targetReached": true, + "target": 1890, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -202730,11 +200262,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1801, - "actions": [ - { "type": "move", "targetId": 1801, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1890, + "actions": [{ "type": "move", "targetId": 1890 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -202742,11 +200272,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -145.63469344762413, - "coord": [10.343424765146999, -26.219119556346293], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -0.3380157805213262, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -202855,13 +200384,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -202869,31 +200398,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1801, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1890, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1811, + "id": 1916, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1801 }, + "default": { "type": "escort", "targetId": 1889 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.004427080402767736, - "state": "cruise", - "target": 1801, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8329286314371083, + "state": "maneuver", + "target": 1889, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -202906,11 +200435,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1801, - "actions": [ - { "type": "move", "targetId": 1801, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1889, + "actions": [{ "type": "move", "targetId": 1889 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -202918,11 +200445,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 250.21180730515715, - "coord": [9.31694971984496, -26.39592853622924], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -49.58700501370846, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -203031,13 +200557,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -203045,31 +200571,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1801, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1889, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1812, + "id": 1917, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1800 }, + "default": { "type": "escort", "targetId": 1889 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": -0.05053130720571808, - "state": "cruise", - "target": 1800, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8329286314371065, + "state": "maneuver", + "target": 1889, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -203082,11 +200608,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1800, - "actions": [ - { "type": "move", "targetId": 1800, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1889, + "actions": [{ "type": "move", "targetId": 1889 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -203094,11 +200618,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -237.2605339037379, - "coord": [-19.12389406998221, -19.66223880153442], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -41.33823226003421, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -203207,13 +200730,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -203221,31 +200744,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1800, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1889, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1813, + "id": 1918, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1800 }, + "default": { "type": "escort", "targetId": 1888 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": -0.04349365513866443, - "state": "cruise", - "target": 1800, - "targetReached": true, + "currentSpeed": 0.24, + "currentRotary": 0.0509854971429351, + "state": "maneuver", + "target": 1888, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -203258,11 +200781,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1800, - "actions": [ - { "type": "move", "targetId": 1800, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1888, + "actions": [{ "type": "move", "targetId": 1888 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -203270,11 +200791,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 164.8555143022137, - "coord": [-19.074463294024294, -19.969024465894737], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -3.410756182967212, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -203383,13 +200903,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -203397,31 +200917,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1800, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1888, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1814, + "id": 1919, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1799 }, + "default": { "type": "escort", "targetId": 1888 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.3075, - "currentRotary": 0.14764365341878438, - "state": "cruise", - "target": 1799, - "targetReached": true, + "currentSpeed": 0.24, + "currentRotary": 0.05098549714293599, + "state": "maneuver", + "target": 1888, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -203434,11 +200954,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1799, - "actions": [ - { "type": "move", "targetId": 1799, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1888, + "actions": [{ "type": "move", "targetId": 1888 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -203446,11 +200964,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -203.45169591322875, - "coord": [-16.635060413685522, -11.497728164028759], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -1.4451687364725547, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -203559,13 +201076,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -203573,31 +201090,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1799, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1888, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1815, + "id": 1920, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1799 }, + "default": { "type": "escort", "targetId": 1887 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.3075, - "currentRotary": 0.1867023136511552, - "state": "cruise", - "target": 1799, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.35641334192578356, + "state": "maneuver", + "target": 1887, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -203610,11 +201127,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1799, - "actions": [ - { "type": "move", "targetId": 1799, "ignoreReached": true } - ], - "ordersForSector": 6 + "targetId": 1887, + "actions": [{ "type": "move", "targetId": 1887 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -203622,11 +201137,10 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 280.38587292671923, - "coord": [-16.338328615882574, -11.336079236430734], - "sector": 6, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -2.801928514536626, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, + "moved": true }, "render": { "color": 16761677, @@ -203735,13 +201249,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -203749,31 +201263,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1799, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1887, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1816, + "id": 1921, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1798 }, + "default": { "type": "escort", "targetId": 1887 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.02978676580825379, - "state": "cruise", - "target": 1798, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.356413341925784, + "state": "maneuver", + "target": 1887, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -203786,10 +201300,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1798, - "actions": [ - { "type": "move", "targetId": 1798, "ignoreReached": true } - ], + "targetId": 1887, + "actions": [{ "type": "move", "targetId": 1887 }], "ordersForSector": 7 } ], @@ -203798,8 +201310,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -207.68479545994518, - "coord": [21.334438206007707, -17.933068489615923], + "angle": -0.8363410680419663, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -203910,13 +201422,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -203924,31 +201436,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1798, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1887, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1817, + "id": 1922, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1798 }, + "default": { "type": "escort", "targetId": 1886 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.017587590398451702, - "state": "cruise", - "target": 1798, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044751586, + "state": "maneuver", + "target": 1886, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -203961,10 +201473,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1798, - "actions": [ - { "type": "move", "targetId": 1798, "ignoreReached": true } - ], + "targetId": 1886, + "actions": [{ "type": "move", "targetId": 1886 }], "ordersForSector": 7 } ], @@ -203973,8 +201483,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 232.14018248692813, - "coord": [21.023061576523798, -17.890437984380604], + "angle": -3.8927572790011054, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -204085,13 +201595,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -204099,31 +201609,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1798, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1886, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1818, + "id": 1923, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1797 }, + "default": { "type": "escort", "targetId": 1886 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.059535859718480744, - "state": "cruise", - "target": 1797, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044758248, + "state": "maneuver", + "target": 1886, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -204136,10 +201646,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1797, - "actions": [ - { "type": "move", "targetId": 1797, "ignoreReached": true } - ], + "targetId": 1886, + "actions": [{ "type": "move", "targetId": 1886 }], "ordersForSector": 7 } ], @@ -204148,8 +201656,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -294.656364443789, - "coord": [-23.50485628166516, -3.94394097804868], + "angle": -1.927169832506451, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -204260,13 +201768,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -204274,31 +201782,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1797, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1886, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1819, + "id": 1924, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1797 }, + "default": { "type": "escort", "targetId": 1885 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": 0.009600754901351038, - "state": "cruise", - "target": 1797, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044751586, + "state": "maneuver", + "target": 1885, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -204311,10 +201819,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1797, - "actions": [ - { "type": "move", "targetId": 1797, "ignoreReached": true } - ], + "targetId": 1885, + "actions": [{ "type": "move", "targetId": 1885 }], "ordersForSector": 7 } ], @@ -204323,8 +201829,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 138.95325014462236, - "coord": [-23.54308509127386, -4.552618533620898], + "angle": -3.8927572790011054, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -204435,13 +201941,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -204449,31 +201955,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1797, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1885, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1820, + "id": 1925, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1796 }, + "default": { "type": "escort", "targetId": 1885 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0.1875, - "currentRotary": -0.23681851152254474, + "currentRotary": -0.029077996044758248, "state": "maneuver", - "target": 1796, - "targetReached": true, + "target": 1885, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -204486,10 +201992,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1796, - "actions": [ - { "type": "move", "targetId": 1796, "ignoreReached": true } - ], + "targetId": 1885, + "actions": [{ "type": "move", "targetId": 1885 }], "ordersForSector": 7 } ], @@ -204498,8 +202002,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -150.6022618077701, - "coord": [-2.596125688248613, -17.490195547296924], + "angle": -1.927169832506451, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -204610,13 +202114,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -204624,31 +202128,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1796, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1885, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1821, + "id": 1926, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1796 }, + "default": { "type": "escort", "targetId": 1884 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.1343576071161805, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044751586, "state": "maneuver", - "target": 1796, - "targetReached": true, + "target": 1884, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -204661,10 +202165,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1796, - "actions": [ - { "type": "move", "targetId": 1796, "ignoreReached": true } - ], + "targetId": 1884, + "actions": [{ "type": "move", "targetId": 1884 }], "ordersForSector": 7 } ], @@ -204673,8 +202175,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 203.00433970215258, - "coord": [-2.7053387550857684, -17.344747386870417], + "angle": -3.8927572790011054, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -204785,13 +202287,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -204799,31 +202301,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1796, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1884, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1822, + "id": 1927, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1795 }, + "default": { "type": "escort", "targetId": 1884 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -2.478367537831948, - "state": "cruise", - "target": 1795, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044758248, + "state": "maneuver", + "target": 1884, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -204836,10 +202338,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1795, - "actions": [ - { "type": "move", "targetId": 1795, "ignoreReached": true } - ], + "targetId": 1884, + "actions": [{ "type": "move", "targetId": 1884 }], "ordersForSector": 7 } ], @@ -204848,8 +202348,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -150.5876576594313, - "coord": [-16.01734381695566, 13.356149633117248], + "angle": -1.927169832506451, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -204960,13 +202460,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -204974,31 +202474,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1795, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1884, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1823, + "id": 1928, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1795 }, + "default": { "type": "escort", "targetId": 1883 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.49579396244074747, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044751586, "state": "maneuver", - "target": 1795, - "targetReached": true, + "target": 1883, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -205011,10 +202511,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1795, - "actions": [ - { "type": "move", "targetId": 1795, "ignoreReached": true } - ], + "targetId": 1883, + "actions": [{ "type": "move", "targetId": 1883 }], "ordersForSector": 7 } ], @@ -205023,8 +202521,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 248.22491863700566, - "coord": [-16.078495901334314, 12.047912172711827], + "angle": -3.8927572790011054, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -205135,13 +202633,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -205149,31 +202647,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1795, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1883, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1824, + "id": 1929, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1794 }, + "default": { "type": "escort", "targetId": 1883 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 1.1102230246251565e-14, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044758248, "state": "maneuver", - "target": 1794, - "targetReached": true, + "target": 1883, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -205186,10 +202684,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1794, - "actions": [ - { "type": "move", "targetId": 1794, "ignoreReached": true } - ], + "targetId": 1883, + "actions": [{ "type": "move", "targetId": 1883 }], "ordersForSector": 7 } ], @@ -205198,8 +202694,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -185.3847403455704, - "coord": [-15.758570544242565, -17.793172626884463], + "angle": -1.927169832506451, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -205310,13 +202806,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -205324,31 +202820,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1794, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1883, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1825, + "id": 1930, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1794 }, + "default": { "type": "escort", "targetId": 1882 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -1.2878587085651816e-14, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044751586, "state": "maneuver", - "target": 1794, - "targetReached": true, + "target": 1882, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -205361,10 +202857,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1794, - "actions": [ - { "type": "move", "targetId": 1794, "ignoreReached": true } - ], + "targetId": 1882, + "actions": [{ "type": "move", "targetId": 1882 }], "ordersForSector": 7 } ], @@ -205373,8 +202867,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 249.75039188042615, - "coord": [-15.532639309658489, -17.65822109332769], + "angle": -3.8927572790011054, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -205485,13 +202979,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -205499,31 +202993,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1794, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1882, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1826, + "id": 1931, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1793 }, + "default": { "type": "escort", "targetId": 1882 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.62, - "currentRotary": 0.046289557522344094, - "state": "cruise", - "target": 1793, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044758248, + "state": "maneuver", + "target": 1882, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -205536,10 +203030,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1793, - "actions": [ - { "type": "move", "targetId": 1793, "ignoreReached": true } - ], + "targetId": 1882, + "actions": [{ "type": "move", "targetId": 1882 }], "ordersForSector": 7 } ], @@ -205548,8 +203040,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -238.53987472966975, - "coord": [7.898860319570685, 28.367747750896886], + "angle": -1.927169832506451, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -205660,13 +203152,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -205674,31 +203166,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1793, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1882, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1827, + "id": 1932, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1793 }, + "default": { "type": "escort", "targetId": 1881 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": 0.0824984690413304, - "state": "cruise", - "target": 1793, - "targetReached": true, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044751586, + "state": "maneuver", + "target": 1881, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -205711,10 +203203,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1793, - "actions": [ - { "type": "move", "targetId": 1793, "ignoreReached": true } - ], + "targetId": 1881, + "actions": [{ "type": "move", "targetId": 1881 }], "ordersForSector": 7 } ], @@ -205723,8 +203213,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 201.2904451967069, - "coord": [7.646214319418783, 27.90669812541141], + "angle": -3.8927572790011054, + "coord": [-4.802699061313426, -0.24285815089311708], "sector": 7, "moved": true }, @@ -205835,13 +203325,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -205849,31 +203339,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1793, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1881, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1828, + "id": 1933, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1792 }, + "default": { "type": "escort", "targetId": 1881 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.045, - "currentRotary": -0.0814081820874315, + "currentSpeed": 0.1875, + "currentRotary": -0.029077996044758248, "state": "maneuver", - "target": 1792, - "targetReached": true, + "target": 1881, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -205886,11 +203376,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1792, - "actions": [ - { "type": "move", "targetId": 1792, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1881, + "actions": [{ "type": "move", "targetId": 1881 }], + "ordersForSector": 7 } ], "mask": "BigInt:134217728" @@ -205898,9 +203386,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -227.70212627158733, - "coord": [20.139414148972403, 23.80510766974299], - "sector": 8, + "angle": -1.927169832506451, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -206010,13 +203498,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -206024,31 +203512,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1881, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1829, + "id": 1934, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1792 }, + "default": { "type": "escort", "targetId": 1880 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.045, - "currentRotary": 0.06838211339114775, + "currentSpeed": 0.6, + "currentRotary": 0.008685855119459518, "state": "maneuver", - "target": 1792, - "targetReached": true, + "target": 1880, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -206061,11 +203549,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1792, - "actions": [ - { "type": "move", "targetId": 1792, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1880, + "actions": [{ "type": "move", "targetId": 1880 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -206073,9 +203559,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 254.48859008841225, - "coord": [20.17315902067637, 23.815716170070896], - "sector": 8, + "angle": 3.1898630052116212, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -206185,13 +203671,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -206199,31 +203685,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1792, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1880, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1830, + "id": 1935, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1791 }, + "default": { "type": "escort", "targetId": 1880 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.02762279953461544, - "state": "cruise", - "target": 1791, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.008685855119461294, + "state": "maneuver", + "target": 1880, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -206236,11 +203722,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1791, - "actions": [ - { "type": "move", "targetId": 1791, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1880, + "actions": [{ "type": "move", "targetId": 1880 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -206248,9 +203732,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -235.9607656451803, - "coord": [17.68512256906962, -18.97598444541552], - "sector": 8, + "angle": -1.1277348554733062, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -206360,13 +203844,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -206374,206 +203858,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1791, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1880, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1831, + "id": 1936, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1791 }, + "default": { "type": "escort", "targetId": 1879 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -2.4571356087130454, - "state": "cruise", - "target": 1791, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 1791, - "actions": [ - { "type": "move", "targetId": 1791, "ignoreReached": true } - ], - "ordersForSector": 8 - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": 203.9265178827477, - "coord": [18.32292255844943, -18.220790533671266], - "sector": 8, - "moved": true - }, - "render": { - "color": 16761677, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "fighter", - "value": "Fighter", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "ACT Fighter", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1791, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1832, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 1790 }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, - "active": true, - "currentSpeed": 1.6400000000000001, - "currentRotary": 0.004631087021024882, - "state": "cruise", - "target": 1790, - "targetReached": true, + "currentRotary": 1.0646508437165414, + "state": "maneuver", + "target": 1879, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -206586,11 +203895,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1790, - "actions": [ - { "type": "move", "targetId": 1790, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1879, + "actions": [{ "type": "move", "targetId": 1879 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -206598,9 +203905,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -257.9114544766668, - "coord": [12.37884728178387, -14.557493886206519], - "sector": 8, + "angle": 2.1384812643493603, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -206710,13 +204017,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -206724,31 +204031,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1790, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1879, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1833, + "id": 1937, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1790 }, + "default": { "type": "escort", "targetId": 1879 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.6400000000000001, - "currentRotary": 0.0026374229868189047, - "state": "cruise", - "target": 1790, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 1.0646508437165414, + "state": "maneuver", + "target": 1879, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -206761,11 +204068,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1790, - "actions": [ - { "type": "move", "targetId": 1790, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1879, + "actions": [{ "type": "move", "targetId": 1879 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -206773,9 +204078,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 282.4597691242075, - "coord": [12.099269421244385, -14.486143948391117], - "sector": 8, + "angle": 4.104068710844018, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -206885,13 +204190,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -206899,31 +204204,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1790, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1879, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1834, + "id": 1938, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1789 }, + "default": { "type": "escort", "targetId": 1878 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.09, - "currentRotary": -0.20460300662420305, + "currentSpeed": 0, + "currentRotary": -0.31757812371249194, "state": "maneuver", - "target": 1789, - "targetReached": true, + "target": 1878, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -206936,11 +204241,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1789, - "actions": [ - { "type": "move", "targetId": 1789, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1878, + "actions": [{ "type": "move", "targetId": 1878 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -206948,9 +204251,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -273.377243851726, - "coord": [-16.955767335986422, 12.366941714206078], - "sector": 8, + "angle": 4.504362175488756, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -207060,13 +204363,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -207074,31 +204377,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1789, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1878, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1835, + "id": 1939, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1789 }, + "default": { "type": "escort", "targetId": 1878 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.09, - "currentRotary": -0.31293260701183945, + "currentSpeed": 0.11249999999999999, + "currentRotary": -0.3175781237124937, "state": "maneuver", - "target": 1789, - "targetReached": true, + "target": 1878, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -207111,11 +204414,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1789, - "actions": [ - { "type": "move", "targetId": 1789, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1878, + "actions": [{ "type": "move", "targetId": 1878 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -207123,9 +204424,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 249.16925358434614, - "coord": [-16.633443802993973, 12.290746539980463], - "sector": 8, + "angle": 0.18676431480382893, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -207235,13 +204536,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -207249,31 +204550,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1789, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1878, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1836, + "id": 1940, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1788 }, + "default": { "type": "escort", "targetId": 1877 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.00009361587514034042, - "state": "warming", - "target": 1788, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.4038464277269975, + "state": "maneuver", + "target": 1877, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -207286,11 +204587,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1788, - "actions": [ - { "type": "move", "targetId": 1788, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1877, + "actions": [{ "type": "move", "targetId": 1877 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -207298,9 +204597,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -302.6337421297279, - "coord": [12.347205270207924, 26.22874801650942], - "sector": 8, + "angle": 4.0938291818758445, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -207410,13 +204709,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -207424,31 +204723,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1788, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1877, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 1837, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1941, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1788 }, + "default": { "type": "escort", "targetId": 1877 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.5, - "currentRotary": 0.10239103025448681, - "state": "cruise", - "target": 1788, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.40384642772699886, + "state": "maneuver", + "target": 1877, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -207461,11 +204760,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1788, - "actions": [ - { "type": "move", "targetId": 1788, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1877, + "actions": [{ "type": "move", "targetId": 1877 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -207473,9 +204770,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 206.2360195422727, - "coord": [11.787619318255913, 26.254672697761208], - "sector": 8, + "angle": -0.22376867880908602, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -207585,13 +204882,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -207599,31 +204896,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1788, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1877, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1838, + "id": 1942, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1787 }, + "default": { "type": "escort", "targetId": 1876 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -2.930988785010413e-14, + "currentRotary": -0.5134310485220808, "state": "maneuver", - "target": 1787, - "targetReached": true, + "target": 1876, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -207636,11 +204933,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1787, - "actions": [ - { "type": "move", "targetId": 1787, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1876, + "actions": [{ "type": "move", "targetId": 1876 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -207648,9 +204943,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -337.39361495646693, - "coord": [-4.861356531315943, -16.183370711975318], - "sector": 8, + "angle": 3.901111975909551, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -207760,13 +205055,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -207774,31 +205069,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1787, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1876, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1839, + "id": 1943, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1787 }, + "default": { "type": "escort", "targetId": 1876 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -4.263256414560601e-14, + "currentRotary": -0.5134310485220817, "state": "maneuver", - "target": 1787, - "targetReached": true, + "target": 1876, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -207811,11 +205106,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1787, - "actions": [ - { "type": "move", "targetId": 1787, "ignoreReached": true } - ], - "ordersForSector": 8 + "targetId": 1876, + "actions": [{ "type": "move", "targetId": 1876 }], + "ordersForSector": 9 } ], "mask": "BigInt:134217728" @@ -207823,9 +205116,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 196.64110176052992, - "coord": [-4.622077697075619, -16.40868901594328], - "sector": 8, + "angle": -0.4164858847753763, + "coord": [-7.0021203099463225, 4.1715278599185295], + "sector": 9, "moved": true }, "render": { @@ -207935,13 +205228,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -207949,31 +205242,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1787, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1876, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1840, + "id": 1944, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1786 }, + "default": { "type": "escort", "targetId": 1875 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.2133189476393076, - "state": "warming", - "target": 1786, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.9256827058499457, + "state": "maneuver", + "target": 1875, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -207986,10 +205279,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1786, - "actions": [ - { "type": "move", "targetId": 1786, "ignoreReached": true } - ], + "targetId": 1875, + "actions": [{ "type": "move", "targetId": 1875 }], "ordersForSector": 9 } ], @@ -207998,8 +205289,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -250.51500856224536, - "coord": [-14.625933822835304, -16.721074996234286], + "angle": 1.993730375041761, + "coord": [-7.0021203099463225, 4.1715278599185295], "sector": 9, "moved": true }, @@ -208110,13 +205401,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -208124,31 +205415,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1786, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1875, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 1841, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1945, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1786 }, + "default": { "type": "escort", "targetId": 1875 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 1.576494339465663, + "currentRotary": 0.9256827058499457, "state": "maneuver", - "target": 1786, - "targetReached": true, + "target": 1875, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -208161,10 +205452,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1786, - "actions": [ - { "type": "move", "targetId": 1786, "ignoreReached": true } - ], + "targetId": 1875, + "actions": [{ "type": "move", "targetId": 1875 }], "ordersForSector": 9 } ], @@ -208173,8 +205462,8 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 204.24326640349102, - "coord": [-14.174997618335233, -17.064705119114215], + "angle": 3.9593178215364198, + "coord": [-7.0021203099463225, 4.1715278599185295], "sector": 9, "moved": true }, @@ -208285,13 +205574,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -208299,35 +205588,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1786, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1875, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1842, + "id": 1946, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1785 }, + "default": { "type": "escort", "targetId": 1874 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.1875, - "currentRotary": -0.23929567855219602, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, "state": "maneuver", - "target": 1785, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -208336,11 +205625,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1785, + "targetId": 1874, "actions": [ - { "type": "move", "targetId": 1785, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1874 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -208348,9 +205639,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -204.67399364442298, - "coord": [17.181752041921833, 6.58639958123448], - "sector": 9, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -208460,13 +205751,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -208474,35 +205765,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1785, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1874, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1843, + "id": 1947, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1785 }, + "default": { "type": "escort", "targetId": 1874 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.4310452742581603, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, "state": "maneuver", - "target": 1785, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -208511,11 +205802,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1785, + "targetId": 1874, "actions": [ - { "type": "move", "targetId": 1785, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1874 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -208523,9 +205816,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 256.7776239526187, - "coord": [17.167632284808246, 6.550042937326886], - "sector": 9, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -208635,13 +205928,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -208649,35 +205942,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1785, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1874, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1844, + "id": 1948, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1784 }, + "default": { "type": "escort", "targetId": 1873 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -2.478367537831948, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, "state": "maneuver", - "target": 1784, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -208686,11 +205979,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1784, + "targetId": 1873, "actions": [ - { "type": "move", "targetId": 1784, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1873 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -208698,9 +205993,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -140.69868832481495, - "coord": [-24.676714378730964, -21.665296001670193], - "sector": 9, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -208810,13 +206105,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -208824,35 +206119,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1784, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1873, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1845, + "id": 1949, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1784 }, + "default": { "type": "escort", "targetId": 1873 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0.12, - "currentRotary": 0.3586217332522521, + "currentRotary": -0.29250163204005597, "state": "maneuver", - "target": 1784, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -208861,11 +206156,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1784, + "targetId": 1873, "actions": [ - { "type": "move", "targetId": 1784, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1873 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -208873,9 +206170,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 248.42377748727668, - "coord": [-24.4252231891964, -21.559974841693375], - "sector": 9, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -208985,13 +206282,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -208999,35 +206296,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1784, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1873, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1846, + "id": 1950, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1783 }, + "default": { "type": "escort", "targetId": 1872 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -0.4550668155576325, - "state": "cruise", - "target": 1783, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -209036,11 +206333,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1783, + "targetId": 1872, "actions": [ - { "type": "move", "targetId": 1783, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1872 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -209048,9 +206347,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -293.779919983009, - "coord": [8.607149005260602, -21.318490506194443], - "sector": 9, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -209160,13 +206459,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -209174,35 +206473,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1783, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1872, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1847, + "id": 1951, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1783 }, + "default": { "type": "escort", "targetId": 1872 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": 0.008332309607749444, - "state": "cruise", - "target": 1783, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -209211,11 +206510,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1783, + "targetId": 1872, "actions": [ - { "type": "move", "targetId": 1783, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1872 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -209223,9 +206524,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 171.09122683934675, - "coord": [8.369306949538178, -21.49384624074296], - "sector": 9, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -209335,13 +206636,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -209349,35 +206650,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1783, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1872, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1848, + "id": 1952, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1782 }, + "default": { "type": "escort", "targetId": 1871 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.7447737097130549, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, "state": "maneuver", - "target": 1782, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -209386,11 +206687,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1782, + "targetId": 1871, "actions": [ - { "type": "move", "targetId": 1782, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1871 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -209398,9 +206701,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -274.01040453341864, - "coord": [23.041847424227612, -10.39949122961798], - "sector": 9, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -209510,13 +206813,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -209524,35 +206827,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1782, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1871, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1849, + "id": 1953, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1782 }, + "default": { "type": "escort", "targetId": 1871 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 1.0556376825300866, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, "state": "maneuver", - "target": 1782, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -209561,11 +206864,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1782, + "targetId": 1871, "actions": [ - { "type": "move", "targetId": 1782, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1871 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -209573,9 +206878,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 241.30097873590125, - "coord": [23.278944258459273, -10.625144474909169], - "sector": 9, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -209685,13 +206990,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -209699,35 +207004,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1782, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1871, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1850, + "id": 1954, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1781 }, + "default": { "type": "escort", "targetId": 1870 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.8635480146126344, - "state": "cruise", - "target": 1781, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -209736,11 +207041,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1781, + "targetId": 1870, "actions": [ - { "type": "move", "targetId": 1781, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1870 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -209748,9 +207055,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -335.6148034025013, - "coord": [14.803403897866822, -12.77233409240992], - "sector": 9, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -209860,13 +207167,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -209874,35 +207181,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1781, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1870, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1851, + "id": 1955, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1781 }, + "default": { "type": "escort", "targetId": 1870 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 2.1125596230424373, - "state": "cruise", - "target": 1781, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -209911,11 +207218,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1781, + "targetId": 1870, "actions": [ - { "type": "move", "targetId": 1781, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1870 } ], - "ordersForSector": 9 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -209923,9 +207232,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 218.55979380869385, - "coord": [15.081245173223408, -12.812428584521065], - "sector": 9, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -210035,13 +207344,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -210049,35 +207358,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1781, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1870, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1852, + "id": 1956, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1780 }, + "default": { "type": "escort", "targetId": 1869 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.7599999999999998, - "currentRotary": 0.008612788866973808, - "state": "cruise", - "target": 1780, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -210086,9 +207395,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1780, + "targetId": 1869, "actions": [ - { "type": "move", "targetId": 1780, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1869 } ], "ordersForSector": 25 } @@ -210098,9 +207409,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -328.1834008918516, - "coord": [-9.44468202817395, 18.06223814448128], - "sector": 25, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -210210,13 +207521,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -210224,35 +207535,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1780, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1869, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1853, + "id": 1957, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1780 }, + "default": { "type": "escort", "targetId": 1869 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.014623371639570504, - "state": "cruise", - "target": 1780, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -210261,9 +207572,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1780, + "targetId": 1869, "actions": [ - { "type": "move", "targetId": 1780, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1869 } ], "ordersForSector": 25 } @@ -210273,9 +207586,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 205.87186020043, - "coord": [-10.557370922315865, 18.21388872897499], - "sector": 25, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -210385,13 +207698,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -210399,35 +207712,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1780, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1869, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1854, + "id": 1958, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1779 }, + "default": { "type": "escort", "targetId": 1868 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.045, - "currentRotary": 0.05067688248986402, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, "state": "maneuver", - "target": 1779, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -210436,9 +207749,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1779, + "targetId": 1868, "actions": [ - { "type": "move", "targetId": 1779, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1868 } ], "ordersForSector": 25 } @@ -210448,9 +207763,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -259.52326089022574, - "coord": [5.637603205723606, 22.818229018925592], - "sector": 25, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -210560,13 +207875,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -210574,35 +207889,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1779, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1868, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1855, + "id": 1959, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1779 }, + "default": { "type": "escort", "targetId": 1868 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.045, - "currentRotary": 0.02652028278093077, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, "state": "maneuver", - "target": 1779, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -210611,9 +207926,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1779, + "targetId": 1868, "actions": [ - { "type": "move", "targetId": 1779, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1868 } ], "ordersForSector": 25 } @@ -210623,9 +207940,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 180.51801373246718, - "coord": [5.707423022708877, 23.104526260709967], - "sector": 25, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -210735,13 +208052,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -210749,35 +208066,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1779, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1868, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1856, + "id": 1960, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1778 }, + "default": { "type": "escort", "targetId": 1867 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.12543212825763517, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, "state": "maneuver", - "target": 1778, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -210786,9 +208103,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1778, + "targetId": 1867, "actions": [ - { "type": "move", "targetId": 1778, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1867 } ], "ordersForSector": 25 } @@ -210798,9 +208117,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -231.95739882985202, - "coord": [11.431840177235278, 13.14936428293824], - "sector": 25, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -210910,13 +208229,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -210924,210 +208243,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1778, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1867, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1857, + "id": 1961, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1778 }, + "default": { "type": "escort", "targetId": 1867 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.3553808734742523, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, "state": "maneuver", - "target": 1778, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 1778, - "actions": [ - { "type": "move", "targetId": 1778, "ignoreReached": true } - ], - "ordersForSector": 25 - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": 188.98707284091017, - "coord": [11.182190396578674, 13.002683914465138], - "sector": 25, - "moved": true - }, - "render": { - "color": 16761677, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "fighter", - "value": "Fighter", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "ACT Fighter", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1778, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1858, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 1777 }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, - "active": true, - "currentSpeed": 0.5, - "currentRotary": -0.002199965862192066, - "state": "cruise", - "target": 1777, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -211136,9 +208280,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1777, + "targetId": 1867, "actions": [ - { "type": "move", "targetId": 1777, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1867 } ], "ordersForSector": 25 } @@ -211148,9 +208294,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -282.4181466304671, - "coord": [-16.312434159603196, -3.0220492878391534], - "sector": 25, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -211260,13 +208406,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -211274,35 +208420,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1777, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1867, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1859, + "id": 1962, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1777 }, + "default": { "type": "escort", "targetId": 1866 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.5, - "currentRotary": 0.09572061649557329, - "state": "cruise", - "target": 1777, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -211311,9 +208457,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1777, + "targetId": 1866, "actions": [ - { "type": "move", "targetId": 1777, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1866 } ], "ordersForSector": 25 } @@ -211323,9 +208471,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 182.4227069998207, - "coord": [-16.493503719246963, -3.1107103616143132], - "sector": 25, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -211435,13 +208583,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -211449,35 +208597,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1777, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1866, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1860, + "id": 1963, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1776 }, + "default": { "type": "escort", "targetId": 1866 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": -0.011512795191300107, - "state": "cruise", - "target": 1776, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -211486,9 +208634,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1776, + "targetId": 1866, "actions": [ - { "type": "move", "targetId": 1776, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1866 } ], "ordersForSector": 25 } @@ -211498,9 +208648,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -211.5850051145299, - "coord": [-4.926797637748697, 18.529813789731836], - "sector": 25, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -211610,13 +208760,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -211624,35 +208774,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1776, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1866, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1861, + "id": 1964, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1776 }, + "default": { "type": "escort", "targetId": 1865 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": 0.003317725099415636, - "state": "cruise", - "target": 1776, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -211661,9 +208811,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1776, + "targetId": 1865, "actions": [ - { "type": "move", "targetId": 1776, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1865 } ], "ordersForSector": 25 } @@ -211673,9 +208825,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 165.39673837787197, - "coord": [-4.313064108414206, 18.507101347625124], - "sector": 25, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -211785,13 +208937,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -211799,35 +208951,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1776, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1865, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1862, + "id": 1965, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1775 }, + "default": { "type": "escort", "targetId": 1865 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": 0.04188395485194096, - "state": "cruise", - "target": 1775, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -211836,9 +208988,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1775, + "targetId": 1865, "actions": [ - { "type": "move", "targetId": 1775, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1865 } ], "ordersForSector": 25 } @@ -211848,9 +209002,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -302.0647555970991, - "coord": [-7.807977024830953, 26.65067198964042], - "sector": 25, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -211960,13 +209114,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -211974,35 +209128,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1775, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1865, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1863, + "id": 1966, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1775 }, + "default": { "type": "escort", "targetId": 1864 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": -0.021747810133530443, - "state": "cruise", - "target": 1775, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -212011,9 +209165,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1775, + "targetId": 1864, "actions": [ - { "type": "move", "targetId": 1775, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1864 } ], "ordersForSector": 25 } @@ -212023,9 +209179,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 144.02410502790377, - "coord": [-7.99367532254005, 26.80543646319102], - "sector": 25, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -212135,13 +209291,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -212149,35 +209305,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1775, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1864, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1864, + "id": 1967, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1774 }, + "default": { "type": "escort", "targetId": 1864 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": -0.0812516106683221, - "state": "cruise", - "target": 1774, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -212186,11 +209342,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1774, + "targetId": 1864, "actions": [ - { "type": "move", "targetId": 1774, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1864 } ], - "ordersForSector": 26 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -212198,9 +209356,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -251.82030154760952, - "coord": [14.574861234303587, -9.852226884430392], - "sector": 26, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -212310,13 +209468,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -212324,35 +209482,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1774, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1864, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1865, + "id": 1968, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1774 }, + "default": { "type": "escort", "targetId": 1863 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.0675, - "currentRotary": 0.11607653546099694, + "currentSpeed": 0.12, + "currentRotary": -0.2925016320400844, "state": "maneuver", - "target": 1774, - "targetReached": true, + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -212361,11 +209519,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1774, + "targetId": 1863, "actions": [ - { "type": "move", "targetId": 1774, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1863 } ], - "ordersForSector": 26 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -212373,9 +209533,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 80.22726441899935, - "coord": [14.391075766885015, -9.847934517100962], - "sector": 26, + "angle": -140.73301187655983, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -212485,13 +209645,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -212499,35 +209659,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1774, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1863, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1866, + "id": 1969, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1773 }, + "default": { "type": "escort", "targetId": 1863 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.03913231758770053, - "state": "cruise", - "target": 1773, - "targetReached": true, + "currentSpeed": 0.12, + "currentRotary": -0.29250163204005597, + "state": "maneuver", + "target": 113, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -212536,11 +209696,13 @@ { "type": "escort", "origin": "auto", - "targetId": 1773, + "targetId": 1863, "actions": [ - { "type": "move", "targetId": 1773, "ignoreReached": true } + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 1863 } ], - "ordersForSector": 26 + "ordersForSector": 25 } ], "mask": "BigInt:134217728" @@ -212548,9 +209710,9 @@ "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -179.1580745955498, - "coord": [-15.842480098222952, -13.932093494616113], - "sector": 26, + "angle": -134.44982656938024, + "coord": [-4.802699061313426, -0.24285815089311708], + "sector": 7, "moved": true }, "render": { @@ -212660,13 +209822,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "ACT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -212674,66 +209836,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1773, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1863, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1867, + "id": 1970, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1773 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 5, + "ttc": 5, + "maneuver": 0.33, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.037460351724141194, + "currentSpeed": 5, + "currentRotary": -0.09794750105136041, "state": "cruise", - "target": 1773, - "targetReached": true, + "target": 2613, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1773, - "actions": [ - { "type": "move", "targetId": 1773, "ignoreReached": true } - ], - "ordersForSector": 26 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2613 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 210.47276876029787, - "coord": [-15.457874651223177, -14.268727593893143], - "sector": 26, + "angle": -11.627426342759128, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -212741,7 +209899,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -212821,27 +209979,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 80, "regen": 0.2, "value": 80 }, + "shield": { "max": 35, "regen": 2.5, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 1, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauCourier", + "value": "Tau Courier", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Courier", "mask": "BigInt:137438953472" }, "subordinates": { @@ -212849,66 +210007,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1773, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1054, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1868, - "tags": ["selection", "ship", "role:military"] + "id": 1971, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1772 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.5, - "currentRotary": -0.004975864265100327, + "currentSpeed": 1.3, + "currentRotary": -0.05584097103515262, "state": "cruise", - "target": 1772, - "targetReached": true, + "target": 2614, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1772, - "actions": [ - { "type": "move", "targetId": 1772, "ignoreReached": true } - ], - "ordersForSector": 26 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2614 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -277.5165385970817, - "coord": [-14.453248279951001, 20.712357779748224], - "sector": 26, + "angle": 0.8662246940627809, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -212916,7 +210070,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -212985,7 +210139,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -212996,27 +210150,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2.5, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -213024,74 +210178,166 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1772, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1054, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1869, - "tags": ["selection", "ship", "role:military"] + "id": 1972, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1772 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 5, + "ttc": 5, + "maneuver": 0.33, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.10562903522313283, - "state": "warming", - "target": 1772, - "targetReached": true, + "currentSpeed": 0.665, + "currentRotary": 0.0030396806073675897, + "state": "cruise", + "target": 909, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", "origin": "auto", - "targetId": 1772, + "type": "trade", "actions": [ - { "type": "move", "targetId": 1772, "ignoreReached": true } - ], - "ordersForSector": 26 + { "type": "move", "targetId": 909 }, + { "type": "dock", "targetId": 909 }, + { + "targetId": 909, + "offer": { + "initiator": 1973, + "quantity": 11, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": 28, "storage": 11 }, + "seller": { "budget": null, "storage": 3 } + }, + "price": 476, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1041 }, + { "type": "dock", "targetId": 1041 }, + { + "targetId": 1041, + "offer": { + "initiator": 1973, + "quantity": 11, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": null, "storage": 28 }, + "seller": { "budget": null, "storage": 12 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 237.57113071745025, - "coord": [-14.205476959840437, 21.04244766158555], - "sector": 26, + "angle": -27.484475247420605, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, + "allocationIdCounter": 13, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 11, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 660, + "type": "incoming", + "meta": { "tradeId": "909:1973:buy:660" }, + "id": 11 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 11, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 660, + "type": "outgoing", + "meta": { "tradeId": "1041:1973:sell:660" }, + "id": 12 + } + ], + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -213171,27 +210417,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 80, "regen": 0.2, "value": 80 }, + "shield": { "max": 35, "regen": 2.5, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 1, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauCourier", + "value": "Tau Courier", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Courier", "mask": "BigInt:137438953472" }, "subordinates": { @@ -213199,74 +210445,166 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1772, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1041, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 1870, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 1973, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1771 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": -0.009744486013155473, + "currentSpeed": 0.9975, + "currentRotary": 0.003039680607372919, "state": "cruise", - "target": 1771, - "targetReached": true, + "target": 909, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", "origin": "auto", - "targetId": 1771, + "type": "trade", "actions": [ - { "type": "move", "targetId": 1771, "ignoreReached": true } - ], - "ordersForSector": 26 + { "type": "move", "targetId": 909 }, + { "type": "dock", "targetId": 909 }, + { + "targetId": 909, + "offer": { + "initiator": 1974, + "quantity": 190, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": 32, "storage": 9 }, + "seller": { "budget": null, "storage": 7 } + }, + "price": 476, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1041 }, + { "type": "dock", "targetId": 1041 }, + { + "targetId": 1041, + "offer": { + "initiator": 1974, + "quantity": 190, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": null, "storage": 32 }, + "seller": { "budget": null, "storage": 10 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -199.1622104645799, - "coord": [-20.085914218964863, 12.156642160208822], - "sector": 26, + "angle": 3.9314512884773274, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, + "allocationIdCounter": 11, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 699, + "type": "incoming", + "meta": { "tradeId": "909:1974:buy:699" }, + "id": 9 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 699, + "type": "outgoing", + "meta": { "tradeId": "1041:1974:sell:699" }, + "id": 10 + } + ], + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -213335,7 +210673,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -213346,27 +210684,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2.5, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -213374,74 +210712,166 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1771, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1041, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1871, - "tags": ["selection", "ship", "role:military"] + "id": 1974, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1771 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": 0.017017527413190514, + "currentSpeed": 0.9975, + "currentRotary": 0.0030396806073675897, "state": "cruise", - "target": 1771, - "targetReached": true, + "target": 909, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", "origin": "auto", - "targetId": 1771, + "type": "trade", "actions": [ - { "type": "move", "targetId": 1771, "ignoreReached": true } - ], - "ordersForSector": 26 + { "type": "move", "targetId": 909 }, + { "type": "dock", "targetId": 909 }, + { + "targetId": 909, + "offer": { + "initiator": 1975, + "quantity": 190, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": 31, "storage": 9 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 476, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1041 }, + { "type": "dock", "targetId": 1041 }, + { + "targetId": 1041, + "offer": { + "initiator": 1975, + "quantity": 190, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": null, "storage": 31 }, + "seller": { "budget": null, "storage": 10 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 309.7627954237564, - "coord": [-19.955615824648163, 11.87850912800767], - "sector": 26, + "angle": -14.918104633061434, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, + "allocationIdCounter": 11, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 678, + "type": "incoming", + "meta": { "tradeId": "909:1975:buy:678" }, + "id": 9 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 678, + "type": "outgoing", + "meta": { "tradeId": "1041:1975:sell:678" }, + "id": 10 + } + ], + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -213510,7 +210940,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -213521,27 +210951,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2.5, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -213549,74 +210979,166 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1771, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1041, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1872, - "tags": ["selection", "ship", "role:military"] + "id": 1975, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1770 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.008133075075378304, + "currentSpeed": 0.9975, + "currentRotary": 0.003039680607372919, "state": "cruise", - "target": 1770, - "targetReached": true, + "target": 909, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", "origin": "auto", - "targetId": 1770, + "type": "trade", "actions": [ - { "type": "move", "targetId": 1770, "ignoreReached": true } - ], - "ordersForSector": 26 + { "type": "move", "targetId": 909 }, + { "type": "dock", "targetId": 909 }, + { + "targetId": 909, + "offer": { + "initiator": 1976, + "quantity": 190, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": 29, "storage": 9 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 476, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1041 }, + { "type": "dock", "targetId": 1041 }, + { + "targetId": 1041, + "offer": { + "initiator": 1976, + "quantity": 190, + "commodity": "gold", + "factionId": 242, + "budget": 1041, + "allocations": { + "buyer": { "budget": null, "storage": 29 }, + "seller": { "budget": null, "storage": 10 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -264.9946725322258, - "coord": [-14.388201922528877, 25.638629215421375], - "sector": 26, + "angle": -2.351734018702259, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, + "allocationIdCounter": 11, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 675, + "type": "incoming", + "meta": { "tradeId": "909:1976:buy:675" }, + "id": 9 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 675, + "type": "outgoing", + "meta": { "tradeId": "1041:1976:sell:675" }, + "id": 10 + } + ], + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -213685,7 +211207,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -213696,27 +211218,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2.5, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -213724,74 +211246,170 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1770, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1041, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1873, - "tags": ["selection", "ship", "role:military"] + "id": 1976, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1770 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.03469692765810928, - "state": "cruise", - "target": 1770, - "targetReached": true, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", "origin": "auto", - "targetId": 1770, + "type": "trade", "actions": [ - { "type": "move", "targetId": 1770, "ignoreReached": true } - ], - "ordersForSector": 26 + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, + { + "targetId": 885, + "offer": { + "initiator": 1977, + "quantity": 190, + "commodity": "fuel", + "factionId": 242, + "budget": 1032, + "allocations": { + "buyer": { "budget": 40, "storage": 27 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 65, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1032 }, + { "type": "dock", "targetId": 1032 }, + { + "targetId": 1032, + "offer": { + "initiator": 1977, + "quantity": 190, + "commodity": "fuel", + "factionId": 242, + "budget": 1032, + "allocations": { + "buyer": { "budget": null, "storage": 40 }, + "seller": { "budget": null, "storage": 28 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 112.0296856088387, - "coord": [-14.645509116820184, 25.883994817340945], - "sector": 26, + "angle": -737.5814370766675, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, + "allocationIdCounter": 29, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1278, + "type": "incoming", + "meta": { "tradeId": "885:1977:buy:1278" }, + "id": 27 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1278, + "type": "outgoing", + "meta": { "tradeId": "1032:1977:sell:1278" }, + "id": 28 + } + ], + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -213860,7 +211478,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -213871,27 +211489,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2.5, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -213899,74 +211517,165 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1770, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1032, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1874, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 1977, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1769 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 2.271644029972964, + "currentSpeed": 1.3, + "currentRotary": 3.1086244689504383e-15, "state": "cruise", - "target": 1769, - "targetReached": true, + "target": 957, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", "origin": "auto", - "targetId": 1769, + "type": "trade", "actions": [ - { "type": "move", "targetId": 1769, "ignoreReached": true } - ], - "ordersForSector": 26 + { "type": "move", "targetId": 957 }, + { "type": "dock", "targetId": 957 }, + { + "targetId": 957, + "offer": { + "initiator": 1978, + "quantity": 190, + "commodity": "water", + "factionId": 242, + "budget": 1032, + "allocations": { + "buyer": { "budget": 99, "storage": 109 }, + "seller": { "budget": null, "storage": 112 } + }, + "price": 32, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 1032 }, + { "type": "dock", "targetId": 1032 }, + { + "targetId": 1032, + "offer": { + "initiator": 1978, + "quantity": 190, + "commodity": "water", + "factionId": 242, + "budget": 1032, + "allocations": { + "buyer": { "budget": null, "storage": 99 }, + "seller": { "budget": null, "storage": 110 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -293.2012367895818, - "coord": [-14.606719406427715, 13.921673110143466], - "sector": 26, - "moved": true + "angle": 17.52135647112046, + "coord": [-13.580583603919, 1.7128977815546635], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, + "allocationIdCounter": 111, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 190 + }, + "issued": 3561, + "type": "incoming", + "meta": { "tradeId": "957:1978:buy:3561" }, + "id": 109 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 190 + }, + "issued": 3561, + "type": "outgoing", + "meta": { "tradeId": "1032:1978:sell:3561" }, + "id": 110 + } + ], + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -214035,7 +211744,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -214046,27 +211755,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 2.5, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -214074,66 +211783,66 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1769, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1032, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1875, - "tags": ["selection", "ship", "role:military"] + "id": 1978, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1769 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 5, + "ttc": 5, + "maneuver": 0.33, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.00009810226624828999, - "state": "cruise", - "target": 1769, - "targetReached": true, + "currentSpeed": 0.099, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1769, + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1769, "ignoreReached": true } + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2621 } ], - "ordersForSector": 26 + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 232, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 226.01902781807766, - "coord": [-14.825056276346366, 13.745136609465941], - "sector": 26, + "angle": -963.7761081351326, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { - "color": 16761677, + "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -214141,7 +211850,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -214221,27 +211930,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 80, "regen": 0.2, "value": 80 }, + "shield": { "max": 35, "regen": 2.5, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 1, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "tauCourier", + "value": "Tau Courier", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "ACT Fighter", + "value": "TAU Tau Courier", "mask": "BigInt:137438953472" }, "subordinates": { @@ -214249,11 +211958,11 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1769, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1024, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1876, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1979, + "tags": ["selection", "ship", "role:transport"] }, { "components": { @@ -214269,10 +211978,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 909, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -214284,48 +211993,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 909 }, - { "type": "dock", "targetId": 909 }, - { - "targetId": 909, - "offer": { - "initiator": 1877, - "quantity": 190, - "commodity": "water", - "factionId": 242, - "budget": 980, - "allocations": { - "buyer": { "budget": 123, "storage": 65 }, - "seller": { "budget": null, "storage": 152 } - }, - "price": 35, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 980 }, - { "type": "dock", "targetId": 980 }, - { - "targetId": 980, - "offer": { - "initiator": 1877, - "quantity": 190, - "commodity": "water", - "factionId": 242, - "budget": 980, - "allocations": { - "buyer": { "budget": null, "storage": 123 }, - "seller": { "budget": null, "storage": 66 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2622 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -214333,11 +212007,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 1.0550562890508797, - "coord": [-4.434435778815848, -2.4934954580074713], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -932.3601815992347, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -214350,63 +212023,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 67, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3576, - "type": "incoming", - "meta": { "tradeId": "909:1877:buy:3576" }, - "id": 65 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3576, - "type": "outgoing", - "meta": { "tradeId": "980:1877:sell:3576" }, - "id": 66 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 190, "availableWares": { "coolant": 0, @@ -214515,10 +212133,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 980, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1024, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1877, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 1980, "tags": ["selection", "ship", "role:transport"] }, { @@ -214534,12 +212152,12 @@ "cruise": 1.3, "ttc": 2.8, "maneuver": 0.15, - "active": false, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "active": true, + "currentSpeed": 0.9975, + "currentRotary": 0.003039680607378248, + "state": "cruise", + "target": 909, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -214553,17 +212171,40 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 909 }, + { "type": "dock", "targetId": 909 }, { - "targetId": 980, + "targetId": 909, "offer": { - "initiator": 1878, + "initiator": 1981, "quantity": 190, - "commodity": "water", + "commodity": "gold", "factionId": 242, - "budget": 980, + "budget": 1011, "allocations": { - "buyer": { "budget": null, "storage": 119 }, - "seller": { "budget": null, "storage": 64 } + "buyer": { "budget": 28, "storage": 11 }, + "seller": { "budget": null, "storage": 6 } + }, + "price": 476, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1011 }, + { "type": "dock", "targetId": 1011 }, + { + "targetId": 1011, + "offer": { + "initiator": 1981, + "quantity": 190, + "commodity": "gold", + "factionId": 242, + "budget": 1011, + "allocations": { + "buyer": { "budget": null, "storage": 28 }, + "seller": { "budget": null, "storage": 12 } }, "price": 0, "type": "sell" @@ -214578,11 +212219,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -22.434640151502002, - "coord": [-21.210253664014964, 6.847089986611024], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 35.347377824375265, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -214590,12 +212230,12 @@ "name": "render", "layer": "ship", "texture": "mCiv", - "visible": false, + "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 65, + "allocationIdCounter": 13, "allocations": [ { "amount": { @@ -214606,7 +212246,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -214617,12 +212257,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 + }, + "issued": 684, + "type": "incoming", + "meta": { "tradeId": "909:1981:buy:684" }, + "id": 11 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 190, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - "issued": 3477, + "issued": 684, "type": "outgoing", - "meta": { "tradeId": "980:1878:sell:3477" }, - "id": 64 + "meta": { "tradeId": "1011:1981:sell:684" }, + "id": 12 } ], "max": 190, @@ -214666,7 +212333,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, "quota": { "coolant": 0, @@ -214695,7 +212362,7 @@ "dockable": { "name": "dockable", "size": "medium", - "dockedIn": 980, + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { @@ -214733,10 +212400,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 980, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1011, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1878, + "id": 1981, "tags": ["selection", "ship", "role:transport"] }, { @@ -214753,10 +212420,10 @@ "ttc": 5, "maneuver": 0.33, "active": true, - "currentSpeed": 0.33, - "currentRotary": -5.329070518200751e-15, - "state": "maneuver", - "target": 83, + "currentSpeed": 1.665, + "currentRotary": -4.440892098500626e-16, + "state": "cruise", + "target": 1011, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -214771,23 +212438,19 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 83 }, - { "type": "teleport", "targetId": 81 }, - { "type": "move", "targetId": 79 }, - { "type": "teleport", "targetId": 77 }, - { "type": "move", "targetId": 967 }, - { "type": "dock", "targetId": 967 }, + { "type": "move", "targetId": 1011 }, + { "type": "dock", "targetId": 1011 }, { - "targetId": 967, + "targetId": 1011, "offer": { - "initiator": 1879, - "quantity": 11, + "initiator": 1982, + "quantity": 8, "commodity": "gold", "factionId": 242, - "budget": 967, + "budget": 1011, "allocations": { - "buyer": { "budget": null, "storage": 144 }, - "seller": { "budget": null, "storage": 38 } + "buyer": { "budget": null, "storage": 115 }, + "seller": { "budget": null, "storage": 96 } }, "price": 0, "type": "sell" @@ -214802,10 +212465,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.428016461669392, - "coord": [-20.619867974942522, 22.230564259790487], + "angle": 4.330886293158507, + "coord": [2.097722450147391, -20.91433929488431], "sector": 21, - "moved": true + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -214818,7 +212482,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 39, + "allocationIdCounter": 97, "allocations": [ { "amount": { @@ -214829,7 +212493,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 11, + "gold": 8, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -214842,10 +212506,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3483, + "issued": 3555, "type": "outgoing", - "meta": { "tradeId": "967:1879:sell:3483" }, - "id": 38 + "meta": { "tradeId": "1011:1982:sell:3555" }, + "id": 96 } ], "max": 11, @@ -214878,7 +212542,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 11, + "gold": 8, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -214956,10 +212620,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 967, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1011, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1879, + "id": 1982, "tags": ["selection", "ship", "role:transport"] }, { @@ -214976,10 +212640,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": -1.199040866595169e-14, + "currentSpeed": 0.9975, + "currentRotary": 0.003039680607372919, "state": "cruise", - "target": 81, + "target": 909, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -214994,44 +212658,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 81 }, - { "type": "teleport", "targetId": 83 }, - { "type": "move", "targetId": 885 }, - { "type": "dock", "targetId": 885 }, + { "type": "move", "targetId": 909 }, + { "type": "dock", "targetId": 909 }, { - "targetId": 885, + "targetId": 909, "offer": { - "initiator": 1880, + "initiator": 1983, "quantity": 190, - "commodity": "fuel", + "commodity": "gold", "factionId": 242, - "budget": 967, + "budget": 1011, "allocations": { - "buyer": { "budget": 122, "storage": 33 }, - "seller": { "budget": null, "storage": 203 } + "buyer": { "budget": 24, "storage": 9 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 41, + "price": 476, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 83 }, - { "type": "teleport", "targetId": 81 }, - { "type": "move", "targetId": 79 }, - { "type": "teleport", "targetId": 77 }, - { "type": "move", "targetId": 967 }, - { "type": "dock", "targetId": 967 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1011 }, + { "type": "dock", "targetId": 1011 }, { - "targetId": 967, + "targetId": 1011, "offer": { - "initiator": 1880, + "initiator": 1983, "quantity": 190, - "commodity": "fuel", + "commodity": "gold", "factionId": 242, - "budget": 967, + "budget": 1011, "allocations": { - "buyer": { "budget": null, "storage": 149 }, - "seller": { "budget": null, "storage": 34 } + "buyer": { "budget": null, "storage": 24 }, + "seller": { "budget": null, "storage": 10 } }, "price": 0, "type": "sell" @@ -215046,8 +212706,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 31.65943518294818, - "coord": [20.90068170652355, 4.479433771627906], + "angle": 3.9314512884773274, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -215062,7 +212722,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, + "allocationIdCounter": 11, "allocations": [ { "amount": { @@ -215071,9 +212731,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 190, + "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -215086,10 +212746,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3540, + "issued": 636, "type": "incoming", - "meta": { "tradeId": "885:1880:buy:3540" }, - "id": 33 + "meta": { "tradeId": "909:1983:buy:636" }, + "id": 9 }, { "amount": { @@ -215098,9 +212758,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 190, + "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 190, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -215113,10 +212773,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3540, + "issued": 636, "type": "outgoing", - "meta": { "tradeId": "967:1880:sell:3540" }, - "id": 34 + "meta": { "tradeId": "1011:1983:sell:636" }, + "id": 10 } ], "max": 190, @@ -215227,10 +212887,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 967, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1011, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1880, + "id": 1983, "tags": ["selection", "ship", "role:transport"] }, { @@ -215247,10 +212907,10 @@ "ttc": 5, "maneuver": 0.33, "active": true, - "currentSpeed": 0.033, - "currentRotary": 8.881784197001252e-16, - "state": "maneuver", - "target": 83, + "currentSpeed": 0.665, + "currentRotary": 0.0030396806073711424, + "state": "cruise", + "target": 909, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -215265,23 +212925,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 83 }, - { "type": "teleport", "targetId": 81 }, - { "type": "move", "targetId": 79 }, - { "type": "teleport", "targetId": 77 }, - { "type": "move", "targetId": 967 }, - { "type": "dock", "targetId": 967 }, + { "type": "move", "targetId": 909 }, + { "type": "dock", "targetId": 909 }, { - "targetId": 967, + "targetId": 909, "offer": { - "initiator": 1881, + "initiator": 1984, "quantity": 11, "commodity": "gold", "factionId": 242, - "budget": 967, + "budget": 1011, "allocations": { - "buyer": { "budget": null, "storage": 145 }, - "seller": { "budget": null, "storage": 40 } + "buyer": { "budget": 25, "storage": 11 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 476, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1011 }, + { "type": "dock", "targetId": 1011 }, + { + "targetId": 1011, + "offer": { + "initiator": 1984, + "quantity": 11, + "commodity": "gold", + "factionId": 242, + "budget": 1011, + "allocations": { + "buyer": { "budget": null, "storage": 25 }, + "seller": { "budget": null, "storage": 12 } }, "price": 0, "type": "sell" @@ -215296,9 +212973,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 6.563132113561564, - "coord": [-20.610749939813175, 22.19884899469555], - "sector": 21, + "angle": -46.334031168959356, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -215312,7 +212989,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, + "allocationIdCounter": 13, "allocations": [ { "amount": { @@ -215336,10 +213013,37 @@ "tauMetal": 0, "water": 0 }, - "issued": 3486, + "issued": 636, + "type": "incoming", + "meta": { "tradeId": "909:1984:buy:636" }, + "id": 11 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 11, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 636, "type": "outgoing", - "meta": { "tradeId": "967:1881:sell:3486" }, - "id": 40 + "meta": { "tradeId": "1011:1984:sell:636" }, + "id": 12 } ], "max": 11, @@ -215372,7 +213076,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 11, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -215450,10 +213154,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 967, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1011, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1881, + "id": 1984, "tags": ["selection", "ship", "role:transport"] }, { @@ -215470,10 +213174,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 861, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -215488,39 +213192,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "dock", "targetId": 861 }, + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, { - "targetId": 861, + "targetId": 885, "offer": { - "initiator": 1882, - "quantity": 36, - "commodity": "gold", + "initiator": 1985, + "quantity": 190, + "commodity": "fuel", "factionId": 242, - "budget": 967, + "budget": 1002, "allocations": { - "buyer": { "budget": 120, "storage": 33 }, - "seller": { "budget": null, "storage": 61 } + "buyer": { "budget": 42, "storage": 43 }, + "seller": { "budget": null, "storage": 10 } }, - "price": 774, + "price": 65, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 79 }, - { "type": "teleport", "targetId": 77 }, - { "type": "move", "targetId": 967 }, - { "type": "dock", "targetId": 967 }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1002 }, + { "type": "dock", "targetId": 1002 }, { - "targetId": 967, + "targetId": 1002, "offer": { - "initiator": 1882, - "quantity": 36, - "commodity": "gold", + "initiator": 1985, + "quantity": 190, + "commodity": "fuel", "factionId": 242, - "budget": 967, + "budget": 1002, "allocations": { - "buyer": { "budget": null, "storage": 147 }, - "seller": { "budget": null, "storage": 34 } + "buyer": { "budget": null, "storage": 42 }, + "seller": { "budget": null, "storage": 44 } }, "price": 0, "type": "sell" @@ -215535,8 +213244,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.579421201527203, - "coord": [-4.389036815577667, 22.441935452975482], + "angle": -655.9000280833329, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -215551,7 +213260,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, + "allocationIdCounter": 45, "allocations": [ { "amount": { @@ -215560,9 +213269,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 190, "fuelium": 0, - "gold": 36, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -215575,10 +213284,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3534, + "issued": 1374, "type": "incoming", - "meta": { "tradeId": "861:1882:buy:3534" }, - "id": 33 + "meta": { "tradeId": "885:1985:buy:1374" }, + "id": 43 }, { "amount": { @@ -215587,9 +213296,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 190, "fuelium": 0, - "gold": 36, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -215602,10 +213311,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3534, + "issued": 1374, "type": "outgoing", - "meta": { "tradeId": "967:1882:sell:3534" }, - "id": 34 + "meta": { "tradeId": "1002:1985:sell:1374" }, + "id": 44 } ], "max": 190, @@ -215716,10 +213425,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 967, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1002, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1882, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 1985, "tags": ["selection", "ship", "role:transport"] }, { @@ -215730,16 +213439,16 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 0.7504915783575616, - "cruise": 1.3, - "ttc": 2.8, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 5, + "ttc": 5, + "maneuver": 0.33, "active": true, - "currentSpeed": 0, - "currentRotary": -0.7504915783575616, - "state": "maneuver", - "target": 83, + "currentSpeed": 0.099, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -215754,23 +213463,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 83 }, - { "type": "teleport", "targetId": 81 }, { "type": "move", "targetId": 79 }, { "type": "teleport", "targetId": 77 }, - { "type": "move", "targetId": 954 }, - { "type": "dock", "targetId": 954 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, { - "targetId": 954, + "targetId": 885, "offer": { - "initiator": 1883, - "quantity": 190, - "commodity": "water", + "initiator": 1986, + "quantity": 11, + "commodity": "fuel", "factionId": 242, - "budget": 954, + "budget": 1002, "allocations": { - "buyer": { "budget": null, "storage": 100 }, - "seller": { "budget": null, "storage": 28 } + "buyer": { "budget": 40, "storage": 39 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 65, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1002 }, + { "type": "dock", "targetId": 1002 }, + { + "targetId": 1002, + "offer": { + "initiator": 1986, + "quantity": 11, + "commodity": "fuel", + "factionId": 242, + "budget": 1002, + "allocations": { + "buyer": { "budget": null, "storage": 40 }, + "seller": { "budget": null, "storage": 40 } }, "price": 0, "type": "sell" @@ -215785,9 +213515,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 15.820689291134574, - "coord": [-21.095050360916733, 22.493518282775067], - "sector": 21, + "angle": -731.2982517694879, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -215795,13 +213525,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 41, "allocations": [ { "amount": { @@ -215810,7 +213540,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -215823,15 +213553,42 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 + }, + "issued": 1275, + "type": "incoming", + "meta": { "tradeId": "885:1986:buy:1275" }, + "id": 39 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 11, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - "issued": 3381, + "issued": 1275, "type": "outgoing", - "meta": { "tradeId": "954:1883:sell:3381" }, - "id": 28 + "meta": { "tradeId": "1002:1986:sell:1275" }, + "id": 40 } ], - "max": 190, + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -215872,7 +213629,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, "quota": { "coolant": 0, @@ -215900,7 +213657,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -215911,12 +213668,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 990, "regen": 0.2, "value": 990 }, - "shield": { "max": 45, "regen": 5, "value": 45 }, + "hp": { "max": 80, "regen": 0.2, "value": 80 }, + "shield": { "max": 35, "regen": 2.5, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.5, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -215925,13 +213682,13 @@ }, "model": { "name": "model", - "slug": "tauFreighter", - "value": "Tau Freighter", + "slug": "tauCourier", + "value": "Tau Courier", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Freighter", + "value": "TAU Tau Courier", "mask": "BigInt:137438953472" }, "subordinates": { @@ -215939,10 +213696,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 954, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1002, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1883, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1986, "tags": ["selection", "ship", "role:transport"] }, { @@ -215959,10 +213716,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": 1.3322676295501878e-15, + "currentSpeed": 0.2625, + "currentRotary": -4.694187261122806e-10, "state": "cruise", - "target": 954, + "target": 995, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -215977,19 +213734,19 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 954 }, - { "type": "dock", "targetId": 954 }, + { "type": "move", "targetId": 995 }, + { "type": "dock", "targetId": 995 }, { - "targetId": 954, + "targetId": 995, "offer": { - "initiator": 1884, - "quantity": 190, + "initiator": 1987, + "quantity": 27, "commodity": "water", "factionId": 242, - "budget": 954, + "budget": 995, "allocations": { - "buyer": { "budget": null, "storage": 96 }, - "seller": { "budget": null, "storage": 28 } + "buyer": { "budget": null, "storage": 46 }, + "seller": { "budget": null, "storage": 92 } }, "price": 0, "type": "sell" @@ -216004,10 +213761,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -16.05850546965316, - "coord": [-9.987360685700562, -9.630725102635548], - "sector": 19, - "moved": true + "angle": 13.284171898419903, + "coord": [-12.822133559725831, 1.5214480369331964], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -216020,7 +213778,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 93, "allocations": [ { "amount": { @@ -216042,12 +213800,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 27 }, - "issued": 3312, + "issued": 3558, "type": "outgoing", - "meta": { "tradeId": "954:1884:sell:3312" }, - "id": 28 + "meta": { "tradeId": "995:1987:sell:3558" }, + "id": 92 } ], "max": 190, @@ -216091,7 +213849,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 27 }, "quota": { "coolant": 0, @@ -216158,10 +213916,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 954, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 995, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1884, + "id": 1987, "tags": ["selection", "ship", "role:transport"] }, { @@ -216178,10 +213936,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 954, + "currentSpeed": 0.2625, + "currentRotary": -0.18604607373238835, + "state": "cruise", + "target": 2630, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -216193,29 +213951,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 954 }, - { "type": "dock", "targetId": 954 }, - { - "targetId": 954, - "offer": { - "initiator": 1885, - "quantity": 190, - "commodity": "water", - "factionId": 242, - "budget": 954, - "allocations": { - "buyer": { "budget": null, "storage": 97 }, - "seller": { "budget": null, "storage": 32 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2630 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -216223,9 +213961,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -72.01314858398001, - "coord": [-13.36476938155852, -18.867625854573014], - "sector": 19, + "angle": -28.295797194006784, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -216239,36 +213977,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3327, - "type": "outgoing", - "meta": { "tradeId": "954:1885:sell:3327" }, - "id": 32 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 190, "availableWares": { "coolant": 0, @@ -216310,7 +214020,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, "quota": { "coolant": 0, @@ -216377,10 +214087,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 954, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 988, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1885, + "id": 1988, "tags": ["selection", "ship", "role:transport"] }, { @@ -216397,9 +214107,9 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": 0, - "state": "cruise", + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", "target": 79, "targetReached": false, "name": "drive", @@ -216412,31 +214122,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ { "type": "move", "targetId": 79 }, { "type": "teleport", "targetId": 77 }, - { "type": "move", "targetId": 954 }, - { "type": "dock", "targetId": 954 }, - { - "targetId": 954, - "offer": { - "initiator": 1886, - "quantity": 190, - "commodity": "water", - "factionId": 242, - "budget": 954, - "allocations": { - "buyer": { "budget": null, "storage": 99 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 2631 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -216444,8 +214136,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 22.23478564072697, - "coord": [25.771217967197476, -15.103917067737436], + "angle": -932.3601815992347, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -216460,36 +214152,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3360, - "type": "outgoing", - "meta": { "tradeId": "954:1886:sell:3360" }, - "id": 28 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 190, "availableWares": { "coolant": 0, @@ -216531,7 +214195,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, "quota": { "coolant": 0, @@ -216598,10 +214262,172 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 954, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 981, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 1989, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 5, + "ttc": 5, + "maneuver": 0.33, + "active": false, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": null, + "targetReached": true, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -104.15819687046877, + "coord": [3.5229955634285774, 15.513778767648557], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9778411, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sCiv", + "visible": false, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 105, + "allocations": [], + "max": 11, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": 1041, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 80, "regen": 0.2, "value": 80 }, + "shield": { "max": 35, "regen": 2.5, "value": 35 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "tauCourier", + "value": "Tau Courier", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "TAU Tau Courier", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 969, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1886, + "id": 1990, "tags": ["selection", "ship", "role:transport"] }, { @@ -216618,11 +214444,11 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.3, + "currentRotary": -8.881784197001252e-16, + "state": "cruise", + "target": 957, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -216636,39 +214462,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "dock", "targetId": 909 }, + { "type": "move", "targetId": 957 }, + { "type": "dock", "targetId": 957 }, { - "targetId": 909, + "targetId": 957, "offer": { - "initiator": 1887, - "quantity": 24, + "initiator": 1991, + "quantity": 190, "commodity": "water", "factionId": 242, - "budget": 947, + "budget": 957, "allocations": { - "buyer": { "budget": 31, "storage": 41 }, - "seller": { "budget": null, "storage": 151 } + "buyer": { "budget": null, "storage": 89 }, + "seller": { "budget": null, "storage": 113 } }, - "price": 35, + "price": 0, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 947 }, - { "type": "dock", "targetId": 947 }, + { "type": "move", "targetId": 1011 }, + { "type": "dock", "targetId": 1011 }, { - "targetId": 947, + "targetId": 1011, "offer": { - "initiator": 1887, - "quantity": 24, + "initiator": 1991, + "quantity": 190, "commodity": "water", "factionId": 242, - "budget": 947, + "budget": 957, "allocations": { - "buyer": { "budget": null, "storage": 31 }, - "seller": { "budget": null, "storage": 42 } + "buyer": { "budget": 117, "storage": 117 }, + "seller": { "budget": null, "storage": 90 } }, - "price": 0, + "price": 35, "type": "sell" }, "type": "trade" @@ -216681,8 +214508,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -29.9665771790608, - "coord": [32.82320131543624, -23.634319000340774], + "angle": -13.901858640397009, + "coord": [0.509034129418716, 5.2305896618620515], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -216698,7 +214525,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, + "allocationIdCounter": 91, "allocations": [ { "amount": { @@ -216720,12 +214547,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24 + "water": 190 }, - "issued": 3558, + "issued": 3576, "type": "incoming", - "meta": { "tradeId": "909:1887:buy:3558" }, - "id": 41 + "meta": { "tradeId": "957:1991:buy:3576" }, + "id": 89 }, { "amount": { @@ -216747,12 +214574,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24 + "water": 190 }, - "issued": 3558, + "issued": 3576, "type": "outgoing", - "meta": { "tradeId": "947:1887:sell:3558" }, - "id": 42 + "meta": { "tradeId": "1011:1991:sell:3576" }, + "id": 90 } ], "max": 190, @@ -216863,10 +214690,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 947, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 957, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1887, + "id": 1991, "tags": ["selection", "ship", "role:transport"] }, { @@ -216883,10 +214710,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": 2.042810365310288e-14, - "state": "cruise", - "target": 81, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -216901,42 +214728,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 81 }, - { "type": "teleport", "targetId": 83 }, - { "type": "move", "targetId": 909 }, - { "type": "dock", "targetId": 909 }, + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, { - "targetId": 909, + "targetId": 885, "offer": { - "initiator": 1888, - "quantity": 24, - "commodity": "water", + "initiator": 1992, + "quantity": 190, + "commodity": "fuel", "factionId": 242, - "budget": 940, + "budget": 945, "allocations": { - "buyer": { "budget": 14, "storage": 27 }, - "seller": { "budget": null, "storage": 153 } + "buyer": { "budget": 13, "storage": 25 }, + "seller": { "budget": null, "storage": 3 } }, - "price": 35, + "price": 65, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 83 }, - { "type": "teleport", "targetId": 81 }, - { "type": "move", "targetId": 940 }, - { "type": "dock", "targetId": 940 }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 945 }, + { "type": "dock", "targetId": 945 }, { - "targetId": 940, + "targetId": 945, "offer": { - "initiator": 1888, - "quantity": 24, - "commodity": "water", + "initiator": 1992, + "quantity": 190, + "commodity": "fuel", "factionId": 242, - "budget": 940, + "budget": 945, "allocations": { - "buyer": { "budget": null, "storage": 14 }, - "seller": { "budget": null, "storage": 28 } + "buyer": { "budget": null, "storage": 58 }, + "seller": { "budget": null, "storage": 26 } }, "price": 0, "type": "sell" @@ -216951,8 +214780,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 126.61658023593317, - "coord": [5.274400339611547, -5.461986505937145], + "angle": -643.3336574689737, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -216967,7 +214796,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 27, "allocations": [ { "amount": { @@ -216976,7 +214805,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 190, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -216989,12 +214818,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24 + "water": 0 }, - "issued": 3585, + "issued": 1272, "type": "incoming", - "meta": { "tradeId": "909:1888:buy:3585" }, - "id": 27 + "meta": { "tradeId": "885:1992:buy:1272" }, + "id": 25 }, { "amount": { @@ -217003,7 +214832,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 190, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -217016,12 +214845,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 24 + "water": 0 }, - "issued": 3585, + "issued": 1272, "type": "outgoing", - "meta": { "tradeId": "940:1888:sell:3585" }, - "id": 28 + "meta": { "tradeId": "945:1992:sell:1272" }, + "id": 26 } ], "max": 190, @@ -217132,10 +214961,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 940, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 945, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1888, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 1992, "tags": ["selection", "ship", "role:transport"] }, { @@ -217153,9 +214982,9 @@ "maneuver": 0.33, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -1.1868238913561442, "state": "maneuver", - "target": 933, + "target": 1011, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -217170,20 +214999,21 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "dock", "targetId": 933 }, + { "type": "move", "targetId": 1011 }, + { "type": "dock", "targetId": 1011 }, { - "targetId": 933, + "targetId": 1011, "offer": { - "initiator": 1889, + "initiator": 1993, "quantity": 11, - "commodity": "water", + "commodity": "fuel", "factionId": 242, "budget": 933, "allocations": { - "buyer": { "budget": null, "storage": 18 }, - "seller": { "budget": null, "storage": 36 } + "buyer": { "budget": 116, "storage": 116 }, + "seller": { "budget": null, "storage": 116 } }, - "price": 0, + "price": 52, "type": "sell" }, "type": "trade" @@ -217196,10 +215026,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -19.36005473354857, - "coord": [-4.979776545428481, -3.8957393677901107], - "sector": 19, - "moved": true + "angle": -66.00674005798682, + "coord": [-20.325850227737803, -12.914017240629711], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -217212,7 +215043,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, + "allocationIdCounter": 117, "allocations": [ { "amount": { @@ -217221,7 +215052,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -217234,12 +215065,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 11 + "water": 0 }, - "issued": 3420, + "issued": 3564, "type": "outgoing", - "meta": { "tradeId": "933:1889:sell:3420" }, - "id": 36 + "meta": { "tradeId": "1011:1993:sell:3564" }, + "id": 116 } ], "max": 11, @@ -217270,7 +215101,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -217283,7 +215114,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 11 + "water": 0 }, "quota": { "coolant": 0, @@ -217353,7 +215184,7 @@ "commander": { "name": "commander", "id": 933, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1889, + "id": 1993, "tags": ["selection", "ship", "role:transport"] }, { @@ -217370,9 +215201,9 @@ "ttc": 5, "maneuver": 0.33, "active": true, - "currentSpeed": 3.665, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", + "currentSpeed": 0, + "currentRotary": -0.8256270270278643, + "state": "warming", "target": 921, "targetReached": false, "name": "drive", @@ -217393,39 +215224,37 @@ { "targetId": 921, "offer": { - "initiator": 1890, + "initiator": 1994, "quantity": 11, - "commodity": "metals", + "commodity": "water", "factionId": 242, "budget": 921, "allocations": { - "buyer": { "budget": null, "storage": 39 }, - "seller": { "budget": null, "storage": 37 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 83 }, - { "type": "teleport", "targetId": 81 }, - { "type": "move", "targetId": 79 }, - { "type": "teleport", "targetId": 77 }, - { "type": "move", "targetId": 967 }, - { "type": "dock", "targetId": 967 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 1041 }, + { "type": "dock", "targetId": 1041 }, { - "targetId": 967, + "targetId": 1041, "offer": { - "initiator": 1890, + "initiator": 1994, "quantity": 11, - "commodity": "metals", + "commodity": "water", "factionId": 242, "budget": 921, "allocations": { - "buyer": { "budget": 121, "storage": 148 }, - "seller": { "budget": null, "storage": 40 } + "buyer": { "budget": 82, "storage": 82 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 93, + "price": 38, "type": "sell" }, "type": "trade" @@ -217438,9 +215267,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 13.367030650097423, - "coord": [-9.327055823883255, 11.14972118266718], - "sector": 21, + "angle": -67.15200683316625, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -217454,7 +215283,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -217470,18 +215299,18 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 11, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 11 }, - "issued": 3534, + "issued": 3378, "type": "incoming", - "meta": { "tradeId": "921:1890:buy:3534" }, - "id": 39 + "meta": { "tradeId": "921:1994:buy:3378" }, + "id": 1 }, { "amount": { @@ -217497,18 +215326,18 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 11, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 11 }, - "issued": 3534, + "issued": 3378, "type": "outgoing", - "meta": { "tradeId": "967:1890:sell:3534" }, - "id": 40 + "meta": { "tradeId": "1041:1994:sell:3378" }, + "id": 2 } ], "max": 11, @@ -217621,8 +215450,8 @@ }, "commander": { "name": "commander", "id": 921, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1890, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1994, "tags": ["selection", "ship", "role:transport"] }, { @@ -217639,10 +215468,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": 0, + "currentSpeed": 0.9975, + "currentRotary": 0.003282955763264983, "state": "cruise", - "target": 980, + "target": 2637, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -217654,29 +215483,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 980 }, - { "type": "dock", "targetId": 980 }, - { - "targetId": 980, - "offer": { - "initiator": 1891, - "quantity": 190, - "commodity": "water", - "factionId": 242, - "budget": 909, - "allocations": { - "buyer": { "budget": 121, "storage": 121 }, - "seller": { "budget": null, "storage": 56 } - }, - "price": 41, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2637 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -217684,11 +215493,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.0836780315718344, - "coord": [-7.567773485017853, -0.8511775803524202], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -2.35045427111861, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -217701,36 +215509,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 57, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 190 - }, - "issued": 3495, - "type": "outgoing", - "meta": { "tradeId": "980:1891:sell:3495" }, - "id": 56 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 190, "availableWares": { "coolant": 0, @@ -217772,7 +215552,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 190 + "water": 0 }, "quota": { "coolant": 0, @@ -217842,7 +215622,7 @@ "commander": { "name": "commander", "id": 909, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1891, + "id": 1995, "tags": ["selection", "ship", "role:transport"] }, { @@ -217859,10 +215639,10 @@ "ttc": 5, "maneuver": 0.33, "active": true, - "currentSpeed": 0.132, - "currentRotary": -4.440892098500626e-16, - "state": "maneuver", - "target": 885, + "currentSpeed": 0.099, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -217874,48 +215654,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 885 }, - { "type": "dock", "targetId": 885 }, - { - "targetId": 885, - "offer": { - "initiator": 1892, - "quantity": 11, - "commodity": "fuel", - "factionId": 242, - "budget": 897, - "allocations": { - "buyer": { "budget": 66, "storage": 87 }, - "seller": { "budget": null, "storage": 204 } - }, - "price": 41, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 897 }, - { "type": "dock", "targetId": 897 }, - { - "targetId": 897, - "offer": { - "initiator": 1892, - "quantity": 11, - "commodity": "fuel", - "factionId": 242, - "budget": 897, - "allocations": { - "buyer": { "budget": null, "storage": 148 }, - "seller": { "budget": null, "storage": 88 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2638 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -217923,11 +215668,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.8145549418768234, - "coord": [-6.95360292337689, -16.493057830492464], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -963.7761081351326, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -217940,63 +215684,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 89, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3570, - "type": "incoming", - "meta": { "tradeId": "885:1892:buy:3570" }, - "id": 87 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3570, - "type": "outgoing", - "meta": { "tradeId": "897:1892:sell:3570" }, - "id": 88 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 11, "availableWares": { "coolant": 0, @@ -218107,8 +215796,8 @@ }, "commander": { "name": "commander", "id": 897, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1892, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1996, "tags": ["selection", "ship", "role:transport"] }, { @@ -218119,16 +215808,16 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 5, - "ttc": 5, - "maneuver": 0.33, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": -1.1868238913561442, - "state": "maneuver", - "target": 885, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -218140,48 +215829,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 885 }, - { "type": "dock", "targetId": 885 }, - { - "targetId": 885, - "offer": { - "initiator": 1893, - "quantity": 11, - "commodity": "fuel", - "factionId": 242, - "budget": 885, - "allocations": { - "buyer": { "budget": null, "storage": 89 }, - "seller": { "budget": null, "storage": 205 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 980 }, - { "type": "dock", "targetId": 980 }, - { - "targetId": 980, - "offer": { - "initiator": 1893, - "quantity": 11, - "commodity": "fuel", - "factionId": 242, - "budget": 885, - "allocations": { - "buyer": { "budget": 124, "storage": 124 }, - "seller": { "budget": null, "storage": 90 } - }, - "price": 51, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2639 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -218189,81 +215843,25 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -39.52069495432646, - "coord": [-5.565305277887232, -18.40527003573981], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -932.3601815992347, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 91, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "incoming", - "meta": { "tradeId": "885:1893:buy:3579" }, - "id": 89 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 11, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "outgoing", - "meta": { "tradeId": "980:1893:sell:3579" }, - "id": 90 - } - ], - "max": 11, + "allocationIdCounter": 1, + "allocations": [], + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -218332,7 +215930,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -218343,12 +215941,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 80, "regen": 0.2, "value": 80 }, - "shield": { "max": 35, "regen": 2.5, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2.5, "range": 1, "cooldown": 0.3, "name": "damage", @@ -218357,13 +215955,13 @@ }, "model": { "name": "model", - "slug": "tauCourier", - "value": "Tau Courier", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Courier", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -218373,8 +215971,8 @@ }, "commander": { "name": "commander", "id": 885, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1893, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 1997, "tags": ["selection", "ship", "role:transport"] }, { @@ -218385,16 +215983,16 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 0.7504915783575616, - "cruise": 1.3, - "ttc": 2.8, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 5, + "ttc": 5, + "maneuver": 0.33, "active": true, - "currentSpeed": 1.3, - "currentRotary": -7.549516567451064e-15, - "state": "cruise", - "target": 81, + "currentSpeed": 0.099, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -218409,23 +216007,46 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, + { + "targetId": 885, + "offer": { + "initiator": 1998, + "quantity": 11, + "commodity": "fuel", + "factionId": 242, + "budget": 873, + "allocations": { + "buyer": { "budget": 34, "storage": 35 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 65, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, { "type": "move", "targetId": 81 }, { "type": "teleport", "targetId": 83 }, - { "type": "move", "targetId": 947 }, - { "type": "dock", "targetId": 947 }, + { "type": "move", "targetId": 873 }, + { "type": "dock", "targetId": 873 }, { - "targetId": 947, + "targetId": 873, "offer": { - "initiator": 1894, - "quantity": 33, - "commodity": "water", + "initiator": 1998, + "quantity": 11, + "commodity": "fuel", "factionId": 242, "budget": 873, "allocations": { - "buyer": { "budget": 30, "storage": 30 }, - "seller": { "budget": null, "storage": 40 } + "buyer": { "budget": null, "storage": 35 }, + "seller": { "budget": null, "storage": 36 } }, - "price": 36, + "price": 0, "type": "sell" }, "type": "trade" @@ -218438,8 +216059,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 32.3889878889521, - "coord": [-0.11123020718968601, -2.453789256797851], + "angle": -768.9973636125654, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -218448,13 +216069,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, + "allocationIdCounter": 37, "allocations": [ { "amount": { @@ -218463,7 +216084,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -218476,15 +216097,42 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 33 + "water": 0 }, - "issued": 3501, + "issued": 1266, + "type": "incoming", + "meta": { "tradeId": "885:1998:buy:1266" }, + "id": 35 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 11, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1266, "type": "outgoing", - "meta": { "tradeId": "947:1894:sell:3501" }, - "id": 40 + "meta": { "tradeId": "873:1998:sell:1266" }, + "id": 36 } ], - "max": 190, + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -218525,7 +216173,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 33 + "water": 0 }, "quota": { "coolant": 0, @@ -218553,7 +216201,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -218564,12 +216212,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 990, "regen": 0.2, "value": 990 }, - "shield": { "max": 45, "regen": 5, "value": 45 }, + "hp": { "max": 80, "regen": 0.2, "value": 80 }, + "shield": { "max": 35, "regen": 2.5, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.5, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -218578,13 +216226,13 @@ }, "model": { "name": "model", - "slug": "tauFreighter", - "value": "Tau Freighter", + "slug": "tauCourier", + "value": "Tau Courier", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Freighter", + "value": "TAU Tau Courier", "mask": "BigInt:137438953472" }, "subordinates": { @@ -218594,8 +216242,8 @@ }, "commander": { "name": "commander", "id": 873, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1894, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 1998, "tags": ["selection", "ship", "role:transport"] }, { @@ -218612,10 +216260,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": 0, - "state": "cruise", - "target": 885, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -218630,39 +216278,43 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, { "type": "move", "targetId": 885 }, { "type": "dock", "targetId": 885 }, { "targetId": 885, "offer": { - "initiator": 1895, + "initiator": 1999, "quantity": 190, "commodity": "fuel", "factionId": 242, - "budget": 861, + "budget": 873, "allocations": { - "buyer": { "budget": 17, "storage": 33 }, - "seller": { "budget": null, "storage": 202 } + "buyer": { "budget": 35, "storage": 33 }, + "seller": { "budget": null, "storage": 7 } }, - "price": 41, + "price": 65, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 83 }, - { "type": "teleport", "targetId": 81 }, - { "type": "move", "targetId": 861 }, - { "type": "dock", "targetId": 861 }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 873 }, + { "type": "dock", "targetId": 873 }, { - "targetId": 861, + "targetId": 873, "offer": { - "initiator": 1895, + "initiator": 1999, "quantity": 190, "commodity": "fuel", "factionId": 242, - "budget": 861, + "budget": 873, "allocations": { - "buyer": { "budget": null, "storage": 60 }, + "buyer": { "budget": null, "storage": 36 }, "seller": { "budget": null, "storage": 34 } }, "price": 0, @@ -218678,9 +216330,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 6.622942248700368, - "coord": [-14.607430548354074, 5.204272040106056], - "sector": 21, + "angle": -718.7318811551288, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -218718,9 +216370,9 @@ "tauMetal": 0, "water": 0 }, - "issued": 3528, + "issued": 1284, "type": "incoming", - "meta": { "tradeId": "885:1895:buy:3528" }, + "meta": { "tradeId": "885:1999:buy:1284" }, "id": 33 }, { @@ -218745,9 +216397,9 @@ "tauMetal": 0, "water": 0 }, - "issued": 3528, + "issued": 1284, "type": "outgoing", - "meta": { "tradeId": "861:1895:sell:3528" }, + "meta": { "tradeId": "873:1999:sell:1284" }, "id": 34 } ], @@ -218859,10 +216511,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 861, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 873, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1895, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 1999, "tags": ["selection", "ship", "role:transport"] }, { @@ -218873,16 +216525,16 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 0.7504915783575616, - "cruise": 1.3, - "ttc": 2.8, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 5, + "ttc": 5, + "maneuver": 0.33, "active": true, - "currentSpeed": 0.13499999999999998, - "currentRotary": -0.000034095842869508175, - "state": "maneuver", - "target": 967, + "currentSpeed": 0.099, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -218897,21 +216549,46 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 967 }, - { "type": "dock", "targetId": 967 }, + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, { - "targetId": 967, + "targetId": 885, "offer": { - "initiator": 1896, - "quantity": 190, - "commodity": "metals", + "initiator": 2000, + "quantity": 11, + "commodity": "fuel", + "factionId": 242, + "budget": 243, + "allocations": { + "buyer": { "budget": 44, "storage": 31 }, + "seller": { "budget": null, "storage": 6 } + }, + "price": 65, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 243 }, + { "type": "dock", "targetId": 243 }, + { + "targetId": 243, + "offer": { + "initiator": 2000, + "quantity": 11, + "commodity": "fuel", "factionId": 242, - "budget": 849, + "budget": 243, "allocations": { - "buyer": { "budget": 123, "storage": 150 }, - "seller": { "budget": null, "storage": 104 } + "buyer": { "budget": null, "storage": 44 }, + "seller": { "budget": null, "storage": 32 } }, - "price": 93, + "price": 0, "type": "sell" }, "type": "trade" @@ -218924,9 +216601,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -10.843667147884283, - "coord": [-18.044330852184558, 5.596629560494218], - "sector": 19, + "angle": -725.0150664623084, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -218934,13 +216611,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 105, + "allocationIdCounter": 33, "allocations": [ { "amount": { @@ -218949,14 +216626,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 11, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 190, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -218964,13 +216641,40 @@ "tauMetal": 0, "water": 0 }, - "issued": 3546, + "issued": 1281, + "type": "incoming", + "meta": { "tradeId": "885:2000:buy:1281" }, + "id": 31 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 11, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1281, "type": "outgoing", - "meta": { "tradeId": "967:1896:sell:3546" }, - "id": 104 + "meta": { "tradeId": "243:2000:sell:1281" }, + "id": 32 } ], - "max": 190, + "max": 11, "availableWares": { "coolant": 0, "drones": 0, @@ -219005,7 +216709,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 190, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -219039,7 +216743,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -219050,12 +216754,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 990, "regen": 0.2, "value": 990 }, - "shield": { "max": 45, "regen": 5, "value": 45 }, + "hp": { "max": 80, "regen": 0.2, "value": 80 }, + "shield": { "max": 35, "regen": 2.5, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.5, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -219064,13 +216768,13 @@ }, "model": { "name": "model", - "slug": "tauFreighter", - "value": "Tau Freighter", + "slug": "tauCourier", + "value": "Tau Courier", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Freighter", + "value": "TAU Tau Courier", "mask": "BigInt:137438953472" }, "subordinates": { @@ -219078,10 +216782,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 849, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 243, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1896, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 2000, "tags": ["selection", "ship", "role:transport"] }, { @@ -219098,10 +216802,10 @@ "ttc": 2.8, "maneuver": 0.15, "active": true, - "currentSpeed": 1.3, - "currentRotary": 1.7763568394002505e-15, - "state": "cruise", - "target": 837, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -219116,21 +216820,23 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 837 }, - { "type": "dock", "targetId": 837 }, + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, { - "targetId": 837, + "targetId": 885, "offer": { - "initiator": 1897, + "initiator": 2001, "quantity": 190, "commodity": "fuel", "factionId": 242, - "budget": 837, + "budget": 243, "allocations": { - "buyer": { "budget": null, "storage": 29 }, - "seller": { "budget": null, "storage": 27 } + "buyer": { "budget": 45, "storage": 29 }, + "seller": { "budget": null, "storage": 8 } }, - "price": 0, + "price": 65, "type": "buy" }, "type": "trade" @@ -219144,16 +216850,16 @@ { "targetId": 243, "offer": { - "initiator": 1897, + "initiator": 2001, "quantity": 190, "commodity": "fuel", "factionId": 242, - "budget": 837, + "budget": 243, "allocations": { - "buyer": { "budget": 66, "storage": 66 }, + "buyer": { "budget": null, "storage": 45 }, "seller": { "budget": null, "storage": 30 } }, - "price": 47, + "price": 0, "type": "sell" }, "type": "trade" @@ -219166,9 +216872,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -48.172812809519506, - "coord": [-0.33112572062494117, -11.372603645145876], - "sector": 19, + "angle": -706.1655105407696, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -219206,9 +216912,9 @@ "tauMetal": 0, "water": 0 }, - "issued": 3516, + "issued": 1290, "type": "incoming", - "meta": { "tradeId": "837:1897:buy:3516" }, + "meta": { "tradeId": "885:2001:buy:1290" }, "id": 29 }, { @@ -219233,9 +216939,9 @@ "tauMetal": 0, "water": 0 }, - "issued": 3516, + "issued": 1290, "type": "outgoing", - "meta": { "tradeId": "243:1897:sell:3516" }, + "meta": { "tradeId": "243:2001:sell:1290" }, "id": 30 } ], @@ -219347,10 +217053,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 837, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 243, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1897, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 2001, "tags": ["selection", "ship", "role:transport"] }, { @@ -219361,16 +217067,16 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 5, - "ttc": 5, - "maneuver": 0.33, + "acceleration": 0.15, + "rotary": 0.7504915783575616, + "cruise": 1.3, + "ttc": 2.8, + "maneuver": 0.15, "active": true, - "currentSpeed": 2.165, - "currentRotary": 1.3322676295501878e-15, - "state": "cruise", - "target": 825, + "currentSpeed": 0.045, + "currentRotary": -0.04204828702175156, + "state": "warming", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -219385,19 +217091,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 825 }, - { "type": "dock", "targetId": 825 }, + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 885 }, + { "type": "dock", "targetId": 885 }, { - "targetId": 825, + "targetId": 885, "offer": { - "initiator": 1898, - "quantity": 11, + "initiator": 2002, + "quantity": 190, "commodity": "fuel", "factionId": 242, - "budget": 825, + "budget": 243, + "allocations": { + "buyer": { "budget": 46, "storage": 29 }, + "seller": { "budget": null, "storage": 9 } + }, + "price": 65, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 243 }, + { "type": "dock", "targetId": 243 }, + { + "targetId": 243, + "offer": { + "initiator": 2002, + "quantity": 190, + "commodity": "fuel", + "factionId": 242, + "budget": 243, "allocations": { "buyer": { "budget": null, "storage": 46 }, - "seller": { "budget": null, "storage": 40 } + "seller": { "budget": null, "storage": 30 } }, "price": 0, "type": "sell" @@ -219412,9 +217143,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -22.265948378093455, - "coord": [-11.687000108457237, -12.946766105259172], - "sector": 19, + "angle": -681.0327693120512, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -219422,13 +217153,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, + "allocationIdCounter": 31, "allocations": [ { "amount": { @@ -219437,7 +217168,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 11, + "fuel": 190, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -219452,13 +217183,40 @@ "tauMetal": 0, "water": 0 }, - "issued": 3456, + "issued": 1290, + "type": "incoming", + "meta": { "tradeId": "885:2002:buy:1290" }, + "id": 29 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 190, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1290, "type": "outgoing", - "meta": { "tradeId": "825:1898:sell:3456" }, - "id": 40 + "meta": { "tradeId": "243:2002:sell:1290" }, + "id": 30 } ], - "max": 11, + "max": 190, "availableWares": { "coolant": 0, "drones": 0, @@ -219486,7 +217244,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 11, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -219527,7 +217285,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -219538,12 +217296,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 80, "regen": 0.2, "value": 80 }, - "shield": { "max": 35, "regen": 2.5, "value": 35 }, + "hp": { "max": 990, "regen": 0.2, "value": 990 }, + "shield": { "max": 45, "regen": 5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2.5, "range": 1, "cooldown": 0.3, "name": "damage", @@ -219552,13 +217310,13 @@ }, "model": { "name": "model", - "slug": "tauCourier", - "value": "Tau Courier", + "slug": "tauFreighter", + "value": "Tau Freighter", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Courier", + "value": "TAU Tau Freighter", "mask": "BigInt:137438953472" }, "subordinates": { @@ -219566,30 +217324,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 825, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 243, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1898, + "cooldowns": { "timers": { "cruise": 1.7999999999999998 } }, + "id": 2002, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 21 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 0.7504915783575616, - "cruise": 1.3, - "ttc": 2.8, - "maneuver": 0.15, + "acceleration": 0.13, + "rotary": 1.9896753472735356, + "cruise": 5, + "ttc": 1, + "maneuver": 0.5, "active": true, - "currentSpeed": 1.3, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 825, + "currentSpeed": 0.065, + "currentRotary": 1.3322676295501878e-15, + "state": "maneuver", + "target": 969, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -219602,28 +217360,35 @@ "value": [ { "origin": "auto", - "type": "trade", "actions": [ - { "type": "move", "targetId": 825 }, - { "type": "dock", "targetId": 825 }, + { "type": "move", "targetId": 969 }, + { "type": "dock", "targetId": 969 }, { - "targetId": 825, + "targetId": 969, "offer": { - "initiator": 1899, - "quantity": 190, - "commodity": "fuel", - "factionId": 242, - "budget": 825, + "commodity": "ore", + "initiator": 2003, + "quantity": 210, + "price": 0, + "budget": null, "allocations": { - "buyer": { "budget": null, "storage": 45 }, - "seller": { "budget": null, "storage": 26 } + "buyer": { "budget": null, "storage": 71 }, + "seller": { "budget": null, "storage": 19 } }, - "price": 0, - "type": "sell" + "type": "sell", + "factionId": 242 }, "type": "trade" } - ] + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 7890, "onlyManeuver": true } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -219631,23 +217396,24 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -3.410147619030002, - "coord": [-11.100105485174549, -10.638560145975521], - "sector": 19, - "moved": true + "angle": -26.225757759055675, + "coord": [8.742634154291455, -0.5304112839255144], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, + "allocationIdCounter": 20, "allocations": [ { "amount": { @@ -219656,7 +217422,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 190, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -219664,20 +217430,20 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 210, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3378, + "issued": 3588, "type": "outgoing", - "meta": { "tradeId": "825:1899:sell:3378" }, - "id": 26 + "meta": { "tradeId": "969:2003:sell:3588" }, + "id": 19 } ], - "max": 190, + "max": 210, "availableWares": { "coolant": 0, "drones": 0, @@ -219705,7 +217471,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 190, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -219713,7 +217479,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 210, "silica": 0, "silicon": 0, "superconductors": 0, @@ -219757,27 +217523,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 990, "regen": 0.2, "value": 990 }, - "shield": { "max": 45, "regen": 5, "value": 45 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.5, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFreighter", - "value": "Tau Freighter", + "slug": "minerTau", + "value": "Tau Miner", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Freighter", + "value": "TAU Tau Miner", "mask": "BigInt:137438953472" }, "subordinates": { @@ -219785,30 +217551,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 825, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1.7, + "efficiency": 1.7, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 969, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1899, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2003, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 21 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 0.7504915783575616, - "cruise": 1.3, - "ttc": 2.8, - "maneuver": 0.15, + "acceleration": 0.13, + "rotary": 1.9896753472735356, + "cruise": 5, + "ttc": 1, + "maneuver": 0.5, "active": true, - "currentSpeed": 1.3, - "currentRotary": -3.552713678800501e-15, - "state": "cruise", - "target": 77, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": 957, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -219821,32 +217594,34 @@ "value": [ { "origin": "auto", - "type": "trade", "actions": [ - { "type": "move", "targetId": 77 }, - { "type": "teleport", "targetId": 79 }, - { "type": "move", "targetId": 81 }, - { "type": "teleport", "targetId": 83 }, - { "type": "move", "targetId": 243 }, - { "type": "dock", "targetId": 243 }, + { "type": "dock", "targetId": 957 }, { - "targetId": 243, + "targetId": 957, "offer": { - "initiator": 1900, - "quantity": 190, - "commodity": "tauMetal", - "factionId": 242, - "budget": 243, + "commodity": "ice", + "initiator": 2004, + "quantity": 210, + "price": 0, + "budget": null, "allocations": { - "buyer": { "budget": null, "storage": 64 }, - "seller": { "budget": null, "storage": 28 } + "buyer": { "budget": null, "storage": 114 }, + "seller": { "budget": null, "storage": 19 } }, - "price": 0, - "type": "sell" + "type": "sell", + "factionId": 242 }, "type": "trade" } - ] + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 7886, "onlyManeuver": true } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -219854,23 +217629,24 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -19.19680302154059, - "coord": [-12.479887482099391, -16.422605716284334], - "sector": 19, - "moved": true + "angle": 54.07351860047291, + "coord": [-12.953294431688876, 1.9176610981891176], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 20, "allocations": [ { "amount": { @@ -219885,22 +217661,22 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 210, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 190, + "tauMetal": 0, "water": 0 }, - "issued": 3438, + "issued": 3585, "type": "outgoing", - "meta": { "tradeId": "243:1900:sell:3438" }, - "id": 28 + "meta": { "tradeId": "957:2004:sell:3585" }, + "id": 19 } ], - "max": 190, + "max": 210, "availableWares": { "coolant": 0, "drones": 0, @@ -219934,13 +217710,13 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 210, "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 190, + "tauMetal": 0, "water": 0 }, "quota": { @@ -219980,27 +217756,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 990, "regen": 0.2, "value": 990 }, - "shield": { "max": 45, "regen": 5, "value": 45 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.5, + "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFreighter", - "value": "Tau Freighter", + "slug": "minerTau", + "value": "Tau Miner", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Freighter", + "value": "TAU Tau Miner", "mask": "BigInt:137438953472" }, "subordinates": { @@ -220008,30 +217784,37 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 243, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1.7, + "efficiency": 1.7, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 957, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1900, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2004, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 21 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, + "acceleration": 0.13, + "rotary": 1.9896753472735356, "cruise": 5, - "ttc": 5, - "maneuver": 0.33, + "ttc": 1, + "maneuver": 0.5, "active": true, - "currentSpeed": 0.132, - "currentRotary": -8.881784197001252e-15, - "state": "warming", - "target": 967, + "currentSpeed": 3.38, + "currentRotary": 0.009386729402674376, + "state": "cruise", + "target": 202, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -220043,51 +217826,11 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 967 }, - { "type": "dock", "targetId": 967 }, - { - "targetId": 967, - "offer": { - "initiator": 1901, - "quantity": 11, - "commodity": "tauMetal", - "factionId": 242, - "budget": 243, - "allocations": { - "buyer": { "budget": 67, "storage": 35 }, - "seller": { "budget": null, "storage": 146 } - }, - "price": 426, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 77 }, - { "type": "teleport", "targetId": 79 }, - { "type": "move", "targetId": 81 }, - { "type": "teleport", "targetId": 83 }, - { "type": "move", "targetId": 243 }, - { "type": "dock", "targetId": 243 }, - { - "targetId": 243, - "offer": { - "initiator": 1901, - "quantity": 11, - "commodity": "tauMetal", - "factionId": 242, - "budget": 243, - "allocations": { - "buyer": { "budget": null, "storage": 67 }, - "seller": { "budget": null, "storage": 36 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } + { "type": "move", "targetId": 202 }, + { "targetFieldId": 202, "targetRockId": null, "type": "mine" } ] } ], @@ -220096,9 +217839,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -59.50195661151477, - "coord": [-13.426543056735667, -18.543459210614834], - "sector": 19, + "angle": 3.9724042928364622, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -220106,70 +217849,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 11, - "water": 0 - }, - "issued": 3519, - "type": "incoming", - "meta": { "tradeId": "967:1901:buy:3519" }, - "id": 35 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 11, - "water": 0 - }, - "issued": 3519, - "type": "outgoing", - "meta": { "tradeId": "243:1901:sell:3519" }, - "id": 36 - } - ], - "max": 11, + "allocationIdCounter": 1, + "allocations": [], + "max": 210, "availableWares": { "coolant": 0, "drones": 0, @@ -220238,7 +217926,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -220249,27 +217937,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 80, "regen": 0.2, "value": 80 }, - "shield": { "max": 35, "regen": 2.5, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauCourier", - "value": "Tau Courier", + "slug": "minerTau", + "value": "Tau Miner", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Courier", + "value": "TAU Tau Miner", "mask": "BigInt:137438953472" }, "subordinates": { @@ -220277,29 +217965,36 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 243, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.7, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 945, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 2 } }, - "id": 1901, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2005, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "mine", "sectorId": 21 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, + "acceleration": 0.13, + "rotary": 1.9896753472735356, "cruise": 5, - "ttc": 5, - "maneuver": 0.33, + "ttc": 1, + "maneuver": 0.5, "active": true, - "currentSpeed": 0.132, - "currentRotary": 8.881784197001252e-15, - "state": "maneuver", + "currentSpeed": 2.015, + "currentRotary": -0.04204828702176222, + "state": "cruise", "target": 81, "targetReached": false, "name": "drive", @@ -220313,30 +218008,41 @@ "value": [ { "origin": "auto", - "type": "trade", "actions": [ { "type": "move", "targetId": 81 }, { "type": "teleport", "targetId": 83 }, - { "type": "move", "targetId": 243 }, - { "type": "dock", "targetId": 243 }, + { "type": "move", "targetId": 933 }, + { "type": "dock", "targetId": 933 }, { - "targetId": 243, + "targetId": 933, "offer": { - "initiator": 1902, - "quantity": 11, - "commodity": "tauMetal", - "factionId": 242, - "budget": 243, + "commodity": "fuelium", + "initiator": 2006, + "quantity": 210, + "price": 0, + "budget": null, "allocations": { - "buyer": { "budget": null, "storage": 65 }, - "seller": { "budget": null, "storage": 36 } + "buyer": { "budget": null, "storage": 21 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 0, - "type": "sell" + "type": "sell", + "factionId": 242 }, "type": "trade" } - ] + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 77 }, + { "type": "teleport", "targetId": 79 }, + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 3407 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -220344,8 +218050,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -59.446775767847505, - "coord": [27.341910884532933, -21.44744064556003], + "angle": -960.6345154815428, + "coord": [1.2549225493769898, -5.539111071543905], "sector": 20, "moved": true }, @@ -220354,13 +218060,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -220370,7 +218076,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 210, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -220381,16 +218087,16 @@ "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 11, + "tauMetal": 0, "water": 0 }, - "issued": 3456, + "issued": 252, "type": "outgoing", - "meta": { "tradeId": "243:1902:sell:3456" }, - "id": 36 + "meta": { "tradeId": "933:2006:sell:252" }, + "id": 1 } ], - "max": 11, + "max": 210, "availableWares": { "coolant": 0, "drones": 0, @@ -220419,7 +218125,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 210, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -220430,7 +218136,7 @@ "silica": 0, "silicon": 0, "superconductors": 0, - "tauMetal": 11, + "tauMetal": 0, "water": 0 }, "quota": { @@ -220459,7 +218165,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -220470,27 +218176,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 80, "regen": 0.2, "value": 80 }, - "shield": { "max": 35, "regen": 2.5, "value": 35 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.3, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauCourier", - "value": "Tau Courier", + "slug": "minerTau", + "value": "Tau Miner", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Courier", + "value": "TAU Tau Miner", "mask": "BigInt:137438953472" }, "subordinates": { @@ -220498,11 +218204,18 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 243, "mask": "BigInt:512" } + "mining": { + "name": "mining", + "buffer": 1.7, + "efficiency": 1.7, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 933, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1902, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2006, + "tags": ["selection", "ship", "role:mining"] }, { "components": { @@ -220519,10 +218232,10 @@ "maneuver": 0.5, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.8047767416596425, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 921, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -220532,12 +218245,39 @@ "orders": { "name": "orders", "value": [ + { + "origin": "auto", + "actions": [ + { "type": "move", "targetId": 921 }, + { "type": "dock", "targetId": 921 }, + { + "targetId": 921, + "offer": { + "commodity": "ice", + "initiator": 2007, + "quantity": 210, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 242 + }, + "type": "trade" + } + ], + "type": "trade" + }, { "origin": "OrderPlanningSystem:auto", - "type": "mine", "actions": [ - { "targetFieldId": 207, "targetRockId": 6020, "type": "mine" } - ] + { "type": "move", "targetId": 83 }, + { "type": "teleport", "targetId": 81 }, + { "type": "move", "targetId": 3778 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -220545,9 +218285,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -25.025103996799174, - "coord": [-5.744051103045451, -7.400424623658418], - "sector": 21, + "angle": -29.46741162653585, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -220561,8 +218301,36 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, - "allocations": [], + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 210, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 432, + "type": "outgoing", + "meta": { "tradeId": "921:2007:sell:432" }, + "id": 1 + } + ], "max": 210, "availableWares": { "coolant": 0, @@ -220578,7 +218346,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 105, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -220597,9 +218365,9 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 210, "metals": 0, - "ore": 105, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -220673,15 +218441,15 @@ }, "mining": { "name": "mining", - "buffer": 8.5, + "buffer": 1.7, "efficiency": 1.7, - "entityId": 6020, + "entityId": null, "mask": "BigInt:16777216" }, "commander": { "name": "commander", "id": 921, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 1 } }, - "id": 1903, + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2007, "tags": ["selection", "ship", "role:mining"] }, { @@ -220698,11 +218466,11 @@ "ttc": 1, "maneuver": 0.5, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 3.38, + "currentRotary": 0.009386729402674376, + "state": "cruise", + "target": 202, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -220716,7 +218484,8 @@ "origin": "OrderPlanningSystem:auto", "type": "mine", "actions": [ - { "targetFieldId": 206, "targetRockId": 6885, "type": "mine" } + { "type": "move", "targetId": 202 }, + { "targetFieldId": 202, "targetRockId": null, "type": "mine" } ] } ], @@ -220725,9 +218494,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -3.1388206496776867, - "coord": [25.51682418465802, -14.29723294464051], - "sector": 21, + "angle": 3.9724042928364622, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -220741,7 +218510,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, + "allocationIdCounter": 1, "allocations": [], "max": 210, "availableWares": { @@ -220756,7 +218525,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 81, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -220777,7 +218546,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 81, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -220853,15 +218622,15 @@ }, "mining": { "name": "mining", - "buffer": 6.8, + "buffer": 0, "efficiency": 1.7, - "entityId": 6885, + "entityId": null, "mask": "BigInt:16777216" }, "commander": { "name": "commander", "id": 909, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, - "id": 1904, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2008, "tags": ["selection", "ship", "role:mining"] }, { @@ -220878,10 +218647,10 @@ "ttc": 1, "maneuver": 0.5, "active": true, - "currentSpeed": 0.065, - "currentRotary": -0.14125670971680293, - "state": "warming", - "target": 897, + "currentSpeed": 2.015, + "currentRotary": -0.04204828702175156, + "state": "cruise", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -220895,19 +218664,21 @@ { "origin": "auto", "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, { "type": "move", "targetId": 897 }, { "type": "dock", "targetId": 897 }, { "targetId": 897, "offer": { - "commodity": "goldOre", - "initiator": 1905, + "commodity": "ore", + "initiator": 2009, "quantity": 210, "price": 0, "budget": null, "allocations": { - "buyer": { "budget": null, "storage": 149 }, - "seller": { "budget": null, "storage": 18 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, "type": "sell", "factionId": 242 @@ -220920,7 +218691,11 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24922, "onlyManeuver": true } + { "type": "move", "targetId": 83 }, + { "type": "teleport", "targetId": 81 }, + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 3129 } ], "type": "move" } @@ -220930,9 +218705,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -40.13857487055304, - "coord": [-18.291214369223656, 27.993508603302914], - "sector": 21, + "angle": -951.2097375207734, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -220946,7 +218721,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 2, "allocations": [ { "amount": { @@ -220958,22 +218733,22 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 210, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 210, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3597, + "issued": 180, "type": "outgoing", - "meta": { "tradeId": "897:1905:sell:3597" }, - "id": 18 + "meta": { "tradeId": "897:2009:sell:180" }, + "id": 1 } ], "max": 210, @@ -221007,12 +218782,12 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 210, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 210, "silica": 0, "silicon": 0, "superconductors": 0, @@ -221093,8 +218868,8 @@ }, "commander": { "name": "commander", "id": 897, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 1, "mine": 2 } }, - "id": 1905, + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2009, "tags": ["selection", "ship", "role:mining"] }, { @@ -221111,11 +218886,11 @@ "ttc": 1, "maneuver": 0.5, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 2.015, + "currentRotary": -0.04204828702176222, + "state": "cruise", + "target": 81, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -221129,7 +218904,10 @@ "origin": "OrderPlanningSystem:auto", "type": "mine", "actions": [ - { "targetFieldId": 204, "targetRockId": 7298, "type": "mine" } + { "type": "move", "targetId": 81 }, + { "type": "teleport", "targetId": 83 }, + { "type": "move", "targetId": 204 }, + { "targetFieldId": 204, "targetRockId": null, "type": "mine" } ] } ], @@ -221138,9 +218916,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.49336686595197, - "coord": [3.377170317524113, -1.2206600907692282], - "sector": 21, + "angle": -941.784959560004, + "coord": [1.2549225493769898, -5.539111071543905], + "sector": 20, "moved": true }, "render": { @@ -221154,7 +218932,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, + "allocationIdCounter": 2, "allocations": [], "max": 210, "availableWares": { @@ -221164,7 +218942,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 209, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -221185,7 +218963,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 209, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -221266,15 +219044,15 @@ }, "mining": { "name": "mining", - "buffer": 8.5, + "buffer": 1.7, "efficiency": 1.7, - "entityId": 7298, + "entityId": null, "mask": "BigInt:16777216" }, "commander": { "name": "commander", "id": 885, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 1 } }, - "id": 1906, + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2010, "tags": ["selection", "ship", "role:mining"] }, { @@ -221292,10 +219070,10 @@ "maneuver": 0.5, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.46733685035528705, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 203, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -221309,6 +219087,7 @@ "origin": "OrderPlanningSystem:auto", "type": "mine", "actions": [ + { "type": "move", "targetId": 203 }, { "targetFieldId": 203, "targetRockId": null, "type": "mine" } ] } @@ -221318,8 +219097,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.942733568162213, - "coord": [-3.6452546531758823, 4.49070048203479], + "angle": 1.8302892177687236, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -221334,7 +219113,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, + "allocationIdCounter": 2, "allocations": [], "max": 210, "availableWares": { @@ -221454,28 +219233,28 @@ "commander": { "name": "commander", "id": 873, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 1907, + "id": 2011, "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 21 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.13, - "rotary": 1.9896753472735356, - "cruise": 5, - "ttc": 1, - "maneuver": 0.5, + "acceleration": 0.18, + "rotary": 1.5184364492350666, + "cruise": 1.4, + "ttc": 2.3, + "maneuver": 0.22, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.07919999999999999, + "currentRotary": 0.0002636306578720493, + "state": "warming", + "target": 7905, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -221486,11 +219265,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 202, "targetRockId": 7073, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 21, + "actions": [{ "type": "move", "targetId": 7905 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -221498,25 +219277,199 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 44.22365370654626, - "coord": [-11.490983001880247, 25.02063461877414], - "sector": 20, - "moved": true + "angle": -10.933389682956538, + "coord": [-0.8061347538638273, 20.04217916134002], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, + "allocationIdCounter": 1, "allocations": [], - "max": 210, + "max": 0, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 390, "regen": 0.2, "value": 390 }, + "shield": { "max": 155, "regen": 8, "value": 155 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 9, + "range": 1.2, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "tauFrigate", + "value": "Hornet", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "TAU Hornet", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2074, 2073], + "mask": "BigInt:4294967296" + } + }, + "cooldowns": { "timers": { "cruise": 1.2999999999999998 } }, + "id": 2012, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.18, + "rotary": 1.5184364492350666, + "cruise": 1.4, + "ttc": 2.3, + "maneuver": 0.22, + "active": true, + "currentSpeed": 0.039599999999999996, + "currentRotary": -5.773159728050814e-15, + "state": "warming", + "target": 7908, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "patrol", + "origin": "auto", + "sectorId": 21, + "actions": [{ "type": "move", "targetId": 7908 }], + "clockwise": true + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -55.61141125559281, + "coord": [-16.45778263771891, -15.06776465974789], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9778411, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 0, "availableWares": { "coolant": 0, "drones": 0, @@ -221526,7 +219479,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 185, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -221547,7 +219500,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 185, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -221596,60 +219549,52 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 390, "regen": 0.2, "value": 390 }, + "shield": { "max": 155, "regen": 8, "value": 155 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 9, + "range": 1.2, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerTau", - "value": "Tau Miner", + "slug": "tauFrigate", + "value": "Hornet", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Miner", + "value": "TAU Hornet", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2072, 2071], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 6.8, - "efficiency": 1.7, - "entityId": 7073, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 861, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, - "id": 1908, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 2.3 } }, + "id": 2013, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 21 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.13, - "rotary": 1.9896753472735356, - "cruise": 5, - "ttc": 1, - "maneuver": 0.5, + "acceleration": 0.18, + "rotary": 1.5184364492350666, + "cruise": 1.4, + "ttc": 2.3, + "maneuver": 0.22, "active": true, "currentSpeed": 0, "currentRotary": 0, @@ -221666,11 +219611,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 201, "targetRockId": 6041, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 21, + "actions": [], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -221678,25 +219623,26 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -53.25790158944841, - "coord": [-11.799540995119282, 15.680033742599164], - "sector": 19, - "moved": true + "angle": 31.89418381215834, + "coord": [-1.4811171209385485, 22.730886630897498], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 1, "allocations": [], - "max": 210, + "max": 0, "availableWares": { "coolant": 0, "drones": 0, @@ -221711,7 +219657,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 169, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -221732,7 +219678,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 169, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -221776,66 +219722,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 390, "regen": 0.2, "value": 390 }, + "shield": { "max": 155, "regen": 8, "value": 155 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 9, + "range": 1.2, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerTau", - "value": "Tau Miner", + "slug": "tauFrigate", + "value": "Hornet", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Miner", + "value": "TAU Hornet", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2070, 2069], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 3.4, - "efficiency": 1.7, - "entityId": 6041, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 849, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 4 } }, - "id": 1909, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2014, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 21 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.13, - "rotary": 1.9896753472735356, - "cruise": 5, - "ttc": 1, - "maneuver": 0.5, + "acceleration": 0.18, + "rotary": 1.5184364492350666, + "cruise": 1.4, + "ttc": 2.3, + "maneuver": 0.22, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.4, + "currentRotary": -2.220446049250313e-15, + "state": "cruise", + "target": 7894, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -221846,11 +219784,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 204, "targetRockId": 6319, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 21, + "actions": [{ "type": "move", "targetId": 7894 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -221858,25 +219796,26 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.762469313878851, - "coord": [6.253854488362181, -6.145639595296418], + "angle": 73.90362550455852, + "coord": [-8.604260521010794, -20.672810534781803], "sector": 21, - "moved": true + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 13, + "allocationIdCounter": 1, "allocations": [], - "max": 210, + "max": 0, "availableWares": { "coolant": 0, "drones": 0, @@ -221884,7 +219823,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 25, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -221905,7 +219844,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 25, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -221956,66 +219895,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 390, "regen": 0.2, "value": 390 }, + "shield": { "max": 155, "regen": 8, "value": 155 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 9, + "range": 1.2, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerTau", - "value": "Tau Miner", + "slug": "tauFrigate", + "value": "Hornet", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Miner", + "value": "TAU Hornet", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2068, 2067], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 3.4, - "efficiency": 1.7, - "entityId": 6319, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 837, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 4 } }, - "id": 1910, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2015, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 21 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.13, - "rotary": 1.9896753472735356, - "cruise": 5, - "ttc": 1, - "maneuver": 0.5, + "acceleration": 0.18, + "rotary": 1.5184364492350666, + "cruise": 1.4, + "ttc": 2.3, + "maneuver": 0.22, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.4, + "currentRotary": -1.7763568394002505e-15, + "state": "cruise", + "target": 7888, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -222026,11 +219957,11 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 203, "targetRockId": 9297, "type": "mine" } - ] + "type": "patrol", + "origin": "auto", + "sectorId": 21, + "actions": [{ "type": "move", "targetId": 7888 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -222038,25 +219969,26 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.512869686789177, - "coord": [-3.149946951660662, 3.769617764783619], - "sector": 20, - "moved": true + "angle": 56.51469136936459, + "coord": [23.051410779797028, -9.340334360603645], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, + "allocationIdCounter": 1, "allocations": [], - "max": 210, + "max": 0, "availableWares": { "coolant": 0, "drones": 0, @@ -222069,7 +220001,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 49, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -222090,7 +220022,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 49, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -222136,46 +220068,38 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 390, "regen": 0.2, "value": 390 }, + "shield": { "max": 155, "regen": 8, "value": 155 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.5, + "value": 9, + "range": 1.2, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerTau", - "value": "Tau Miner", + "slug": "tauFrigate", + "value": "Hornet", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Tau Miner", + "value": "TAU Hornet", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2066, 2065], "mask": "BigInt:4294967296" - }, - "mining": { - "name": "mining", - "buffer": 6.8, - "efficiency": 1.7, - "entityId": 9297, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 825, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, - "id": 1911, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2016, + "tags": ["selection", "ship", "role:military"] }, { "components": { @@ -222191,10 +220115,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 1.4, - "currentRotary": -4.440892098500626e-15, + "currentSpeed": 1.1268, + "currentRotary": 8.881784197001252e-16, "state": "cruise", - "target": 24812, + "target": 7896, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -222209,8 +220133,8 @@ "type": "patrol", "origin": "auto", "sectorId": 21, - "actions": [{ "type": "move", "targetId": 24812 }], - "clockwise": false + "actions": [{ "type": "move", "targetId": 7896 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -222218,8 +220142,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 37.5036542790763, - "coord": [19.421837997708124, -16.23909327183701], + "angle": -8.743028075980039, + "coord": [24.636180079743617, -1.7963900376574182], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -222342,12 +220266,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1974, 1973], + "ids": [2064, 2063], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1912, + "id": 2017, "tags": ["selection", "ship", "role:military"] }, { @@ -222364,10 +220288,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 1.4, - "currentRotary": -8.881784197001252e-15, + "currentSpeed": 0.8748, + "currentRotary": -3.0806468487298844e-12, "state": "cruise", - "target": 24821, + "target": 7899, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -222382,8 +220306,8 @@ "type": "patrol", "origin": "auto", "sectorId": 21, - "actions": [{ "type": "move", "targetId": 24821 }], - "clockwise": true + "actions": [{ "type": "move", "targetId": 7899 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -222391,8 +220315,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -81.67545831349886, - "coord": [-23.683155412424064, -2.436607914320895], + "angle": -42.083101807729776, + "coord": [-1.0177214702145683, 20.16086434691761], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -222515,12 +220439,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1972, 1971], + "ids": [2062, 2061], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1913, + "id": 2018, "tags": ["selection", "ship", "role:military"] }, { @@ -222537,10 +220461,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0.039599999999999996, - "currentRotary": -4.440892098500626e-16, - "state": "warming", - "target": 24919, + "currentSpeed": 0.6228, + "currentRotary": -0.06995499521659632, + "state": "cruise", + "target": 2439, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -222554,9 +220478,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 21, - "actions": [{ "type": "move", "targetId": 24919 }], - "clockwise": false + "sectorId": 20, + "actions": [{ "type": "move", "targetId": 2439 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -222564,11 +220488,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -10.127604592397228, - "coord": [-8.61286691558397, 18.02965620796118], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -15.214481906838172, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -222688,12 +220611,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1970, 1969], + "ids": [2060, 2059], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 2.3 } }, - "id": 1914, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2019, "tags": ["selection", "ship", "role:military"] }, { @@ -222710,10 +220633,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 1.4, - "currentRotary": 7.993605777301127e-15, - "state": "cruise", - "target": 24822, + "currentSpeed": 0.19799999999999998, + "currentRotary": -0.26919777784090204, + "state": "maneuver", + "target": 2440, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -222727,9 +220650,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 21, - "actions": [{ "type": "move", "targetId": 24822 }], - "clockwise": false + "sectorId": 20, + "actions": [{ "type": "move", "targetId": 2440 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -222737,11 +220660,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 94.57023629229157, - "coord": [24.281606254804196, 8.767937950467363], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -29.034123292466248, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -222861,12 +220783,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1968, 1967], + "ids": [2058, 2057], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1915, + "id": 2020, "tags": ["selection", "ship", "role:military"] }, { @@ -222883,10 +220805,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 24934, + "currentSpeed": 0.6228, + "currentRotary": -0.14876083100099713, + "state": "cruise", + "target": 2441, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -222900,8 +220822,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 21, - "actions": [{ "type": "move", "targetId": 24934 }], + "sectorId": 20, + "actions": [{ "type": "move", "targetId": 2441 }], "clockwise": false } ], @@ -222910,11 +220832,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -39.374376089072896, - "coord": [15.036616325022239, -14.789884591113616], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -3.6468146204711784, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -223034,12 +220955,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1966, 1965], + "ids": [2056, 2055], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1916, + "id": 2021, "tags": ["selection", "ship", "role:military"] }, { @@ -223056,10 +220977,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0.11879999999999999, - "currentRotary": 1.0658141036401503e-14, + "currentSpeed": 0.039599999999999996, + "currentRotary": -0.2093922922387872, "state": "warming", - "target": 24915, + "target": 2442, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -223073,9 +220994,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 21, - "actions": [{ "type": "move", "targetId": 24915 }], - "clockwise": false + "sectorId": 20, + "actions": [{ "type": "move", "targetId": 2442 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -223083,11 +221004,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 181.28482251406433, - "coord": [22.707403912083013, -17.897330826432622], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -49.37031754716419, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -223207,12 +221127,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1964, 1963], + "ids": [2054, 2053], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, - "id": 1917, + "id": 2022, "tags": ["selection", "ship", "role:military"] }, { @@ -223230,10 +221150,10 @@ "maneuver": 0.22, "active": true, "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentRotary": -0.6075615117968729, + "state": "warming", + "target": 2443, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -223246,9 +221166,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 21, - "actions": [], - "clockwise": true + "sectorId": 20, + "actions": [{ "type": "move", "targetId": 2443 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -223256,11 +221176,10 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -69.68443892027634, - "coord": [-29.20757971166147, -13.225385252113485], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -16.984404846181583, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true }, "render": { "color": 9778411, @@ -223380,12 +221299,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1962, 1961], + "ids": [2052, 2051], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1918, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 2023, "tags": ["selection", "ship", "role:military"] }, { @@ -223402,10 +221321,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0.039599999999999996, - "currentRotary": -0.10471975511959997, + "currentSpeed": 0, + "currentRotary": 0.399862889845239, "state": "maneuver", - "target": 24762, + "target": 2444, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -223420,8 +221339,8 @@ "type": "patrol", "origin": "auto", "sectorId": 20, - "actions": [{ "type": "move", "targetId": 24762 }], - "clockwise": true + "actions": [{ "type": "move", "targetId": 2444 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -223429,8 +221348,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -18.480547943357134, - "coord": [22.291492167467673, 19.46427991102396], + "angle": -0.8245917057312078, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -223552,12 +221471,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1960, 1959], + "ids": [2050, 2049], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1919, + "id": 2024, "tags": ["selection", "ship", "role:military"] }, { @@ -223575,10 +221494,10 @@ "maneuver": 0.22, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.7639144846115746, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 2445, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -223592,7 +221511,7 @@ "type": "patrol", "origin": "auto", "sectorId": 20, - "actions": [], + "actions": [{ "type": "move", "targetId": 2445 }], "clockwise": false } ], @@ -223601,8 +221520,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.993447171900822, - "coord": [6.195878330491812, 24.641661346385018], + "angle": -54.39936950043465, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -223724,12 +221643,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1958, 1957], + "ids": [2048, 2047], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1920, + "id": 2025, "tags": ["selection", "ship", "role:military"] }, { @@ -223746,10 +221665,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0.8748, - "currentRotary": 4.440892098500626e-16, + "currentSpeed": 0.3708, + "currentRotary": -0.04204828702175156, "state": "cruise", - "target": 24899, + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -223763,8 +221682,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 20, - "actions": [{ "type": "move", "targetId": 24899 }], + "sectorId": 19, + "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2446 } + ], "clockwise": true } ], @@ -223773,8 +221696,184 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 43.72401047557779, - "coord": [-16.448147088057947, 12.077728872612562], + "angle": -957.4929228279531, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true + }, + "render": { + "color": 9778411, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 0, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 390, "regen": 0.2, "value": 390 }, + "shield": { "max": 155, "regen": 8, "value": 155 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 9, + "range": 1.2, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "tauFrigate", + "value": "Hornet", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "TAU Hornet", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2046, 2045], + "mask": "BigInt:4294967296" + } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2026, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.18, + "rotary": 1.5184364492350666, + "cruise": 1.4, + "ttc": 2.3, + "maneuver": 0.22, + "active": true, + "currentSpeed": 0.3708, + "currentRotary": -0.04204828702175156, + "state": "cruise", + "target": 79, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "patrol", + "origin": "auto", + "sectorId": 19, + "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2447 } + ], + "clockwise": false + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -957.4929228279531, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -223896,12 +221995,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1956, 1955], + "ids": [2044, 2043], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1921, + "id": 2027, "tags": ["selection", "ship", "role:military"] }, { @@ -223918,10 +222017,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0.8748, - "currentRotary": -5.661249247168598e-12, + "currentSpeed": 0.3708, + "currentRotary": -0.04204828702175156, "state": "cruise", - "target": 24900, + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -223935,9 +222034,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 20, - "actions": [{ "type": "move", "targetId": 24900 }], - "clockwise": true + "sectorId": 19, + "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2448 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -223945,8 +222048,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -62.30464880952527, - "coord": [-26.24271048187756, 2.7910496364405186], + "angle": -957.4929228279531, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -224068,12 +222171,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1954, 1953], + "ids": [2042, 2041], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1922, + "id": 2028, "tags": ["selection", "ship", "role:military"] }, { @@ -224090,10 +222193,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0, - "currentRotary": -1.5184364492350666, - "state": "maneuver", - "target": 24930, + "currentSpeed": 0.3708, + "currentRotary": -0.04204828702175156, + "state": "cruise", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -224107,9 +222210,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 20, - "actions": [{ "type": "move", "targetId": 24930 }], - "clockwise": false + "sectorId": 19, + "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2449 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -224117,8 +222224,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 45.85034519773254, - "coord": [6.900858260724986, 25.312656678218218], + "angle": -957.4929228279531, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -224240,12 +222347,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1952, 1951], + "ids": [2040, 2039], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1923, + "id": 2029, "tags": ["selection", "ship", "role:military"] }, { @@ -224262,10 +222369,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0.8748, - "currentRotary": 1.7763568394002505e-15, + "currentSpeed": 0.3708, + "currentRotary": -0.04204828702175156, "state": "cruise", - "target": 24901, + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -224279,8 +222386,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 20, - "actions": [{ "type": "move", "targetId": 24901 }], + "sectorId": 19, + "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2450 } + ], "clockwise": true } ], @@ -224289,8 +222400,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 17.71200338087128, - "coord": [-9.125432382780653, 26.51553083502389], + "angle": -957.4929228279531, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -224412,12 +222523,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1950, 1949], + "ids": [2038, 2037], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1924, + "id": 2030, "tags": ["selection", "ship", "role:military"] }, { @@ -224434,10 +222545,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 1.4, - "currentRotary": 2.6645352591003757e-15, + "currentSpeed": 0.3708, + "currentRotary": -0.04204828702175156, "state": "cruise", - "target": 24871, + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -224451,9 +222562,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 20, - "actions": [{ "type": "move", "targetId": 24871 }], - "clockwise": false + "sectorId": 19, + "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2451 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -224461,8 +222576,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -14.961689481259764, - "coord": [-10.730072633167572, -13.01601848816927], + "angle": -957.4929228279531, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -224584,12 +222699,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [1948, 1947], + "ids": [2036, 2035], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1925, + "id": 2031, "tags": ["selection", "ship", "role:military"] }, { @@ -224606,10 +222721,10 @@ "ttc": 2.3, "maneuver": 0.22, "active": true, - "currentSpeed": 0.22, - "currentRotary": 1.3322676295501878e-15, - "state": "maneuver", - "target": 24824, + "currentSpeed": 0.3708, + "currentRotary": -0.04204828702175156, + "state": "cruise", + "target": 79, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -224624,7 +222739,11 @@ "type": "patrol", "origin": "auto", "sectorId": 19, - "actions": [{ "type": "move", "targetId": 24824 }], + "actions": [ + { "type": "move", "targetId": 79 }, + { "type": "teleport", "targetId": 77 }, + { "type": "move", "targetId": 2452 } + ], "clockwise": true } ], @@ -224633,9 +222752,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.977602962897567, - "coord": [-16.663131005020464, 23.22169877577868], - "sector": 19, + "angle": -957.4929228279531, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -224756,48 +222875,48 @@ }, "subordinates": { "name": "subordinates", - "ids": [1946, 1945], + "ids": [2034, 2033], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1926, + "id": 2032, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 2032 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.18, - "rotary": 1.5184364492350666, - "cruise": 1.4, - "ttc": 2.3, - "maneuver": 0.22, + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": 3.9968028886505635e-15, - "state": "cruise", - "target": 24849, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533718709, + "state": "maneuver", + "target": 2032, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 19, - "actions": [{ "type": "move", "targetId": 24849 }], - "clockwise": false + "targetId": 2032, + "actions": [{ "type": "move", "targetId": 2032 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -224805,9 +222924,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -28.41425629090403, - "coord": [-13.59822636354384, 17.801684505459853], - "sector": 19, + "angle": -955.2920756105887, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -224815,7 +222934,180 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 0, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2.2, + "range": 0.9, + "cooldown": 1, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "tauFighter", + "value": "Stinger", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "TAU Stinger", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 2032, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2033, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "escort", "targetId": 2032 }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, + "active": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533715423, + "state": "maneuver", + "target": 2032, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "follow", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "escort", + "origin": "auto", + "targetId": 2032, + "actions": [{ "type": "move", "targetId": 2032 }], + "ordersForSector": 20 + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -953.326488164094, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, + "moved": true + }, + "render": { + "color": 9778411, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -224892,7 +223184,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -224903,73 +223195,74 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 390, "regen": 0.2, "value": 390 }, - "shield": { "max": 155, "regen": 8, "value": 155 }, + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 9, - "range": 1.2, - "cooldown": 0.3, + "value": 2.2, + "range": 0.9, + "cooldown": 1, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFrigate", - "value": "Hornet", + "slug": "tauFighter", + "value": "Stinger", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Hornet", + "value": "TAU Stinger", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1944, 1943], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2032, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1927, + "id": 2034, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 2031 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.18, - "rotary": 1.5184364492350666, - "cruise": 1.4, - "ttc": 2.3, - "maneuver": 0.22, + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": -8.881784197001252e-15, - "state": "cruise", - "target": 24825, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533718709, + "state": "maneuver", + "target": 2031, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 19, - "actions": [{ "type": "move", "targetId": 24825 }], - "clockwise": true + "targetId": 2031, + "actions": [{ "type": "move", "targetId": 2031 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -224977,9 +223270,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -35.21799584670467, - "coord": [22.717030591454595, -5.859380468207117], - "sector": 19, + "angle": -955.2920756105887, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -224987,7 +223280,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -225064,7 +223357,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -225075,73 +223368,74 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 390, "regen": 0.2, "value": 390 }, - "shield": { "max": 155, "regen": 8, "value": 155 }, + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 9, - "range": 1.2, - "cooldown": 0.3, + "value": 2.2, + "range": 0.9, + "cooldown": 1, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFrigate", - "value": "Hornet", + "slug": "tauFighter", + "value": "Stinger", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Hornet", + "value": "TAU Stinger", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1942, 1941], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2031, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1928, + "id": 2035, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 2031 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.18, - "rotary": 1.5184364492350666, - "cruise": 1.4, - "ttc": 2.3, - "maneuver": 0.22, + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, "active": true, - "currentSpeed": 0.6624, - "currentRotary": -7.852829497778657e-12, - "state": "cruise", - "target": 24902, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533715423, + "state": "maneuver", + "target": 2031, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 19, - "actions": [{ "type": "move", "targetId": 24902 }], - "clockwise": false + "targetId": 2031, + "actions": [{ "type": "move", "targetId": 2031 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -225149,9 +223443,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 13.24952697323301, - "coord": [22.69727760365784, 9.17452313161473], - "sector": 19, + "angle": -953.326488164094, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -225159,7 +223453,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -225236,7 +223530,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -225247,73 +223541,74 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 390, "regen": 0.2, "value": 390 }, - "shield": { "max": 155, "regen": 8, "value": 155 }, + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 9, - "range": 1.2, - "cooldown": 0.3, + "value": 2.2, + "range": 0.9, + "cooldown": 1, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFrigate", - "value": "Hornet", + "slug": "tauFighter", + "value": "Stinger", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Hornet", + "value": "TAU Stinger", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1940, 1939], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2031, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1929, + "id": 2036, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 2030 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.18, - "rotary": 1.5184364492350666, - "cruise": 1.4, - "ttc": 2.3, - "maneuver": 0.22, + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": 0, - "state": "cruise", - "target": 24872, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533718709, + "state": "maneuver", + "target": 2030, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 19, - "actions": [{ "type": "move", "targetId": 24872 }], - "clockwise": true + "targetId": 2030, + "actions": [{ "type": "move", "targetId": 2030 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -225321,9 +223616,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 6.3134407435861295, - "coord": [-15.59744270012768, -13.563244812548145], - "sector": 19, + "angle": -955.2920756105887, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -225331,7 +223626,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -225408,7 +223703,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -225419,73 +223714,74 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 390, "regen": 0.2, "value": 390 }, - "shield": { "max": 155, "regen": 8, "value": 155 }, + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 9, - "range": 1.2, - "cooldown": 0.3, + "value": 2.2, + "range": 0.9, + "cooldown": 1, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFrigate", - "value": "Hornet", + "slug": "tauFighter", + "value": "Stinger", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Hornet", + "value": "TAU Stinger", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1938, 1937], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2030, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1930, + "id": 2037, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 2030 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.18, - "rotary": 1.5184364492350666, - "cruise": 1.4, - "ttc": 2.3, - "maneuver": 0.22, + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": -5.329070518200751e-15, - "state": "cruise", - "target": 24854, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533715423, + "state": "maneuver", + "target": 2030, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 19, - "actions": [{ "type": "move", "targetId": 24854 }], - "clockwise": true + "targetId": 2030, + "actions": [{ "type": "move", "targetId": 2030 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -225493,9 +223789,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 54.179013330048306, - "coord": [22.273856057601364, 12.480791887871964], - "sector": 19, + "angle": -953.326488164094, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -225503,7 +223799,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -225580,7 +223876,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -225591,73 +223887,74 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 390, "regen": 0.2, "value": 390 }, - "shield": { "max": 155, "regen": 8, "value": 155 }, + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 9, - "range": 1.2, - "cooldown": 0.3, + "value": 2.2, + "range": 0.9, + "cooldown": 1, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFrigate", - "value": "Hornet", + "slug": "tauFighter", + "value": "Stinger", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Hornet", + "value": "TAU Stinger", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1936, 1935], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2030, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1931, + "id": 2038, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 2029 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.18, - "rotary": 1.5184364492350666, - "cruise": 1.4, - "ttc": 2.3, - "maneuver": 0.22, + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 24855, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533718709, + "state": "maneuver", + "target": 2029, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 19, - "actions": [{ "type": "move", "targetId": 24855 }], - "clockwise": false + "targetId": 2029, + "actions": [{ "type": "move", "targetId": 2029 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -225665,9 +223962,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.992144453227866, - "coord": [-25.501959710212965, -0.10168191709702179], - "sector": 19, + "angle": -955.2920756105887, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -225675,7 +223972,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -225752,7 +224049,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -225763,44 +224060,45 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 390, "regen": 0.2, "value": 390 }, - "shield": { "max": 155, "regen": 8, "value": 155 }, + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, "mask": "BigInt:1048576" }, "damage": { - "value": 9, - "range": 1.2, - "cooldown": 0.3, + "value": 2.2, + "range": 0.9, + "cooldown": 1, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFrigate", - "value": "Hornet", + "slug": "tauFighter", + "value": "Stinger", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Hornet", + "value": "TAU Stinger", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [1934, 1933], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2029, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1932, + "id": 2039, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1932 }, + "default": { "type": "escort", "targetId": 2029 }, "mask": "BigInt:4" }, "drive": { @@ -225810,11 +224108,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": 0.21976621566134646, - "state": "cruise", - "target": 1932, - "targetReached": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533715423, + "state": "maneuver", + "target": 2029, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -225827,11 +224125,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1932, - "actions": [ - { "type": "move", "targetId": 1932, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2029, + "actions": [{ "type": "move", "targetId": 2029 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -225839,9 +224135,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -223.0230868673975, - "coord": [-25.797992730307236, -0.2717753328481043], - "sector": 19, + "angle": -953.326488164094, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -225965,17 +224261,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1932, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2029, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1933, + "id": 2040, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1932 }, + "default": { "type": "escort", "targetId": 2028 }, "mask": "BigInt:4" }, "drive": { @@ -225985,11 +224281,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.5670000000000001, - "currentRotary": -0.3589360823257337, - "state": "cruise", - "target": 1932, - "targetReached": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533718709, + "state": "maneuver", + "target": 2028, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -226002,11 +224298,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1932, - "actions": [ - { "type": "move", "targetId": 1932, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2028, + "actions": [{ "type": "move", "targetId": 2028 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -226014,9 +224308,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 335.9662709366134, - "coord": [-26.20043782808765, -2.761029691351619], - "sector": 19, + "angle": -955.2920756105887, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -226140,17 +224434,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1932, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2028, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1934, + "id": 2041, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1931 }, + "default": { "type": "escort", "targetId": 2028 }, "mask": "BigInt:4" }, "drive": { @@ -226160,11 +224454,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": 0.18280754739172167, - "state": "cruise", - "target": 1931, - "targetReached": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533715423, + "state": "maneuver", + "target": 2028, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -226177,11 +224471,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1931, - "actions": [ - { "type": "move", "targetId": 1931, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2028, + "actions": [{ "type": "move", "targetId": 2028 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -226189,9 +224481,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -297.49607025843574, - "coord": [22.533279729390255, 12.093529308183127], - "sector": 19, + "angle": -953.326488164094, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -226315,17 +224607,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1931, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2028, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1935, + "id": 2042, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1931 }, + "default": { "type": "escort", "targetId": 2027 }, "mask": "BigInt:4" }, "drive": { @@ -226335,11 +224627,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 2.1, - "currentRotary": -0.07957638928708954, - "state": "cruise", - "target": 1931, - "targetReached": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533718709, + "state": "maneuver", + "target": 2027, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -226352,11 +224644,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1931, - "actions": [ - { "type": "move", "targetId": 1931, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2027, + "actions": [{ "type": "move", "targetId": 2027 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -226364,9 +224654,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 280.320005946336, - "coord": [22.438473478541606, 12.38867450302441], - "sector": 19, + "angle": -955.2920756105887, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -226490,17 +224780,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1931, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2027, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1936, + "id": 2043, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1930 }, + "default": { "type": "escort", "targetId": 2027 }, "mask": "BigInt:4" }, "drive": { @@ -226510,11 +224800,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0, - "currentRotary": -0.9310779374165721, - "state": "cruise", - "target": 1930, - "targetReached": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533715423, + "state": "maneuver", + "target": 2027, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -226527,11 +224817,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1930, - "actions": [ - { "type": "move", "targetId": 1930, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2027, + "actions": [{ "type": "move", "targetId": 2027 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -226539,9 +224827,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -327.50787139745444, - "coord": [-15.203470788564282, -11.76814037467924], - "sector": 19, + "angle": -953.326488164094, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -226665,17 +224953,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1930, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2027, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1937, + "id": 2044, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1930 }, + "default": { "type": "escort", "targetId": 2026 }, "mask": "BigInt:4" }, "drive": { @@ -226685,11 +224973,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 1.4, - "currentRotary": -0.09297280771725802, - "state": "cruise", - "target": 1930, - "targetReached": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533718709, + "state": "maneuver", + "target": 2026, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -226702,11 +224990,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1930, - "actions": [ - { "type": "move", "targetId": 1930, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2026, + "actions": [{ "type": "move", "targetId": 2026 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -226714,9 +225000,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 276.2053884683549, - "coord": [-15.933669354678482, -13.125318063813262], - "sector": 19, + "angle": -955.2920756105887, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -226840,17 +225126,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1930, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2026, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1938, + "id": 2045, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1929 }, + "default": { "type": "escort", "targetId": 2026 }, "mask": "BigInt:4" }, "drive": { @@ -226860,11 +225146,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.5670000000000001, - "currentRotary": -0.16382033540243945, - "state": "cruise", - "target": 1929, - "targetReached": true, + "currentSpeed": 0.3051, + "currentRotary": -0.08964515533715423, + "state": "maneuver", + "target": 2026, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -226877,11 +225163,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1929, - "actions": [ - { "type": "move", "targetId": 1929, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2026, + "actions": [{ "type": "move", "targetId": 2026 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -226889,9 +225173,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -281.924272672508, - "coord": [22.26138470309129, 10.053444948762836], - "sector": 19, + "angle": -953.326488164094, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -227015,192 +225299,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1929, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2026, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1939, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 1929 }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, - "active": true, - "currentSpeed": 0.531, - "currentRotary": -0.1197683006410033, - "state": "warming", - "target": 1929, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 1929, - "actions": [ - { "type": "move", "targetId": 1929, "ignoreReached": true } - ], - "ordersForSector": 19 - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": 264.26775826266993, - "coord": [22.25250577075475, 9.455389712179448], - "sector": 19, - "moved": true - }, - "render": { - "color": 9778411, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 0, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "tauFighter", - "value": "Stinger", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "TAU Stinger", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1929, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0.3 } }, - "id": 1940, + "id": 2046, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1928 }, + "default": { "type": "escort", "targetId": 2025 }, "mask": "BigInt:4" }, "drive": { @@ -227210,11 +225319,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.5670000000000001, - "currentRotary": -0.018534304895549525, - "state": "cruise", - "target": 1928, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.3661578390102873, + "state": "maneuver", + "target": 2025, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -227227,11 +225336,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1928, - "actions": [ - { "type": "move", "targetId": 1928, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2025, + "actions": [{ "type": "move", "targetId": 2025 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -227239,9 +225346,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -248.8264432752368, - "coord": [20.275988636750956, -8.815372930920894], - "sector": 19, + "angle": -57.75984139266019, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -227365,17 +225472,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1928, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2025, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1941, + "id": 2047, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1928 }, + "default": { "type": "escort", "targetId": 2025 }, "mask": "BigInt:4" }, "drive": { @@ -227385,11 +225492,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 1.701, - "currentRotary": 0.03395216972971138, - "state": "cruise", - "target": 1928, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.3661578390102873, + "state": "maneuver", + "target": 2025, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -227402,11 +225509,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1928, - "actions": [ - { "type": "move", "targetId": 1928, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2025, + "actions": [{ "type": "move", "targetId": 2025 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -227414,9 +225519,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 216.08065473229408, - "coord": [20.297466098282285, -9.189940174333291], - "sector": 19, + "angle": -55.79425394616553, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -227540,17 +225645,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1928, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2025, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1942, + "id": 2048, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1927 }, + "default": { "type": "escort", "targetId": 2024 }, "mask": "BigInt:4" }, "drive": { @@ -227561,185 +225666,10 @@ "maneuver": 0.69, "active": true, "currentSpeed": 0, - "currentRotary": 0.808468098026502, - "state": "cruise", - "target": 1927, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 1927, - "actions": [ - { "type": "move", "targetId": 1927, "ignoreReached": true } - ], - "ordersForSector": 19 - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": -241.56053891212088, - "coord": [-13.898005259449153, 16.174514535508084], - "sector": 19, - "moved": true - }, - "render": { - "color": 9778411, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 0, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "tauFighter", - "value": "Stinger", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "TAU Stinger", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1927, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1943, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 1927 }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, - "active": true, - "currentSpeed": 1.4, - "currentRotary": 0.2518128436417788, - "state": "cruise", - "target": 1927, - "targetReached": true, + "currentRotary": 0.0964584909554036, + "state": "maneuver", + "target": 2024, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -227752,11 +225682,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1927, - "actions": [ - { "type": "move", "targetId": 1927, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2024, + "actions": [{ "type": "move", "targetId": 2024 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -227764,9 +225692,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 317.4252009486768, - "coord": [-13.443141453525799, 17.381833486067105], - "sector": 19, + "angle": -5.34884097241357, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -227890,17 +225818,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1927, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2024, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1944, + "id": 2049, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1926 }, + "default": { "type": "escort", "targetId": 2024 }, "mask": "BigInt:4" }, "drive": { @@ -227910,11 +225838,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 2.1, - "currentRotary": -0.004029338468057642, - "state": "cruise", - "target": 1926, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.09645849095540715, + "state": "maneuver", + "target": 2024, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -227927,11 +225855,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1926, - "actions": [ - { "type": "move", "targetId": 1926, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2024, + "actions": [{ "type": "move", "targetId": 2024 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -227939,9 +225865,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -303.2850611748468, - "coord": [-16.78280048335885, 23.075933546007835], - "sector": 19, + "angle": -3.3832535259189105, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -228065,17 +225991,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1926, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2024, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1945, + "id": 2050, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1926 }, + "default": { "type": "escort", "targetId": 2023 }, "mask": "BigInt:4" }, "drive": { @@ -228085,11 +226011,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 2.1, - "currentRotary": -0.010244189382119906, - "state": "cruise", - "target": 1926, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.35480265102221153, + "state": "maneuver", + "target": 2023, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -228102,11 +226028,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1926, - "actions": [ - { "type": "move", "targetId": 1926, "ignoreReached": true } - ], - "ordersForSector": 19 + "targetId": 2023, + "actions": [{ "type": "move", "targetId": 2023 }], + "ordersForSector": 20 } ], "mask": "BigInt:134217728" @@ -228114,9 +226038,9 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 287.3340539241657, - "coord": [-14.415307345681871, 23.07565609209887], - "sector": 19, + "angle": -20.501229711221832, + "coord": [-0.9891037310083645, -1.8497668222595567], + "sector": 20, "moved": true }, "render": { @@ -228240,17 +226164,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1926, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2023, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1946, + "id": 2051, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1925 }, + "default": { "type": "escort", "targetId": 2023 }, "mask": "BigInt:4" }, "drive": { @@ -228261,10 +226185,10 @@ "maneuver": 0.69, "active": true, "currentSpeed": 0, - "currentRotary": -1.036344029683173, - "state": "cruise", - "target": 1925, - "targetReached": true, + "currentRotary": -0.35480265102220354, + "state": "maneuver", + "target": 2023, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -228277,10 +226201,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1925, - "actions": [ - { "type": "move", "targetId": 1925, "ignoreReached": true } - ], + "targetId": 2023, + "actions": [{ "type": "move", "targetId": 2023 }], "ordersForSector": 20 } ], @@ -228289,8 +226211,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -273.4974710180758, - "coord": [-9.901944718401126, -14.662113471691972], + "angle": -18.535642264727173, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -228415,17 +226337,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1925, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2023, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1947, + "id": 2052, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1925 }, + "default": { "type": "escort", "targetId": 2022 }, "mask": "BigInt:4" }, "drive": { @@ -228436,10 +226358,10 @@ "maneuver": 0.69, "active": true, "currentSpeed": 0, - "currentRotary": -0.89440351387135, - "state": "cruise", - "target": 1925, - "targetReached": true, + "currentRotary": 1.5184364492350602, + "state": "maneuver", + "target": 2022, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -228452,10 +226374,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1925, - "actions": [ - { "type": "move", "targetId": 1925, "ignoreReached": true } - ], + "targetId": 2022, + "actions": [{ "type": "move", "targetId": 2022 }], "ordersForSector": 20 } ], @@ -228464,8 +226384,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 241.90023348954813, - "coord": [-9.602634890928705, -14.455873123469456], + "angle": -53.285311631762525, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -228590,17 +226510,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1925, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2022, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1948, + "id": 2053, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1924 }, + "default": { "type": "escort", "targetId": 2022 }, "mask": "BigInt:4" }, "drive": { @@ -228610,11 +226530,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.1863, - "currentRotary": -0.27992700776877877, + "currentSpeed": 0, + "currentRotary": 1.51843644923507, "state": "maneuver", - "target": 1924, - "targetReached": true, + "target": 2022, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -228627,10 +226547,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1924, - "actions": [ - { "type": "move", "targetId": 1924, "ignoreReached": true } - ], + "targetId": 2022, + "actions": [{ "type": "move", "targetId": 2022 }], "ordersForSector": 20 } ], @@ -228639,8 +226557,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -346.5176196341615, - "coord": [-7.458222438152091, 27.247804700554017], + "angle": -51.319724185267866, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -228765,17 +226683,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1924, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2022, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1949, + "id": 2054, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1924 }, + "default": { "type": "escort", "targetId": 2021 }, "mask": "BigInt:4" }, "drive": { @@ -228785,11 +226703,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.8748, - "currentRotary": 0.23919625033552494, - "state": "cruise", - "target": 1924, - "targetReached": true, + "currentSpeed": 0.49139999999999995, + "currentRotary": -0.08409420084331609, + "state": "maneuver", + "target": 2021, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -228802,10 +226720,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1924, - "actions": [ - { "type": "move", "targetId": 1924, "ignoreReached": true } - ], + "targetId": 2021, + "actions": [{ "type": "move", "targetId": 2021 }], "ordersForSector": 20 } ], @@ -228814,8 +226730,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 237.93359324708553, - "coord": [-8.743311968546376, 26.938291210359427], + "angle": -7.622440166307305, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -228940,17 +226856,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1924, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2021, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1950, + "id": 2055, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1923 }, + "default": { "type": "escort", "targetId": 2021 }, "mask": "BigInt:4" }, "drive": { @@ -228960,11 +226876,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0, - "currentRotary": -0.40963156792109423, - "state": "cruise", - "target": 1923, - "targetReached": true, + "currentSpeed": 0.49139999999999995, + "currentRotary": -0.08409420084330943, + "state": "maneuver", + "target": 2021, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -228977,10 +226893,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1923, - "actions": [ - { "type": "move", "targetId": 1923, "ignoreReached": true } - ], + "targetId": 2021, + "actions": [{ "type": "move", "targetId": 2021 }], "ordersForSector": 20 } ], @@ -228989,8 +226903,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -253.19854202937236, - "coord": [6.855211080840731, 25.155849195373268], + "angle": 0.6263325873669423, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -229115,17 +227029,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1923, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2021, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1951, + "id": 2056, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1923 }, + "default": { "type": "escort", "targetId": 2020 }, "mask": "BigInt:4" }, "drive": { @@ -229135,11 +227049,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0, - "currentRotary": 2.220446049250313e-15, - "state": "warming", - "target": 1923, - "targetReached": true, + "currentSpeed": 0.19799999999999998, + "currentRotary": -0.14391643567457546, + "state": "maneuver", + "target": 2020, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -229152,10 +227066,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1923, - "actions": [ - { "type": "move", "targetId": 1923, "ignoreReached": true } - ], + "targetId": 2020, + "actions": [{ "type": "move", "targetId": 2020 }], "ordersForSector": 20 } ], @@ -229164,8 +227076,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 289.1092095260865, - "coord": [7.048514084667959, 25.518843898122096], + "angle": -32.88931189146246, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -229290,17 +227202,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1923, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2020, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.3 } }, - "id": 1952, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2057, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1922 }, + "default": { "type": "escort", "targetId": 2020 }, "mask": "BigInt:4" }, "drive": { @@ -229310,11 +227222,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.5670000000000001, - "currentRotary": -0.2280636367100186, - "state": "cruise", - "target": 1922, - "targetReached": true, + "currentSpeed": 0.19799999999999998, + "currentRotary": -0.14391643567458035, + "state": "maneuver", + "target": 2020, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -229327,10 +227239,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1922, - "actions": [ - { "type": "move", "targetId": 1922, "ignoreReached": true } - ], + "targetId": 2020, + "actions": [{ "type": "move", "targetId": 2020 }], "ordersForSector": 20 } ], @@ -229339,8 +227249,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -363.67734220507316, - "coord": [-26.94557831929113, 4.266640755315815], + "angle": -30.92372444496781, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -229465,17 +227375,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1922, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2020, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1953, + "id": 2058, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1922 }, + "default": { "type": "escort", "targetId": 2019 }, "mask": "BigInt:4" }, "drive": { @@ -229485,11 +227395,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.5670000000000001, - "currentRotary": -0.22953016165851015, - "state": "cruise", - "target": 1922, - "targetReached": true, + "currentSpeed": 0.49139999999999995, + "currentRotary": -0.08887170230603658, + "state": "maneuver", + "target": 2019, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -229502,10 +227412,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1922, - "actions": [ - { "type": "move", "targetId": 1922, "ignoreReached": true } - ], + "targetId": 2019, + "actions": [{ "type": "move", "targetId": 2019 }], "ordersForSector": 20 } ], @@ -229514,8 +227422,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 233.19801077372293, - "coord": [-27.141888562352815, 4.071754791344523], + "angle": -19.2689132884587, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -229640,17 +227548,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1922, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2019, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1954, + "id": 2059, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1921 }, + "default": { "type": "escort", "targetId": 2019 }, "mask": "BigInt:4" }, "drive": { @@ -229660,11 +227568,11 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.7533000000000001, - "currentRotary": 0.08369477989370644, - "state": "cruise", - "target": 1921, - "targetReached": true, + "currentSpeed": 0.49139999999999995, + "currentRotary": -0.08887170230603969, + "state": "maneuver", + "target": 2019, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -229677,10 +227585,8 @@ { "type": "escort", "origin": "auto", - "targetId": 1921, - "actions": [ - { "type": "move", "targetId": 1921, "ignoreReached": true } - ], + "targetId": 2019, + "actions": [{ "type": "move", "targetId": 2019 }], "ordersForSector": 20 } ], @@ -229689,8 +227595,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -289.2726911484928, - "coord": [-16.066540147317383, 13.190927970681628], + "angle": -17.30332584196404, + "coord": [-0.9891037310083645, -1.8497668222595567], "sector": 20, "moved": true }, @@ -229815,17 +227721,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1921, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2019, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1955, + "id": 2060, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1921 }, + "default": { "type": "escort", "targetId": 2018 }, "mask": "BigInt:4" }, "drive": { @@ -229835,10 +227741,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.7533000000000001, - "currentRotary": -0.10497255367759806, + "currentSpeed": 0, + "currentRotary": -0.43048269339159306, "state": "cruise", - "target": 1921, + "target": 2018, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -229852,11 +227758,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1921, + "targetId": 2018, "actions": [ - { "type": "move", "targetId": 1921, "ignoreReached": true } + { "type": "move", "targetId": 2018, "ignoreReached": true } ], - "ordersForSector": 20 + "ordersForSector": 21 } ], "mask": "BigInt:134217728" @@ -229864,10 +227770,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 276.1953174672458, - "coord": [-16.209060271933346, 13.255189520500151], - "sector": 20, - "moved": true + "angle": -337.6091274203634, + "coord": [-2.7243336917788166, 19.905661174077245], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -229990,17 +227897,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1921, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2018, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1956, + "id": 2061, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1920 }, + "default": { "type": "escort", "targetId": 2018 }, "mask": "BigInt:4" }, "drive": { @@ -230010,10 +227917,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0, - "currentRotary": -0.24874098201625028, - "state": "maneuver", - "target": 1920, + "currentSpeed": 0.3726, + "currentRotary": -0.16425925617318127, + "state": "warming", + "target": 2018, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -230027,11 +227934,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1920, + "targetId": 2018, "actions": [ - { "type": "move", "targetId": 1920, "ignoreReached": true } + { "type": "move", "targetId": 2018, "ignoreReached": true } ], - "ordersForSector": 20 + "ordersForSector": 21 } ], "mask": "BigInt:134217728" @@ -230039,10 +227946,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -227.4827223991157, - "coord": [6.521378095358172, 24.590753692924174], - "sector": 20, - "moved": true + "angle": 372.588399078114, + "coord": [-2.476571470413294, 19.58142526187071], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -230165,17 +228073,193 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1920, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2018, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0.3 } }, + "id": 2062, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "escort", "targetId": 2017 }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.27, + "rotary": 3.6651914291880923, + "cruise": 2.1, + "ttc": 0.3, + "maneuver": 0.69, + "active": true, + "currentSpeed": 1.701, + "currentRotary": -0.37653065114320894, + "state": "cruise", + "target": 2017, + "targetReached": true, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "follow", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "escort", + "origin": "auto", + "targetId": 2017, + "actions": [ + { "type": "move", "targetId": 2017, "ignoreReached": true } + ], + "ordersForSector": 21 + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -266.88287952240614, + "coord": [24.512114941650786, -1.8813470386490323], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 9778411, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 0, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 95, "regen": 0.2, "value": 95 }, + "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 2.2, + "range": 0.9, + "cooldown": 1, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "tauFighter", + "value": "Stinger", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "TAU Stinger", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 2017, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1957, + "id": 2063, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1920 }, + "default": { "type": "escort", "targetId": 2017 }, "mask": "BigInt:4" }, "drive": { @@ -230186,9 +228270,9 @@ "maneuver": 0.69, "active": true, "currentSpeed": 0, - "currentRotary": 0.14878058189261667, + "currentRotary": -0.5798898976644891, "state": "cruise", - "target": 1920, + "target": 2017, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -230202,11 +228286,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1920, + "targetId": 2017, "actions": [ - { "type": "move", "targetId": 1920, "ignoreReached": true } + { "type": "move", "targetId": 2017, "ignoreReached": true } ], - "ordersForSector": 20 + "ordersForSector": 21 } ], "mask": "BigInt:134217728" @@ -230214,10 +228298,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 281.5423429446954, - "coord": [6.569173325943733, 24.948215036772297], - "sector": 20, - "moved": true + "angle": 260.8354439208041, + "coord": [25.564367813269357, -3.11756107280945], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -230340,17 +228425,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1920, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2017, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1958, + "id": 2064, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1919 }, + "default": { "type": "escort", "targetId": 2016 }, "mask": "BigInt:4" }, "drive": { @@ -230361,9 +228446,9 @@ "maneuver": 0.69, "active": true, "currentSpeed": 0, - "currentRotary": -1.2899665193716026, + "currentRotary": -0.7678464413985342, "state": "cruise", - "target": 1919, + "target": 2016, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -230377,11 +228462,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1919, + "targetId": 2016, "actions": [ - { "type": "move", "targetId": 1919, "ignoreReached": true } + { "type": "move", "targetId": 2016, "ignoreReached": true } ], - "ordersForSector": 20 + "ordersForSector": 21 } ], "mask": "BigInt:134217728" @@ -230389,10 +228474,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -274.3131565683294, - "coord": [22.115869259495916, 19.49747684856489], - "sector": 20, - "moved": true + "angle": -201.83178238142025, + "coord": [23.75609850769361, -7.326563016745801], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -230515,17 +228601,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1919, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2016, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1959, + "id": 2065, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1919 }, + "default": { "type": "escort", "targetId": 2016 }, "mask": "BigInt:4" }, "drive": { @@ -230535,10 +228621,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.1863, - "currentRotary": -0.13047201825491417, - "state": "warming", - "target": 1919, + "currentSpeed": 1.1340000000000001, + "currentRotary": 0.09795399727391674, + "state": "cruise", + "target": 2016, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -230552,11 +228638,11 @@ { "type": "escort", "origin": "auto", - "targetId": 1919, + "targetId": 2016, "actions": [ - { "type": "move", "targetId": 1919, "ignoreReached": true } + { "type": "move", "targetId": 2016, "ignoreReached": true } ], - "ordersForSector": 20 + "ordersForSector": 21 } ], "mask": "BigInt:134217728" @@ -230564,10 +228650,11 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 293.0456811375878, - "coord": [22.457905010707137, 19.186507150770755], - "sector": 20, - "moved": true + "angle": 289.0303505557119, + "coord": [22.836141570841527, -6.422919691235721], + "sector": 21, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 9778411, @@ -230690,17 +228777,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1919, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2016, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.3 } }, - "id": 1960, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2066, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1918 }, + "default": { "type": "escort", "targetId": 2015 }, "mask": "BigInt:4" }, "drive": { @@ -230710,10 +228797,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0, - "currentRotary": 3.125541370876295, + "currentSpeed": 1.1340000000000001, + "currentRotary": -0.011110553236560516, "state": "cruise", - "target": 1918, + "target": 2015, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -230727,9 +228814,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1918, + "targetId": 2015, "actions": [ - { "type": "move", "targetId": 1918, "ignoreReached": true } + { "type": "move", "targetId": 2015, "ignoreReached": true } ], "ordersForSector": 21 } @@ -230739,8 +228826,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -273.86971919099665, - "coord": [-29.662974592828686, -14.25609920033063], + "angle": -284.22936668584396, + "coord": [-4.954298590905893, -20.53874681760977], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -230866,17 +228953,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1918, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2015, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1961, + "id": 2067, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1918 }, + "default": { "type": "escort", "targetId": 2015 }, "mask": "BigInt:4" }, "drive": { @@ -230886,10 +228973,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0, - "currentRotary": 0.10656971895754275, + "currentSpeed": 1.8873000000000002, + "currentRotary": 0.003608648094226563, "state": "cruise", - "target": 1918, + "target": 2015, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -230903,9 +228990,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1918, + "targetId": 2015, "actions": [ - { "type": "move", "targetId": 1918, "ignoreReached": true } + { "type": "move", "targetId": 2015, "ignoreReached": true } ], "ordersForSector": 21 } @@ -230915,8 +229002,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 225.55191505757185, - "coord": [-28.99670508094206, -12.68197939754572], + "angle": 331.51778721711014, + "coord": [-6.727101773282625, -20.370819218135306], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -231042,17 +229129,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1918, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2015, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1962, + "id": 2068, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1917 }, + "default": { "type": "escort", "targetId": 2014 }, "mask": "BigInt:4" }, "drive": { @@ -231062,10 +229149,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0.11879999999999999, - "currentRotary": -0.23202214369740304, - "state": "cruise", - "target": 1917, + "currentSpeed": 0, + "currentRotary": -0.3592159225226963, + "state": "maneuver", + "target": 2014, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -231079,9 +229166,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1917, + "targetId": 2014, "actions": [ - { "type": "move", "targetId": 1917, "ignoreReached": true } + { "type": "move", "targetId": 2014, "ignoreReached": true } ], "ordersForSector": 21 } @@ -231091,8 +229178,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -176.01133265119708, - "coord": [23.017876493445897, -17.667245309924272], + "angle": -214.66623142153696, + "coord": [-1.010467538717335, 22.834058026659257], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -231218,17 +229305,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1917, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2014, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1963, + "id": 2069, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1917 }, + "default": { "type": "escort", "targetId": 2014 }, "mask": "BigInt:4" }, "drive": { @@ -231239,9 +229326,9 @@ "maneuver": 0.69, "active": true, "currentSpeed": 0, - "currentRotary": -0.4316871100730011, - "state": "cruise", - "target": 1917, + "currentRotary": 0.03158493102717008, + "state": "warming", + "target": 2014, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -231255,9 +229342,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1917, + "targetId": 2014, "actions": [ - { "type": "move", "targetId": 1917, "ignoreReached": true } + { "type": "move", "targetId": 2014, "ignoreReached": true } ], "ordersForSector": 21 } @@ -231267,8 +229354,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 391.07029330138977, - "coord": [22.734116925110737, -17.64268258307938], + "angle": 457.60081159916456, + "coord": [-1.1339683590118086, 23.094465186230753], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -231394,17 +229481,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1917, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2014, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1964, + "cooldowns": { "timers": { "cruise": 0.3 } }, + "id": 2070, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1916 }, + "default": { "type": "escort", "targetId": 2013 }, "mask": "BigInt:4" }, "drive": { @@ -231415,9 +229502,9 @@ "maneuver": 0.69, "active": true, "currentSpeed": 0, - "currentRotary": -3.021567890080246, - "state": "cruise", - "target": 1916, + "currentRotary": -0.5676118388374287, + "state": "maneuver", + "target": 2013, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -231431,9 +229518,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1916, + "targetId": 2013, "actions": [ - { "type": "move", "targetId": 1916, "ignoreReached": true } + { "type": "move", "targetId": 2013, "ignoreReached": true } ], "ordersForSector": 21 } @@ -231443,8 +229530,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -361.32767890933377, - "coord": [15.093140574131084, -15.561995514832013], + "angle": -343.4339283394947, + "coord": [-16.635587150311743, -14.963102966016564], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -231570,17 +229657,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1916, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2013, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1965, + "id": 2071, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1916 }, + "default": { "type": "escort", "targetId": 2013 }, "mask": "BigInt:4" }, "drive": { @@ -231590,10 +229677,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 0, - "currentRotary": 2.846086767625465, + "currentSpeed": 0.039599999999999996, + "currentRotary": -0.3916002241833447, "state": "cruise", - "target": 1916, + "target": 2013, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -231607,9 +229694,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1916, + "targetId": 2013, "actions": [ - { "type": "move", "targetId": 1916, "ignoreReached": true } + { "type": "move", "targetId": 2013, "ignoreReached": true } ], "ordersForSector": 21 } @@ -231619,8 +229706,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 323.13829883860404, - "coord": [14.749060138045154, -15.493821950894787], + "angle": 294.4295803494901, + "coord": [-16.413273062795255, -14.922460705571574], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -231746,17 +229833,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1916, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2013, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1966, + "id": 2072, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1915 }, + "default": { "type": "escort", "targetId": 2012 }, "mask": "BigInt:4" }, "drive": { @@ -231766,10 +229853,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 2.1, - "currentRotary": -0.007902547075194999, + "currentSpeed": 0.07919999999999999, + "currentRotary": 0.014640367155090317, "state": "cruise", - "target": 1915, + "target": 2012, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -231783,9 +229870,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1915, + "targetId": 2012, "actions": [ - { "type": "move", "targetId": 1915, "ignoreReached": true } + { "type": "move", "targetId": 2012, "ignoreReached": true } ], "ordersForSector": 21 } @@ -231795,8 +229882,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -251.00579054049933, - "coord": [23.43659068964733, 11.827135220028229], + "angle": -234.50371084361376, + "coord": [-0.6964309067406089, 20.036356349885725], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -231922,17 +230009,17 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1915, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2012, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1967, + "id": 2073, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1915 }, + "default": { "type": "escort", "targetId": 2012 }, "mask": "BigInt:4" }, "drive": { @@ -231942,10 +230029,10 @@ "ttc": 0.3, "maneuver": 0.69, "active": true, - "currentSpeed": 2.1, - "currentRotary": 0.012308567298361606, + "currentSpeed": 0.07919999999999999, + "currentRotary": 0.1994084158728633, "state": "cruise", - "target": 1915, + "target": 2012, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -231959,9 +230046,9 @@ { "type": "escort", "origin": "auto", - "targetId": 1915, + "targetId": 2012, "actions": [ - { "type": "move", "targetId": 1915, "ignoreReached": true } + { "type": "move", "targetId": 2012, "ignoreReached": true } ], "ordersForSector": 21 } @@ -231971,8 +230058,8 @@ "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 383.58682931723615, - "coord": [23.752336923693516, 9.785606293781488], + "angle": 358.5005115966996, + "coord": [-1.0508600198485407, 20.03701105930696], "sector": 21, "moved": true, "mask": "BigInt:2199023255552" @@ -232098,67 +230185,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1915, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2012, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1968, + "id": 2074, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1914 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, + "acceleration": 0.1, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.039599999999999996, - "currentRotary": 0.1657048465134272, - "state": "cruise", - "target": 1914, - "targetReached": true, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0, + "state": "warming", + "target": 2642, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1914, - "actions": [ - { "type": "move", "targetId": 1914, "ignoreReached": true } - ], - "ordersForSector": 21 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2642 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -302.8467415414108, - "coord": [-8.601099617396375, 18.09796834359461], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 7.011768873569736, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true }, "render": { - "color": 9778411, + "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -232166,7 +230248,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 0, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -232246,27 +230328,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, + "value": 1, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFighter", - "value": "Stinger", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Stinger", + "value": "FFW Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -232274,67 +230356,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1914, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1260, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1969, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2075, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1914 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.5670000000000001, - "currentRotary": 0.04186432145635299, - "state": "cruise", - "target": 1914, - "targetReached": true, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.3358898026587389, + "state": "maneuver", + "target": 2643, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1914, - "actions": [ - { "type": "move", "targetId": 1914, "ignoreReached": true } - ], - "ordersForSector": 21 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2643 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 319.0219907544038, - "coord": [-8.45351992735641, 17.87065233973545], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 0.6566509035355037, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true }, "render": { - "color": 9778411, + "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -232342,7 +230419,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 0, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -232411,7 +230488,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -232422,27 +230499,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFighter", - "value": "Stinger", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Stinger", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -232450,67 +230527,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1914, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1260, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1970, - "tags": ["selection", "ship", "role:military"] + "id": 2076, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1913 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.1340000000000001, - "currentRotary": -0.04543046904613535, - "state": "cruise", - "target": 1913, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": 0.41081001834921116, + "state": "maneuver", + "target": 2644, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1913, - "actions": [ - { "type": "move", "targetId": 1913, "ignoreReached": true } - ], - "ordersForSector": 21 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2644 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -376.93087422902954, - "coord": [-23.66512011574498, 1.9594544988355578], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 0.7296988235166997, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true }, "render": { - "color": 9778411, + "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -232518,7 +230590,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 0, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -232587,7 +230659,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -232598,27 +230670,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFighter", - "value": "Stinger", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Stinger", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -232626,67 +230698,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1913, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1260, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1971, - "tags": ["selection", "ship", "role:military"] + "id": 2077, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1913 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.5670000000000001, - "currentRotary": 0.07909202231359957, - "state": "cruise", - "target": 1913, - "targetReached": true, + "currentSpeed": 0.013000000000000001, + "currentRotary": -0.12420866115504081, + "state": "warming", + "target": 2645, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1913, - "actions": [ - { "type": "move", "targetId": 1913, "ignoreReached": true } - ], - "ordersForSector": 21 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2645 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 207.2476252977806, - "coord": [-23.628608281539368, 1.7054478259504666], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -121.16583313460785, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, + "moved": true }, "render": { - "color": 9778411, + "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -232694,7 +230761,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 0, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -232763,7 +230830,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -232774,27 +230841,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFighter", - "value": "Stinger", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Stinger", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -232802,67 +230869,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1913, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1249, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1972, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2078, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1912 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 2.1, - "currentRotary": 0.009602261679773516, - "state": "cruise", - "target": 1912, - "targetReached": true, + "currentSpeed": 0.013000000000000001, + "currentRotary": -0.12801978951421278, + "state": "warming", + "target": 2646, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1912, - "actions": [ - { "type": "move", "targetId": 1912, "ignoreReached": true } - ], - "ordersForSector": 21 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2646 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -176.12292336895632, - "coord": [20.15070549080697, -13.211891836664694], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -121.17013139837485, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, + "moved": true }, "render": { - "color": 9778411, + "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -232870,7 +230932,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 0, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -232939,7 +231001,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -232950,27 +231012,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFighter", - "value": "Stinger", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Stinger", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -232978,67 +231040,62 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1912, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1249, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1973, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2079, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 1912 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.27, - "rotary": 3.6651914291880923, - "cruise": 2.1, - "ttc": 0.3, - "maneuver": 0.69, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.1340000000000001, - "currentRotary": -0.04744202081748661, - "state": "cruise", - "target": 1912, - "targetReached": true, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.3780188095785202, + "state": "maneuver", + "target": 2647, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", - "origin": "auto", - "targetId": 1912, - "actions": [ - { "type": "move", "targetId": 1912, "ignoreReached": true } - ], - "ordersForSector": 21 + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2647 }], + "type": "move" } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 242, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 307.737952203721, - "coord": [20.020316634851138, -11.861072591200202], - "sector": 21, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 0.7857167904205431, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true }, "render": { - "color": 9778411, + "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -233046,7 +231103,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 0, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -233115,7 +231172,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -233126,27 +231183,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.2, "value": 95 }, - "shield": { "max": 45, "regen": 3.5, "value": 45 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2.2, - "range": 0.9, - "cooldown": 1, + "value": 2, + "range": 1, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "tauFighter", - "value": "Stinger", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "TAU Stinger", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -233154,11 +231211,11 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1912, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1241, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1974, - "tags": ["selection", "ship", "role:military"] + "id": 2080, + "tags": ["selection", "ship", "role:transport"] }, { "components": { @@ -233174,10 +231231,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.03900000000000001, - "currentRotary": -0.0012586177011666422, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.3374493678953474, "state": "maneuver", - "target": 1052, + "target": 2648, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -233189,52 +231246,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1052 }, - { "type": "dock", "targetId": 1052 }, - { - "targetId": 1052, - "offer": { - "initiator": 1975, - "quantity": 160, - "commodity": "metals", - "factionId": 252, - "budget": 1168, - "allocations": { - "buyer": { "budget": 70, "storage": 37 }, - "seller": { "budget": null, "storage": 78 } - }, - "price": 60, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 75 }, - { "type": "teleport", "targetId": 73 }, - { "type": "move", "targetId": 139 }, - { "type": "teleport", "targetId": 137 }, - { "type": "move", "targetId": 1168 }, - { "type": "dock", "targetId": 1168 }, - { - "targetId": 1168, - "offer": { - "initiator": 1975, - "quantity": 160, - "commodity": "metals", - "factionId": 252, - "budget": 1168, - "allocations": { - "buyer": { "budget": null, "storage": 88 }, - "seller": { "budget": null, "storage": 38 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2648 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -233242,9 +231256,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -31.355029500033076, - "coord": [9.288322911923215, 38.67541203804407], - "sector": 18, + "angle": 0.7837748245882197, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -233258,63 +231272,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 39, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "incoming", - "meta": { "tradeId": "1052:1975:buy:3447" }, - "id": 37 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3447, - "type": "outgoing", - "meta": { "tradeId": "1168:1975:sell:3447" }, - "id": 38 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -233423,10 +231382,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1168, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1241, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1975, + "id": 2081, "tags": ["selection", "ship", "role:transport"] }, { @@ -233443,10 +231402,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": -0.9424777960769379, - "state": "maneuver", - "target": 1004, + "currentSpeed": 0.126, + "currentRotary": -0.00794322948689885, + "state": "cruise", + "target": 2649, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -233458,48 +231417,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1004 }, - { "type": "dock", "targetId": 1004 }, - { - "targetId": 1004, - "offer": { - "initiator": 1976, - "quantity": 88, - "commodity": "water", - "factionId": 252, - "budget": 1168, - "allocations": { - "buyer": { "budget": 74, "storage": 45 }, - "seller": { "budget": null, "storage": 253 } - }, - "price": 35, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 1168 }, - { "type": "dock", "targetId": 1168 }, - { - "targetId": 1168, - "offer": { - "initiator": 1976, - "quantity": 88, - "commodity": "water", - "factionId": 252, - "budget": 1168, - "allocations": { - "buyer": { "budget": null, "storage": 93 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2649 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -233507,8 +231427,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 48.832738902221486, - "coord": [17.11502892875104, -19.67223331101494], + "angle": -121.44023420207789, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -233523,63 +231443,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3597, - "type": "incoming", - "meta": { "tradeId": "1004:1976:buy:3597" }, - "id": 45 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3597, - "type": "outgoing", - "meta": { "tradeId": "1168:1976:sell:3597" }, - "id": 46 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -233688,10 +231553,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1168, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1231, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1976, + "id": 2082, "tags": ["selection", "ship", "role:transport"] }, { @@ -233703,16 +231568,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 1.1500000000000001, + "currentRotary": -0.0005411578683283125, + "state": "cruise", + "target": 2650, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -233723,54 +231588,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 147 }, - { "type": "teleport", "targetId": 145 }, - { "type": "move", "targetId": 1052 }, - { "type": "dock", "targetId": 1052 }, - { - "targetId": 1052, - "offer": { - "initiator": 1977, - "quantity": 160, - "commodity": "metals", - "factionId": 252, - "budget": 1168, - "allocations": { - "buyer": { "budget": 73, "storage": 45 }, - "seller": { "budget": null, "storage": 82 } - }, - "price": 60, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 75 }, - { "type": "teleport", "targetId": 73 }, - { "type": "move", "targetId": 139 }, - { "type": "teleport", "targetId": 137 }, - { "type": "move", "targetId": 1168 }, - { "type": "dock", "targetId": 1168 }, - { - "targetId": 1168, - "offer": { - "initiator": 1977, - "quantity": 160, - "commodity": "metals", - "factionId": 252, - "budget": 1168, - "allocations": { - "buyer": { "budget": null, "storage": 92 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2650 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -233778,9 +231598,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 5.102136072867198, - "coord": [-30.46764460349272, 10.424017784470475], - "sector": 22, + "angle": -90.03724150167308, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -233788,70 +231608,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3567, - "type": "incoming", - "meta": { "tradeId": "1052:1977:buy:3567" }, - "id": 45 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3567, - "type": "outgoing", - "meta": { "tradeId": "1168:1977:sell:3567" }, - "id": 46 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -233920,7 +231685,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -233931,12 +231696,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -233945,13 +231710,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Freighter A", + "value": "FFW Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -233959,10 +231724,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1168, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1231, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1977, + "id": 2083, "tags": ["selection", "ship", "role:transport"] }, { @@ -233979,10 +231744,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 63, + "currentSpeed": 0.13, + "currentRotary": 0.003746798141966323, + "state": "warming", + "target": 2651, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -233994,33 +231759,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 63 }, - { "type": "teleport", "targetId": 61 }, - { "type": "move", "targetId": 65 }, - { "type": "teleport", "targetId": 67 }, - { "type": "move", "targetId": 1155 }, - { "type": "dock", "targetId": 1155 }, - { - "targetId": 1155, - "offer": { - "initiator": 1978, - "quantity": 88, - "commodity": "water", - "factionId": 252, - "budget": 1155, - "allocations": { - "buyer": { "budget": null, "storage": 119 }, - "seller": { "budget": null, "storage": 38 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2651 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -234028,8 +231769,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -14.230454757383576, - "coord": [-3.340652963340716, -16.824465549967655], + "angle": -121.46123396661903, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -234044,36 +231785,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 39, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3390, - "type": "outgoing", - "meta": { "tradeId": "1155:1978:sell:3390" }, - "id": 38 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -234115,7 +231828,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, "quota": { "coolant": 0, @@ -234182,10 +231895,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1155, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1231, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1978, + "cooldowns": { "timers": { "cruise": 2.3 } }, + "id": 2084, "tags": ["selection", "ship", "role:transport"] }, { @@ -234197,15 +231910,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.55, - "currentRotary": 3.9968028886505635e-15, - "state": "maneuver", - "target": 1155, + "currentSpeed": 0.1, + "currentRotary": -0.06453504474754146, + "state": "cruise", + "target": 2652, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -234217,29 +231930,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1155 }, - { "type": "dock", "targetId": 1155 }, - { - "targetId": 1155, - "offer": { - "initiator": 1979, - "quantity": 6, - "commodity": "water", - "factionId": 252, - "budget": 1155, - "allocations": { - "buyer": { "budget": null, "storage": 123 }, - "seller": { "budget": null, "storage": 98 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2652 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -234247,9 +231940,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 11.982542199170464, - "coord": [23.238143293874742, 17.562303743490265], - "sector": 14, + "angle": -3.872918378820887, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -234257,43 +231950,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 99, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 6 - }, - "issued": 3465, - "type": "outgoing", - "meta": { "tradeId": "1155:1979:sell:3465" }, - "id": 98 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -234334,7 +231999,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, "quota": { "coolant": 0, @@ -234362,7 +232027,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -234373,12 +232038,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -234387,13 +232052,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Courier B", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -234401,10 +232066,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1155, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1222, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1979, + "id": 2085, "tags": ["selection", "ship", "role:transport"] }, { @@ -234416,15 +232081,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.9, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 1004, + "currentSpeed": 0.05500000000000001, + "currentRotary": -8.881784197001252e-16, + "state": "warming", + "target": 2653, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -234436,52 +232101,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1004 }, - { "type": "dock", "targetId": 1004 }, - { - "targetId": 1004, - "offer": { - "initiator": 1980, - "quantity": 98, - "commodity": "water", - "factionId": 252, - "budget": 1155, - "allocations": { - "buyer": { "budget": 94, "storage": 37 }, - "seller": { "budget": null, "storage": 238 } - }, - "price": 35, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 63 }, - { "type": "teleport", "targetId": 61 }, - { "type": "move", "targetId": 65 }, - { "type": "teleport", "targetId": 67 }, - { "type": "move", "targetId": 1155 }, - { "type": "dock", "targetId": 1155 }, - { - "targetId": 1155, - "offer": { - "initiator": 1980, - "quantity": 98, - "commodity": "water", - "factionId": 252, - "budget": 1155, - "allocations": { - "buyer": { "budget": null, "storage": 118 }, - "seller": { "budget": null, "storage": 38 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2653 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -234489,9 +232111,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -17.371820764706982, - "coord": [1.50496675150243, -17.28128004301839], - "sector": 13, + "angle": -3.85196398509467, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -234499,70 +232121,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 39, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 98 - }, - "issued": 3336, - "type": "incoming", - "meta": { "tradeId": "1004:1980:buy:3336" }, - "id": 37 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 98 - }, - "issued": 3336, - "type": "outgoing", - "meta": { "tradeId": "1155:1980:sell:3336" }, - "id": 38 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -234631,7 +232198,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -234642,8 +232209,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -234656,13 +232223,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Large Freighter B", + "value": "FFW Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -234670,10 +232237,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1155, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1222, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1980, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2086, "tags": ["selection", "ship", "role:transport"] }, { @@ -234690,10 +232257,10 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 4.855, - "currentRotary": 9.769962616701378e-15, - "state": "cruise", - "target": 145, + "currentSpeed": 0, + "currentRotary": 0.7260980890843145, + "state": "maneuver", + "target": 1074, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -234708,23 +232275,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 145 }, - { "type": "teleport", "targetId": 147 }, - { "type": "move", "targetId": 1111 }, - { "type": "dock", "targetId": 1111 }, + { "type": "move", "targetId": 1074 }, + { "type": "dock", "targetId": 1074 }, { - "targetId": 1111, + "targetId": 1074, "offer": { - "initiator": 1981, + "initiator": 2087, "quantity": 6, - "commodity": "food", + "commodity": "water", "factionId": 252, - "budget": 1147, + "budget": 1222, "allocations": { - "buyer": { "budget": 33, "storage": 33 }, - "seller": { "budget": null, "storage": 70 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 21, + "price": 32, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 63 }, + { "type": "teleport", "targetId": 61 }, + { "type": "move", "targetId": 1222 }, + { "type": "dock", "targetId": 1222 }, + { + "targetId": 1222, + "offer": { + "initiator": 2087, + "quantity": 6, + "commodity": "water", + "factionId": 252, + "budget": 1222, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, "type": "sell" }, "type": "trade" @@ -234737,9 +232323,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 0.29861454522532993, - "coord": [2.3333233802206097, 12.352607361112348], - "sector": 18, + "angle": -2.539402324134209, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -234753,7 +232339,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 71, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -234761,7 +232347,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -234775,12 +232361,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 6 }, - "issued": 3564, + "issued": 1878, + "type": "incoming", + "meta": { "tradeId": "1074:2087:buy:1878" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 6 + }, + "issued": 1878, "type": "outgoing", - "meta": { "tradeId": "1111:1981:sell:3564" }, - "id": 70 + "meta": { "tradeId": "1222:2087:sell:1878" }, + "id": 2 } ], "max": 6, @@ -234810,7 +232423,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -234891,10 +232504,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1147, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1222, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1981, + "id": 2087, "tags": ["selection", "ship", "role:transport"] }, { @@ -234906,15 +232519,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 1111, + "currentSpeed": 0.352, + "currentRotary": -3.552713678800501e-15, + "state": "cruise", + "target": 1214, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -234929,21 +232542,21 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1111 }, - { "type": "dock", "targetId": 1111 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 1111, + "targetId": 1214, "offer": { - "initiator": 1982, - "quantity": 940, - "commodity": "food", + "initiator": 2088, + "quantity": 160, + "commodity": "metals", "factionId": 252, - "budget": 1147, + "budget": 1214, "allocations": { - "buyer": { "budget": 27, "storage": 27 }, - "seller": { "budget": null, "storage": 14 } + "buyer": { "budget": null, "storage": 146 }, + "seller": { "budget": null, "storage": 52 } }, - "price": 21, + "price": 0, "type": "sell" }, "type": "trade" @@ -234956,23 +232569,24 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.564985525991151, - "coord": [-10.151116320668667, 18.006290774858172], - "sector": 22, - "moved": true + "angle": 43.8295724061329, + "coord": [15.01412091876576, 28.6822573042578], + "sector": 14, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, + "allocationIdCounter": 53, "allocations": [ { "amount": { @@ -234980,7 +232594,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -234988,7 +232602,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -234996,13 +232610,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3075, + "issued": 3516, "type": "outgoing", - "meta": { "tradeId": "1111:1982:sell:3075" }, - "id": 14 + "meta": { "tradeId": "1214:2088:sell:3516" }, + "id": 52 } ], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -235029,7 +232643,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -235037,7 +232651,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -235071,7 +232685,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -235082,12 +232696,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -235096,13 +232710,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Large Freighter B", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -235110,10 +232724,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1147, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1214, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1982, + "id": 2088, "tags": ["selection", "ship", "role:transport"] }, { @@ -235125,15 +232739,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.7100000000000001, - "currentRotary": 0.000003284540628811783, - "state": "cruise", - "target": 65, + "currentSpeed": 0.018, + "currentRotary": -0.0000017564028560457245, + "state": "warming", + "target": 1214, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -235148,21 +232762,19 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 65 }, - { "type": "teleport", "targetId": 67 }, - { "type": "move", "targetId": 1135 }, - { "type": "dock", "targetId": 1135 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 1135, + "targetId": 1214, "offer": { - "initiator": 1983, - "quantity": 6, - "commodity": "water", + "initiator": 2089, + "quantity": 940, + "commodity": "metals", "factionId": 252, - "budget": 1135, + "budget": 1214, "allocations": { - "buyer": { "budget": null, "storage": 104 }, - "seller": { "budget": null, "storage": 64 } + "buyer": { "budget": null, "storage": 145 }, + "seller": { "budget": null, "storage": 34 } }, "price": 0, "type": "sell" @@ -235177,23 +232789,24 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -95.82650924003543, - "coord": [14.913877458636756, 24.012990900947823], - "sector": 12, - "moved": true + "angle": 6.124978208000436, + "coord": [15.143194127221319, 29.530749668795636], + "sector": 14, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 65, + "allocationIdCounter": 35, "allocations": [ { "amount": { @@ -235209,21 +232822,21 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 940, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, - "issued": 3504, + "issued": 3486, "type": "outgoing", - "meta": { "tradeId": "1135:1983:sell:3504" }, - "id": 64 + "meta": { "tradeId": "1214:2089:sell:3486" }, + "id": 34 } ], - "max": 6, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -235258,13 +232871,13 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 940, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 6 + "water": 0 }, "quota": { "coolant": 0, @@ -235292,7 +232905,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -235303,8 +232916,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { @@ -235317,13 +232930,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Courier B", + "value": "FFW Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -235331,10 +232944,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1135, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1214, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1983, + "cooldowns": { "timers": { "cruise": 14 } }, + "id": 2089, "tags": ["selection", "ship", "role:transport"] }, { @@ -235346,15 +232959,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 1028, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -235366,48 +232979,15 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1028 }, - { "type": "dock", "targetId": 1028 }, - { - "targetId": 1028, - "offer": { - "initiator": 1984, - "quantity": 160, - "commodity": "metals", - "factionId": 252, - "budget": 1135, - "allocations": { - "buyer": { "budget": 94, "storage": 25 }, - "seller": { "budget": null, "storage": 105 } - }, - "price": 97, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 1135 }, - { "type": "dock", "targetId": 1135 }, - { - "targetId": 1135, - "offer": { - "initiator": 1984, - "quantity": 160, - "commodity": "metals", - "factionId": 252, - "budget": 1135, - "allocations": { - "buyer": { "budget": null, "storage": 107 }, - "seller": { "budget": null, "storage": 26 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2657 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -235415,9 +232995,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -10.722070834253012, - "coord": [-6.518278693840493, -10.193992859542632], - "sector": 14, + "angle": -5.468739978390257, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -235425,70 +233005,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3573, - "type": "incoming", - "meta": { "tradeId": "1028:1984:buy:3573" }, - "id": 25 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3573, - "type": "outgoing", - "meta": { "tradeId": "1135:1984:sell:3573" }, - "id": 26 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -235557,7 +233082,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -235568,12 +233093,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -235582,13 +233107,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Freighter A", + "value": "FFW Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -235596,10 +233121,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1135, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1205, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1984, + "cooldowns": { "timers": { "cruise": 8 } }, + "id": 2090, "tags": ["selection", "ship", "role:transport"] }, { @@ -235616,10 +233141,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.026000000000000002, - "currentRotary": -0.00002637019298834531, - "state": "warming", - "target": 1004, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, + "state": "maneuver", + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -235631,52 +233156,15 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1004 }, - { "type": "dock", "targetId": 1004 }, - { - "targetId": 1004, - "offer": { - "initiator": 1985, - "quantity": 86, - "commodity": "water", - "factionId": 252, - "budget": 1135, - "allocations": { - "buyer": { "budget": 93, "storage": 31 }, - "seller": { "budget": null, "storage": 250 } - }, - "price": 35, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 63 }, - { "type": "teleport", "targetId": 61 }, - { "type": "move", "targetId": 65 }, - { "type": "teleport", "targetId": 67 }, - { "type": "move", "targetId": 1135 }, - { "type": "dock", "targetId": 1135 }, - { - "targetId": 1135, - "offer": { - "initiator": 1985, - "quantity": 86, - "commodity": "water", - "factionId": 252, - "budget": 1135, - "allocations": { - "buyer": { "budget": null, "storage": 106 }, - "seller": { "budget": null, "storage": 32 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2658 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -235684,8 +233172,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 7.76066741882143, - "coord": [-24.933981000900626, -14.80310063254649], + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -235700,63 +233188,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 86 - }, - "issued": 3522, - "type": "incoming", - "meta": { "tradeId": "1004:1985:buy:3522" }, - "id": 31 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 86 - }, - "issued": 3522, - "type": "outgoing", - "meta": { "tradeId": "1135:1985:sell:3522" }, - "id": 32 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -235865,10 +233298,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1135, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1205, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 2.3 } }, - "id": 1985, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2091, "tags": ["selection", "ship", "role:transport"] }, { @@ -235886,9 +233319,9 @@ "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": -0.9424777960769379, + "currentRotary": -0.5482731886500338, "state": "maneuver", - "target": 1125, + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -235900,29 +233333,15 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, - { - "targetId": 1125, - "offer": { - "initiator": 1986, - "quantity": 160, - "commodity": "fuel", - "factionId": 252, - "budget": 1125, - "allocations": { - "buyer": { "budget": null, "storage": 41 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2659 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -235930,9 +233349,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -32.62903464680454, - "coord": [-4.463978951164608, -28.450782461676017], - "sector": 22, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -235946,36 +233365,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 160, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3237, - "type": "outgoing", - "meta": { "tradeId": "1125:1986:sell:3237" }, - "id": 22 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -236004,7 +233395,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 160, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -236051,44 +233442,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "AMS GJ 1002 III Mining Complex", - "time": 532 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "AMS GJ 1002 III Mining Complex", - "time": 943 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 52, - "target": "AMS GJ 1002 III Mining Complex", - "time": 3021 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 52, - "target": "AMS GJ 1002 III Mining Complex", - "time": 3444 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -236121,10 +233475,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1125, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1205, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1986, + "id": 2092, "tags": ["selection", "ship", "role:transport"] }, { @@ -236141,10 +233495,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-15, - "state": "cruise", - "target": 1052, + "currentSpeed": 0, + "currentRotary": -0.9424777960769379, + "state": "maneuver", + "target": 61, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -236159,40 +233513,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1052 }, - { "type": "dock", "targetId": 1052 }, + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 1074 }, + { "type": "dock", "targetId": 1074 }, { - "targetId": 1052, + "targetId": 1074, "offer": { - "initiator": 1987, + "initiator": 2093, "quantity": 160, - "commodity": "metals", + "commodity": "water", "factionId": 252, - "budget": 1125, + "budget": 1195, "allocations": { - "buyer": { "budget": 47, "storage": 23 }, - "seller": { "budget": null, "storage": 81 } + "buyer": { "budget": 48, "storage": 43 }, + "seller": { "budget": null, "storage": 4 } }, - "price": 60, + "price": 32, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 145 }, - { "type": "teleport", "targetId": 147 }, - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, + { "type": "move", "targetId": 63 }, + { "type": "teleport", "targetId": 61 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1195 }, + { "type": "dock", "targetId": 1195 }, { - "targetId": 1125, + "targetId": 1195, "offer": { - "initiator": 1987, + "initiator": 2093, "quantity": 160, - "commodity": "metals", + "commodity": "water", "factionId": 252, - "budget": 1125, + "budget": 1195, "allocations": { - "buyer": { "budget": null, "storage": 47 }, - "seller": { "budget": null, "storage": 24 } + "buyer": { "budget": null, "storage": 48 }, + "seller": { "budget": null, "storage": 44 } }, "price": 0, "type": "sell" @@ -236207,9 +233565,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -47.0484036680764, - "coord": [11.013534194095133, 15.817785947962339], - "sector": 18, + "angle": -3.3343131778688218, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -236223,7 +233581,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 45, "allocations": [ { "amount": { @@ -236239,18 +233597,18 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 160 }, - "issued": 3516, + "issued": 2442, "type": "incoming", - "meta": { "tradeId": "1052:1987:buy:3516" }, - "id": 23 + "meta": { "tradeId": "1074:2093:buy:2442" }, + "id": 43 }, { "amount": { @@ -236266,18 +233624,18 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 160 }, - "issued": 3516, + "issued": 2442, "type": "outgoing", - "meta": { "tradeId": "1125:1987:sell:3516" }, - "id": 24 + "meta": { "tradeId": "1195:2093:sell:2442" }, + "id": 44 } ], "max": 160, @@ -236355,35 +233713,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "AMS GJ 1002 III Mining Complex", - "time": 522 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "AMS GJ 1002 III Mining Complex", - "time": 950 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 85, - "price": 52, - "target": "AMS GJ 1002 III Mining Complex", - "time": 3062 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -236416,10 +233746,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1125, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1195, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1987, + "id": 2093, "tags": ["selection", "ship", "role:transport"] }, { @@ -236431,16 +233761,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.9424777960769379, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -236454,42 +233784,44 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1168 }, - { "type": "dock", "targetId": 1168 }, + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 1074 }, + { "type": "dock", "targetId": 1074 }, { - "targetId": 1168, + "targetId": 1074, "offer": { - "initiator": 1988, - "quantity": 6, - "commodity": "food", + "initiator": 2094, + "quantity": 160, + "commodity": "water", "factionId": 252, - "budget": 1118, + "budget": 1195, "allocations": { - "buyer": { "budget": 32, "storage": 53 }, - "seller": { "budget": null, "storage": 90 } + "buyer": { "budget": 47, "storage": 41 }, + "seller": { "budget": null, "storage": 3 } }, - "price": 21, + "price": 32, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 133 }, - { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 85 }, - { "type": "teleport", "targetId": 87 }, - { "type": "move", "targetId": 1118 }, - { "type": "dock", "targetId": 1118 }, + { "type": "move", "targetId": 63 }, + { "type": "teleport", "targetId": 61 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1195 }, + { "type": "dock", "targetId": 1195 }, { - "targetId": 1118, + "targetId": 1195, "offer": { - "initiator": 1988, - "quantity": 6, - "commodity": "food", + "initiator": 2094, + "quantity": 160, + "commodity": "water", "factionId": 252, - "budget": 1118, + "budget": 1195, "allocations": { - "buyer": { "budget": null, "storage": 32 }, - "seller": { "budget": null, "storage": 54 } + "buyer": { "budget": null, "storage": 47 }, + "seller": { "budget": null, "storage": 42 } }, "price": 0, "type": "sell" @@ -236504,9 +233836,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 32.00566668219322, - "coord": [29.534917661865098, -13.96211785764262], - "sector": 13, + "angle": 15.515242743669935, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -236514,13 +233846,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 55, + "allocationIdCounter": 43, "allocations": [ { "amount": { @@ -236528,7 +233860,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -236542,12 +233874,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 160 }, - "issued": 3555, + "issued": 2364, "type": "incoming", - "meta": { "tradeId": "1168:1988:buy:3555" }, - "id": 53 + "meta": { "tradeId": "1074:2094:buy:2364" }, + "id": 41 }, { "amount": { @@ -236555,7 +233887,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 6, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -236569,15 +233901,15 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 160 }, - "issued": 3555, + "issued": 2364, "type": "outgoing", - "meta": { "tradeId": "1118:1988:sell:3555" }, - "id": 54 + "meta": { "tradeId": "1195:2094:sell:2364" }, + "id": 42 } ], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -236646,7 +233978,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -236657,12 +233989,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -236671,13 +234003,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Courier B", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -236685,10 +234017,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1118, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1195, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1988, + "id": 2094, "tags": ["selection", "ship", "role:transport"] }, { @@ -236705,9 +234037,9 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-15, - "state": "cruise", + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, + "state": "maneuver", "target": 133, "targetReached": false, "name": "drive", @@ -236720,31 +234052,15 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ { "type": "move", "targetId": 133 }, { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 1111 }, - { "type": "dock", "targetId": 1111 }, - { - "targetId": 1111, - "offer": { - "initiator": 1989, - "quantity": 160, - "commodity": "water", - "factionId": 252, - "budget": 1111, - "allocations": { - "buyer": { "budget": null, "storage": 32 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 85 }, + { "type": "teleport", "targetId": 87 }, + { "type": "move", "targetId": 2662 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -236752,8 +234068,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 58.47109876273911, - "coord": [23.23157282613336, -16.27470216569692], + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -236768,36 +234084,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 160 - }, - "issued": 3489, - "type": "outgoing", - "meta": { "tradeId": "1111:1989:sell:3489" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -236839,7 +234127,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 + "water": 0 }, "quota": { "coolant": 0, @@ -236906,10 +234194,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1111, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1188, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1989, + "id": 2095, "tags": ["selection", "ship", "role:transport"] }, { @@ -236926,9 +234214,9 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, + "state": "maneuver", "target": 133, "targetReached": false, "name": "drive", @@ -236941,33 +234229,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ { "type": "move", "targetId": 133 }, { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 147 }, - { "type": "teleport", "targetId": 145 }, - { "type": "move", "targetId": 1104 }, - { "type": "dock", "targetId": 1104 }, - { - "targetId": 1104, - "offer": { - "initiator": 1990, - "quantity": 88, - "commodity": "water", - "factionId": 252, - "budget": 1104, - "allocations": { - "buyer": { "budget": null, "storage": 14 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 2663 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -236975,8 +234243,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -4.356622993697872, - "coord": [29.08626239026003, -14.128827671402778], + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -236991,36 +234259,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3441, - "type": "outgoing", - "meta": { "tradeId": "1104:1990:sell:3441" }, - "id": 28 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -237062,7 +234302,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, "quota": { "coolant": 0, @@ -237129,10 +234369,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1104, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1181, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1990, + "id": 2096, "tags": ["selection", "ship", "role:transport"] }, { @@ -237149,10 +234389,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 1097, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, + "state": "maneuver", + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -237164,29 +234404,15 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1097 }, - { "type": "dock", "targetId": 1097 }, - { - "targetId": 1097, - "offer": { - "initiator": 1991, - "quantity": 82, - "commodity": "water", - "factionId": 252, - "budget": 1097, - "allocations": { - "buyer": { "budget": null, "storage": 20 }, - "seller": { "budget": null, "storage": 40 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2664 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -237194,9 +234420,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -3.855486889023871, - "coord": [7.350100392327988, 1.0224866112062], - "sector": 17, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -237210,36 +234436,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 41, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 82 - }, - "issued": 3369, - "type": "outgoing", - "meta": { "tradeId": "1097:1991:sell:3369" }, - "id": 40 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -237281,7 +234479,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 82 + "water": 0 }, "quota": { "coolant": 0, @@ -237348,10 +234546,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1097, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1174, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1991, + "id": 2097, "tags": ["selection", "ship", "role:transport"] }, { @@ -237363,15 +234561,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": -0.15707963267948966, + "currentRotary": 0.5593488260215134, "state": "maneuver", - "target": 1090, + "target": 137, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -237383,29 +234581,13 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 1090 }, - { "type": "dock", "targetId": 1090 }, - { - "targetId": 1090, - "offer": { - "initiator": 1992, - "quantity": 940, - "commodity": "food", - "factionId": 252, - "budget": 1090, - "allocations": { - "buyer": { "budget": null, "storage": 19 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 137 }, + { "type": "teleport", "targetId": 139 }, + { "type": "move", "targetId": 2665 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -237413,9 +234595,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -4.654290539256462, - "coord": [1.8694092627058194, 5.3586121917620675], - "sector": 14, + "angle": -116.68732394362083, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -237423,43 +234605,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3465, - "type": "outgoing", - "meta": { "tradeId": "1090:1992:sell:3465" }, - "id": 22 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -237486,7 +234640,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -237528,7 +234682,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -237539,12 +234693,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -237553,13 +234707,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Large Freighter B", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -237567,10 +234721,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1090, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1167, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1992, + "id": 2098, "tags": ["selection", "ship", "role:transport"] }, { @@ -237587,10 +234741,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 137, + "currentSpeed": 0, + "currentRotary": 0.8985630312330004, + "state": "warming", + "target": 1074, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -237605,42 +234759,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 137 }, - { "type": "teleport", "targetId": 139 }, - { "type": "move", "targetId": 1147 }, - { "type": "dock", "targetId": 1147 }, + { "type": "move", "targetId": 1074 }, + { "type": "dock", "targetId": 1074 }, { - "targetId": 1147, + "targetId": 1074, "offer": { - "initiator": 1993, + "initiator": 2099, "quantity": 160, - "commodity": "food", + "commodity": "water", "factionId": 252, - "budget": 1083, + "budget": 1160, "allocations": { - "buyer": { "budget": 27, "storage": 53 }, - "seller": { "budget": null, "storage": 75 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 18, + "price": 29, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 139 }, - { "type": "teleport", "targetId": 137 }, - { "type": "move", "targetId": 1083 }, - { "type": "dock", "targetId": 1083 }, + { "type": "move", "targetId": 63 }, + { "type": "teleport", "targetId": 61 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1160 }, + { "type": "dock", "targetId": 1160 }, { - "targetId": 1083, + "targetId": 1160, "offer": { - "initiator": 1993, + "initiator": 2099, "quantity": 160, - "commodity": "food", + "commodity": "water", "factionId": 252, - "budget": 1083, + "budget": 1160, "allocations": { - "buyer": { "budget": null, "storage": 27 }, - "seller": { "budget": null, "storage": 54 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -237655,8 +234809,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 8.933668800334235, - "coord": [12.058133669778304, 19.26849634057427], + "angle": -109.35355254618719, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -237671,7 +234825,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 55, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -237679,7 +234833,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -237693,12 +234847,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 160 }, - "issued": 3570, + "issued": 312, "type": "incoming", - "meta": { "tradeId": "1147:1993:buy:3570" }, - "id": 53 + "meta": { "tradeId": "1074:2099:buy:312" }, + "id": 1 }, { "amount": { @@ -237706,7 +234860,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -237720,12 +234874,12 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 0 + "water": 160 }, - "issued": 3570, + "issued": 312, "type": "outgoing", - "meta": { "tradeId": "1083:1993:sell:3570" }, - "id": 54 + "meta": { "tradeId": "1160:2099:sell:312" }, + "id": 2 } ], "max": 160, @@ -237836,10 +234990,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1083, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1160, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1993, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 2099, "tags": ["selection", "ship", "role:transport"] }, { @@ -237856,10 +235010,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 1.7763568394002505e-15, - "state": "cruise", - "target": 159, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 2667, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -237871,56 +235025,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 159 }, - { "type": "teleport", "targetId": 157 }, - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 337 }, - { "type": "dock", "targetId": 337 }, - { - "targetId": 337, - "offer": { - "initiator": 1994, - "quantity": 160, - "commodity": "water", - "factionId": 252, - "budget": 1076, - "allocations": { - "buyer": { "budget": 11, "storage": 21 }, - "seller": { "budget": null, "storage": 115 } - }, - "price": 33, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 157 }, - { "type": "teleport", "targetId": 159 }, - { "type": "move", "targetId": 1076 }, - { "type": "dock", "targetId": 1076 }, - { - "targetId": 1076, - "offer": { - "initiator": 1994, - "quantity": 160, - "commodity": "water", - "factionId": 252, - "budget": 1076, - "allocations": { - "buyer": { "budget": null, "storage": 11 }, - "seller": { "budget": null, "storage": 22 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2667 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -237928,9 +235035,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -20.246716334675945, - "coord": [-17.092779466109217, -8.34276501461147], - "sector": 12, + "angle": 22.606967377420602, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -237944,63 +235051,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 160 - }, - "issued": 3567, - "type": "incoming", - "meta": { "tradeId": "337:1994:buy:3567" }, - "id": 21 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 160 - }, - "issued": 3567, - "type": "outgoing", - "meta": { "tradeId": "1076:1994:sell:3567" }, - "id": 22 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -238076,62 +235128,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 31, - "target": "ACT Gaia Mining Complex", - "time": 1453 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 31, - "target": "ACT Gaia Mining Complex", - "time": 1837 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 29, - "target": "ACT Gaia Mining Complex", - "time": 2221 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 29, - "target": "ACT Gaia Mining Complex", - "time": 2605 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 32, - "target": "ACT Gaia Mining Complex", - "time": 2989 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 88, - "price": 32, - "target": "ACT Gaia Mining Complex", - "time": 3373 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -238164,10 +235161,181 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1076, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1153, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1994, + "id": 2100, + "tags": ["selection", "ship", "role:transport"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "trade" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.1, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, + "active": true, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, + "state": "maneuver", + "target": 2668, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2668 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": -2.841818794658328, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true + }, + "render": { + "color": 4388323, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "lCiv", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 940, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "large", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 1, + "range": 1, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "largeFreighterB", + "value": "Large Freighter B", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "FFW Large Freighter B", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 1146, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2101, "tags": ["selection", "ship", "role:transport"] }, { @@ -238184,14 +235352,14 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.091, - "currentRotary": -8.881784197001252e-16, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, "state": "maneuver", - "target": 24885, + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -238201,7 +235369,11 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24885, "onlyManeuver": true } + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2669 } ], "type": "move" } @@ -238211,9 +235383,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 24.495950548880124, - "coord": [15.742376159355207, 13.443340084396034], - "sector": 18, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -238337,10 +235509,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1064, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1134, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1995, + "id": 2102, "tags": ["selection", "ship", "role:transport"] }, { @@ -238357,10 +235529,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 145, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, + "state": "maneuver", + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -238372,31 +235544,15 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 145 }, - { "type": "teleport", "targetId": 147 }, - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, - { - "targetId": 1125, - "offer": { - "initiator": 1996, - "quantity": 160, - "commodity": "metals", - "factionId": 252, - "budget": 1052, - "allocations": { - "buyer": { "budget": 46, "storage": 46 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 93, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2670 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -238404,9 +235560,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.205534876169045, - "coord": [10.009454533403169, 27.54800712470327], - "sector": 18, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -238420,36 +235576,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3465, - "type": "outgoing", - "meta": { "tradeId": "1125:1996:sell:3465" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -238485,7 +235613,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -238558,10 +235686,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1052, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1122, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1996, + "id": 2103, "tags": ["selection", "ship", "role:transport"] }, { @@ -238578,23 +235706,35 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0, + "currentSpeed": 0.13, + "currentRotary": -8.881784197001252e-16, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 7887, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 2000, + "limit": 0.13, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 7887, "onlyManeuver": true } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -42.05986194968035, - "coord": [18.068679145211572, 13.246983094215908], + "angle": 2.130458408530413, + "coord": [4.633090366123957, 6.027443293683558], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -238720,10 +235860,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1040, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1110, "mask": "BigInt:512" } }, "cooldowns": { "timers": {} }, - "id": 1997, + "id": 2104, "tags": ["selection", "ship", "role:transport"] }, { @@ -238741,9 +235881,9 @@ "maneuver": 0.13, "active": true, "currentSpeed": 1, - "currentRotary": 0, + "currentRotary": -1.7763568394002505e-15, "state": "cruise", - "target": 1135, + "target": 1214, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -238758,21 +235898,21 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1135 }, - { "type": "dock", "targetId": 1135 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 1135, + "targetId": 1214, "offer": { - "initiator": 1998, + "initiator": 2105, "quantity": 160, "commodity": "metals", "factionId": 252, - "budget": 1028, + "budget": 1098, "allocations": { - "buyer": { "budget": 92, "storage": 105 }, - "seller": { "budget": null, "storage": 60 } + "buyer": { "budget": 74, "storage": 144 }, + "seller": { "budget": null, "storage": 46 } }, - "price": 73, + "price": 83, "type": "sell" }, "type": "trade" @@ -238785,8 +235925,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -1.2902803112226016, - "coord": [-12.840704989793528, -12.045938771219083], + "angle": 24.980663449360343, + "coord": [8.919693126467207, -9.978082595957561], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -238802,7 +235942,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 61, + "allocationIdCounter": 47, "allocations": [ { "amount": { @@ -238826,10 +235966,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3519, + "issued": 3480, "type": "outgoing", - "meta": { "tradeId": "1135:1998:sell:3519" }, - "id": 60 + "meta": { "tradeId": "1214:2105:sell:3480" }, + "id": 46 } ], "max": 160, @@ -238940,10 +236080,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1028, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1098, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1998, + "id": 2105, "tags": ["selection", "ship", "role:transport"] }, { @@ -238955,19 +236095,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, + "currentSpeed": 0.13, + "currentRotary": -8.881784197001252e-16, "state": "maneuver", - "target": 24923, + "target": 7654, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 0.13, "mode": "goto", "mask": "BigInt:131072" }, @@ -238977,7 +236117,7 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24923, "onlyManeuver": true } + { "type": "move", "targetId": 7654, "onlyManeuver": true } ], "type": "move" } @@ -238987,8 +236127,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 19.04404607348703, - "coord": [18.281674834227882, -25.550413553644148], + "angle": 2.7987523524413125, + "coord": [14.431131281240152, -2.3712534543302652], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -238998,15 +236138,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 53, "allocations": [], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -239075,7 +236215,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -239086,12 +236226,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -239100,13 +236240,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Large Freighter B", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -239114,10 +236254,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1016, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1086, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 1999, + "id": 2106, "tags": ["selection", "ship", "role:transport"] }, { @@ -239129,19 +236269,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0.15707963267948966, + "currentRotary": 0.7840872403982733, "state": "maneuver", - "target": 24863, + "target": 2674, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -239150,9 +236290,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24863, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2674 }], "type": "move" } ], @@ -239161,8 +236299,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 8.933682812048005, - "coord": [17.16963551859175, -19.566109738901297], + "angle": -140.8203191194208, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -239171,15 +236309,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 14, + "allocationIdCounter": 1, "allocations": [], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -239248,7 +236386,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -239259,12 +236397,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -239273,13 +236411,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Large Freighter B", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -239287,10 +236425,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1004, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1074, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2000, + "id": 2107, "tags": ["selection", "ship", "role:transport"] }, { @@ -239308,13 +236446,13 @@ "maneuver": 0.09, "active": true, "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 24836, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -239324,7 +236462,11 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24836, "onlyManeuver": true } + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2675 } ], "type": "move" } @@ -239334,11 +236476,10 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 27.508080608132072, - "coord": [-22.536692627271055, -8.241570514173018], - "sector": 14, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -5.468739978390257, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, + "moved": true }, "render": { "color": 4388323, @@ -239351,7 +236492,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 7, + "allocationIdCounter": 1, "allocations": [], "max": 940, "availableWares": { @@ -239422,181 +236563,7 @@ }, "dockable": { "name": "dockable", - "size": "large", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "FFW Large Freighter B", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 992, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2001, - "tags": ["selection", "ship", "role:transport"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "trade" }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, - "active": true, - "currentSpeed": 0.13, - "currentRotary": 1.687538997430238e-13, - "state": "maneuver", - "target": 24837, - "targetReached": false, - "name": "drive", - "minimalDistance": 0.01, - "limit": 0.13, - "mode": "goto", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24837, "onlyManeuver": true } - ], - "type": "move" - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": -25.808753914076505, - "coord": [-22.761400472398066, -7.528086030719205], - "sector": 14, - "moved": true, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 4388323, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "mCiv", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 11, - "allocations": [], - "max": 160, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -239607,12 +236574,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -239621,13 +236588,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Freighter A", + "value": "FFW Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -239635,10 +236602,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 992, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1062, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2002, + "cooldowns": { "timers": { "cruise": 8 } }, + "id": 2108, "tags": ["selection", "ship", "role:transport"] }, { @@ -239650,19 +236617,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, "currentSpeed": 0, - "currentRotary": -0.15707963267948966, + "currentRotary": -0.5482731886500338, "state": "maneuver", - "target": 24864, + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -239672,7 +236639,11 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24864, "onlyManeuver": true } + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2676 } ], "type": "move" } @@ -239682,26 +236653,25 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.008316858929785, - "coord": [-13.028043351064483, 23.9644214585014], - "sector": 14, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -181.78912213538922, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, + "moved": true }, "render": { "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, + "allocationIdCounter": 1, "allocations": [], - "max": 940, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -239770,7 +236740,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -239781,8 +236751,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -239795,13 +236765,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Large Freighter B", + "value": "FFW Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -239809,10 +236779,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 253, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1062, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2003, + "id": 2109, "tags": ["selection", "ship", "role:transport"] }, { @@ -239829,10 +236799,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, + "currentSpeed": 0.036, + "currentRotary": -0.0004656691717510597, "state": "maneuver", - "target": 24865, + "target": 7881, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -239846,7 +236816,7 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24865, "onlyManeuver": true } + { "type": "move", "targetId": 7881, "onlyManeuver": true } ], "type": "move" } @@ -239856,8 +236826,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -24.992860647014204, - "coord": [-13.923738730366196, 23.029972401780178], + "angle": 66.70728911139669, + "coord": [-4.710810006206878, -8.396297384657187], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -239873,7 +236843,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, + "allocationIdCounter": 47, "allocations": [], "max": 940, "availableWares": { @@ -239986,7 +236956,7 @@ "commander": { "name": "commander", "id": 253, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2004, + "id": 2110, "tags": ["selection", "ship", "role:transport"] }, { @@ -240003,10 +236973,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.252, - "currentRotary": -4.440892098500626e-16, + "currentSpeed": 1, + "currentRotary": -2.6645352591003757e-15, "state": "cruise", - "target": 253, + "target": 1086, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -240021,19 +236991,38 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 1086 }, + { "type": "dock", "targetId": 1086 }, + { + "targetId": 1086, + "offer": { + "initiator": 2111, + "quantity": 48, + "commodity": "fuel", + "factionId": 252, + "budget": 253, + "allocations": { + "buyer": { "budget": 109, "storage": 73 }, + "seller": { "budget": null, "storage": 160 } + }, + "price": 54, + "type": "buy" + }, + "type": "trade" + }, { "type": "move", "targetId": 253 }, { "type": "dock", "targetId": 253 }, { "targetId": 253, "offer": { - "initiator": 2005, - "quantity": 45, + "initiator": 2111, + "quantity": 48, "commodity": "fuel", "factionId": 252, "budget": 253, "allocations": { - "buyer": { "budget": null, "storage": 67 }, - "seller": { "budget": null, "storage": 50 } + "buyer": { "budget": null, "storage": 109 }, + "seller": { "budget": null, "storage": 74 } }, "price": 0, "type": "sell" @@ -240048,8 +237037,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 28.85277308685118, - "coord": [17.70238108895299, -24.280114249174297], + "angle": -22.930019509404012, + "coord": [3.6184681091179485, -0.5715015489955593], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -240065,7 +237054,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 51, + "allocationIdCounter": 75, "allocations": [ { "amount": { @@ -240074,7 +237063,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 45, + "fuel": 48, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -240089,10 +237078,37 @@ "tauMetal": 0, "water": 0 }, - "issued": 3507, + "issued": 3576, + "type": "incoming", + "meta": { "tradeId": "1086:2111:buy:3576" }, + "id": 73 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 48, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3576, "type": "outgoing", - "meta": { "tradeId": "253:2005:sell:3507" }, - "id": 50 + "meta": { "tradeId": "253:2111:sell:3576" }, + "id": 74 } ], "max": 160, @@ -240123,7 +237139,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 45, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -240206,31 +237222,31 @@ "commander": { "name": "commander", "id": 253, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2005, + "id": 2111, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 14 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 1.1868238913561442, + "currentSpeed": 0.065, + "currentRotary": -4.477287394166751e-7, "state": "maneuver", - "target": 6174, + "target": 7902, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 2000, + "limit": 0.13, "mode": "goto", "mask": "BigInt:131072" }, @@ -240239,11 +237255,10 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "type": "mine", "actions": [ - { "type": "move", "targetId": 6174 }, - { "targetFieldId": 199, "targetRockId": 6174, "type": "mine" } - ] + { "type": "move", "targetId": 7902, "onlyManeuver": true } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -240251,25 +237266,26 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 5.848582837471716, - "coord": [12.833260640378864, 22.82136948114115], - "sector": 18, - "moved": true + "angle": -32.82576403642485, + "coord": [-5.701286005468656, -8.46224018848461], + "sector": 14, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, + "allocationIdCounter": 77, "allocations": [], - "max": 96, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -240285,7 +237301,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 15, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -240306,7 +237322,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 15, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -240350,26 +237366,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Miner B", + "value": "FFW Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -240377,18 +237393,11 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 5.6, - "efficiency": 1.4, - "entityId": 6174, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1064, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 253, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, - "id": 2006, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2112, + "tags": ["selection", "ship", "role:transport"] }, { "components": { @@ -240398,17 +237407,17 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.548273188650048, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 133, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -240418,12 +237427,49 @@ "orders": { "name": "orders", "value": [ + { + "origin": "auto", + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 1134 }, + { "type": "dock", "targetId": 1134 }, + { + "targetId": 1134, + "offer": { + "commodity": "silica", + "initiator": 2113, + "quantity": 96, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 252 + }, + "type": "trade" + } + ], + "type": "trade" + }, { "origin": "OrderPlanningSystem:auto", - "type": "mine", "actions": [ - { "targetFieldId": 198, "targetRockId": 6712, "type": "mine" } - ] + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2880 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -240431,9 +237477,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 39.4217581213424, - "coord": [-4.582150054525565, 27.687036613699224], - "sector": 18, + "angle": -118.95726906359336, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -240441,15 +237487,43 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [], - "max": 32, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 96, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 99, + "type": "outgoing", + "meta": { "tradeId": "1134:2113:sell:99" }, + "id": 1 + } + ], + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -240464,7 +237538,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 21, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -240485,8 +237559,8 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 21, - "silica": 0, + "ore": 0, + "silica": 96, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -240518,7 +237592,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -240529,27 +237603,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, - "cooldown": 0.3, - "range": 0.95, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Slate", + "value": "FFW Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -240559,15 +237633,15 @@ }, "mining": { "name": "mining", - "buffer": 4, - "efficiency": 1, - "entityId": 6712, + "buffer": 1.4, + "efficiency": 1.4, + "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1052, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1134, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, - "id": 2007, + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2113, "tags": ["selection", "ship", "role:mining"] }, { @@ -240585,10 +237659,10 @@ "maneuver": 0.09, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.22689280275926285, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 133, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -240598,12 +237672,49 @@ "orders": { "name": "orders", "value": [ + { + "origin": "auto", + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 1122 }, + { "type": "dock", "targetId": 1122 }, + { + "targetId": 1122, + "offer": { + "commodity": "ore", + "initiator": 2114, + "quantity": 680, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 252 + }, + "type": "trade" + } + ], + "type": "trade" + }, { "origin": "OrderPlanningSystem:auto", - "type": "mine", "actions": [ - { "targetFieldId": 196, "targetRockId": 4612, "type": "mine" } - ] + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 3922 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -240611,9 +237722,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 7.355411489658466, - "coord": [20.045250104764566, 19.92871037945396], - "sector": 14, + "angle": -11.821738455649616, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -240627,8 +237738,36 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, - "allocations": [], + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 680, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 540, + "type": "outgoing", + "meta": { "tradeId": "1122:2114:sell:540" }, + "id": 1 + } + ], "max": 680, "availableWares": { "coolant": 0, @@ -240645,7 +237784,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 673, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -240665,8 +237804,8 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, - "silica": 673, + "ore": 680, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -240739,15 +237878,15 @@ }, "mining": { "name": "mining", - "buffer": 3.2, + "buffer": 1.6, "efficiency": 1.6, - "entityId": 4612, + "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1040, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1122, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 4 } }, - "id": 2008, + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2114, "tags": ["selection", "ship", "role:mining"] }, { @@ -240764,14 +237903,14 @@ "ttc": 3.5, "maneuver": 0.3, "active": true, - "currentSpeed": 0, - "currentRotary": 1.1868238913561442, - "state": "maneuver", - "target": 24754, + "currentSpeed": 1.0500000000000003, + "currentRotary": 1.9539925233402755e-14, + "state": "cruise", + "target": 196, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.3, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -240780,10 +237919,11 @@ "value": [ { "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 24754, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 196 }, + { "targetFieldId": 196, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -240791,10 +237931,11 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.14526649576529, - "coord": [16.44451187425955, -3.703104845304269], + "angle": 37.17788913738982, + "coord": [2.574654985737538, 4.456845044234333], "sector": 14, - "moved": true + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, @@ -240807,7 +237948,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 26, + "allocationIdCounter": 28, "allocations": [], "max": 96, "availableWares": { @@ -240924,10 +238065,10 @@ "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1028, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1110, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2009, + "id": 2115, "tags": ["selection", "ship", "role:mining"] }, { @@ -240938,11 +238079,11 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "acceleration": 0.09, + "rotary": 0.22689280275926285, + "cruise": 1, + "ttc": 10, + "maneuver": 0.09, "active": true, "currentSpeed": 0, "currentRotary": 0, @@ -240955,29 +238096,42 @@ "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "targetFieldId": 195, "targetRockId": 2912, "type": "mine" } + ] + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 29.57334376320386, - "coord": [18.98108339233946, -17.917296547994848], + "angle": -1.761658917338543, + "coord": [1.5829533187833955, 21.146005558180367], "sector": 14, - "moved": true + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "lMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 6, "allocations": [], - "max": 96, + "max": 680, "availableWares": { "coolant": 0, "drones": 0, @@ -240985,14 +238139,14 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 96, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 481, "silica": 0, "silicon": 0, "superconductors": 0, @@ -241006,14 +238160,14 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 96, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 481, "silica": 0, "silicon": 0, "superconductors": 0, @@ -241046,7 +238200,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -241057,27 +238211,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 830, "regen": 0.2, "value": 830 }, + "shield": { "max": 310, "regen": 6.5, "value": 310 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 3, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "largeMinerA", + "value": "Large Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Miner B", + "value": "FFW Large Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -241087,15 +238241,15 @@ }, "mining": { "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": null, + "buffer": 8, + "efficiency": 1.6, + "entityId": 2912, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1016, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1098, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 5 } }, - "id": 2010, + "cooldowns": { "timers": { "cruise": 0, "mine": 1 } }, + "id": 2116, "tags": ["selection", "ship", "role:mining"] }, { @@ -241106,16 +238260,16 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.0504, - "currentRotary": 0.0002922297857752554, - "state": "warming", - "target": 1004, + "currentSpeed": 0, + "currentRotary": 1.1868238913561442, + "state": "maneuver", + "target": 194, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -241126,37 +238280,13 @@ "orders": { "name": "orders", "value": [ - { - "origin": "auto", - "actions": [ - { "type": "move", "targetId": 1004 }, - { "type": "dock", "targetId": 1004 }, - { - "targetId": 1004, - "offer": { - "commodity": "ice", - "initiator": 2011, - "quantity": 32, - "price": 0, - "budget": null, - "allocations": { - "buyer": { "budget": null, "storage": 254 }, - "seller": { "budget": null, "storage": 32 } - }, - "type": "sell", - "factionId": 252 - }, - "type": "trade" - } - ], - "type": "trade" - }, { "origin": "OrderPlanningSystem:auto", + "type": "mine", "actions": [ - { "type": "move", "targetId": 24924, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 194 }, + { "targetFieldId": 194, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -241164,53 +238294,26 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 19.125442952935167, - "coord": [10.479587434701143, 3.694039289330187], - "sector": 13, - "moved": true + "angle": 4.756847832725056, + "coord": [22.525276706816435, 14.738206747797541], + "sector": 14, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 32, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3597, - "type": "outgoing", - "meta": { "tradeId": "1004:2011:sell:3597" }, - "id": 32 - } - ], - "max": 32, + "allocationIdCounter": 30, + "allocations": [], + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -241244,7 +238347,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 32, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -241279,7 +238382,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -241290,27 +238393,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, - "cooldown": 0.3, - "range": 0.95, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Slate", + "value": "FFW Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -241320,15 +238423,15 @@ }, "mining": { "name": "mining", - "buffer": 1, - "efficiency": 1, + "buffer": 1.4, + "efficiency": 1.4, "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1004, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1086, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 8, "mine": 2 } }, - "id": 2011, + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2117, "tags": ["selection", "ship", "role:mining"] }, { @@ -241339,15 +238442,15 @@ "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.1008, - "currentRotary": -6.217248937900877e-15, - "state": "warming", + "currentSpeed": 0, + "currentRotary": 0.44865335251964833, + "state": "maneuver", "target": 193, "targetReached": false, "name": "drive", @@ -241373,8 +238476,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -39.17233385670123, - "coord": [13.653723251409275, -11.019599119440642], + "angle": -97.02459710156475, + "coord": [13.65574772840406, -14.231685442361746], "sector": 13, "moved": true }, @@ -241383,15 +238486,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, + "allocationIdCounter": 1, "allocations": [], - "max": 32, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -241460,7 +238563,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -241471,27 +238574,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, - "cooldown": 0.3, - "range": 0.95, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Slate", + "value": "FFW Miner B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -241501,35 +238604,35 @@ }, "mining": { "name": "mining", - "buffer": 1, - "efficiency": 1, + "buffer": 0, + "efficiency": 1.4, "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 992, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1074, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 5, "mine": 0 } }, - "id": 2012, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2118, "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 14 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 1.1, - "currentRotary": 0, - "state": "cruise", - "target": 24748, + "currentSpeed": 0, + "currentRotary": 0.44865335251964833, + "state": "maneuver", + "target": 193, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -241541,11 +238644,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 23, - "actions": [{ "type": "move", "targetId": 24748 }], - "clockwise": true + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 193 }, + { "targetFieldId": 193, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -241553,9 +238657,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 35.68650535659052, - "coord": [8.143781464138506, 25.820438149605106], - "sector": 23, + "angle": -97.02459710156475, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -241563,7 +238667,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -241571,7 +238675,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -241651,38 +238755,46 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 1, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Patrol Leader Gunboat", + "value": "FFW Miner B", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2068, 2067, 2066], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1062, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2013, - "tags": ["selection", "ship", "role:military"] + "id": 2119, + "tags": ["selection", "ship", "role:mining"] }, { "components": { @@ -241698,10 +238810,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.11249999999999999, - "currentRotary": -7.105427357601002e-15, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, "state": "maneuver", - "target": 24764, + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -241716,7 +238828,13 @@ "type": "patrol", "origin": "auto", "sectorId": 23, - "actions": [{ "type": "move", "targetId": 24764 }], + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 85 }, + { "type": "teleport", "targetId": 87 }, + { "type": "move", "targetId": 2454 } + ], "clockwise": true } ], @@ -241725,9 +238843,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.77385255930285, - "coord": [11.697128349650086, -21.716098422958378], - "sector": 23, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -241848,12 +238966,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2065, 2064, 2063], + "ids": [2175, 2174, 2173], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2014, + "id": 2120, "tags": ["selection", "ship", "role:military"] }, { @@ -241871,9 +238989,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 0, - "currentRotary": 1.064650843716541, + "currentRotary": -0.5482731886500338, "state": "maneuver", - "target": 24782, + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -241887,8 +239005,14 @@ { "type": "patrol", "origin": "auto", - "sectorId": 22, - "actions": [{ "type": "move", "targetId": 24782 }], + "sectorId": 23, + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 85 }, + { "type": "teleport", "targetId": 87 }, + { "type": "move", "targetId": 2455 } + ], "clockwise": true } ], @@ -241897,181 +239021,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -49.58847568502532, - "coord": [-10.105791238194247, 13.109158026586702], - "sector": 22, - "moved": true - }, - "render": { - "color": 4388323, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "mMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 80, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "medium", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "gunboat", - "value": "Gunboat", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "FFW Patrol Leader Gunboat", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [2062, 2061, 2060], - "mask": "BigInt:4294967296" - } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2015, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "hold" }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, - "active": true, - "currentSpeed": 1.1, - "currentRotary": 2.220446049250313e-15, - "state": "cruise", - "target": 24803, - "targetReached": false, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "goto", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "patrol", - "origin": "auto", - "sectorId": 22, - "actions": [{ "type": "move", "targetId": 24803 }], - "clockwise": false - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": 17.476974569156646, - "coord": [-10.762646376126755, -30.264180468820527], - "sector": 22, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -242192,12 +239144,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2059, 2058, 2057], + "ids": [2172, 2171, 2170], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2016, + "id": 2121, "tags": ["selection", "ship", "role:military"] }, { @@ -242215,9 +239167,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.5482731886500338, "state": "maneuver", - "target": 24935, + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -242231,9 +239183,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 18, - "actions": [{ "type": "move", "targetId": 24935 }], - "clockwise": true + "sectorId": 22, + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 2456 } + ], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -242241,9 +239197,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.9763677975627956, - "coord": [-15.249178001267602, 22.97615617107445], - "sector": 18, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -242364,12 +239320,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2056, 2055, 2054], + "ids": [2169, 2168, 2167], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2017, + "id": 2122, "tags": ["selection", "ship", "role:military"] }, { @@ -242386,10 +239342,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -3.1086244689504383e-15, - "state": "cruise", - "target": 24799, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, + "state": "maneuver", + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -242403,8 +239359,12 @@ { "type": "patrol", "origin": "auto", - "sectorId": 18, - "actions": [{ "type": "move", "targetId": 24799 }], + "sectorId": 22, + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 2457 } + ], "clockwise": true } ], @@ -242413,9 +239373,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -52.00677860627768, - "coord": [-16.022036632716706, 23.764008805856495], - "sector": 18, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -242536,12 +239496,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2053, 2052, 2051], + "ids": [2166, 2165, 2164], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2018, + "id": 2123, "tags": ["selection", "ship", "role:military"] }, { @@ -242558,10 +239518,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 7.993605777301127e-15, - "state": "cruise", - "target": 24831, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, + "state": "maneuver", + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -242575,8 +239535,14 @@ { "type": "patrol", "origin": "auto", - "sectorId": 17, - "actions": [{ "type": "move", "targetId": 24831 }], + "sectorId": 18, + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2458 } + ], "clockwise": false } ], @@ -242585,9 +239551,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 40.2006878968028, - "coord": [-20.171348719843227, 21.104646347174295], - "sector": 17, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -242708,12 +239674,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2050, 2049, 2048], + "ids": [2163, 2162, 2161], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2019, + "id": 2124, "tags": ["selection", "ship", "role:military"] }, { @@ -242730,10 +239696,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.15, - "currentRotary": 5.773159728050814e-15, + "currentSpeed": 0, + "currentRotary": -0.5482731886500338, "state": "maneuver", - "target": 24749, + "target": 133, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -242747,9 +239713,15 @@ { "type": "patrol", "origin": "auto", - "sectorId": 17, - "actions": [{ "type": "move", "targetId": 24749 }], - "clockwise": false + "sectorId": 18, + "actions": [ + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 2459 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -242757,9 +239729,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.087126089263423, - "coord": [23.16570375807891, -3.8664896456497875], - "sector": 17, + "angle": -131.52363967795253, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -242880,12 +239852,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2047, 2046, 2045], + "ids": [2160, 2159, 2158], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2020, + "id": 2125, "tags": ["selection", "ship", "role:military"] }, { @@ -242902,10 +239874,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 24787, + "currentSpeed": 0, + "currentRotary": 0.5593488260215134, + "state": "maneuver", + "target": 137, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -242919,9 +239891,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 14, - "actions": [{ "type": "move", "targetId": 24787 }], - "clockwise": false + "sectorId": 17, + "actions": [ + { "type": "move", "targetId": 137 }, + { "type": "teleport", "targetId": 139 }, + { "type": "move", "targetId": 2460 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -242929,11 +239905,10 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 10.122298868520998, - "coord": [-26.66643637410313, 0.01756835395708678], - "sector": 14, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -116.68732394362083, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, + "moved": true }, "render": { "color": 4388323, @@ -243053,12 +240028,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2044, 2043, 2042], + "ids": [2157, 2156, 2155], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2021, + "id": 2126, "tags": ["selection", "ship", "role:military"] }, { @@ -243076,9 +240051,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 0, - "currentRotary": -1.064650843716541, + "currentRotary": 0.5593488260215134, "state": "maneuver", - "target": 24771, + "target": 137, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -243092,9 +240067,13 @@ { "type": "patrol", "origin": "auto", - "sectorId": 14, - "actions": [{ "type": "move", "targetId": 24771 }], - "clockwise": false + "sectorId": 17, + "actions": [ + { "type": "move", "targetId": 137 }, + { "type": "teleport", "targetId": 139 }, + { "type": "move", "targetId": 2461 } + ], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -243102,11 +240081,10 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 30.64149503109445, - "coord": [22.404880805277713, 11.639544732529071], - "sector": 14, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -116.68732394362083, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, + "moved": true }, "render": { "color": 4388323, @@ -243226,12 +240204,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2041, 2040, 2039], + "ids": [2154, 2153, 2152], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2022, + "id": 2127, "tags": ["selection", "ship", "role:military"] }, { @@ -243248,10 +240226,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.5625, - "currentRotary": 3.552713678800501e-15, - "state": "cruise", - "target": 24894, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": 7911, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -243265,9 +240243,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 13, - "actions": [{ "type": "move", "targetId": 24894 }], - "clockwise": true + "sectorId": 14, + "actions": [{ "type": "move", "targetId": 7911 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -243275,10 +240253,11 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.095219701788796, - "coord": [4.041270123136654, 27.092748196471078], - "sector": 13, - "moved": true + "angle": 27.043569683797614, + "coord": [3.9951179406402226, -32.10473615481688], + "sector": 14, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, @@ -243398,12 +240377,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2038, 2037, 2036], + "ids": [2151, 2150, 2149], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2023, + "id": 2128, "tags": ["selection", "ship", "role:military"] }, { @@ -243420,10 +240399,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-15, + "currentSpeed": 0.42000000000000004, + "currentRotary": -5.754063892027261e-12, "state": "cruise", - "target": 24845, + "target": 7897, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -243437,9 +240416,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 13, - "actions": [{ "type": "move", "targetId": 24845 }], - "clockwise": false + "sectorId": 14, + "actions": [{ "type": "move", "targetId": 7897 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -243447,10 +240426,11 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 36.73185440229639, - "coord": [-1.2044450211091573, -22.131739858190922], - "sector": 13, - "moved": true + "angle": -16.800498575046436, + "coord": [6.136008615566109, -18.07312969490719], + "sector": 14, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, @@ -243570,12 +240550,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2035, 2034, 2033], + "ids": [2148, 2147, 2146], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2024, + "id": 2129, "tags": ["selection", "ship", "role:military"] }, { @@ -243592,10 +240572,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 24832, + "currentSpeed": 0.15, + "currentRotary": 0.3096467247806629, + "state": "maneuver", + "target": 2464, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -243609,9 +240589,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 12, - "actions": [{ "type": "move", "targetId": 24832 }], - "clockwise": false + "sectorId": 13, + "actions": [{ "type": "move", "targetId": 2464 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -243619,9 +240599,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.754683795535383, - "coord": [-14.540158275733104, -22.516335153144205], - "sector": 12, + "angle": -116.01060451275112, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -243742,12 +240722,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2032, 2031, 2030], + "ids": [2145, 2144, 2143], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2025, + "id": 2130, "tags": ["selection", "ship", "role:military"] }, { @@ -243764,10 +240744,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.045, - "currentRotary": -0.00031580599545755206, + "currentSpeed": 0.0225, + "currentRotary": 0.1442796262553001, "state": "warming", - "target": 24920, + "target": 2465, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -243781,9 +240761,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 12, - "actions": [{ "type": "move", "targetId": 24920 }], - "clockwise": true + "sectorId": 13, + "actions": [{ "type": "move", "targetId": 2465 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -243791,9 +240771,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -12.577577784031371, - "coord": [-15.081541434365214, 26.07256814454931], - "sector": 12, + "angle": -115.34715406671864, + "coord": [13.65574772840406, -14.231685442361746], + "sector": 13, "moved": true }, "render": { @@ -243914,50 +240894,48 @@ }, "subordinates": { "name": "subordinates", - "ids": [2029, 2028, 2027], + "ids": [2142, 2141, 2140], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 3 } }, - "id": 2026, + "id": 2131, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2026 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.045, - "currentRotary": -0.2214283981929226, - "state": "maneuver", - "target": 2026, - "targetReached": true, + "currentSpeed": 0.0225, + "currentRotary": 0, + "state": "warming", + "target": 2466, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2026, - "actions": [ - { "type": "move", "targetId": 2026, "ignoreReached": true } - ], - "ordersForSector": 12 + "sectorId": 12, + "actions": [{ "type": "move", "targetId": 2466 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -243965,8 +240943,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -305.7473822324168, - "coord": [-15.139543137513169, 26.00156350485399], + "angle": -2.9142908009113113, + "coord": [-6.371202136808827, -6.253355113467377], "sector": 12, "moved": true }, @@ -243975,7 +240953,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -243983,7 +240961,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -244052,7 +241030,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -244063,76 +241041,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2139, 2138, 2137], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2026, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2027, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 2132, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2026 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.045, - "currentRotary": -0.35513751639518487, + "currentSpeed": 0.0225, + "currentRotary": 0.2865599508048384, "state": "maneuver", - "target": 2026, - "targetReached": true, + "target": 2467, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2026, - "actions": [ - { "type": "move", "targetId": 2026, "ignoreReached": true } - ], - "ordersForSector": 12 + "sectorId": 12, + "actions": [{ "type": "move", "targetId": 2467 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -244140,8 +241115,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -29.276926292461077, - "coord": [-15.143339205217586, 26.19566171777958], + "angle": 1.2983339526136248, + "coord": [-6.371202136808827, -6.253355113467377], "sector": 12, "moved": true }, @@ -244150,7 +241125,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -244158,7 +241133,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -244227,7 +241202,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -244238,59 +241213,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2136, 2135, 2134], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2026, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2028, + "id": 2133, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2026 }, + "default": { "type": "escort", "targetId": 2133 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.4153441988671487, + "currentRotary": 1.0646508437165432, "state": "maneuver", - "target": 2026, - "targetReached": true, + "target": 2133, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -244303,10 +241277,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2026, - "actions": [ - { "type": "move", "targetId": 2026, "ignoreReached": true } - ], + "targetId": 2133, + "actions": [{ "type": "move", "targetId": 2133 }], "ordersForSector": 12 } ], @@ -244315,8 +241287,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 286.1414363849702, - "coord": [-15.31782763404458, 25.983995329330803], + "angle": -3.37886442417926, + "coord": [-6.371202136808827, -6.253355113467377], "sector": 12, "moved": true }, @@ -244427,13 +241399,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -244441,30 +241413,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2026, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2133, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2029, + "id": 2134, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2025 }, + "default": { "type": "escort", "targetId": 2133 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": -0.05332873685833839, - "state": "cruise", - "target": 2025, + "currentSpeed": 0, + "currentRotary": 1.0646508437165405, + "state": "maneuver", + "target": 2133, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -244478,9 +241450,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2025, + "targetId": 2133, "actions": [ - { "type": "move", "targetId": 2025, "ignoreReached": true } + { "type": "move", "targetId": 2133, "ignoreReached": true } ], "ordersForSector": 12 } @@ -244490,8 +241462,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -316.75411570017155, - "coord": [-14.429559394042776, -23.099484024671504], + "angle": 4.153366655398578, + "coord": [-6.371202136808827, -6.253355113467377], "sector": 12, "moved": true }, @@ -244602,13 +241574,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -244616,31 +241588,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2025, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2133, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2030, + "id": 2135, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2025 }, + "default": { "type": "escort", "targetId": 2133 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 2.4756088475902036, - "state": "cruise", - "target": 2025, - "targetReached": true, + "currentRotary": 1.0646508437165405, + "state": "maneuver", + "target": 2133, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -244653,10 +241625,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2025, - "actions": [ - { "type": "move", "targetId": 2025, "ignoreReached": true } - ], + "targetId": 2133, + "actions": [{ "type": "move", "targetId": 2133 }], "ordersForSector": 12 } ], @@ -244665,8 +241635,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -2.474560355686882, - "coord": [-13.120929144949958, -24.312740450004803], + "angle": 5.402412427796834, + "coord": [-6.371202136808827, -6.253355113467377], "sector": 12, "moved": true }, @@ -244777,13 +241747,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -244791,31 +241761,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2025, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2133, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2031, + "id": 2136, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2025 }, + "default": { "type": "escort", "targetId": 2132 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 2.4577427269286005, - "state": "cruise", - "target": 2025, - "targetReached": true, + "currentRotary": -0.9025528414580815, + "state": "maneuver", + "target": 2132, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -244828,10 +241798,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2025, - "actions": [ - { "type": "move", "targetId": 2025, "ignoreReached": true } - ], + "targetId": 2132, + "actions": [{ "type": "move", "targetId": 2132 }], "ordersForSector": 12 } ], @@ -244840,8 +241808,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 330.5105054807562, - "coord": [-12.926824818113912, -24.114837763918274], + "angle": -7.304929226899359, + "coord": [-6.371202136808827, -6.253355113467377], "sector": 12, "moved": true }, @@ -244952,13 +241920,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -244966,30 +241934,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2025, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2132, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2032, + "id": 2137, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2024 }, + "default": { "type": "escort", "targetId": 2132 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -2.478367537831948, - "state": "cruise", - "target": 2024, + "currentRotary": -0.9025528414580766, + "state": "maneuver", + "target": 2132, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -245003,11 +241971,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2024, + "targetId": 2132, "actions": [ - { "type": "move", "targetId": 2024, "ignoreReached": true } + { "type": "move", "targetId": 2132, "ignoreReached": true } ], - "ordersForSector": 13 + "ordersForSector": 12 } ], "mask": "BigInt:134217728" @@ -245015,9 +241983,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -273.64113978732684, - "coord": [-0.12329007664631297, -21.835708596942283], - "sector": 13, + "angle": 6.510487159858069, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -245127,13 +242095,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -245141,31 +242109,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2024, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2132, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2033, + "id": 2138, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2024 }, + "default": { "type": "escort", "targetId": 2132 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": 0.06193498305522471, - "state": "cruise", - "target": 2024, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.9025528414580783, + "state": "maneuver", + "target": 2132, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -245178,9 +242146,184 @@ { "type": "escort", "origin": "auto", - "targetId": 2024, + "targetId": 2132, + "actions": [{ "type": "move", "targetId": 2132 }], + "ordersForSector": 12 + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 1.4763476250767376, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true + }, + "render": { + "color": 4388323, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 10, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 3, + "range": 1.2, + "cooldown": 0.2, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "dart", + "value": "Dart", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "FFW Dart", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 2132, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2139, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "escort", "targetId": 2131 }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, + "active": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539914136, + "state": "maneuver", + "target": 61, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "escort", + "origin": "auto", + "targetId": 2131, "actions": [ - { "type": "move", "targetId": 2024, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2131 } ], "ordersForSector": 13 } @@ -245190,9 +242333,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 55.57555702338574, - "coord": [0.9933063267946012, -20.570230086208955], - "sector": 13, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -245302,13 +242445,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -245316,35 +242459,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2024, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2131, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2034, + "id": 2140, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2024 }, + "default": { "type": "escort", "targetId": 2131 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": 0.047855625066497876, - "state": "cruise", - "target": 2024, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -245353,9 +242496,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2024, + "targetId": 2131, "actions": [ - { "type": "move", "targetId": 2024, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2131 } ], "ordersForSector": 13 } @@ -245365,9 +242510,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 300.61751126539986, - "coord": [0.8690548982218635, -20.30906769266891], - "sector": 13, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -245477,13 +242622,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -245491,35 +242636,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2024, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2131, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2035, + "id": 2141, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2023 }, + "default": { "type": "escort", "targetId": 2131 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.24, - "currentRotary": -0.01102162436226628, - "state": "warming", - "target": 2023, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -245528,9 +242673,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2023, + "targetId": 2131, "actions": [ - { "type": "move", "targetId": 2023, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2131 } ], "ordersForSector": 13 } @@ -245540,9 +242687,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -315.12187514049776, - "coord": [5.075878507756989, 27.44440118900778], - "sector": 13, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -245652,13 +242799,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -245666,35 +242813,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2023, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2131, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 2036, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2142, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2023 }, + "default": { "type": "escort", "targetId": 2130 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": -0.3412543408967399, + "currentSpeed": 0, + "currentRotary": -0.6377348539914136, "state": "maneuver", - "target": 2023, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -245703,9 +242850,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2023, + "targetId": 2130, "actions": [ - { "type": "move", "targetId": 2023, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2130 } ], "ordersForSector": 13 } @@ -245715,9 +242864,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.285916648754313, - "coord": [4.972319770769943, 27.852519801952596], - "sector": 13, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -245827,13 +242976,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -245841,35 +242990,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2023, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2130, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2037, + "id": 2143, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2023 }, + "default": { "type": "escort", "targetId": 2130 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.2021958812228486, - "state": "warming", - "target": 2023, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -245878,9 +243027,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2023, + "targetId": 2130, "actions": [ - { "type": "move", "targetId": 2023, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2130 } ], "ordersForSector": 13 } @@ -245890,9 +243041,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 256.6471277236608, - "coord": [4.882437914919386, 28.072790403999182], - "sector": 13, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -246002,13 +243153,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -246016,35 +243167,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2023, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2130, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 2038, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2144, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2022 }, + "default": { "type": "escort", "targetId": 2130 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.002927572581996163, + "currentRotary": -0.6377348539913994, "state": "maneuver", - "target": 2022, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -246053,11 +243204,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2022, + "targetId": 2130, "actions": [ - { "type": "move", "targetId": 2022, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2130 } ], - "ordersForSector": 14 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -246065,11 +243218,10 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -326.4067721255338, - "coord": [22.600143467570327, 12.013789151402776], - "sector": 14, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, + "moved": true }, "render": { "color": 4388323, @@ -246178,13 +243330,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -246192,30 +243344,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2022, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2130, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2039, + "id": 2145, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2022 }, + "default": { "type": "escort", "targetId": 2129 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -0.006794530950065436, - "state": "maneuver", - "target": 2022, + "currentSpeed": 0.32999999999999996, + "currentRotary": -0.11471338853411162, + "state": "warming", + "target": 2129, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -246229,9 +243381,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2022, + "targetId": 2129, "actions": [ - { "type": "move", "targetId": 2022, "ignoreReached": true } + { "type": "move", "targetId": 2129, "ignoreReached": true } ], "ordersForSector": 14 } @@ -246241,8 +243393,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 37.96067006929084, - "coord": [22.309527054976165, 11.984671104310602], + "angle": -217.79420344387196, + "coord": [5.363834787836096, -18.10679909754902], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -246354,13 +243506,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -246368,30 +243520,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2022, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2129, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2040, + "cooldowns": { "timers": { "cruise": 0.8 } }, + "id": 2146, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2022 }, + "default": { "type": "escort", "targetId": 2129 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.01804151094153461, + "currentRotary": -0.9107078609389561, "state": "maneuver", - "target": 2022, + "target": 2129, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -246405,9 +243557,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2022, + "targetId": 2129, "actions": [ - { "type": "move", "targetId": 2022, "ignoreReached": true } + { "type": "move", "targetId": 2129, "ignoreReached": true } ], "ordersForSector": 14 } @@ -246417,8 +243569,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 314.40871873668965, - "coord": [21.998510738998682, 12.003963720999815], + "angle": -16.482657185894404, + "coord": [5.461645552756187, -18.529764473338634], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -246530,13 +243682,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -246544,30 +243696,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2022, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2129, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2041, + "id": 2147, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2021 }, + "default": { "type": "escort", "targetId": 2129 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.0011361367812683376, - "state": "cruise", - "target": 2021, + "currentSpeed": 0.24, + "currentRotary": -0.30026056673109025, + "state": "maneuver", + "target": 2129, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -246581,9 +243733,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2021, + "targetId": 2129, "actions": [ - { "type": "move", "targetId": 2021, "ignoreReached": true } + { "type": "move", "targetId": 2129, "ignoreReached": true } ], "ordersForSector": 14 } @@ -246593,8 +243745,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -266.336382997827, - "coord": [-25.664622537783067, -1.6398899445479769], + "angle": 316.4598966535362, + "coord": [5.554199248579923, -18.71456062075584], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -246706,13 +243858,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -246720,30 +243872,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2021, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2129, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2042, + "id": 2148, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2021 }, + "default": { "type": "escort", "targetId": 2128 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.0016486142101275192, - "state": "cruise", - "target": 2021, + "currentSpeed": 0, + "currentRotary": 1.9095836023552692e-14, + "state": "maneuver", + "target": 2128, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -246757,9 +243909,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2021, + "targetId": 2128, "actions": [ - { "type": "move", "targetId": 2021, "ignoreReached": true } + { "type": "move", "targetId": 2128, "ignoreReached": true } ], "ordersForSector": 14 } @@ -246769,8 +243921,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 47.824026218445525, - "coord": [-25.46631842661954, -1.406877148786615], + "angle": -254.17707272572807, + "coord": [3.9108766696485615, -32.22159296409885], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -246882,13 +244034,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -246896,30 +244048,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2021, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2128, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2043, + "id": 2149, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2021 }, + "default": { "type": "escort", "targetId": 2128 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": -0.025595730353851653, - "state": "cruise", - "target": 2021, + "currentSpeed": 0, + "currentRotary": 2.9753977059954195e-14, + "state": "maneuver", + "target": 2128, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -246933,9 +244085,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2021, + "targetId": 2128, "actions": [ - { "type": "move", "targetId": 2021, "ignoreReached": true } + { "type": "move", "targetId": 2128, "ignoreReached": true } ], "ordersForSector": 14 } @@ -246945,8 +244097,8 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 336.88010486521034, - "coord": [-24.069930082606408, -2.5229184369515627], + "angle": 67.62206598337035, + "coord": [4.09850201979674, -32.12267420285237], "sector": 14, "moved": true, "mask": "BigInt:2199023255552" @@ -247058,13 +244210,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -247072,30 +244224,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2021, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2128, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2044, + "id": 2150, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2020 }, + "default": { "type": "escort", "targetId": 2128 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": -0.05821832521999193, + "currentSpeed": 0, + "currentRotary": -1.5987211554602254e-14, "state": "maneuver", - "target": 2020, + "target": 2128, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -247109,11 +244261,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2020, + "targetId": 2128, "actions": [ - { "type": "move", "targetId": 2020, "ignoreReached": true } + { "type": "move", "targetId": 2128, "ignoreReached": true } ], - "ordersForSector": 17 + "ordersForSector": 14 } ], "mask": "BigInt:134217728" @@ -247121,10 +244273,11 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -234.87285555821478, - "coord": [23.300920935183576, -4.507327020959075], - "sector": 17, - "moved": true + "angle": 341.7019929108106, + "coord": [3.8660928240326173, -32.57106006300888], + "sector": 14, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 4388323, @@ -247233,13 +244386,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -247247,35 +244400,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2020, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2128, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2045, + "id": 2151, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2020 }, + "default": { "type": "escort", "targetId": 2127 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.15, - "currentRotary": 0.0002895411675218895, + "currentSpeed": 0, + "currentRotary": -0.6377348539914136, "state": "maneuver", - "target": 2020, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -247284,11 +244437,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2020, + "targetId": 2127, "actions": [ - { "type": "move", "targetId": 2020, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2127 } ], - "ordersForSector": 17 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -247296,9 +244451,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 104.293644799406, - "coord": [23.385254822905942, -4.1733501390528644], - "sector": 17, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -247408,13 +244563,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -247422,35 +244577,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2020, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2127, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2046, + "id": 2152, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2020 }, + "default": { "type": "escort", "targetId": 2127 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.005793589797424836, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, "state": "maneuver", - "target": 2020, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -247459,11 +244614,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2020, + "targetId": 2127, "actions": [ - { "type": "move", "targetId": 2020, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2127 } ], - "ordersForSector": 17 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -247471,9 +244628,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 355.60938594714753, - "coord": [23.74213729295796, -4.161978450270714], - "sector": 17, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -247583,13 +244740,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -247597,35 +244754,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2020, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2127, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2047, + "id": 2153, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2019 }, + "default": { "type": "escort", "targetId": 2127 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.005224958863626394, - "state": "cruise", - "target": 2019, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -247634,11 +244791,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2019, + "targetId": 2127, "actions": [ - { "type": "move", "targetId": 2019, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2127 } ], - "ordersForSector": 17 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -247646,9 +244805,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -299.1130236369517, - "coord": [-21.04124070843408, 20.44965587478942], - "sector": 17, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -247758,13 +244917,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -247772,35 +244931,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2019, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2127, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2048, + "id": 2154, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2019 }, + "default": { "type": "escort", "targetId": 2126 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": -0.020327319066685057, - "state": "cruise", - "target": 2019, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539914136, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -247809,11 +244968,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2019, + "targetId": 2126, "actions": [ - { "type": "move", "targetId": 2019, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2126 } ], - "ordersForSector": 17 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -247821,9 +244982,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 77.8884441741719, - "coord": [-21.620217646748987, 19.207174975908423], - "sector": 17, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -247933,13 +245094,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -247947,35 +245108,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2019, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2126, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2049, + "id": 2155, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2019 }, + "default": { "type": "escort", "targetId": 2126 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.3463641555020067, - "state": "cruise", - "target": 2019, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -247984,11 +245145,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2019, + "targetId": 2126, "actions": [ - { "type": "move", "targetId": 2019, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2126 } ], - "ordersForSector": 17 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -247996,9 +245159,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 310.44805426951297, - "coord": [-21.270631756614186, 19.22899277309593], - "sector": 17, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -248108,13 +245271,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -248122,35 +245285,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2019, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2126, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2050, + "id": 2156, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2018 }, + "default": { "type": "escort", "targetId": 2126 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.000006530494367495976, - "state": "cruise", - "target": 2018, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -248159,11 +245322,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2018, + "targetId": 2126, "actions": [ - { "type": "move", "targetId": 2018, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2126 } ], - "ordersForSector": 18 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -248171,9 +245336,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -353.6010275625027, - "coord": [-15.043374266867374, 23.291297984694385], - "sector": 18, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -248283,13 +245448,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -248297,35 +245462,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2018, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2126, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2051, + "id": 2157, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2018 }, + "default": { "type": "escort", "targetId": 2125 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.0008741166389620858, - "state": "cruise", - "target": 2018, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539914136, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -248334,11 +245499,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2018, + "targetId": 2125, "actions": [ - { "type": "move", "targetId": 2018, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2125 } ], - "ordersForSector": 18 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -248346,9 +245513,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -64.56965297341716, - "coord": [-14.881837832889245, 23.56923086903336], - "sector": 18, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -248458,13 +245625,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -248472,35 +245639,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2018, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2125, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2052, + "id": 2158, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2018 }, + "default": { "type": "escort", "targetId": 2125 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.0009534997161741998, - "state": "cruise", - "target": 2018, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -248509,11 +245676,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2018, + "targetId": 2125, "actions": [ - { "type": "move", "targetId": 2018, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2125 } ], - "ordersForSector": 18 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -248521,9 +245690,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 293.56190028160154, - "coord": [-15.310577659773825, 23.947594318971202], - "sector": 18, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -248633,13 +245802,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -248647,35 +245816,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2018, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2125, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2053, + "id": 2159, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2017 }, + "default": { "type": "escort", "targetId": 2125 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": -0.11004085862357416, - "state": "warming", - "target": 2017, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -248684,11 +245853,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2017, + "targetId": 2125, "actions": [ - { "type": "move", "targetId": 2017, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2125 } ], - "ordersForSector": 18 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -248696,9 +245867,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -303.59150880875535, - "coord": [-15.026701882574985, 22.58481493304538], - "sector": 18, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -248808,13 +245979,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -248822,35 +245993,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2017, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2125, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 2054, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2160, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2017 }, + "default": { "type": "escort", "targetId": 2124 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.5219797560253507, + "currentRotary": -0.6377348539914136, "state": "maneuver", - "target": 2017, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -248859,11 +246030,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2017, + "targetId": 2124, "actions": [ - { "type": "move", "targetId": 2017, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2124 } ], - "ordersForSector": 18 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -248871,9 +246044,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -74.69647374538722, - "coord": [-15.34637915765055, 23.011968154238374], - "sector": 18, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -248983,13 +246156,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -248997,35 +246170,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2017, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2124, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2055, + "id": 2161, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2017 }, + "default": { "type": "escort", "targetId": 2124 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 1.4398335122793426, + "currentRotary": -0.6377348539913994, "state": "maneuver", - "target": 2017, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -249034,11 +246207,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2017, + "targetId": 2124, "actions": [ - { "type": "move", "targetId": 2017, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2124 } ], - "ordersForSector": 18 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -249046,9 +246221,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 319.97136779303725, - "coord": [-14.825949476092717, 23.14453235928401], - "sector": 18, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -249158,13 +246333,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -249172,35 +246347,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2017, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2124, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2056, + "id": 2162, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2016 }, + "default": { "type": "escort", "targetId": 2124 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": 0.0005999649148464847, - "state": "cruise", - "target": 2016, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -249209,11 +246384,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2016, + "targetId": 2124, "actions": [ - { "type": "move", "targetId": 2016, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2124 } ], - "ordersForSector": 22 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -249221,9 +246398,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -271.550022738201, - "coord": [-8.898856393840413, -30.19520447269896], - "sector": 22, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -249333,13 +246510,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -249347,35 +246524,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2016, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2124, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2057, + "id": 2163, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2016 }, + "default": { "type": "escort", "targetId": 2123 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": 0.016143737085259513, - "state": "cruise", - "target": 2016, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539914136, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -249384,11 +246561,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2016, + "targetId": 2123, "actions": [ - { "type": "move", "targetId": 2016, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2123 } ], - "ordersForSector": 22 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -249396,9 +246575,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 80.29198663375291, - "coord": [-7.268520994782255, -29.58413986644272], - "sector": 22, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -249508,13 +246687,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -249522,35 +246701,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2016, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2123, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2058, + "id": 2164, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2016 }, + "default": { "type": "escort", "targetId": 2123 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.634743225529701, - "state": "cruise", - "target": 2016, - "targetReached": true, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -249559,11 +246738,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2016, + "targetId": 2123, "actions": [ - { "type": "move", "targetId": 2016, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2123 } ], - "ordersForSector": 22 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -249571,9 +246752,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 294.4677545086006, - "coord": [-9.545921081066055, -29.645094904458794], - "sector": 22, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -249683,13 +246864,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -249697,35 +246878,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2016, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2123, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2059, + "id": 2165, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2015 }, + "default": { "type": "escort", "targetId": 2123 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.0003971052045859125, - "state": "cruise", - "target": 2015, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -249734,11 +246915,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2015, + "targetId": 2123, "actions": [ - { "type": "move", "targetId": 2015, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2123 } ], - "ordersForSector": 22 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -249746,9 +246929,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -314.5506482306011, - "coord": [-9.83345853869519, 12.981653019247231], - "sector": 22, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -249858,13 +247041,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -249872,35 +247055,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2015, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2123, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2060, + "id": 2166, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2015 }, + "default": { "type": "escort", "targetId": 2122 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.003098117279069612, - "state": "cruise", - "target": 2015, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539914136, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -249909,11 +247092,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2015, + "targetId": 2122, "actions": [ - { "type": "move", "targetId": 2015, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2122 } ], - "ordersForSector": 22 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -249921,9 +247106,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -38.07758187183637, - "coord": [-10.07034051847543, 13.21175887339865], - "sector": 22, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -250033,13 +247218,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -250047,35 +247232,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2015, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2122, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2061, + "id": 2167, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2015 }, + "default": { "type": "escort", "targetId": 2122 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.001269410632481538, - "state": "cruise", - "target": 2015, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -250084,11 +247269,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2015, + "targetId": 2122, "actions": [ - { "type": "move", "targetId": 2015, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2122 } ], - "ordersForSector": 22 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -250096,9 +247283,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 282.35949388302646, - "coord": [-10.345332356096081, 13.3225684046668], - "sector": 22, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -250208,13 +247395,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -250222,35 +247409,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2015, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2122, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2062, + "id": 2168, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2014 }, + "default": { "type": "escort", "targetId": 2122 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.700393508199749, + "currentRotary": -0.6377348539913994, "state": "maneuver", - "target": 2014, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -250259,11 +247446,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2014, + "targetId": 2122, "actions": [ - { "type": "move", "targetId": 2014, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2122 } ], - "ordersForSector": 23 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -250271,9 +247460,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -359.1012850314411, - "coord": [12.043247618926195, -21.921551211243713], - "sector": 23, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -250383,13 +247572,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -250397,35 +247586,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2014, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2122, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2063, + "id": 2169, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2014 }, + "default": { "type": "escort", "targetId": 2121 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 2.478367537831948, + "currentRotary": -0.6377348539914136, "state": "maneuver", - "target": 2014, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -250434,11 +247623,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2014, + "targetId": 2121, "actions": [ - { "type": "move", "targetId": 2014, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2121 } ], - "ordersForSector": 23 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -250446,9 +247637,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -52.555991083576274, - "coord": [11.974627817917064, -21.735979744197376], - "sector": 23, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -250558,13 +247749,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -250572,35 +247763,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2014, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2121, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2064, + "id": 2170, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2014 }, + "default": { "type": "escort", "targetId": 2121 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.11249999999999999, - "currentRotary": -0.0022520885824039993, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, "state": "maneuver", - "target": 2014, - "targetReached": true, + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -250609,11 +247800,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2014, + "targetId": 2121, "actions": [ - { "type": "move", "targetId": 2014, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2121 } ], - "ordersForSector": 23 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -250621,9 +247814,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 293.6692688762757, - "coord": [12.001794688684166, -21.437018955462435], - "sector": 23, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -250733,13 +247926,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -250747,35 +247940,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2014, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2121, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2065, + "id": 2171, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2013 }, + "default": { "type": "escort", "targetId": 2121 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.46699208416125426, - "state": "cruise", - "target": 2013, - "targetReached": true, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -250784,11 +247977,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2013, + "targetId": 2121, "actions": [ - { "type": "move", "targetId": 2013, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2121 } ], - "ordersForSector": 23 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -250796,9 +247991,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -259.7093663160875, - "coord": [10.20915603235169, 24.38946194282162], - "sector": 23, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -250908,13 +248103,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -250922,35 +248117,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2013, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2121, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2066, + "id": 2172, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2013 }, + "default": { "type": "escort", "targetId": 2120 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.6784725409648695, - "state": "cruise", - "target": 2013, - "targetReached": true, + "currentRotary": -0.6377348539914136, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -250959,11 +248154,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2013, + "targetId": 2120, "actions": [ - { "type": "move", "targetId": 2013, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2120 } ], - "ordersForSector": 23 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -250971,9 +248168,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 22.391407865122705, - "coord": [9.397724659873614, 24.907514987609442], - "sector": 23, + "angle": -98.8132395852321, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -251083,13 +248280,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -251097,35 +248294,35 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2013, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2120, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2067, + "id": 2173, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2013 }, + "default": { "type": "escort", "targetId": 2120 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.703938176544896, - "state": "cruise", - "target": 2013, - "targetReached": true, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { @@ -251134,11 +248331,13 @@ { "type": "escort", "origin": "auto", - "targetId": 2013, + "targetId": 2120, "actions": [ - { "type": "move", "targetId": 2013, "ignoreReached": true } + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2120 } ], - "ordersForSector": 23 + "ordersForSector": 13 } ], "mask": "BigInt:134217728" @@ -251146,9 +248345,9 @@ "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 217.15246881472197, - "coord": [9.527523303857786, 25.154353052987823], - "sector": 23, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { @@ -251258,13 +248457,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "FFW Fighter", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -251272,30 +248471,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2013, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2120, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2068, + "id": 2174, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2120 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 3.0550000000000006, - "currentRotary": 3.9968028886505635e-15, - "state": "cruise", - "target": 1333, + "currentSpeed": 0, + "currentRotary": -0.6377348539913994, + "state": "maneuver", + "target": 61, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -251307,83 +248506,41 @@ "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", + "targetId": 2120, "actions": [ - { "type": "move", "targetId": 1333 }, - { "type": "dock", "targetId": 1333 }, - { - "targetId": 1333, - "offer": { - "initiator": 2069, - "quantity": 6, - "commodity": "metals", - "factionId": 262, - "budget": 1333, - "allocations": { - "buyer": { "budget": null, "storage": 62 }, - "seller": { "budget": null, "storage": 64 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 2120 } + ], + "ordersForSector": 13 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 252, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -129.05076494663837, - "coord": [-21.421584984791842, -5.437567979966303], - "sector": 24, + "angle": -86.24686897087292, + "coord": [-6.371202136808827, -6.253355113467377], + "sector": 12, "moved": true }, "render": { - "color": 16737253, + "color": 4388323, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 65, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 6, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3501, - "type": "outgoing", - "meta": { "tradeId": "1333:2069:sell:3501" }, - "id": 64 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -251418,7 +248575,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 6, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -251463,27 +248620,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Courier B", + "value": "FFW Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -251491,11 +248648,11 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1333, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2120, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2069, - "tags": ["selection", "ship", "role:transport"] + "id": 2175, + "tags": ["selection", "ship", "role:military"] }, { "components": { @@ -251512,9 +248669,9 @@ "maneuver": 0.13, "active": true, "currentSpeed": 0.013000000000000001, - "currentRotary": 0.3141592653589669, - "state": "maneuver", - "target": 171, + "currentRotary": 0.21033582705828513, + "state": "warming", + "target": 1321, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -251529,23 +248686,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 171 }, - { "type": "teleport", "targetId": 169 }, - { "type": "move", "targetId": 165 }, - { "type": "teleport", "targetId": 167 }, - { "type": "move", "targetId": 1333 }, - { "type": "dock", "targetId": 1333 }, + { "type": "move", "targetId": 1321 }, + { "type": "dock", "targetId": 1321 }, { - "targetId": 1333, + "targetId": 1321, "offer": { - "initiator": 2070, - "quantity": 62, - "commodity": "metals", + "initiator": 2176, + "quantity": 160, + "commodity": "gold", "factionId": 262, - "budget": 1333, + "budget": 1441, "allocations": { - "buyer": { "budget": null, "storage": 61 }, - "seller": { "budget": null, "storage": 28 } + "buyer": { "budget": 46, "storage": 3 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 800, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 167 }, + { "type": "teleport", "targetId": 165 }, + { "type": "move", "targetId": 1441 }, + { "type": "dock", "targetId": 1441 }, + { + "targetId": 1441, + "offer": { + "initiator": 2176, + "quantity": 160, + "commodity": "gold", + "factionId": 262, + "budget": 1441, + "allocations": { + "buyer": { "budget": null, "storage": 46 }, + "seller": { "budget": null, "storage": 4 } }, "price": 0, "type": "sell" @@ -251560,9 +248734,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 8.705092825251432, - "coord": [18.636390419815154, 8.209363222534911], - "sector": 31, + "angle": -24.1564983391736, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -251576,7 +248750,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -251587,12 +248761,39 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1716, + "type": "incoming", + "meta": { "tradeId": "1321:2176:buy:1716" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 62, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -251600,10 +248801,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3420, + "issued": 1716, "type": "outgoing", - "meta": { "tradeId": "1333:2070:sell:3420" }, - "id": 28 + "meta": { "tradeId": "1441:2176:sell:1716" }, + "id": 4 } ], "max": 160, @@ -251641,7 +248842,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 62, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -251714,10 +248915,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1333, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1441, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2070, + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2176, "tags": ["selection", "ship", "role:transport"] }, { @@ -251734,10 +248935,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 169, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.21033582705828513, + "state": "warming", + "target": 1321, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -251752,44 +248953,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 169 }, - { "type": "teleport", "targetId": 171 }, - { "type": "move", "targetId": 1253 }, - { "type": "dock", "targetId": 1253 }, + { "type": "move", "targetId": 1321 }, + { "type": "dock", "targetId": 1321 }, { - "targetId": 1253, + "targetId": 1321, "offer": { - "initiator": 2071, - "quantity": 38, - "commodity": "metals", + "initiator": 2177, + "quantity": 160, + "commodity": "gold", "factionId": 262, - "budget": 1333, + "budget": 1441, "allocations": { - "buyer": { "budget": 63, "storage": 31 }, - "seller": { "budget": null, "storage": 110 } + "buyer": { "budget": 41, "storage": 3 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 95, + "price": 800, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 171 }, - { "type": "teleport", "targetId": 169 }, - { "type": "move", "targetId": 165 }, - { "type": "teleport", "targetId": 167 }, - { "type": "move", "targetId": 1333 }, - { "type": "dock", "targetId": 1333 }, + { "type": "move", "targetId": 167 }, + { "type": "teleport", "targetId": 165 }, + { "type": "move", "targetId": 1441 }, + { "type": "dock", "targetId": 1441 }, { - "targetId": 1333, + "targetId": 1441, "offer": { - "initiator": 2071, - "quantity": 38, - "commodity": "metals", + "initiator": 2177, + "quantity": 160, + "commodity": "gold", "factionId": 262, - "budget": 1333, + "budget": 1441, "allocations": { - "buyer": { "budget": null, "storage": 63 }, - "seller": { "budget": null, "storage": 32 } + "buyer": { "budget": null, "storage": 41 }, + "seller": { "budget": null, "storage": 4 } }, "price": 0, "type": "sell" @@ -251804,9 +249001,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 4.9332931538766704, - "coord": [4.1511520306951954, 8.603774497056516], - "sector": 5, + "angle": -17.873313031994012, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -251820,7 +249017,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -251831,12 +249028,12 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 38, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -251844,10 +249041,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3519, + "issued": 1662, "type": "incoming", - "meta": { "tradeId": "1253:2071:buy:3519" }, - "id": 31 + "meta": { "tradeId": "1321:2177:buy:1662" }, + "id": 3 }, { "amount": { @@ -251858,12 +249055,12 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 38, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -251871,10 +249068,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3519, + "issued": 1662, "type": "outgoing", - "meta": { "tradeId": "1333:2071:sell:3519" }, - "id": 32 + "meta": { "tradeId": "1441:2177:sell:1662" }, + "id": 4 } ], "max": 160, @@ -251985,10 +249182,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1333, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1441, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2071, + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2177, "tags": ["selection", "ship", "role:transport"] }, { @@ -252000,14 +249197,14 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.9519999999999998, - "currentRotary": 0, - "state": "cruise", + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.21033582705827447, + "state": "warming", "target": 1321, "targetReached": false, "name": "drive", @@ -252028,14 +249225,35 @@ { "targetId": 1321, "offer": { - "initiator": 2072, - "quantity": 160, - "commodity": "water", + "initiator": 2178, + "quantity": 6, + "commodity": "gold", "factionId": 262, - "budget": 1321, + "budget": 1441, "allocations": { - "buyer": { "budget": null, "storage": 37 }, - "seller": { "budget": null, "storage": 28 } + "buyer": { "budget": 43, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 800, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 167 }, + { "type": "teleport", "targetId": 165 }, + { "type": "move", "targetId": 1441 }, + { "type": "dock", "targetId": 1441 }, + { + "targetId": 1441, + "offer": { + "initiator": 2178, + "quantity": 6, + "commodity": "gold", + "factionId": 262, + "budget": 1441, + "allocations": { + "buyer": { "budget": null, "storage": 43 }, + "seller": { "budget": null, "storage": 4 } }, "price": 0, "type": "sell" @@ -252050,8 +249268,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 1.1286547884205236, - "coord": [-19.081091360343027, -16.669205407816893], + "angle": -86.98835141096947, + "coord": [-2.4475210126103355, -4.203240681332327], "sector": 24, "moved": true }, @@ -252060,13 +249278,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -252077,7 +249295,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 6, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -252088,15 +249306,42 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 + "water": 0 }, - "issued": 3330, + "issued": 1683, + "type": "incoming", + "meta": { "tradeId": "1321:2178:buy:1683" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 6, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1683, "type": "outgoing", - "meta": { "tradeId": "1321:2072:sell:3330" }, - "id": 28 + "meta": { "tradeId": "1441:2178:sell:1683" }, + "id": 4 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -252137,7 +249382,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 + "water": 0 }, "quota": { "coolant": 0, @@ -252165,7 +249410,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -252176,12 +249421,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -252190,13 +249435,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -252204,10 +249449,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1321, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1441, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2072, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2178, "tags": ["selection", "ship", "role:transport"] }, { @@ -252219,15 +249464,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 47, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.21033582705828513, + "state": "warming", + "target": 1321, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -252242,44 +249487,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 47 }, - { "type": "teleport", "targetId": 45 }, - { "type": "move", "targetId": 373 }, - { "type": "dock", "targetId": 373 }, + { "type": "move", "targetId": 1321 }, + { "type": "dock", "targetId": 1321 }, { - "targetId": 373, + "targetId": 1321, "offer": { - "initiator": 2073, - "quantity": 940, - "commodity": "fuel", + "initiator": 2179, + "quantity": 160, + "commodity": "gold", "factionId": 262, - "budget": 1321, + "budget": 1441, "allocations": { - "buyer": { "budget": 39, "storage": 19 }, - "seller": { "budget": null, "storage": 200 } + "buyer": { "budget": 45, "storage": 3 }, + "seller": { "budget": null, "storage": 3 } }, - "price": 49, + "price": 800, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 45 }, - { "type": "teleport", "targetId": 47 }, - { "type": "move", "targetId": 165 }, - { "type": "teleport", "targetId": 167 }, - { "type": "move", "targetId": 1321 }, - { "type": "dock", "targetId": 1321 }, + { "type": "move", "targetId": 167 }, + { "type": "teleport", "targetId": 165 }, + { "type": "move", "targetId": 1441 }, + { "type": "dock", "targetId": 1441 }, { - "targetId": 1321, + "targetId": 1441, "offer": { - "initiator": 2073, - "quantity": 940, - "commodity": "fuel", + "initiator": 2179, + "quantity": 160, + "commodity": "gold", "factionId": 262, - "budget": 1321, + "budget": 1441, "allocations": { - "buyer": { "budget": null, "storage": 39 }, - "seller": { "budget": null, "storage": 20 } + "buyer": { "budget": null, "storage": 45 }, + "seller": { "budget": null, "storage": 4 } }, "price": 0, "type": "sell" @@ -252294,9 +249535,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -5.148029608338045, - "coord": [22.785361301054813, 12.786252214810535], - "sector": 5, + "angle": -24.1564983391736, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -252304,13 +249545,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 21, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -252319,9 +249560,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -252334,10 +249575,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3537, + "issued": 1710, "type": "incoming", - "meta": { "tradeId": "373:2073:buy:3537" }, - "id": 19 + "meta": { "tradeId": "1321:2179:buy:1710" }, + "id": 3 }, { "amount": { @@ -252346,9 +249587,9 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -252361,13 +249602,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3537, + "issued": 1710, "type": "outgoing", - "meta": { "tradeId": "1321:2073:sell:3537" }, - "id": 20 + "meta": { "tradeId": "1441:2179:sell:1710" }, + "id": 4 } ], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -252436,7 +249677,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -252447,12 +249688,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -252461,13 +249702,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Freighter B", + "value": "AMS Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -252475,10 +249716,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1321, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1441, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2073, + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2179, "tags": ["selection", "ship", "role:transport"] }, { @@ -252490,15 +249731,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 165, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.21033582705827447, + "state": "warming", + "target": 1321, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -252513,21 +249754,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 165 }, - { "type": "teleport", "targetId": 167 }, { "type": "move", "targetId": 1321 }, { "type": "dock", "targetId": 1321 }, { "targetId": 1321, "offer": { - "initiator": 2074, - "quantity": 160, - "commodity": "water", + "initiator": 2180, + "quantity": 6, + "commodity": "gold", "factionId": 262, - "budget": 1321, + "budget": 1441, "allocations": { - "buyer": { "budget": null, "storage": 38 }, - "seller": { "budget": null, "storage": 30 } + "buyer": { "budget": 47, "storage": 3 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 800, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 167 }, + { "type": "teleport", "targetId": 165 }, + { "type": "move", "targetId": 1441 }, + { "type": "dock", "targetId": 1441 }, + { + "targetId": 1441, + "offer": { + "initiator": 2180, + "quantity": 6, + "commodity": "gold", + "factionId": 262, + "budget": 1441, + "allocations": { + "buyer": { "budget": null, "storage": 47 }, + "seller": { "budget": null, "storage": 4 } }, "price": 0, "type": "sell" @@ -252542,9 +249802,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 1.7916536293943603, - "coord": [0.8807154079609171, 7.868226224569726], - "sector": 5, + "angle": -105.83790733250824, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -252552,13 +249812,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -252569,7 +249829,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 6, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -252580,15 +249840,42 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 + "water": 0 + }, + "issued": 1725, + "type": "incoming", + "meta": { "tradeId": "1321:2180:buy:1725" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 6, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 }, - "issued": 3381, + "issued": 1725, "type": "outgoing", - "meta": { "tradeId": "1321:2074:sell:3381" }, - "id": 30 + "meta": { "tradeId": "1441:2180:sell:1725" }, + "id": 4 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -252629,7 +249916,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 + "water": 0 }, "quota": { "coolant": 0, @@ -252657,7 +249944,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -252668,12 +249955,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -252682,13 +249969,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -252696,10 +249983,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1321, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1441, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2074, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2180, "tags": ["selection", "ship", "role:transport"] }, { @@ -252711,15 +249998,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.026999999999999996, - "currentRotary": -1.7365135995817127e-9, - "state": "warming", - "target": 1308, + "currentSpeed": 1, + "currentRotary": 0.09011337421879118, + "state": "cruise", + "target": 2682, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -252731,29 +250018,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1308 }, - { "type": "dock", "targetId": 1308 }, - { - "targetId": 1308, - "offer": { - "initiator": 2075, - "quantity": 106, - "commodity": "metals", - "factionId": 262, - "budget": 1308, - "allocations": { - "buyer": { "budget": null, "storage": 48 }, - "seller": { "budget": null, "storage": 28 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2682 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -252761,9 +250028,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -34.45677226824616, - "coord": [4.311844820970251, -8.512597973469958], - "sector": 5, + "angle": -1.3854201480523884, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -252771,43 +250038,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 106, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3504, - "type": "outgoing", - "meta": { "tradeId": "1308:2075:sell:3504" }, - "id": 28 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -252842,7 +250081,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 106, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -252876,33 +250115,23 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3099 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -252911,13 +250140,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Freighter B", + "value": "AMS Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -252925,10 +250154,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1308, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1433, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 13 } }, - "id": 2075, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2181, "tags": ["selection", "ship", "role:transport"] }, { @@ -252940,15 +250169,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.072, - "currentRotary": 0.0000011445366929763168, - "state": "maneuver", - "target": 1193, + "currentSpeed": 2.4550000000000005, + "currentRotary": -0.020194478696733853, + "state": "cruise", + "target": 1402, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -252963,38 +250192,38 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1193 }, - { "type": "dock", "targetId": 1193 }, + { "type": "move", "targetId": 1402 }, + { "type": "dock", "targetId": 1402 }, { - "targetId": 1193, + "targetId": 1402, "offer": { - "initiator": 2076, - "quantity": 106, - "commodity": "metals", + "initiator": 2182, + "quantity": 6, + "commodity": "hullPlates", "factionId": 262, - "budget": 1308, + "budget": 1433, "allocations": { - "buyer": { "budget": 49, "storage": 27 }, - "seller": { "budget": null, "storage": 41 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 6 } }, - "price": 78, + "price": 43, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 1308 }, - { "type": "dock", "targetId": 1308 }, + { "type": "move", "targetId": 1433 }, + { "type": "dock", "targetId": 1433 }, { - "targetId": 1308, + "targetId": 1433, "offer": { - "initiator": 2076, - "quantity": 106, - "commodity": "metals", + "initiator": 2182, + "quantity": 6, + "commodity": "hullPlates", "factionId": 262, - "budget": 1308, + "budget": 1433, "allocations": { - "buyer": { "budget": null, "storage": 49 }, - "seller": { "budget": null, "storage": 28 } + "buyer": { "budget": null, "storage": 4 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -253009,9 +250238,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.547599622555989, - "coord": [4.324982905944051, -8.623430889800458], - "sector": 5, + "angle": -10.888356945800847, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -253019,13 +250248,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 29, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -253038,10 +250267,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, - "metals": 106, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -253049,10 +250278,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3513, + "issued": 2952, "type": "incoming", - "meta": { "tradeId": "1193:2076:buy:3513" }, - "id": 27 + "meta": { "tradeId": "1402:2182:buy:2952" }, + "id": 1 }, { "amount": { @@ -253065,10 +250294,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, - "metals": 106, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -253076,13 +250305,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3513, + "issued": 2952, "type": "outgoing", - "meta": { "tradeId": "1308:2076:sell:3513" }, - "id": 28 + "meta": { "tradeId": "1433:2182:sell:2952" }, + "id": 2 } ], - "max": 940, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -253151,29 +250380,19 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3391 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -253186,13 +250405,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Freighter B", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -253200,10 +250419,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1308, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1433, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2076, + "id": 2182, "tags": ["selection", "ship", "role:transport"] }, { @@ -253220,10 +250439,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": -0.9424777960769379, - "state": "maneuver", - "target": 171, + "currentSpeed": 0.15200000000000002, + "currentRotary": -0.020194478696733853, + "state": "cruise", + "target": 1402, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -253238,21 +250457,40 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 1402 }, + { "type": "dock", "targetId": 1402 }, + { + "targetId": 1402, + "offer": { + "initiator": 2183, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 262, + "budget": 1423, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 52, + "type": "buy" + }, + "type": "trade" + }, { "type": "move", "targetId": 171 }, { "type": "teleport", "targetId": 169 }, - { "type": "move", "targetId": 1308 }, - { "type": "dock", "targetId": 1308 }, + { "type": "move", "targetId": 1423 }, + { "type": "dock", "targetId": 1423 }, { - "targetId": 1308, + "targetId": 1423, "offer": { - "initiator": 2077, + "initiator": 2183, "quantity": 160, - "commodity": "water", + "commodity": "hullPlates", "factionId": 262, - "budget": 1308, + "budget": 1423, "allocations": { - "buyer": { "budget": null, "storage": 47 }, - "seller": { "budget": null, "storage": 42 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -253267,8 +250505,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -31.665206622009556, - "coord": [18.890217731589036, 8.569338320535893], + "angle": 7.961198975737911, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -253283,7 +250521,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -253296,7 +250534,7 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -253305,12 +250543,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 + "water": 0 }, - "issued": 3489, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1402:2183:buy:309" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "1308:2077:sell:3489" }, - "id": 42 + "meta": { "tradeId": "1423:2183:sell:309" }, + "id": 2 } ], "max": 160, @@ -253354,7 +250619,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 160 + "water": 0 }, "quota": { "coolant": 0, @@ -253421,10 +250686,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1308, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1423, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2077, + "id": 2183, "tags": ["selection", "ship", "role:transport"] }, { @@ -253441,10 +250706,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": -8.881784197001252e-16, + "currentSpeed": 0.15200000000000002, + "currentRotary": -0.020194478696733853, "state": "cruise", - "target": 1298, + "target": 1402, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -253459,19 +250724,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1298 }, - { "type": "dock", "targetId": 1298 }, + { "type": "move", "targetId": 1402 }, + { "type": "dock", "targetId": 1402 }, { - "targetId": 1298, + "targetId": 1402, "offer": { - "initiator": 2078, - "quantity": 60, - "commodity": "fuel", + "initiator": 2184, + "quantity": 160, + "commodity": "hullPlates", "factionId": 262, - "budget": 1298, + "budget": 1423, "allocations": { - "buyer": { "budget": null, "storage": 185 }, - "seller": { "budget": null, "storage": 32 } + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 3 } + }, + "price": 52, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 1423 }, + { "type": "dock", "targetId": 1423 }, + { + "targetId": 1423, + "offer": { + "initiator": 2184, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 262, + "budget": 1423, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -253486,8 +250772,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.263659867252554, - "coord": [12.848019045927495, 4.388152828142094], + "angle": 7.961198975737911, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -253502,7 +250788,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 33, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -253511,11 +250797,38 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1402:2184:buy:309" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -253526,10 +250839,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3294, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "1298:2078:sell:3294" }, - "id": 32 + "meta": { "tradeId": "1423:2184:sell:309" }, + "id": 2 } ], "max": 160, @@ -253560,7 +250873,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -253640,10 +250953,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1298, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1423, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2078, + "id": 2184, "tags": ["selection", "ship", "role:transport"] }, { @@ -253655,16 +250968,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.054, + "currentRotary": -0.020194478696733853, + "state": "warming", + "target": 1402, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -253678,43 +250991,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "teleport", "targetId": 167 }, - { "type": "move", "targetId": 1217 }, - { "type": "dock", "targetId": 1217 }, + { "type": "move", "targetId": 1402 }, + { "type": "dock", "targetId": 1402 }, { - "targetId": 1217, + "targetId": 1402, "offer": { - "initiator": 2079, - "quantity": 142, - "commodity": "fuel", + "initiator": 2185, + "quantity": 940, + "commodity": "hullPlates", "factionId": 262, - "budget": 1298, + "budget": 1423, "allocations": { - "buyer": { "budget": 96, "storage": 33 }, - "seller": { "budget": null, "storage": 143 } + "buyer": { "budget": 4, "storage": 1 }, + "seller": { "budget": null, "storage": 5 } }, "price": 52, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 167 }, - { "type": "teleport", "targetId": 165 }, - { "type": "move", "targetId": 169 }, - { "type": "teleport", "targetId": 171 }, - { "type": "move", "targetId": 1298 }, - { "type": "dock", "targetId": 1298 }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 1423 }, + { "type": "dock", "targetId": 1423 }, { - "targetId": 1298, + "targetId": 1423, "offer": { - "initiator": 2079, - "quantity": 142, - "commodity": "fuel", + "initiator": 2185, + "quantity": 940, + "commodity": "hullPlates", "factionId": 262, - "budget": 1298, + "budget": 1423, "allocations": { - "buyer": { "budget": null, "storage": 192 }, - "seller": { "budget": null, "storage": 34 } + "buyer": { "budget": null, "storage": 4 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -253729,9 +251039,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.924196820323102, - "coord": [22.866189744165975, 12.80373132303551], - "sector": 5, + "angle": 7.961198975737911, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -253739,13 +251049,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -253754,11 +251064,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 142, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -253769,10 +251079,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3462, + "issued": 351, "type": "incoming", - "meta": { "tradeId": "1217:2079:buy:3462" }, - "id": 33 + "meta": { "tradeId": "1402:2185:buy:351" }, + "id": 1 }, { "amount": { @@ -253781,11 +251091,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 142, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -253796,13 +251106,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3462, + "issued": 351, "type": "outgoing", - "meta": { "tradeId": "1298:2079:sell:3462" }, - "id": 34 + "meta": { "tradeId": "1423:2185:sell:351" }, + "id": 2 } ], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -253871,7 +251181,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -253882,12 +251192,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -253896,13 +251206,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -253910,10 +251220,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1298, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1423, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2079, + "cooldowns": { "timers": { "cruise": 5 } }, + "id": 2185, "tags": ["selection", "ship", "role:transport"] }, { @@ -253925,15 +251235,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 171, + "currentSpeed": 0.054, + "currentRotary": -0.020194478696733853, + "state": "warming", + "target": 1402, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -253948,46 +251258,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 171 }, - { "type": "teleport", "targetId": 169 }, - { "type": "move", "targetId": 165 }, - { "type": "teleport", "targetId": 167 }, - { "type": "move", "targetId": 1217 }, - { "type": "dock", "targetId": 1217 }, + { "type": "move", "targetId": 1402 }, + { "type": "dock", "targetId": 1402 }, { - "targetId": 1217, + "targetId": 1402, "offer": { - "initiator": 2080, - "quantity": 60, - "commodity": "fuel", + "initiator": 2186, + "quantity": 940, + "commodity": "hullPlates", "factionId": 262, - "budget": 1298, + "budget": 1423, "allocations": { - "buyer": { "budget": 98, "storage": 34 }, - "seller": { "budget": null, "storage": 147 } + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 4 } }, "price": 52, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 167 }, - { "type": "teleport", "targetId": 165 }, - { "type": "move", "targetId": 169 }, - { "type": "teleport", "targetId": 171 }, - { "type": "move", "targetId": 1298 }, - { "type": "dock", "targetId": 1298 }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 1423 }, + { "type": "dock", "targetId": 1423 }, { - "targetId": 1298, + "targetId": 1423, "offer": { - "initiator": 2080, - "quantity": 60, - "commodity": "fuel", + "initiator": 2186, + "quantity": 940, + "commodity": "hullPlates", "factionId": 262, - "budget": 1298, + "budget": 1423, "allocations": { - "buyer": { "budget": null, "storage": 195 }, - "seller": { "budget": null, "storage": 35 } + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -254002,8 +251306,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.8284815887908, - "coord": [-1.963026009041951, -5.31752659517052], + "angle": 7.961198975737911, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -254012,13 +251316,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 36, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -254027,11 +251331,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -254042,10 +251346,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 348, "type": "incoming", - "meta": { "tradeId": "1217:2080:buy:3570" }, - "id": 34 + "meta": { "tradeId": "1402:2186:buy:348" }, + "id": 1 }, { "amount": { @@ -254054,11 +251358,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -254069,13 +251373,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3570, + "issued": 348, "type": "outgoing", - "meta": { "tradeId": "1298:2080:sell:3570" }, - "id": 35 + "meta": { "tradeId": "1423:2186:sell:348" }, + "id": 2 } ], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -254144,33 +251448,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3423 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -254179,13 +251473,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -254193,10 +251487,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1298, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1423, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2080, + "cooldowns": { "timers": { "cruise": 5 } }, + "id": 2186, "tags": ["selection", "ship", "role:transport"] }, { @@ -254213,10 +251507,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": -1.3322676295501878e-15, - "state": "cruise", - "target": 1291, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0031380192174346178, + "state": "warming", + "target": 1345, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -254231,19 +251525,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1291 }, - { "type": "dock", "targetId": 1291 }, + { "type": "move", "targetId": 1345 }, + { "type": "dock", "targetId": 1345 }, { - "targetId": 1291, + "targetId": 1345, "offer": { - "initiator": 2081, + "initiator": 2187, "quantity": 160, - "commodity": "food", + "commodity": "metals", "factionId": 262, - "budget": 1291, + "budget": 1410, "allocations": { - "buyer": { "budget": null, "storage": 44 }, - "seller": { "budget": null, "storage": 84 } + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 34, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 1410 }, + { "type": "dock", "targetId": 1410 }, + { + "targetId": 1410, + "offer": { + "initiator": 2187, + "quantity": 160, + "commodity": "metals", + "factionId": 262, + "budget": 1410, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -254258,8 +251573,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 14.772000310644911, - "coord": [-7.123894629699331, -8.088027623321771], + "angle": 8.414397577237633, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -254274,7 +251589,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 85, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -254282,7 +251597,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -254290,7 +251605,34 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "incoming", + "meta": { "tradeId": "1345:2187:buy:306" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, @@ -254298,10 +251640,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3531, + "issued": 306, "type": "outgoing", - "meta": { "tradeId": "1291:2081:sell:3531" }, - "id": 84 + "meta": { "tradeId": "1410:2187:sell:306" }, + "id": 2 } ], "max": 160, @@ -254331,7 +251673,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -254412,10 +251754,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1291, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1410, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2081, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 2187, "tags": ["selection", "ship", "role:transport"] }, { @@ -254432,10 +251774,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.013000000000000001, - "currentRotary": 0.3141592653589784, - "state": "maneuver", - "target": 167, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0031380192174337296, + "state": "warming", + "target": 1345, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -254450,46 +251792,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 167 }, - { "type": "teleport", "targetId": 165 }, - { "type": "move", "targetId": 169 }, - { "type": "teleport", "targetId": 171 }, - { "type": "move", "targetId": 1241 }, - { "type": "dock", "targetId": 1241 }, + { "type": "move", "targetId": 1345 }, + { "type": "dock", "targetId": 1345 }, { - "targetId": 1241, + "targetId": 1345, "offer": { - "initiator": 2082, - "quantity": 88, - "commodity": "water", + "initiator": 2188, + "quantity": 160, + "commodity": "metals", "factionId": 262, - "budget": 1284, + "budget": 1410, "allocations": { - "buyer": { "budget": 11, "storage": 21 }, - "seller": { "budget": null, "storage": 129 } + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 3 } }, - "price": 39, + "price": 34, "type": "buy" }, "type": "trade" }, { "type": "move", "targetId": 171 }, { "type": "teleport", "targetId": 169 }, - { "type": "move", "targetId": 165 }, - { "type": "teleport", "targetId": 167 }, - { "type": "move", "targetId": 1284 }, - { "type": "dock", "targetId": 1284 }, + { "type": "move", "targetId": 1410 }, + { "type": "dock", "targetId": 1410 }, { - "targetId": 1284, + "targetId": 1410, "offer": { - "initiator": 2082, - "quantity": 88, - "commodity": "water", + "initiator": 2188, + "quantity": 160, + "commodity": "metals", "factionId": 262, - "budget": 1284, + "budget": 1410, "allocations": { - "buyer": { "budget": null, "storage": 11 }, - "seller": { "budget": null, "storage": 22 } + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -254504,9 +251840,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -0.9942570584143828, - "coord": [4.884791916224525, 4.0964372752162115], - "sector": 24, + "angle": -4.1519730371215395, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -254520,7 +251856,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -254536,18 +251872,18 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3597, + "issued": 306, "type": "incoming", - "meta": { "tradeId": "1241:2082:buy:3597" }, - "id": 21 + "meta": { "tradeId": "1345:2188:buy:306" }, + "id": 1 }, { "amount": { @@ -254563,18 +251899,18 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 160, "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3597, + "issued": 306, "type": "outgoing", - "meta": { "tradeId": "1284:2082:sell:3597" }, - "id": 22 + "meta": { "tradeId": "1410:2188:sell:306" }, + "id": 2 } ], "max": 160, @@ -254685,10 +252021,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1284, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1410, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2082, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 2188, "tags": ["selection", "ship", "role:transport"] }, { @@ -254706,13 +252042,13 @@ "maneuver": 0.09, "active": true, "currentSpeed": 0, - "currentRotary": 0.15707963267948966, + "currentRotary": -0.15707963267948966, "state": "maneuver", - "target": 24908, + "target": 1345, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -254720,11 +252056,50 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24908, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 1345 }, + { "type": "dock", "targetId": 1345 }, + { + "targetId": 1345, + "offer": { + "initiator": 2189, + "quantity": 940, + "commodity": "metals", + "factionId": 262, + "budget": 1410, + "allocations": { + "buyer": { "budget": 4, "storage": 1 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 34, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 1410 }, + { "type": "dock", "targetId": 1410 }, + { + "targetId": 1410, + "offer": { + "initiator": 2189, + "quantity": 940, + "commodity": "metals", + "factionId": 262, + "budget": 1410, + "allocations": { + "buyer": { "budget": null, "storage": 4 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -254732,9 +252107,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -5.722934048700863, - "coord": [-2.008215076758578, 6.628107447346914], - "sector": 5, + "angle": -3.743216648240373, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -254748,8 +252123,63 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, - "allocations": [], + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 940, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "incoming", + "meta": { "tradeId": "1345:2189:buy:306" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 940, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "outgoing", + "meta": { "tradeId": "1410:2189:sell:306" }, + "id": 2 + } + ], "max": 940, "availableWares": { "coolant": 0, @@ -254858,10 +252288,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1277, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1410, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2083, + "id": 2189, "tags": ["selection", "ship", "role:transport"] }, { @@ -254878,14 +252308,14 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.11699999999999999, - "currentRotary": 2.922995179233112e-12, - "state": "maneuver", - "target": 24866, + "currentSpeed": 0.052000000000000005, + "currentRotary": -0.0031380192174337296, + "state": "warming", + "target": 1345, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -254893,11 +252323,50 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24866, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 1345 }, + { "type": "dock", "targetId": 1345 }, + { + "targetId": 1345, + "offer": { + "initiator": 2190, + "quantity": 160, + "commodity": "metals", + "factionId": 262, + "budget": 1410, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 34, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 1410 }, + { "type": "dock", "targetId": 1410 }, + { + "targetId": 1410, + "offer": { + "initiator": 2190, + "quantity": 160, + "commodity": "metals", + "factionId": 262, + "budget": 1410, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -254905,8 +252374,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.98939659734096, - "coord": [4.451552979187122, 5.903142567233915], + "angle": -4.1519730371215395, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -254921,8 +252390,63 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 160, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 300, + "type": "incoming", + "meta": { "tradeId": "1345:2190:buy:300" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 160, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 300, + "type": "outgoing", + "meta": { "tradeId": "1410:2190:sell:300" }, + "id": 2 + } + ], "max": 160, "availableWares": { "coolant": 0, @@ -255031,10 +252555,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1265, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1410, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2084, + "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, + "id": 2190, "tags": ["selection", "ship", "role:transport"] }, { @@ -255046,15 +252570,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, + "currentSpeed": 2.4550000000000005, + "currentRotary": -0.019755924712483885, "state": "cruise", - "target": 1298, + "target": 2692, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -255066,29 +252590,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1298 }, - { "type": "dock", "targetId": 1298 }, - { - "targetId": 1298, - "offer": { - "initiator": 2085, - "quantity": 44, - "commodity": "metals", - "factionId": 262, - "budget": 1253, - "allocations": { - "buyer": { "budget": 95, "storage": 191 }, - "seller": { "budget": null, "storage": 34 } - }, - "price": 79, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2692 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -255096,8 +252600,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.2042782548301965, - "coord": [-15.17479126059006, -13.922961584883925], + "angle": -4.580559613924828, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -255106,43 +252610,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 44, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3459, - "type": "outgoing", - "meta": { "tradeId": "1298:2085:sell:3459" }, - "id": 34 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -255177,7 +252653,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 44, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -255211,7 +252687,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -255222,12 +252698,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -255236,13 +252712,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -255250,10 +252726,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1253, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1402, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2085, + "id": 2191, "tags": ["selection", "ship", "role:transport"] }, { @@ -255265,15 +252741,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.72, - "currentRotary": 0, + "currentSpeed": 2.4550000000000005, + "currentRotary": -0.020644483407069814, "state": "cruise", - "target": 1241, + "target": 2693, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -255285,52 +252761,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1241 }, - { "type": "dock", "targetId": 1241 }, - { - "targetId": 1241, - "offer": { - "initiator": 2086, - "quantity": 285, - "commodity": "water", - "factionId": 262, - "budget": 1241, - "allocations": { - "buyer": { "budget": null, "storage": 30 }, - "seller": { "budget": null, "storage": 128 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 171 }, - { "type": "teleport", "targetId": 169 }, - { "type": "move", "targetId": 165 }, - { "type": "teleport", "targetId": 167 }, - { "type": "move", "targetId": 1321 }, - { "type": "dock", "targetId": 1321 }, - { - "targetId": 1321, - "offer": { - "initiator": 2086, - "quantity": 285, - "commodity": "water", - "factionId": 262, - "budget": 1241, - "allocations": { - "buyer": { "budget": 40, "storage": 40 }, - "seller": { "budget": null, "storage": 31 } - }, - "price": 41, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2693 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -255338,8 +252771,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -4.3411242925088205, - "coord": [-15.328150658475577, -15.478648026365278], + "angle": -23.47700401399679, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -255348,70 +252781,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 32, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 285 - }, - "issued": 3558, - "type": "incoming", - "meta": { "tradeId": "1241:2086:buy:3558" }, - "id": 30 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 285 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "1321:2086:sell:3558" }, - "id": 31 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -255480,7 +252858,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -255491,8 +252869,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -255505,13 +252883,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Freighter B", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -255519,10 +252897,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1241, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1402, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2086, + "id": 2192, "tags": ["selection", "ship", "role:transport"] }, { @@ -255534,15 +252912,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": -3.9968028886505635e-15, + "currentSpeed": 1.8550000000000004, + "currentRotary": -0.0031380192174337296, "state": "cruise", - "target": 1229, + "target": 1345, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -255557,19 +252935,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1229 }, - { "type": "dock", "targetId": 1229 }, + { "type": "move", "targetId": 1345 }, + { "type": "dock", "targetId": 1345 }, { - "targetId": 1229, + "targetId": 1345, "offer": { - "initiator": 2087, - "quantity": 64, - "commodity": "fuel", + "initiator": 2193, + "quantity": 6, + "commodity": "metals", + "factionId": 262, + "budget": 1390, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 6 } + }, + "price": 64, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 165 }, + { "type": "teleport", "targetId": 167 }, + { "type": "move", "targetId": 1390 }, + { "type": "dock", "targetId": 1390 }, + { + "targetId": 1390, + "offer": { + "initiator": 2193, + "quantity": 6, + "commodity": "metals", "factionId": 262, - "budget": 1229, + "budget": 1390, "allocations": { - "buyer": { "budget": null, "storage": 39 }, - "seller": { "budget": null, "storage": 68 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -255584,9 +252985,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -21.39833116819191, - "coord": [-8.56429701266321, -9.618981495338492], - "sector": 24, + "angle": 2.1312122700580467, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -255594,13 +252995,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 69, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -255609,14 +253010,14 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 64, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 6, "ore": 0, "silica": 0, "silicon": 0, @@ -255624,13 +253025,40 @@ "tauMetal": 0, "water": 0 }, - "issued": 3528, + "issued": 1977, + "type": "incoming", + "meta": { "tradeId": "1345:2193:buy:1977" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 6, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 1977, "type": "outgoing", - "meta": { "tradeId": "1229:2087:sell:3528" }, - "id": 68 + "meta": { "tradeId": "1390:2193:sell:1977" }, + "id": 2 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -255658,7 +253086,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 64, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -255699,33 +253127,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3129 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -255734,13 +253152,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -255748,10 +253166,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1229, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1390, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2087, + "id": 2193, "tags": ["selection", "ship", "role:transport"] }, { @@ -255763,15 +253181,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.009, - "currentRotary": -0.15707963267948966, + "currentSpeed": 0, + "currentRotary": 0.5837808258367296, "state": "maneuver", - "target": 23810, + "target": 2695, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -255784,7 +253202,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [{ "type": "move", "targetId": 23810 }], + "actions": [{ "type": "move", "targetId": 2695 }], "type": "move" } ], @@ -255793,8 +253211,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.089061920901724, - "coord": [-23.679872737099817, -14.487321376493197], + "angle": 5.923509738314902, + "coord": [-2.4475210126103355, -4.203240681332327], "sector": 24, "moved": true }, @@ -255803,15 +253221,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, + "allocationIdCounter": 1, "allocations": [], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -255880,7 +253298,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -255891,12 +253309,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -255905,13 +253323,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Freighter B", + "value": "AMS Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -255919,10 +253337,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1217, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1390, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2088, + "id": 2194, "tags": ["selection", "ship", "role:transport"] }, { @@ -255934,19 +253352,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.065, - "currentRotary": -0.0000017264968712460416, + "currentSpeed": 0, + "currentRotary": 0.4726741686495757, "state": "maneuver", - "target": 24909, + "target": 2696, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -255955,9 +253373,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24909, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2696 }], "type": "move" } ], @@ -255966,18 +253382,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 10.345890914908685, - "coord": [29.58811239207519, 20.311629075918333], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 5.983185823185152, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -255985,7 +253400,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -256054,7 +253469,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -256065,12 +253480,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -256079,13 +253494,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -256093,10 +253508,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1205, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1390, "mask": "BigInt:512" } }, - "cooldowns": { "timers": {} }, - "id": 2089, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2195, "tags": ["selection", "ship", "role:transport"] }, { @@ -256108,16 +253523,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 2697, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -256128,28 +253543,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "dock", "targetId": 1298 }, - { - "targetId": 1298, - "offer": { - "initiator": 2090, - "quantity": 160, - "commodity": "metals", - "factionId": 262, - "budget": 1193, - "allocations": { - "buyer": { "budget": 94, "storage": 189 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 79, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2697 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -256157,8 +253553,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 39.86839338528969, - "coord": [-19.29609081864804, -17.048885148430035], + "angle": 0.23863603482925821, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -256167,43 +253563,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3378, - "type": "outgoing", - "meta": { "tradeId": "1298:2090:sell:3378" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -256238,7 +253606,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -256272,7 +253640,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -256283,12 +253651,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -256297,13 +253665,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -256311,10 +253679,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1193, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1383, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2090, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2196, "tags": ["selection", "ship", "role:transport"] }, { @@ -256331,14 +253699,14 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.052000000000000005, - "currentRotary": -0.00002503655361474344, + "currentSpeed": 0, + "currentRotary": -0.9424777960769379, "state": "maneuver", - "target": 24910, + "target": 2698, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -256347,9 +253715,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24910, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2698 }], "type": "move" } ], @@ -256358,9 +253724,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.995407278362118, - "coord": [13.131251173493595, -19.707822925289605], - "sector": 31, + "angle": -694.8150560308675, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -256374,7 +253740,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 17, + "allocationIdCounter": 1, "allocations": [], "max": 160, "availableWares": { @@ -256484,10 +253850,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1181, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1376, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2091, + "id": 2197, "tags": ["selection", "ship", "role:transport"] }, { @@ -256499,19 +253865,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.03900000000000001, - "currentRotary": 0, - "state": "maneuver", - "target": 24911, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 1333, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -256519,11 +253885,50 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24911, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 1333 }, + { "type": "dock", "targetId": 1333 }, + { + "targetId": 1333, + "offer": { + "initiator": 2198, + "quantity": 940, + "commodity": "water", + "factionId": 262, + "budget": 1369, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 30, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 1369 }, + { "type": "dock", "targetId": 1369 }, + { + "targetId": 1369, + "offer": { + "initiator": 2198, + "quantity": 940, + "commodity": "water", + "factionId": 262, + "budget": 1369, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -256531,8 +253936,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 10.114513890024028, - "coord": [13.0562906490811, -21.04195832887356], + "angle": 13.33883233637546, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -256541,15 +253946,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 17, - "allocations": [], - "max": 160, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 940 + }, + "issued": 321, + "type": "incoming", + "meta": { "tradeId": "1333:2198:buy:321" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 940 + }, + "issued": 321, + "type": "outgoing", + "meta": { "tradeId": "1369:2198:sell:321" }, + "id": 2 + } + ], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -256618,7 +254078,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -256629,12 +254089,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -256643,13 +254103,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Freighter A", + "value": "AMS Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -256657,10 +254117,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1181, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1369, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2092, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2198, "tags": ["selection", "ship", "role:transport"] }, { @@ -256677,10 +254137,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.052000000000000005, - "currentRotary": -6.050715484207103e-12, + "currentSpeed": 0.026000000000000002, + "currentRotary": -0.09481391121865457, "state": "warming", - "target": 167, + "target": 2700, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -256692,31 +254152,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 167 }, - { "type": "teleport", "targetId": 165 }, - { "type": "move", "targetId": 263 }, - { "type": "dock", "targetId": 263 }, - { - "targetId": 263, - "offer": { - "initiator": 2093, - "quantity": 120, - "commodity": "fuel", - "factionId": 262, - "budget": 263, - "allocations": { - "buyer": { "budget": null, "storage": 65 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2700 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -256724,9 +254162,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 23.224777711950825, - "coord": [0.37594416657296487, -22.923875438471327], - "sector": 24, + "angle": 0.728024357889058, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -256740,36 +254178,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 120, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3507, - "type": "outgoing", - "meta": { "tradeId": "263:2093:sell:3507" }, - "id": 30 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -256798,7 +254208,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 120, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -256878,10 +254288,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 263, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1357, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, - "id": 2093, + "cooldowns": { "timers": { "cruise": 2.3 } }, + "id": 2199, "tags": ["selection", "ship", "role:transport"] }, { @@ -256893,15 +254303,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.54, - "currentRotary": 0, + "currentSpeed": 1.8550000000000004, + "currentRotary": -0.0022374544017886855, "state": "cruise", - "target": 45, + "target": 2701, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -256913,31 +254323,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 45 }, - { "type": "teleport", "targetId": 47 }, - { "type": "move", "targetId": 263 }, - { "type": "dock", "targetId": 263 }, - { - "targetId": 263, - "offer": { - "initiator": 2094, - "quantity": 940, - "commodity": "fuel", - "factionId": 262, - "budget": 263, - "allocations": { - "buyer": { "budget": null, "storage": 64 }, - "seller": { "budget": null, "storage": 24 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2701 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -256945,9 +254333,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -18.362162403703877, - "coord": [-16.54014689078652, -8.541044201292443], - "sector": 4, + "angle": -10.41735859733146, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -256955,43 +254343,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 940, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3477, - "type": "outgoing", - "meta": { "tradeId": "263:2094:sell:3477" }, - "id": 24 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -257019,7 +254379,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -257060,29 +254420,19 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3559 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { @@ -257095,13 +254445,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Freighter B", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -257109,10 +254459,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 263, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1345, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2094, + "id": 2200, "tags": ["selection", "ship", "role:transport"] }, { @@ -257124,16 +254474,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, - "active": false, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, + "active": true, + "currentSpeed": 0.03900000000000001, + "currentRotary": -0.04407280870323316, + "state": "warming", + "target": 2702, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -257144,27 +254494,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { - "targetId": 263, - "offer": { - "initiator": 2095, - "quantity": 6, - "commodity": "fuel", - "factionId": 262, - "budget": 263, - "allocations": { - "buyer": { "budget": null, "storage": 66 }, - "seller": { "budget": null, "storage": 78 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2702 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -257172,9 +254504,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -52.25690369846296, - "coord": [9.365865447789883, 14.227934738663341], - "sector": 5, + "angle": 1.4737827067300477, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -257182,43 +254514,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", - "visible": false, + "texture": "mCiv", + "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 79, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 6, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3513, - "type": "outgoing", - "meta": { "tradeId": "263:2095:sell:3513" }, - "id": 78 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -257246,7 +254550,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -257287,42 +254591,23 @@ }, "dockable": { "name": "dockable", - "size": "small", - "dockedIn": 263, + "size": "medium", + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3387 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3560 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -257330,14 +254615,14 @@ "mask": "BigInt:4096" }, "model": { - "name": "model", - "slug": "courierB", - "value": "Courier B", + "name": "model", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Courier B", + "value": "AMS Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -257345,30 +254630,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 263, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1333, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2095, + "cooldowns": { "timers": { "cruise": 1.2999999999999998 } }, + "id": 2201, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1.02, - "currentRotary": 3.9968028886505635e-15, - "state": "cruise", - "target": 220, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.24380185449996628, + "state": "warming", + "target": 2703, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -257381,11 +254666,8 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "type": "move", "targetId": 220 }, - { "targetFieldId": 220, "targetRockId": null, "type": "mine" } - ] + "actions": [{ "type": "move", "targetId": 2703 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -257393,9 +254675,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -73.99324389194342, - "coord": [7.046954284592869, 5.803011033249781], - "sector": 31, + "angle": 7.23253272546376, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -257403,15 +254685,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 28, + "allocationIdCounter": 1, "allocations": [], - "max": 96, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -257480,7 +254762,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -257491,27 +254773,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Miner B", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -257519,37 +254801,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1265, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1321, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2096, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2202, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.3500000000000003, - "currentRotary": -8.260059303211165e-14, + "currentSpeed": 0.63, + "currentRotary": -0.10061629416357842, "state": "cruise", - "target": 219, + "target": 2704, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -257562,11 +254837,8 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "type": "move", "targetId": 219 }, - { "targetFieldId": 219, "targetRockId": null, "type": "mine" } - ] + "actions": [{ "type": "move", "targetId": 2704 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -257574,9 +254846,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -18.4582490284989, - "coord": [29.15534836032154, 14.984537229984474], - "sector": 31, + "angle": 8.471633982064333, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -257584,15 +254856,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 28, + "allocationIdCounter": 1, "allocations": [], - "max": 96, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -257673,26 +254945,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Miner B", + "value": "AMS Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -257700,37 +254972,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1253, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1309, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2097, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2203, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1.3500000000000003, - "currentRotary": -1.687538997430238e-14, + "currentSpeed": 1.8550000000000004, + "currentRotary": 3.552713678800501e-15, "state": "cruise", - "target": 218, + "target": 1441, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -257742,11 +255007,28 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 218 }, - { "targetFieldId": 218, "targetRockId": null, "type": "mine" } + { "type": "move", "targetId": 1441 }, + { "type": "dock", "targetId": 1441 }, + { + "targetId": 1441, + "offer": { + "initiator": 2204, + "quantity": 6, + "commodity": "silicon", + "factionId": 262, + "budget": 1297, + "allocations": { + "buyer": { "budget": 95, "storage": 95 }, + "seller": { "budget": null, "storage": 170 } + }, + "price": 28, + "type": "sell" + }, + "type": "trade" + } ] } ], @@ -257755,25 +255037,54 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -51.057061220083924, - "coord": [7.074870330451309, -7.9707478969199705], - "sector": 31, - "moved": true + "angle": 14.74669266628326, + "coord": [1.7347762122915478, 17.468536800530316], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [], - "max": 96, + "allocationIdCounter": 171, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 6, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3576, + "type": "outgoing", + "meta": { "tradeId": "1441:2204:sell:3576" }, + "id": 170 + } + ], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -257811,7 +255122,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 6, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -257842,7 +255153,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -257853,27 +255164,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Miner B", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -257881,38 +255192,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 1.4, - "efficiency": 1.4, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1241, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1297, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2098, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2204, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, - "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "acceleration": 0.1, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 2.4550000000000005, + "currentRotary": -0.020194478696732077, + "state": "cruise", + "target": 1402, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -257923,10 +255227,28 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "origin": "auto", + "type": "trade", "actions": [ - { "targetFieldId": 210, "targetRockId": 11138, "type": "mine" } + { "type": "move", "targetId": 1402 }, + { "type": "dock", "targetId": 1402 }, + { + "targetId": 1402, + "offer": { + "initiator": 2205, + "quantity": 6, + "commodity": "metals", + "factionId": 262, + "budget": 1285, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 100, + "type": "sell" + }, + "type": "trade" + } ] } ], @@ -257935,9 +255257,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -0.7286794978923902, - "coord": [-15.233295268334393, 6.047323395088261], - "sector": 24, + "angle": -29.737912867339602, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -257945,15 +255267,43 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, - "allocations": [], - "max": 680, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 6, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 306, + "type": "outgoing", + "meta": { "tradeId": "1402:2205:sell:306" }, + "id": 2 + } + ], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -257963,7 +255313,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 137, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -257984,11 +255334,11 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 137, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 0, + "metals": 6, "ore": 0, "silica": 0, "silicon": 0, @@ -258022,7 +255372,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -258033,12 +255383,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -258047,13 +255397,13 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Miner A", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -258061,38 +255411,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 3.2, - "efficiency": 1.6, - "entityId": 11138, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1229, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1285, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 4 } }, - "id": 2099, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2205, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.008749659828268808, + "state": "warming", + "target": 2707, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -258104,10 +255447,8 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 209, "targetRockId": 6970, "type": "mine" } - ] + "actions": [{ "type": "move", "targetId": 2707 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -258115,8 +255456,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 0.1343392963573804, - "coord": [5.519345843754005, -29.444500201722935], + "angle": 10.980184516270445, + "coord": [-2.4475210126103355, -4.203240681332327], "sector": 24, "moved": true }, @@ -258125,15 +255466,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 1, "allocations": [], - "max": 96, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -258141,7 +255482,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 71, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -258162,7 +255503,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 71, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -258202,7 +255543,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -258213,27 +255554,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Miner B", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -258241,38 +255582,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 7, - "efficiency": 1.4, - "entityId": 6970, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1217, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1273, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 1 } }, - "id": 2100, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2206, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 3.6550000000000007, + "currentRotary": 0.02252470795904893, + "state": "cruise", + "target": 2708, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -258284,10 +255618,8 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "type": "mine", - "actions": [ - { "targetFieldId": 185, "targetRockId": 6903, "type": "mine" } - ] + "actions": [{ "type": "move", "targetId": 2708 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -258295,9 +255627,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 26.153498628263613, - "coord": [24.22667299949413, 5.107990219830112], - "sector": 5, + "angle": 17.34387018467324, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -258305,15 +255637,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 24, + "allocationIdCounter": 1, "allocations": [], - "max": 96, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -258329,7 +255661,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 36, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -258350,7 +255682,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 36, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -258382,7 +255714,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -258393,27 +255725,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Miner B", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -258421,38 +255753,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 2.8, - "efficiency": 1.4, - "entityId": 6903, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1205, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1273, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 4 } }, - "id": 2101, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2207, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, - "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "acceleration": 0.1, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 6, + "currentRotary": 0.08750593298837295, + "state": "cruise", + "target": 1433, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -258463,10 +255788,49 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "origin": "auto", + "type": "trade", "actions": [ - { "targetFieldId": 184, "targetRockId": 10455, "type": "mine" } + { "type": "move", "targetId": 1433 }, + { "type": "dock", "targetId": 1433 }, + { + "targetId": 1433, + "offer": { + "initiator": 2208, + "quantity": 6, + "commodity": "drones", + "factionId": 262, + "budget": 263, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "price": 837, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 263 }, + { "type": "dock", "targetId": 263 }, + { + "targetId": 263, + "offer": { + "initiator": 2208, + "quantity": 6, + "commodity": "drones", + "factionId": 262, + "budget": 263, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } ] } ], @@ -258475,9 +255839,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.52844563179106, - "coord": [-4.190577612420844, -11.47661164132767], - "sector": 5, + "angle": -1.3483224851369635, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -258485,15 +255849,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, - "allocations": [], - "max": 680, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 6, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1433:2208:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 6, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "263:2208:sell:27" }, + "id": 2 + } + ], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -258508,7 +255927,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 377, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -258529,7 +255948,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 377, + "ore": 0, "silica": 0, "silicon": 0, "superconductors": 0, @@ -258562,7 +255981,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -258573,12 +255992,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -258587,13 +256006,13 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Large Miner A", + "value": "AMS Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -258601,37 +256020,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 6.4, - "efficiency": 1.6, - "entityId": 10455, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1193, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 263, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 2 } }, - "id": 2102, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2208, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 5 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 1.1868238913561442, - "cruise": 3, - "ttc": 3.5, - "maneuver": 0.3, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.00016211500589058403, - "state": "maneuver", - "target": 22608, + "currentSpeed": 1, + "currentRotary": 0.08750593298837295, + "state": "cruise", + "target": 1433, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -258643,11 +256055,49 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 22608 }, - { "targetFieldId": 218, "targetRockId": 22608, "type": "mine" } + { "type": "move", "targetId": 1433 }, + { "type": "dock", "targetId": 1433 }, + { + "targetId": 1433, + "offer": { + "initiator": 2209, + "quantity": 160, + "commodity": "drones", + "factionId": 262, + "budget": 263, + "allocations": { + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 837, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 263 }, + { "type": "dock", "targetId": 263 }, + { + "targetId": 263, + "offer": { + "initiator": 2209, + "quantity": 160, + "commodity": "drones", + "factionId": 262, + "budget": 263, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } ] } ], @@ -258656,8 +256106,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -65.86529391603975, - "coord": [3.515851863925053, -11.02379527633453], + "angle": -1.3483224851369635, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -258666,15 +256116,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, - "allocations": [], - "max": 96, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 160, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1433:2209:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 160, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "263:2209:sell:27" }, + "id": 2 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -258687,7 +256192,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 8, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -258708,7 +256213,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 8, + "ice": 0, "metals": 0, "ore": 0, "silica": 0, @@ -258755,26 +256260,26 @@ "hitpoints": { "name": "hitpoints", "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerB", - "value": "Miner B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Miner B", + "value": "AMS Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -258782,37 +256287,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 2.8, - "efficiency": 1.4, - "entityId": 22608, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1181, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 263, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 4 } }, - "id": 2103, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2209, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 1.1, - "currentRotary": 0, + "currentSpeed": 1, + "currentRotary": 0.08750593298837295, "state": "cruise", - "target": 24804, + "target": 1433, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -258824,11 +256322,50 @@ "name": "orders", "value": [ { - "type": "patrol", "origin": "auto", - "sectorId": 31, - "actions": [{ "type": "move", "targetId": 24804 }], - "clockwise": true + "type": "trade", + "actions": [ + { "type": "move", "targetId": 1433 }, + { "type": "dock", "targetId": 1433 }, + { + "targetId": 1433, + "offer": { + "initiator": 2210, + "quantity": 160, + "commodity": "drones", + "factionId": 262, + "budget": 263, + "allocations": { + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 3 } + }, + "price": 837, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 171 }, + { "type": "teleport", "targetId": 169 }, + { "type": "move", "targetId": 263 }, + { "type": "dock", "targetId": 263 }, + { + "targetId": 263, + "offer": { + "initiator": 2210, + "quantity": 160, + "commodity": "drones", + "factionId": 262, + "budget": 263, + "allocations": { + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -258836,8 +256373,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -24.097703126816178, - "coord": [-10.664723017366907, -24.70094873522264], + "angle": -1.3483224851369635, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -258846,15 +256383,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 80, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 160, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1433:2210:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 160, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "263:2210:sell:27" }, + "id": 2 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -258934,13 +256526,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, + "value": 2, + "range": 1, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -258948,43 +256540,44 @@ }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2130, 2129], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 263, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2104, - "tags": ["selection", "ship", "role:military"] + "id": 2210, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 1.1, - "currentRotary": 1.3322676295501878e-15, - "state": "cruise", - "target": 24846, + "currentSpeed": 0.09, + "currentRotary": -0.05923376848255746, + "state": "warming", + "target": 220, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -258996,11 +256589,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 31, - "actions": [{ "type": "move", "targetId": 24846 }], - "clockwise": false + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 220 }, + { "targetFieldId": 220, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -259008,8 +256602,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.111660701048182, - "coord": [24.46299516533945, 0.3409729789299828], + "angle": 7.6748217652866435, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -259018,7 +256612,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -259026,7 +256620,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -259106,57 +256700,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 1, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Miner B", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2128, 2127], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1357, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2105, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 1.5 } }, + "id": 2211, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.09, + "rotary": 0.22689280275926285, + "cruise": 1, + "ttc": 10, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.2325, - "currentRotary": 1.6098415933640808e-9, - "state": "cruise", - "target": 24917, + "currentSpeed": 0, + "currentRotary": -0.22689280275926285, + "state": "maneuver", + "target": 1345, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -259168,11 +256770,38 @@ "name": "orders", "value": [ { - "type": "patrol", "origin": "auto", - "sectorId": 31, - "actions": [{ "type": "move", "targetId": 24917 }], - "clockwise": false + "actions": [ + { "type": "move", "targetId": 1345 }, + { "type": "dock", "targetId": 1345 }, + { + "targetId": 1345, + "offer": { + "commodity": "ore", + "initiator": 2212, + "quantity": 680, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 5 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 262 + }, + "type": "trade" + } + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 169 }, + { "type": "teleport", "targetId": 171 }, + { "type": "move", "targetId": 3854 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -259180,8 +256809,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 35.998879638287725, - "coord": [-10.525926011497797, -19.29016900707083], + "angle": 2.3697978514908673, + "coord": [-10.932833090810222, 6.900159653139721], "sector": 31, "moved": true }, @@ -259190,15 +256819,43 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "lMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 80, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 680, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 489, + "type": "outgoing", + "meta": { "tradeId": "1345:2212:sell:489" }, + "id": 1 + } + ], + "max": 680, "availableWares": { "coolant": 0, "drones": 0, @@ -259234,7 +256891,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 680, "silica": 0, "silicon": 0, "superconductors": 0, @@ -259267,7 +256924,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -259278,13 +256935,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 830, "regen": 0.2, "value": 830 }, + "shield": { "max": 310, "regen": 6.5, "value": 310 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, + "value": 3, + "range": 1, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -259292,43 +256949,51 @@ }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "largeMinerA", + "value": "Large Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Large Miner A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2126, 2125], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 1.6, + "efficiency": 1.6, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1345, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2106, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2212, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 24936, + "currentSpeed": 0.09, + "currentRotary": -0.0213927002534402, + "state": "warming", + "target": 218, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -259340,11 +257005,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 24, - "actions": [{ "type": "move", "targetId": 24936 }], - "clockwise": false + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 218 }, + { "targetFieldId": 218, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -259352,9 +257018,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 1.2373221370552105, - "coord": [13.831857493326526, -21.572142311706717], - "sector": 24, + "angle": 52.057341874775425, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { @@ -259362,7 +257028,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -259370,7 +257036,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -259450,57 +257116,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 1, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Miner B", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2124, 2123], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1333, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2107, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 1.5 } }, + "id": 2213, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.0225, - "currentRotary": 4.440892098500626e-16, - "state": "warming", - "target": 24765, + "currentSpeed": 0, + "currentRotary": -0.5704819664374172, + "state": "maneuver", + "target": 210, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -259512,11 +257186,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 24, - "actions": [{ "type": "move", "targetId": 24765 }], - "clockwise": true + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 210 }, + { "targetFieldId": 210, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -259524,8 +257199,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -22.05294436327654, - "coord": [-24.692042214225182, 6.8496389558869755], + "angle": -750.8748775488842, + "coord": [-2.4475210126103355, -4.203240681332327], "sector": 24, "moved": true }, @@ -259534,7 +257209,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -259542,7 +257217,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -259622,57 +257297,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 1, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Miner B", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2122, 2121], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1321, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 3 } }, - "id": 2108, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2214, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.1, + "rotary": 1.1868238913561442, + "cruise": 3, + "ttc": 3.5, + "maneuver": 0.3, "active": true, - "currentSpeed": 0.0225, - "currentRotary": 9.769962616701378e-15, - "state": "warming", - "target": 24927, + "currentSpeed": 3, + "currentRotary": -0.06474097910851517, + "state": "cruise", + "target": 209, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -259684,11 +257367,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 24, - "actions": [{ "type": "move", "targetId": 24927 }], - "clockwise": false + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 209 }, + { "targetFieldId": 209, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -259696,8 +257380,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 80.98637685037711, - "coord": [4.514611248031533, -17.549883554754725], + "angle": 8.503376486069431, + "coord": [-2.4475210126103355, -4.203240681332327], "sector": 24, "moved": true }, @@ -259706,7 +257390,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -259714,7 +257398,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 96, "availableWares": { "coolant": 0, "drones": 0, @@ -259794,57 +257478,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 1, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "minerB", + "value": "Miner B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Miner B", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2120, 2119], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.4, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1309, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 3 } }, - "id": 2109, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2215, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.09, + "rotary": 0.22689280275926285, + "cruise": 1, + "ttc": 10, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.7275, - "currentRotary": -4.440892098500626e-15, - "state": "cruise", - "target": 24895, + "currentSpeed": 0, + "currentRotary": 0.22689280275926285, + "state": "maneuver", + "target": 220, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -259856,11 +257548,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 5, - "actions": [{ "type": "move", "targetId": 24895 }], - "clockwise": true + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 220 }, + { "targetFieldId": 220, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -259868,18 +257561,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -21.1157601670131, - "coord": [4.1048206019040885, 19.47512036608031], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 6.698381939300085, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "lMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -259887,7 +257579,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 680, "availableWares": { "coolant": 0, "drones": 0, @@ -259956,7 +257648,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -259967,13 +257659,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 830, "regen": 0.2, "value": 830 }, + "shield": { "max": 310, "regen": 6.5, "value": 310 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, + "value": 3, + "range": 1, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -259981,43 +257673,51 @@ }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "largeMinerA", + "value": "Large Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Large Miner A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2118, 2117], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.6, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1297, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2110, - "tags": ["selection", "ship", "role:military"] + "id": 2216, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, - "currentSpeed": 0, - "currentRotary": 1.064650843716541, + "currentSpeed": 0.252, + "currentRotary": 8.881784197001252e-16, "state": "maneuver", - "target": 24931, + "target": 1285, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -260029,11 +257729,36 @@ "name": "orders", "value": [ { - "type": "patrol", "origin": "auto", - "sectorId": 5, - "actions": [{ "type": "move", "targetId": 24931 }], - "clockwise": false + "actions": [ + { "type": "move", "targetId": 1285 }, + { "type": "dock", "targetId": 1285 }, + { + "targetId": 1285, + "offer": { + "commodity": "ore", + "initiator": 2217, + "quantity": 32, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 32 }, + "seller": { "budget": null, "storage": 31 } + }, + "type": "sell", + "factionId": 262 + }, + "type": "trade" + } + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 7869, "onlyManeuver": true } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -260041,8 +257766,8 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.643314179804346, - "coord": [16.68436044329147, -17.96069829361405], + "angle": -24.33845225186665, + "coord": [-8.118219024051408, 0.38687240667918454], "sector": 5, "moved": true, "mask": "BigInt:2199023255552" @@ -260052,15 +257777,43 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 80, + "allocationIdCounter": 32, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 32, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3570, + "type": "outgoing", + "meta": { "tradeId": "1285:2217:sell:3570" }, + "id": 31 + } + ], + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -260096,7 +257849,7 @@ "hydrogen": 0, "ice": 0, "metals": 0, - "ore": 0, + "ore": 32, "silica": 0, "silicon": 0, "superconductors": 0, @@ -260129,7 +257882,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -260140,57 +257893,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, + "value": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Slate", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2116, 2115], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1285, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2111, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2217, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 5 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.09, + "rotary": 0.22689280275926285, + "cruise": 1, + "ttc": 10, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.09, - "currentRotary": 0, - "state": "maneuver", - "target": 24742, + "currentSpeed": 0.04859999999999999, + "currentRotary": -0.02139270025343043, + "state": "warming", + "target": 218, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -260202,11 +257963,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 5, - "actions": [{ "type": "move", "targetId": 24742 }], - "clockwise": false + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 218 }, + { "targetFieldId": 218, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -260214,18 +257976,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -34.826095824799, - "coord": [28.07562761795555, -14.345626287139112], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 1.7918594173387397, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "lMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -260233,7 +257994,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 680, "availableWares": { "coolant": 0, "drones": 0, @@ -260302,7 +258063,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -260313,13 +258074,13 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 830, "regen": 0.2, "value": 830 }, + "shield": { "max": 310, "regen": 6.5, "value": 310 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, + "value": 3, + "range": 1, "cooldown": 0.3, "name": "damage", "targetId": null, @@ -260327,61 +258088,67 @@ }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "largeMinerA", + "value": "Large Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Patrol Leader Gunboat", + "value": "AMS Large Miner A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2114, 2113], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1.6, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1273, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2112, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 5 } }, + "id": 2218, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2112 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.09, - "currentRotary": -0.2576684104047757, - "state": "maneuver", - "target": 2112, - "targetReached": true, + "currentSpeed": 0.0675, + "currentRotary": 0.04525967018679822, + "state": "warming", + "target": 2468, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2112, - "actions": [ - { "type": "move", "targetId": 2112, "ignoreReached": true } - ], - "ordersForSector": 5 + "sectorId": 31, + "actions": [{ "type": "move", "targetId": 2468 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -260389,18 +258156,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -202.24586487902434, - "coord": [27.976968134105956, -14.474510547127199], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -3.3152093623297674, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -260408,7 +258174,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -260477,7 +258243,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -260488,76 +258254,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2245, 2244], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2112, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2113, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2219, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2112 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.09, - "currentRotary": 0.2762619606699639, - "state": "maneuver", - "target": 2112, - "targetReached": true, + "currentSpeed": 0.0675, + "currentRotary": -0.0725872081744412, + "state": "warming", + "target": 2469, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2112, - "actions": [ - { "type": "move", "targetId": 2112, "ignoreReached": true } - ], - "ordersForSector": 5 + "sectorId": 31, + "actions": [{ "type": "move", "targetId": 2469 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -260565,18 +258328,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 239.72791638609783, - "coord": [28.03817441409025, -14.507610877226163], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 0.7138496345078558, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -260584,7 +258346,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -260653,7 +258415,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -260664,76 +258426,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2243, 2242], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2112, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2114, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2220, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2111 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": -4.440892098500626e-15, - "state": "maneuver", - "target": 2111, - "targetReached": true, + "currentSpeed": 0.045, + "currentRotary": 0.15858452538413292, + "state": "warming", + "target": 2470, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2111, - "actions": [ - { "type": "move", "targetId": 2111, "ignoreReached": true } - ], - "ordersForSector": 5 + "sectorId": 31, + "actions": [{ "type": "move", "targetId": 2470 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -260741,18 +258500,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -178.18710041152858, - "coord": [16.71973029688617, -18.086719794130513], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -2.60803954151041, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -260760,7 +258518,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -260829,7 +258587,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -260840,76 +258598,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2241, 2240], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2111, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2115, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2221, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2111 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 2.531308496145357e-14, + "currentSpeed": 1.1, + "currentRotary": -0.04750458870788776, "state": "cruise", - "target": 2111, - "targetReached": true, + "target": 2471, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2111, - "actions": [ - { "type": "move", "targetId": 2111, "ignoreReached": true } - ], - "ordersForSector": 5 + "sectorId": 24, + "actions": [{ "type": "move", "targetId": 2471 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -260917,18 +258672,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 337.16002535859684, - "coord": [16.752377863528746, -18.166609756265967], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 2.0928287250123603, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -260936,7 +258690,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -261005,7 +258759,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -261016,76 +258770,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2239, 2238], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2111, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2116, + "id": 2222, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2110 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.06121527499306412, + "currentSpeed": 1.1, + "currentRotary": -0.10862659536569375, "state": "cruise", - "target": 2110, - "targetReached": true, + "target": 2472, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2110, - "actions": [ - { "type": "move", "targetId": 2110, "ignoreReached": true } - ], - "ordersForSector": 5 + "sectorId": 24, + "actions": [{ "type": "move", "targetId": 2472 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -261093,18 +258844,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -272.50241955936156, - "coord": [5.188624682553206, 18.349617758890698], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 3.046909932664588, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -261112,7 +258862,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -261181,7 +258931,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -261192,76 +258942,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2237, 2236], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2110, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2117, + "id": 2223, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2110 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.5, - "currentRotary": 0.08008716103759328, - "state": "cruise", - "target": 2110, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": -0.03452043597275356, + "state": "warming", + "target": 2473, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2110, - "actions": [ - { "type": "move", "targetId": 2110, "ignoreReached": true } - ], - "ordersForSector": 5 + "sectorId": 24, + "actions": [{ "type": "move", "targetId": 2473 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -261269,18 +259016,17 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 167.3531774185986, - "coord": [5.275313646957598, 18.72676511783826], - "sector": 5, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 1.767744962238953, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, + "moved": true }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -261288,7 +259034,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -261357,7 +259103,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -261368,76 +259114,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2235, 2234], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2110, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2118, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2224, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2109 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.38, - "currentRotary": 0.2568673134640598, - "state": "cruise", - "target": 2109, - "targetReached": true, + "currentSpeed": 0.045, + "currentRotary": -4.440892098500626e-16, + "state": "warming", + "target": 7904, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2109, - "actions": [ - { "type": "move", "targetId": 2109, "ignoreReached": true } - ], - "ordersForSector": 24 + "sectorId": 5, + "actions": [{ "type": "move", "targetId": 7904 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -261445,17 +259188,18 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -199.38218421253237, - "coord": [4.4669888882810875, -17.67536807108348], - "sector": 24, - "moved": true + "angle": 40.19522609517682, + "coord": [-23.474745536575742, -3.8808816743518046], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -261463,7 +259207,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -261532,7 +259276,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -261543,76 +259287,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2233, 2232], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2109, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2119, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2225, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2109 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.0225, - "currentRotary": -0.35094029332636856, - "state": "maneuver", - "target": 2109, - "targetReached": true, + "currentSpeed": 0.045, + "currentRotary": -3.1086244689504383e-15, + "state": "warming", + "target": 7906, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2109, - "actions": [ - { "type": "move", "targetId": 2109, "ignoreReached": true } - ], - "ordersForSector": 24 + "sectorId": 5, + "actions": [{ "type": "move", "targetId": 7906 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -261620,17 +259361,18 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 275.11270233079864, - "coord": [4.819461662464498, -17.290079760633503], - "sector": 24, - "moved": true + "angle": -72.7766084192964, + "coord": [-1.0629954510178057, -28.92090610210357], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -261638,7 +259380,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -261707,7 +259449,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -261718,76 +259460,73 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2231, 2230], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2109, "mask": "BigInt:512" } + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2120, + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2226, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2108 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.0225, - "currentRotary": -0.18822979521527694, - "state": "maneuver", - "target": 2108, - "targetReached": true, + "currentSpeed": 1.1, + "currentRotary": -2.6645352591003757e-15, + "state": "cruise", + "target": 7878, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2108, - "actions": [ - { "type": "move", "targetId": 2108, "ignoreReached": true } - ], - "ordersForSector": 24 + "sectorId": 5, + "actions": [{ "type": "move", "targetId": 7878 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -261795,17 +259534,18 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -260.644784940561, - "coord": [-24.817969436642343, 6.406584645090009], - "sector": 24, - "moved": true + "angle": -50.18957143563872, + "coord": [-26.97841170997018, -12.309610742401922], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -261813,7 +259553,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -261882,7 +259622,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -261893,58 +259633,57 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2229, 2228], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2108, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2121, + "id": 2227, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2108 }, + "default": { "type": "escort", "targetId": 2227 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.16872099328285373, + "currentSpeed": 0, + "currentRotary": -2.478367537831948, "state": "cruise", - "target": 2108, + "target": 2227, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -261958,11 +259697,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2108, + "targetId": 2227, "actions": [ - { "type": "move", "targetId": 2108, "ignoreReached": true } + { "type": "move", "targetId": 2227, "ignoreReached": true } ], - "ordersForSector": 24 + "ordersForSector": 5 } ], "mask": "BigInt:134217728" @@ -261970,10 +259709,11 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 178.6302090399192, - "coord": [-24.791164499464873, 6.356007010949056], - "sector": 24, - "moved": true + "angle": -184.70422580983, + "coord": [-26.811333364423266, -11.914408730205658], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, @@ -262082,13 +259822,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -262096,30 +259836,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2108, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2227, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2122, + "id": 2228, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2107 }, + "default": { "type": "escort", "targetId": 2227 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -0.2663596614677495, - "state": "maneuver", - "target": 2107, + "currentSpeed": 1.52, + "currentRotary": -0.2250896192675187, + "state": "cruise", + "target": 2227, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -262133,11 +259873,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2107, + "targetId": 2227, "actions": [ - { "type": "move", "targetId": 2107, "ignoreReached": true } + { "type": "move", "targetId": 2227, "ignoreReached": true } ], - "ordersForSector": 24 + "ordersForSector": 5 } ], "mask": "BigInt:134217728" @@ -262145,10 +259885,11 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -160.6945537720984, - "coord": [13.613591577313713, -21.735211772697287], - "sector": 24, - "moved": true + "angle": 163.31854632539176, + "coord": [-26.86549444959375, -10.81058991045722], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, @@ -262257,13 +259998,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -262271,30 +260012,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2107, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2227, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2123, + "id": 2229, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2107 }, + "default": { "type": "escort", "targetId": 2226 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 1.1587963686665699, + "currentSpeed": 0.045, + "currentRotary": -0.06830777489090867, "state": "maneuver", - "target": 2107, + "target": 2226, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -262308,186 +260049,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2107, + "targetId": 2226, "actions": [ - { "type": "move", "targetId": 2107, "ignoreReached": true } + { "type": "move", "targetId": 2226, "ignoreReached": true } ], - "ordersForSector": 24 - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": 222.4881125210946, - "coord": [13.663248338990547, -21.720615056820535], - "sector": 24, - "moved": true - }, - "render": { - "color": 16737253, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "fighter", - "value": "Fighter", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "AMS Fighter", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2107, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2124, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 2106 }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, - "active": true, - "currentSpeed": 0.38, - "currentRotary": -0.005535403045137777, - "state": "cruise", - "target": 2106, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 2106, - "actions": [ - { "type": "move", "targetId": 2106, "ignoreReached": true } - ], - "ordersForSector": 31 + "ordersForSector": 5 } ], "mask": "BigInt:134217728" @@ -262495,10 +260061,11 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -155.69158595243752, - "coord": [-10.414212971001906, -19.44298075347345], - "sector": 31, - "moved": true + "angle": -96.52250132587577, + "coord": [-1.0130980558351437, -29.19029398014358], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, @@ -262607,13 +260174,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -262621,30 +260188,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2106, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2226, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2125, + "id": 2230, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2106 }, + "default": { "type": "escort", "targetId": 2226 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.1875, - "currentRotary": 0.0856176300691125, + "currentSpeed": 0.045, + "currentRotary": -0.09260734615824928, "state": "maneuver", - "target": 2106, + "target": 2226, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -262658,11 +260225,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2106, + "targetId": 2226, "actions": [ - { "type": "move", "targetId": 2106, "ignoreReached": true } + { "type": "move", "targetId": 2226, "ignoreReached": true } ], - "ordersForSector": 31 + "ordersForSector": 5 } ], "mask": "BigInt:134217728" @@ -262670,10 +260237,11 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 243.31465109728194, - "coord": [-10.225093147954354, -19.160377516689397], - "sector": 31, - "moved": true + "angle": 187.12224762970246, + "coord": [-0.8834970864517372, -29.101229480836725], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, @@ -262782,13 +260350,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -262796,30 +260364,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2106, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2226, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2126, + "id": 2231, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2105 }, + "default": { "type": "escort", "targetId": 2225 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 2.478367537831948, - "state": "cruise", - "target": 2105, + "currentRotary": -2.478367537831948, + "state": "maneuver", + "target": 2225, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -262833,11 +260401,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2105, + "targetId": 2225, "actions": [ - { "type": "move", "targetId": 2105, "ignoreReached": true } + { "type": "move", "targetId": 2225, "ignoreReached": true } ], - "ordersForSector": 31 + "ordersForSector": 5 } ], "mask": "BigInt:134217728" @@ -262845,10 +260413,11 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -192.83919918382858, - "coord": [25.11833372395435, 1.2136362143757784], - "sector": 31, - "moved": true + "angle": -61.46789528645049, + "coord": [-23.958312847894547, -3.7044671970267213], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, @@ -262957,13 +260526,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -262971,30 +260540,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2105, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2225, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2127, + "id": 2232, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2105 }, + "default": { "type": "escort", "targetId": 2225 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -2.478367537831948, - "state": "cruise", - "target": 2105, + "currentSpeed": 0.045, + "currentRotary": -0.06363974386799898, + "state": "maneuver", + "target": 2225, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -263008,11 +260577,11 @@ { "type": "escort", "origin": "auto", - "targetId": 2105, + "targetId": 2225, "actions": [ - { "type": "move", "targetId": 2105, "ignoreReached": true } + { "type": "move", "targetId": 2225, "ignoreReached": true } ], - "ordersForSector": 31 + "ordersForSector": 5 } ], "mask": "BigInt:134217728" @@ -263020,10 +260589,11 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 298.5547921807617, - "coord": [24.948660033590503, 1.2994833579407932], - "sector": 31, - "moved": true + "angle": 230.9156498542465, + "coord": [-23.22052901387724, -4.087904728364116], + "sector": 5, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16737253, @@ -263132,13 +260702,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -263146,31 +260716,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2105, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2225, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2128, + "id": 2233, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2104 }, + "default": { "type": "escort", "targetId": 2224 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.6049312191060219, - "state": "cruise", - "target": 2104, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": 0.17885070104988454, + "state": "maneuver", + "target": 2224, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -263183,11 +260753,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2104, - "actions": [ - { "type": "move", "targetId": 2104, "ignoreReached": true } - ], - "ordersForSector": 31 + "targetId": 2224, + "actions": [{ "type": "move", "targetId": 2224 }], + "ordersForSector": 24 } ], "mask": "BigInt:134217728" @@ -263195,9 +260763,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -262.98509156713175, - "coord": [-12.638780072925721, -23.165258178924788], - "sector": 31, + "angle": -8.605306285805, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -263307,13 +260875,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -263321,31 +260889,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2104, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2224, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2129, + "id": 2234, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2104 }, + "default": { "type": "escort", "targetId": 2224 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": -0.0003514486796460936, - "state": "cruise", - "target": 2104, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": 0.17885070104988454, + "state": "maneuver", + "target": 2224, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -263358,11 +260926,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2104, - "actions": [ - { "type": "move", "targetId": 2104, "ignoreReached": true } - ], - "ordersForSector": 31 + "targetId": 2224, + "actions": [{ "type": "move", "targetId": 2224 }], + "ordersForSector": 24 } ], "mask": "BigInt:134217728" @@ -263370,9 +260936,9 @@ "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 139.26525464930828, - "coord": [-13.403180486243132, -23.24947078507523], - "sector": 31, + "angle": -0.35653353213075656, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { @@ -263482,13 +261048,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "AMS Fighter", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -263496,166 +261062,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2104, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2224, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2130, + "id": 2235, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2223 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 1390, + "currentSpeed": 0.6, + "currentRotary": -0.21327882600632986, + "state": "maneuver", + "target": 2223, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1390 }, - { "type": "dock", "targetId": 1390 }, - { - "targetId": 1390, - "offer": { - "initiator": 2131, - "quantity": 88, - "commodity": "water", - "factionId": 272, - "budget": 1499, - "allocations": { - "buyer": { "budget": 150, "storage": 55 }, - "seller": { "budget": null, "storage": 245 } - }, - "price": 36, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, - { - "targetId": 1499, - "offer": { - "initiator": 2131, - "quantity": 88, - "commodity": "water", - "factionId": 272, - "budget": 1499, - "allocations": { - "buyer": { "budget": null, "storage": 163 }, - "seller": { "budget": null, "storage": 56 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "targetId": 2223, + "actions": [{ "type": "move", "targetId": 2223 }], + "ordersForSector": 24 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 13.002889822353904, - "coord": [13.528179270915778, 11.667607958478838], - "sector": 32, + "angle": -7.252035155986426, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 57, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3528, - "type": "incoming", - "meta": { "tradeId": "1390:2131:buy:3528" }, - "id": 55 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3528, - "type": "outgoing", - "meta": { "tradeId": "1499:2131:sell:3528" }, - "id": 56 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -263724,7 +261196,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -263735,27 +261207,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -263763,118 +261235,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1499, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2223, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2131, - "tags": ["selection", "ship", "role:transport"] + "id": 2236, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2223 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.9424777960769379, + "currentSpeed": 0.6, + "currentRotary": -0.21327882600633075, "state": "maneuver", - "target": 1499, + "target": 2223, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, - { - "targetId": 1499, - "offer": { - "initiator": 2132, - "quantity": 24, - "commodity": "silicon", - "factionId": 272, - "budget": 1499, - "allocations": { - "buyer": { "budget": null, "storage": 167 }, - "seller": { "budget": null, "storage": 57 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "targetId": 2223, + "actions": [{ "type": "move", "targetId": 2223 }], + "ordersForSector": 24 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 7.925969638501206, - "coord": [-13.708914250282628, -29.76546502959102], - "sector": 29, + "angle": -5.2864477094917675, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 58, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 24, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3558, - "type": "outgoing", - "meta": { "tradeId": "1499:2132:sell:3558" }, - "id": 57 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -263912,7 +261338,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 24, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -263943,7 +261369,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -263954,27 +261380,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -263982,116 +261408,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1499, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2223, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2132, - "tags": ["selection", "ship", "role:transport"] + "id": 2237, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2222 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, - "active": false, - "currentSpeed": 0, - "currentRotary": 0, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, + "active": true, + "currentSpeed": 0.6, + "currentRotary": 0.03222325220539224, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 2222, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", - "actions": [ - { - "targetId": 1499, - "offer": { - "initiator": 2133, - "quantity": 6, - "commodity": "gold", - "factionId": 272, - "budget": 1499, - "allocations": { - "buyer": { "budget": null, "storage": 165 }, - "seller": { "budget": null, "storage": 110 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "targetId": 2222, + "actions": [{ "type": "move", "targetId": 2222 }], + "ordersForSector": 24 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -59.316613982383274, - "coord": [5.664791070477958, -22.109262342825165], - "sector": 29, + "angle": -8.267238370296461, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", - "visible": false, + "texture": "sMil", + "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 111, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 6, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3543, - "type": "outgoing", - "meta": { "tradeId": "1499:2133:sell:3543" }, - "id": 110 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -264121,7 +261503,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 6, + "gold": 0, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -264161,7 +261543,7 @@ "dockable": { "name": "dockable", "size": "small", - "dockedIn": 1499, + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { @@ -264171,27 +261553,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Courier B", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -264199,120 +261581,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1499, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2222, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2133, - "tags": ["selection", "ship", "role:transport"] + "id": 2238, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2222 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 163, + "currentSpeed": 0.6, + "currentRotary": 0.032223252205390907, + "state": "maneuver", + "target": 2222, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, - { - "targetId": 1499, - "offer": { - "initiator": 2134, - "quantity": 82, - "commodity": "water", - "factionId": 272, - "budget": 1499, - "allocations": { - "buyer": { "budget": null, "storage": 162 }, - "seller": { "budget": null, "storage": 53 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "targetId": 2222, + "actions": [{ "type": "move", "targetId": 2222 }], + "ordersForSector": 24 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 3.5780361081432948, - "coord": [16.81336583979154, 4.6233294058802645], - "sector": 32, + "angle": -0.018465616622216352, + "coord": [-2.4475210126103355, -4.203240681332327], + "sector": 24, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 54, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 82 - }, - "issued": 3483, - "type": "outgoing", - "meta": { "tradeId": "1499:2134:sell:3483" }, - "id": 53 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -264353,7 +261687,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 82 + "water": 0 }, "quota": { "coolant": 0, @@ -264381,7 +261715,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -264392,27 +261726,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -264420,72 +261754,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1499, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2222, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2134, - "tags": ["selection", "ship", "role:transport"] + "id": 2239, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2221 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.09, - "currentRotary": -7.993605777301127e-15, + "currentSpeed": 0.045, + "currentRotary": -0.24327202111895607, "state": "maneuver", - "target": 24720, + "target": 2221, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, - "mode": "goto", + "limit": 2000, + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24720, "onlyManeuver": true } - ], - "type": "move" + "type": "escort", + "origin": "auto", + "targetId": 2221, + "actions": [{ "type": "move", "targetId": 2221 }], + "ordersForSector": 31 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -35.69994232493604, - "coord": [-3.159801713746065, -12.652342672339481], - "sector": 16, + "angle": 5.67536017062751, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 1, "allocations": [], - "max": 940, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -264545,111 +261879,47 @@ "ore": 0, "silica": 0, "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "large", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 811 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 311, - "target": "THT Shipyard", - "time": 1062 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "THT Therr Hub", - "time": 1516 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "THT Therr Hub", - "time": 1763 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "THT Therr Hub", - "time": 2009 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2066 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2328 - } - ], + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Large Freighter B", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -264657,120 +261927,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1490, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2221, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2135, - "tags": ["selection", "ship", "role:transport"] + "id": 2240, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2221 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1, - "currentRotary": 4.884981308350689e-15, - "state": "cruise", - "target": 71, + "currentSpeed": 0.045, + "currentRotary": -0.24327202111896273, + "state": "maneuver", + "target": 2221, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 71 }, - { "type": "teleport", "targetId": 69 }, - { "type": "move", "targetId": 283 }, - { "type": "dock", "targetId": 283 }, - { - "targetId": 283, - "offer": { - "initiator": 2136, - "quantity": 16, - "commodity": "electronics", - "factionId": 272, - "budget": 1490, - "allocations": { - "buyer": { "budget": 91, "storage": 91 }, - "seller": { "budget": null, "storage": 48 } - }, - "price": 318, - "type": "sell" - }, - "type": "trade" - } - ] + "targetId": 2221, + "actions": [{ "type": "move", "targetId": 2221 }], + "ordersForSector": 31 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 19.473971178435736, - "coord": [5.050145783910776, -25.636806404941286], - "sector": 16, + "angle": 1.357762309942578, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 49, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 16, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3561, - "type": "outgoing", - "meta": { "tradeId": "283:2136:sell:3561" }, - "id": 48 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -264795,7 +262017,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 16, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -264839,210 +262061,38 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 551 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 688 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 826 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 964 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 311, - "target": "THT Shipyard", - "time": 1127 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1474 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1637 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1799 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 1829 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 1966 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2104 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2242 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2417 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2588 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2759 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2928 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 16, - "price": 318, - "target": "THT Shipyard", - "time": 3108 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 18, - "price": 318, - "target": "THT Shipyard", - "time": 3302 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 17, - "price": 318, - "target": "THT Shipyard", - "time": 3489 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -265050,72 +262100,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1490, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2221, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2136, - "tags": ["selection", "ship", "role:transport"] + "id": 2241, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2220 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.03900000000000001, - "currentRotary": -1.7763568394002505e-15, + "currentSpeed": 0.0675, + "currentRotary": 0.10875972480929974, "state": "maneuver", - "target": 24912, + "target": 2220, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, - "mode": "goto", + "limit": 2000, + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24912, "onlyManeuver": true } - ], - "type": "move" + "type": "escort", + "origin": "auto", + "targetId": 2220, + "actions": [{ "type": "move", "targetId": 2220 }], + "ordersForSector": 31 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 59.81404801396943, - "coord": [-4.782476940642157, -14.299097576393425], - "sector": 16, + "angle": 2.94523577302476, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -265184,201 +262234,38 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 562 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 715 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 868 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 311, - "target": "THT Shipyard", - "time": 1034 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 311, - "target": "THT Shipyard", - "time": 1203 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1508 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1687 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1867 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 1898 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2053 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2206 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 17, - "price": 372, - "target": "THT Shipyard", - "time": 2482 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2662 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2838 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2992 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 64, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3179 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3341 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3496 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -265386,72 +262273,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1490, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2220, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2137, - "tags": ["selection", "ship", "role:transport"] + "id": 2242, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2220 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.09, - "currentRotary": -7.993605777301127e-15, + "currentSpeed": 0.0675, + "currentRotary": 0.10875972480930596, "state": "maneuver", - "target": 24734, + "target": 2220, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, - "mode": "goto", + "limit": 2000, + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24734, "onlyManeuver": true } - ], - "type": "move" + "type": "escort", + "origin": "auto", + "targetId": 2220, + "actions": [{ "type": "move", "targetId": 2220 }], + "ordersForSector": 31 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.13056077182259, - "coord": [-3.405689708951616, -13.257658823355985], - "sector": 16, + "angle": 4.910823219519422, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 19, + "allocationIdCounter": 1, "allocations": [], - "max": 940, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -265520,93 +262407,38 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 768 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 311, - "target": "THT Shipyard", - "time": 1045 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "THT Therr Hub", - "time": 1638 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "THT Therr Hub", - "time": 1888 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 1946 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2202 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Large Freighter B", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -265614,166 +262446,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1490, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2220, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2138, - "tags": ["selection", "ship", "role:transport"] + "id": 2243, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2219 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.052000000000000005, - "currentRotary": 5.821290116614364e-10, - "state": "warming", - "target": 1520, + "currentSpeed": 0.0675, + "currentRotary": -0.09147115504659187, + "state": "maneuver", + "target": 2219, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1520 }, - { "type": "dock", "targetId": 1520 }, - { - "targetId": 1520, - "offer": { - "initiator": 2139, - "quantity": 54, - "commodity": "fuel", - "factionId": 272, - "budget": 1482, - "allocations": { - "buyer": { "budget": 26, "storage": 49 }, - "seller": { "budget": null, "storage": 317 } - }, - "price": 60, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 69 }, - { "type": "teleport", "targetId": 71 }, - { "type": "move", "targetId": 1482 }, - { "type": "dock", "targetId": 1482 }, - { - "targetId": 1482, - "offer": { - "initiator": 2139, - "quantity": 54, - "commodity": "fuel", - "factionId": 272, - "budget": 1482, - "allocations": { - "buyer": { "budget": null, "storage": 56 }, - "seller": { "budget": null, "storage": 50 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "targetId": 2219, + "actions": [{ "type": "move", "targetId": 2219 }], + "ordersForSector": 31 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -37.73014183671383, - "coord": [7.857857175631158, 24.862644603383522], - "sector": 15, + "angle": 5.081515205005487, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 51, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3555, - "type": "incoming", - "meta": { "tradeId": "1520:2139:buy:3555" }, - "id": 49 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 54, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3555, - "type": "outgoing", - "meta": { "tradeId": "1482:2139:sell:3555" }, - "id": 50 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -265842,183 +262580,38 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 553 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 697 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 841 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1532 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1702 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1873 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 1904 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2048 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2192 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 45, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2451 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 45, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2594 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 50, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2738 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 44, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2982 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3125 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 48, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3269 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 64, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3464 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -266026,118 +262619,72 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1482, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2219, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.2999999999999998 } }, - "id": 2139, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2244, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "escort", "targetId": 2219 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.013000000000000001, - "currentRotary": -3.9968028886505635e-15, - "state": "warming", - "target": 1482, + "currentSpeed": 0.0675, + "currentRotary": -0.09147115504659631, + "state": "maneuver", + "target": 2219, "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1482 }, - { "type": "dock", "targetId": 1482 }, - { - "targetId": 1482, - "offer": { - "initiator": 2140, - "quantity": 60, - "commodity": "fuel", - "factionId": 272, - "budget": 1482, - "allocations": { - "buyer": { "budget": null, "storage": 55 }, - "seller": { "budget": null, "storage": 46 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "targetId": 2219, + "actions": [{ "type": "move", "targetId": 2219 }], + "ordersForSector": 31 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 262, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 73.05021396497636, - "coord": [9.352481380501361, -31.61107659711212], - "sector": 16, + "angle": 0.7639173443205549, + "coord": [-10.932833090810222, 6.900159653139721], + "sector": 31, "moved": true }, "render": { - "color": 16750653, + "color": 16737253, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 47, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 60, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "outgoing", - "meta": { "tradeId": "1482:2140:sell:3483" }, - "id": 46 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -266165,7 +262712,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 60, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -266206,174 +262753,38 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 553 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 721 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 46, - "target": "THT Therr Mining Complex", - "time": 888 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1547 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1739 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "THT Therr Hub", - "time": 1931 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 1962 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2131 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2298 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2495 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2690 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 2886 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3054 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3306 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 60, - "price": 60, - "target": "THT Therr Mining Complex", - "time": 3567 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "AMS Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -266381,11 +262792,11 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1482, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2219, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 3.3 } }, - "id": 2140, - "tags": ["selection", "ship", "role:transport"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2245, + "tags": ["selection", "ship", "role:military"] }, { "components": { @@ -266396,28 +262807,50 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, - "active": false, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, + "active": true, "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 175, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2709 } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 58.45404001962638, - "coord": [4.426892899048261, -14.113624683029457], + "angle": 39.900246552886614, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -266426,15 +262859,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", - "visible": false, + "texture": "lCiv", + "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 115, + "allocationIdCounter": 1, "allocations": [], - "max": 6, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -266503,8 +262936,8 @@ }, "dockable": { "name": "dockable", - "size": "small", - "dockedIn": 1472, + "size": "large", + "dockedIn": null, "mask": "BigInt:32768" }, "journal": { @@ -266514,8 +262947,8 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { @@ -266528,13 +262961,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Courier B", + "value": "GBF Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -266542,10 +262975,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1472, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1589, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2141, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2246, "tags": ["selection", "ship", "role:transport"] }, { @@ -266562,10 +262995,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-15, - "state": "cruise", - "target": 163, + "currentSpeed": 0, + "currentRotary": -0.9424777960769379, + "state": "maneuver", + "target": 175, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -266577,31 +263010,21 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", + "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1472 }, - { "type": "dock", "targetId": 1472 }, - { - "targetId": 1472, - "offer": { - "initiator": 2142, - "quantity": 88, - "commodity": "water", - "factionId": 272, - "budget": 1472, - "allocations": { - "buyer": { "budget": null, "storage": 84 }, - "seller": { "budget": null, "storage": 54 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2710 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -266609,9 +263032,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 28.710777264170847, - "coord": [7.5135672031551435, 24.561025138790164], - "sector": 32, + "angle": 220.65348436915653, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -266625,36 +263048,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 55, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3456, - "type": "outgoing", - "meta": { "tradeId": "1472:2142:sell:3456" }, - "id": 54 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 160, "availableWares": { "coolant": 0, @@ -266696,7 +263091,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, "quota": { "coolant": 0, @@ -266763,10 +263158,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1472, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1589, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2142, + "id": 2247, "tags": ["selection", "ship", "role:transport"] }, { @@ -266778,29 +263173,51 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 175, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2711 } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 22.94117586975046, - "coord": [22.537253401111364, -6.003785257954102], - "sector": 32, + "angle": 39.900246552886614, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -266808,15 +263225,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 54, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -266885,7 +263302,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -266896,12 +263313,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -266910,13 +263327,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -266924,10 +263341,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1464, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1589, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2143, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2248, "tags": ["selection", "ship", "role:transport"] }, { @@ -266939,29 +263356,51 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": -0.9424777960769379, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 175, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2712 } + ], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 101.78236579087677, - "coord": [24.35310994900527, -7.339689895731829], - "sector": 32, + "angle": 220.65348436915653, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -266969,15 +263408,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 124, + "allocationIdCounter": 1, "allocations": [], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -267046,7 +263485,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -267057,12 +263496,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -267071,13 +263510,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Courier B", + "value": "GBF Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -267085,10 +263524,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1464, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1589, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2144, + "id": 2249, "tags": ["selection", "ship", "role:transport"] }, { @@ -267106,9 +263545,9 @@ "maneuver": 0.13, "active": true, "currentSpeed": 0.013000000000000001, - "currentRotary": 0.31415926535897576, - "state": "maneuver", - "target": 1456, + "currentRotary": 0.14183938921873507, + "state": "warming", + "target": 1466, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -267123,19 +263562,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1456 }, - { "type": "dock", "targetId": 1456 }, + { "type": "move", "targetId": 1466 }, + { "type": "dock", "targetId": 1466 }, { - "targetId": 1456, + "targetId": 1466, "offer": { - "initiator": 2145, - "quantity": 88, - "commodity": "water", + "initiator": 2250, + "quantity": 160, + "commodity": "fuel", "factionId": 272, - "budget": 1456, + "budget": 1580, "allocations": { - "buyer": { "budget": null, "storage": 50 }, - "seller": { "budget": null, "storage": 48 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 83, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 1580 }, + { "type": "dock", "targetId": 1580 }, + { + "targetId": 1580, + "offer": { + "initiator": 2250, + "quantity": 160, + "commodity": "fuel", + "factionId": 272, + "budget": 1580, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -267150,8 +263610,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.651513923414894, - "coord": [-6.293728678460211, 16.96492619266742], + "angle": -1.341118084268714, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -267166,7 +263626,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 49, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -267175,7 +263635,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -267188,12 +263648,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, - "issued": 3366, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1466:2250:buy:309" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "1456:2145:sell:3366" }, - "id": 48 + "meta": { "tradeId": "1580:2250:sell:309" }, + "id": 2 } ], "max": 160, @@ -267237,7 +263724,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 88 + "water": 0 }, "quota": { "coolant": 0, @@ -267304,10 +263791,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1456, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1580, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2145, + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2250, "tags": ["selection", "ship", "role:transport"] }, { @@ -267324,14 +263811,14 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.13, - "currentRotary": 5.861977570020827e-14, - "state": "maneuver", - "target": 24838, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.14183938921873507, + "state": "warming", + "target": 1466, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -267339,11 +263826,50 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24838, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 1466 }, + { "type": "dock", "targetId": 1466 }, + { + "targetId": 1466, + "offer": { + "initiator": 2251, + "quantity": 160, + "commodity": "fuel", + "factionId": 272, + "budget": 1580, + "allocations": { + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 83, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 1580 }, + { "type": "dock", "targetId": 1580 }, + { + "targetId": 1580, + "offer": { + "initiator": 2251, + "quantity": 160, + "commodity": "fuel", + "factionId": 272, + "budget": 1580, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -267351,8 +263877,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 3.062784422267706, - "coord": [-6.571259710583902, 17.12551396367085], + "angle": -1.341118084268714, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -267367,8 +263893,63 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 53, - "allocations": [], + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1466:2251:buy:309" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "outgoing", + "meta": { "tradeId": "1580:2251:sell:309" }, + "id": 2 + } + ], "max": 160, "availableWares": { "coolant": 0, @@ -267477,10 +264058,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1456, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1580, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2146, + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2251, "tags": ["selection", "ship", "role:transport"] }, { @@ -267497,10 +264078,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0, + "currentSpeed": 0.054, "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 163, + "state": "warming", + "target": 2715, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -267512,52 +264093,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1443 }, - { "type": "dock", "targetId": 1443 }, - { - "targetId": 1443, - "offer": { - "initiator": 2147, - "quantity": 940, - "commodity": "electronics", - "factionId": 272, - "budget": 1443, - "allocations": { - "buyer": { "budget": null, "storage": 43 }, - "seller": { "budget": null, "storage": 89 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2147, - "quantity": 940, - "commodity": "electronics", - "factionId": 272, - "budget": 1443, - "allocations": { - "buyer": { "budget": 106, "storage": 106 }, - "seller": { "budget": null, "storage": 44 } - }, - "price": 381, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2715 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -267565,9 +264103,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 14.869147386045746, - "coord": [11.227863187924678, 5.960358618565053], - "sector": 32, + "angle": 3.127586302585783, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -267581,63 +264119,8 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 45, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "incoming", - "meta": { "tradeId": "1443:2147:buy:3588" }, - "id": 43 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "outgoing", - "meta": { "tradeId": "273:2147:sell:3588" }, - "id": 44 - } - ], + "allocationIdCounter": 1, + "allocations": [], "max": 940, "availableWares": { "coolant": 0, @@ -267746,10 +264229,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1443, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1567, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2147, + "cooldowns": { "timers": { "cruise": 10 } }, + "id": 2252, "tags": ["selection", "ship", "role:transport"] }, { @@ -267761,15 +264244,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.9, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 273, + "currentSpeed": 0.13, + "currentRotary": 0.3785078304359777, + "state": "maneuver", + "target": 2716, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -267781,29 +264264,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2148, - "quantity": 940, - "commodity": "electronics", - "factionId": 272, - "budget": 1443, - "allocations": { - "buyer": { "budget": 94, "storage": 94 }, - "seller": { "budget": null, "storage": 42 } - }, - "price": 381, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2716 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -267811,9 +264274,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.022451445763569, - "coord": [10.29982996104691, 9.438643685356023], - "sector": 32, + "angle": 15.975517858582187, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -267821,43 +264284,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 43, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3342, - "type": "outgoing", - "meta": { "tradeId": "273:2148:sell:3342" }, - "id": 42 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -267882,7 +264317,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 940, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -267926,7 +264361,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -267937,12 +264372,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -267951,13 +264386,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Large Freighter B", + "value": "GBF Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -267965,10 +264400,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1443, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1567, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2148, + "id": 2253, "tags": ["selection", "ship", "role:transport"] }, { @@ -267980,15 +264415,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": 2.220446049250313e-15, - "state": "cruise", - "target": 1432, + "currentSpeed": 0.054, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 2717, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -268000,29 +264435,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1432 }, - { "type": "dock", "targetId": 1432 }, - { - "targetId": 1432, - "offer": { - "initiator": 2149, - "quantity": 28, - "commodity": "silicon", - "factionId": 272, - "budget": 1432, - "allocations": { - "buyer": { "budget": null, "storage": 154 }, - "seller": { "budget": null, "storage": 62 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2717 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -268030,8 +264445,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -28.204495962548126, - "coord": [-15.936841270009404, 1.2549867542160067], + "angle": 3.1040048540013396, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -268040,43 +264455,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 63, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 28, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3483, - "type": "outgoing", - "meta": { "tradeId": "1432:2149:sell:3483" }, - "id": 62 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -268114,7 +264501,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 28, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -268145,7 +264532,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -268156,12 +264543,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -268170,13 +264557,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -268184,10 +264571,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1432, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1567, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2149, + "cooldowns": { "timers": { "cruise": 10 } }, + "id": 2254, "tags": ["selection", "ship", "role:transport"] }, { @@ -268199,15 +264586,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.5519999999999999, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 163, + "currentSpeed": 0.55, + "currentRotary": 0.37164564164445313, + "state": "maneuver", + "target": 2718, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -268219,31 +264606,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1432 }, - { "type": "dock", "targetId": 1432 }, - { - "targetId": 1432, - "offer": { - "initiator": 2150, - "quantity": 78, - "commodity": "water", - "factionId": 272, - "budget": 1432, - "allocations": { - "buyer": { "budget": null, "storage": 156 }, - "seller": { "budget": null, "storage": 54 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2718 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -268251,9 +264616,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.987324078749001, - "coord": [18.623532392484446, 0.821614944369803], - "sector": 32, + "angle": 28.516115665848847, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -268261,43 +264626,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 55, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 78 - }, - "issued": 3552, - "type": "outgoing", - "meta": { "tradeId": "1432:2150:sell:3552" }, - "id": 54 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -268338,7 +264675,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 78 + "water": 0 }, "quota": { "coolant": 0, @@ -268366,7 +264703,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -268377,12 +264714,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -268391,13 +264728,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -268405,10 +264742,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1432, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1567, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2150, + "id": 2255, "tags": ["selection", "ship", "role:transport"] }, { @@ -268425,10 +264762,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 0, + "currentSpeed": 0.53, + "currentRotary": 0.17035953242652457, "state": "cruise", - "target": 163, + "target": 1478, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -268443,21 +264780,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1432 }, - { "type": "dock", "targetId": 1432 }, + { "type": "move", "targetId": 1478 }, + { "type": "dock", "targetId": 1478 }, { - "targetId": 1432, + "targetId": 1478, "offer": { - "initiator": 2151, - "quantity": 82, - "commodity": "water", + "initiator": 2256, + "quantity": 160, + "commodity": "gold", "factionId": 272, - "budget": 1432, + "budget": 1558, "allocations": { - "buyer": { "budget": null, "storage": 152 }, - "seller": { "budget": null, "storage": 56 } + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 610, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 1558 }, + { "type": "dock", "targetId": 1558 }, + { + "targetId": 1558, + "offer": { + "initiator": 2256, + "quantity": 160, + "commodity": "gold", + "factionId": 272, + "budget": 1558, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } }, "price": 0, "type": "sell" @@ -268472,9 +264828,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 3.578036035452503, - "coord": [7.936286124865313, 23.65476429707398], - "sector": 32, + "angle": 3.0723192640050345, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -268488,7 +264844,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 57, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -268499,7 +264855,7 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 160, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -268510,12 +264866,39 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 82 + "water": 0 }, - "issued": 3447, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "1478:2256:buy:309" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 160, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "1432:2151:sell:3447" }, - "id": 56 + "meta": { "tradeId": "1558:2256:sell:309" }, + "id": 2 } ], "max": 160, @@ -268559,7 +264942,7 @@ "silicon": 0, "superconductors": 0, "tauMetal": 0, - "water": 82 + "water": 0 }, "quota": { "coolant": 0, @@ -268626,10 +265009,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1432, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1558, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2151, + "id": 2256, "tags": ["selection", "ship", "role:transport"] }, { @@ -268641,16 +265024,16 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 4.75, + "currentRotary": 0.17035953242652457, + "state": "cruise", + "target": 1478, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -268664,41 +265047,42 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "dock", "targetId": 1432 }, + { "type": "move", "targetId": 1478 }, + { "type": "dock", "targetId": 1478 }, { - "targetId": 1432, + "targetId": 1478, "offer": { - "initiator": 2152, - "quantity": 160, - "commodity": "electronics", + "initiator": 2257, + "quantity": 6, + "commodity": "gold", "factionId": 272, - "budget": 1432, + "budget": 1558, "allocations": { - "buyer": { "budget": null, "storage": 57 }, - "seller": { "budget": null, "storage": 155 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "price": 0, + "price": 610, "type": "buy" }, "type": "trade" }, { "type": "move", "targetId": 161 }, { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, + { "type": "move", "targetId": 1558 }, + { "type": "dock", "targetId": 1558 }, { - "targetId": 273, + "targetId": 1558, "offer": { - "initiator": 2152, - "quantity": 160, - "commodity": "electronics", + "initiator": 2257, + "quantity": 6, + "commodity": "gold", "factionId": 272, - "budget": 1432, + "budget": 1558, "allocations": { - "buyer": { "budget": 101, "storage": 101 }, - "seller": { "budget": null, "storage": 58 } + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 381, + "price": 0, "type": "sell" }, "type": "trade" @@ -268711,8 +265095,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 25.006255082625263, - "coord": [-17.58026571997399, 12.147085411008458], + "angle": 9.355504571184621, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -268721,24 +265105,24 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 59, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 6, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -268751,21 +265135,21 @@ "tauMetal": 0, "water": 0 }, - "issued": 3492, + "issued": 303, "type": "incoming", - "meta": { "tradeId": "1432:2152:buy:3492" }, - "id": 57 + "meta": { "tradeId": "1478:2257:buy:303" }, + "id": 1 }, { "amount": { "coolant": 0, "drones": 0, - "electronics": 160, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, - "gold": 0, + "gold": 6, "goldOre": 0, "hullPlates": 0, "hydrogen": 0, @@ -268778,13 +265162,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3492, + "issued": 303, "type": "outgoing", - "meta": { "tradeId": "273:2152:sell:3492" }, - "id": 58 + "meta": { "tradeId": "1558:2257:sell:303" }, + "id": 2 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -268853,7 +265237,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -268864,12 +265248,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -268878,13 +265262,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -268892,10 +265276,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1432, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1558, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2152, + "id": 2257, "tags": ["selection", "ship", "role:transport"] }, { @@ -268907,15 +265291,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": -0.15707963267948966, + "currentRotary": -0.4269096322031878, "state": "maneuver", - "target": 1409, + "target": 2721, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -268927,29 +265311,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1409 }, - { "type": "dock", "targetId": 1409 }, - { - "targetId": 1409, - "offer": { - "initiator": 2153, - "quantity": 940, - "commodity": "food", - "factionId": 272, - "budget": 1423, - "allocations": { - "buyer": { "budget": 22, "storage": 22 }, - "seller": { "budget": null, "storage": 36 } - }, - "price": 17, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2721 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -268957,8 +265321,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 1.3308344693503873, - "coord": [-7.379757742151561, 0.0694600072441327], + "angle": 45.229699029792584, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -268967,43 +265331,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3357, - "type": "outgoing", - "meta": { "tradeId": "1409:2153:sell:3357" }, - "id": 36 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -269030,7 +265366,7 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -269072,7 +265408,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -269083,12 +265419,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -269097,13 +265433,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Large Freighter B", + "value": "GBF Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -269111,10 +265447,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1423, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1545, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2153, + "id": 2258, "tags": ["selection", "ship", "role:transport"] }, { @@ -269126,15 +265462,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.052000000000000005, - "currentRotary": -0.00008405723895421602, + "currentSpeed": 0.55, + "currentRotary": -0.3699850817228931, "state": "maneuver", - "target": 1423, + "target": 2722, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -269146,29 +265482,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1423 }, - { "type": "dock", "targetId": 1423 }, - { - "targetId": 1423, - "offer": { - "initiator": 2154, - "quantity": 48, - "commodity": "fuel", - "factionId": 272, - "budget": 1423, - "allocations": { - "buyer": { "budget": null, "storage": 63 }, - "seller": { "budget": null, "storage": 45 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2722 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -269176,9 +265492,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 8.761328953850745, - "coord": [-16.12518701304611, 3.652643121801095], - "sector": 32, + "angle": 20.149232124177743, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -269186,43 +265502,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 46, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 48, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3417, - "type": "outgoing", - "meta": { "tradeId": "1423:2154:sell:3417" }, - "id": 45 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -269250,7 +265538,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 48, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -269291,7 +265579,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -269302,12 +265590,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -269316,13 +265604,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -269330,10 +265618,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1423, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1545, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2154, + "id": 2259, "tags": ["selection", "ship", "role:transport"] }, { @@ -269345,19 +265633,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.13, - "currentRotary": -3.2516211945221585e-12, - "state": "maneuver", - "target": 24839, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 2723, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -269366,9 +265654,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24839, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2723 }], "type": "move" } ], @@ -269377,26 +265663,25 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 76.62209348320485, - "coord": [4.285367944239604, 2.834671725364518], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 7.981335813913987, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 81, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -269465,7 +265750,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -269476,12 +265761,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -269490,13 +265775,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -269504,10 +265789,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1416, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1545, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2155, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2260, "tags": ["selection", "ship", "role:transport"] }, { @@ -269519,15 +265804,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 161, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 2724, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -269539,52 +265824,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 1390 }, - { "type": "dock", "targetId": 1390 }, - { - "targetId": 1390, - "offer": { - "initiator": 2156, - "quantity": 88, - "commodity": "water", - "factionId": 272, - "budget": 1409, - "allocations": { - "buyer": { "budget": 24, "storage": 35 }, - "seller": { "budget": null, "storage": 249 } - }, - "price": 36, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1409 }, - { "type": "dock", "targetId": 1409 }, - { - "targetId": 1409, - "offer": { - "initiator": 2156, - "quantity": 88, - "commodity": "water", - "factionId": 272, - "budget": 1409, - "allocations": { - "buyer": { "budget": null, "storage": 24 }, - "seller": { "budget": null, "storage": 36 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2724 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -269592,8 +265834,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 5.730995533033933, - "coord": [-13.410401546615292, -9.610368365544947], + "angle": 7.940266980193251, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -269602,70 +265844,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3576, - "type": "incoming", - "meta": { "tradeId": "1390:2156:buy:3576" }, - "id": 35 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 88 - }, - "issued": 3576, - "type": "outgoing", - "meta": { "tradeId": "1409:2156:sell:3576" }, - "id": 36 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -269734,7 +265921,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -269745,12 +265932,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -269759,13 +265946,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -269773,10 +265960,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1409, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1545, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2156, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2261, "tags": ["selection", "ship", "role:transport"] }, { @@ -269793,14 +265980,14 @@ "ttc": 1, "maneuver": 0.55, "active": true, - "currentSpeed": 0.05500000000000001, - "currentRotary": 5.329070518200751e-15, - "state": "maneuver", - "target": 24925, + "currentSpeed": 6, + "currentRotary": -0.15741187979804794, + "state": "cruise", + "target": 2725, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.55, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -269809,9 +265996,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24925, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2725 }], "type": "move" } ], @@ -269820,9 +266005,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -99.97304612286705, - "coord": [1.4161034755177258, -9.849486813707374], - "sector": 16, + "angle": -0.18036129020074698, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -269836,7 +266021,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 77, + "allocationIdCounter": 1, "allocations": [], "max": 6, "availableWares": { @@ -269946,10 +266131,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1402, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1535, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2157, + "id": 2262, "tags": ["selection", "ship", "role:transport"] }, { @@ -269961,19 +266146,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.03900000000000001, - "currentRotary": -2.220446049250313e-15, - "state": "maneuver", - "target": 24913, + "currentSpeed": 0.9, + "currentRotary": -0.15439880964229724, + "state": "cruise", + "target": 2726, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -269982,9 +266167,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24913, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2726 }], "type": "move" } ], @@ -269993,26 +266176,25 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 62.361397374458186, - "coord": [20.287931002087557, -0.17430907840096965], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 6.059614874492924, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 74, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -270081,7 +266263,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -270092,12 +266274,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -270106,13 +266288,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -270120,10 +266302,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1390, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1535, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2158, + "id": 2263, "tags": ["selection", "ship", "role:transport"] }, { @@ -270135,15 +266317,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 1499, + "currentSpeed": 0, + "currentRotary": 1.099557428756425, + "state": "maneuver", + "target": 1580, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -270158,21 +266340,40 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, + { "type": "move", "targetId": 1580 }, + { "type": "dock", "targetId": 1580 }, { - "targetId": 1499, + "targetId": 1580, "offer": { - "initiator": 2159, - "quantity": 56, - "commodity": "silicon", + "initiator": 2264, + "quantity": 6, + "commodity": "food", "factionId": 272, - "budget": 1378, + "budget": 1528, "allocations": { - "buyer": { "budget": 151, "storage": 164 }, - "seller": { "budget": null, "storage": 62 } + "buyer": { "budget": 69, "storage": 127 }, + "seller": { "budget": null, "storage": 81 } }, - "price": 35, + "price": 15, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 1528 }, + { "type": "dock", "targetId": 1528 }, + { + "targetId": 1528, + "offer": { + "initiator": 2264, + "quantity": 6, + "commodity": "food", + "factionId": 272, + "budget": 1528, + "allocations": { + "buyer": { "budget": null, "storage": 69 }, + "seller": { "budget": null, "storage": 128 } + }, + "price": 0, "type": "sell" }, "type": "trade" @@ -270185,23 +266386,24 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -35.76580838937028, - "coord": [4.16401191084066, -22.835349879488913], - "sector": 29, - "moved": true + "angle": -5.364056998954736, + "coord": [-2.81966527108409, -2.788710800655666], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 63, + "allocationIdCounter": 129, "allocations": [ { "amount": { @@ -270209,7 +266411,34 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 6, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 3597, + "type": "incoming", + "meta": { "tradeId": "1580:2264:buy:3597" }, + "id": 127 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 6, "fuel": 0, "fuelium": 0, "gold": 0, @@ -270220,18 +266449,18 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 56, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3534, + "issued": 3597, "type": "outgoing", - "meta": { "tradeId": "1499:2159:sell:3534" }, - "id": 62 + "meta": { "tradeId": "1528:2264:sell:3597" }, + "id": 128 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -270269,7 +266498,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 56, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -270300,7 +266529,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -270311,12 +266540,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -270325,13 +266554,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -270339,10 +266568,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1378, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1528, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2159, + "id": 2264, "tags": ["selection", "ship", "role:transport"] }, { @@ -270354,15 +266583,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 0.13, - "currentRotary": 8.61780469207929e-8, - "state": "maneuver", - "target": 1366, + "currentSpeed": 0.009, + "currentRotary": 0.1242188379794884, + "state": "warming", + "target": 2728, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -270374,48 +266603,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 1366 }, - { "type": "dock", "targetId": 1366 }, - { - "targetId": 1366, - "offer": { - "initiator": 2160, - "quantity": 16, - "commodity": "gold", - "factionId": 272, - "budget": 1366, - "allocations": { - "buyer": { "budget": null, "storage": 63 }, - "seller": { "budget": null, "storage": 109 } - }, - "price": 0, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, - { - "targetId": 1499, - "offer": { - "initiator": 2160, - "quantity": 16, - "commodity": "gold", - "factionId": 272, - "budget": 1366, - "allocations": { - "buyer": { "budget": 154, "storage": 170 }, - "seller": { "budget": null, "storage": 64 } - }, - "price": 443, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2728 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -270423,8 +266613,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -12.733894972124162, - "coord": [-6.38634889889896, 8.350246561119834], + "angle": 5.80982180317323, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -270433,70 +266623,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 65, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 16, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "incoming", - "meta": { "tradeId": "1366:2160:buy:3588" }, - "id": 63 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 16, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3588, - "type": "outgoing", - "meta": { "tradeId": "1499:2160:sell:3588" }, - "id": 64 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -270565,7 +266700,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -270576,12 +266711,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -270590,13 +266725,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -270604,10 +266739,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1366, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1521, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2160, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 2265, "tags": ["selection", "ship", "role:transport"] }, { @@ -270624,14 +266759,14 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0.009, - "currentRotary": 0.061065604315946764, - "state": "maneuver", - "target": 24793, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 175, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -270641,7 +266776,17 @@ { "origin": "OrderPlanningSystem:auto", "actions": [ - { "type": "move", "targetId": 24793, "onlyManeuver": true } + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2729 } ], "type": "move" } @@ -270651,8 +266796,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 4.800683049444608, - "coord": [-9.396338140170842, -6.6544420849089825], + "angle": 39.900246552886614, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -270667,7 +266812,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 11, + "allocationIdCounter": 1, "allocations": [], "max": 940, "availableWares": { @@ -270777,10 +266922,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1354, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1514, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2161, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2266, "tags": ["selection", "ship", "role:transport"] }, { @@ -270797,14 +266942,14 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": -0.15707963267948966, - "state": "maneuver", - "target": 24868, + "currentSpeed": 0.72, + "currentRotary": -6.217248937900877e-15, + "state": "cruise", + "target": 1502, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.09, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -270812,11 +266957,48 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24868, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 1502 }, + { "type": "dock", "targetId": 1502 }, + { + "targetId": 1502, + "offer": { + "initiator": 2267, + "quantity": 108, + "commodity": "water", + "factionId": 272, + "budget": 1502, + "allocations": { + "buyer": { "budget": null, "storage": 51 }, + "seller": { "budget": null, "storage": 38 } + }, + "price": 0, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 1580 }, + { "type": "dock", "targetId": 1580 }, + { + "targetId": 1580, + "offer": { + "initiator": 2267, + "quantity": 108, + "commodity": "water", + "factionId": 272, + "budget": 1502, + "allocations": { + "buyer": { "budget": 23, "storage": 80 }, + "seller": { "budget": null, "storage": 52 } + }, + "price": 29, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -270824,10 +267006,11 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.069431248825605, - "coord": [5.1589150660068945, -3.0712475385516216], - "sector": 29, - "moved": true + "angle": 76.89352544073951, + "coord": [1.3370833555788246, -3.176849957395136], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16750653, @@ -270840,8 +267023,63 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 9, - "allocations": [], + "allocationIdCounter": 53, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 108 + }, + "issued": 3558, + "type": "incoming", + "meta": { "tradeId": "1502:2267:buy:3558" }, + "id": 51 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 108 + }, + "issued": 3558, + "type": "outgoing", + "meta": { "tradeId": "1580:2267:sell:3558" }, + "id": 52 + } + ], "max": 940, "availableWares": { "coolant": 0, @@ -270950,10 +267188,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1342, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1502, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2162, + "id": 2267, "tags": ["selection", "ship", "role:transport"] }, { @@ -270965,19 +267203,19 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.065, - "currentRotary": 0, - "state": "maneuver", - "target": 24888, + "currentSpeed": 4.15, + "currentRotary": -0.1771374227699427, + "state": "cruise", + "target": 2731, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -270986,9 +267224,7 @@ "value": [ { "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24888, "onlyManeuver": true } - ], + "actions": [{ "type": "move", "targetId": 2731 }], "type": "move" } ], @@ -270997,8 +267233,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.248420591198856, - "coord": [5.755993939632329, -2.5830969230268415], + "angle": 0.8463670858264827, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -271007,15 +267243,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 13, + "allocationIdCounter": 1, "allocations": [], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -271084,7 +267320,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -271095,12 +267331,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -271109,13 +267345,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -271123,10 +267359,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 1342, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1490, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2163, + "id": 2268, "tags": ["selection", "ship", "role:transport"] }, { @@ -271138,15 +267374,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0.13, - "currentRotary": -8.881784197001252e-16, - "state": "maneuver", - "target": 163, + "currentSpeed": 4.75, + "currentRotary": 0.16757514651905137, + "state": "cruise", + "target": 2732, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -271158,52 +267394,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, - { - "targetId": 1499, - "offer": { - "initiator": 2164, - "quantity": 17, - "commodity": "electronics", - "factionId": 272, - "budget": 273, - "allocations": { - "buyer": { "budget": 103, "storage": 35 }, - "seller": { "budget": null, "storage": 168 } - }, - "price": 421, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2164, - "quantity": 17, - "commodity": "electronics", - "factionId": 272, - "budget": 273, - "allocations": { - "buyer": { "budget": null, "storage": 103 }, - "seller": { "budget": null, "storage": 36 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2732 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -271211,9 +267404,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.697485328326994, - "coord": [4.644136269509829, 30.662747585754545], - "sector": 32, + "angle": 3.0603971880292855, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -271221,70 +267414,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 37, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 17, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3561, - "type": "incoming", - "meta": { "tradeId": "1499:2164:buy:3561" }, - "id": 35 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 17, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3561, - "type": "outgoing", - "meta": { "tradeId": "273:2164:sell:3561" }, - "id": 36 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -271353,7 +267491,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -271364,12 +267502,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -271378,13 +267516,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -271392,10 +267530,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 273, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1478, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2164, + "id": 2269, "tags": ["selection", "ship", "role:transport"] }, { @@ -271407,15 +267545,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 1.7763568394002505e-15, - "state": "cruise", - "target": 163, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.14561121984690395, + "state": "warming", + "target": 2733, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -271427,52 +267565,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1443 }, - { "type": "dock", "targetId": 1443 }, - { - "targetId": 1443, - "offer": { - "initiator": 2165, - "quantity": 160, - "commodity": "electronics", - "factionId": 272, - "budget": 273, - "allocations": { - "buyer": { "budget": 105, "storage": 37 }, - "seller": { "budget": null, "storage": 88 } - }, - "price": 330, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2165, - "quantity": 160, - "commodity": "electronics", - "factionId": 272, - "budget": 273, - "allocations": { - "buyer": { "budget": null, "storage": 105 }, - "seller": { "budget": null, "storage": 38 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2733 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -271480,9 +267575,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -15.446437177807827, - "coord": [9.36161733409087, 13.03199419066055], - "sector": 32, + "angle": -1.3539124043418704, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -271490,70 +267585,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 39, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "incoming", - "meta": { "tradeId": "1443:2165:buy:3582" }, - "id": 37 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3582, - "type": "outgoing", - "meta": { "tradeId": "273:2165:sell:3582" }, - "id": 38 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -271622,7 +267662,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -271633,12 +267673,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -271647,13 +267687,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Freighter A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -271661,10 +267701,10 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 273, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1466, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2165, + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2270, "tags": ["selection", "ship", "role:transport"] }, { @@ -271676,15 +267716,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 2.0420352248333655, - "state": "maneuver", - "target": 163, + "currentSpeed": 0.352, + "currentRotary": 0.25848310135482633, + "state": "cruise", + "target": 2734, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -271696,52 +267736,9 @@ "name": "orders", "value": [ { - "origin": "auto", - "type": "trade", - "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, - { - "targetId": 1499, - "offer": { - "initiator": 2166, - "quantity": 3, - "commodity": "electronics", - "factionId": 272, - "budget": 273, - "allocations": { - "buyer": { "budget": 104, "storage": 71 }, - "seller": { "budget": null, "storage": 169 } - }, - "price": 421, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2166, - "quantity": 3, - "commodity": "electronics", - "factionId": 272, - "budget": 273, - "allocations": { - "buyer": { "budget": null, "storage": 104 }, - "seller": { "budget": null, "storage": 72 } - }, - "price": 0, - "type": "sell" - }, - "type": "trade" - } - ] + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2734 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -271749,9 +267746,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -29.123749160923822, - "coord": [4.665158908030361, 30.568644329423226], - "sector": 32, + "angle": -1.9381995959868417, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -271759,70 +267756,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 73, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 3, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "incoming", - "meta": { "tradeId": "1499:2166:buy:3579" }, - "id": 71 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 3, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3579, - "type": "outgoing", - "meta": { "tradeId": "273:2166:sell:3579" }, - "id": 72 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -271891,7 +267833,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -271902,12 +267844,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -271916,13 +267858,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Courier B", + "value": "GBF Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -271930,44 +267872,54 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 273, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1454, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2166, + "id": 2271, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 32 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.352, + "currentRotary": 0.2562549391009532, + "state": "cruise", + "target": 2735, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 2735 }], + "type": "move" + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 2.491001700547817, - "coord": [18.77924886029049, -0.20921251754092635], - "sector": 32, + "angle": -1.9571661517496608, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -271975,15 +267927,15 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 34, + "allocationIdCounter": 1, "allocations": [], - "max": 32, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -272052,7 +268004,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -272063,27 +268015,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, + "range": 1, "cooldown": 0.3, - "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Slate", + "value": "GBF Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -272091,37 +268043,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 1, - "efficiency": 1, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1390, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1454, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2167, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2272, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 32 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.1512, - "currentRotary": -2.6645352591003757e-15, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.14183938921873507, "state": "warming", - "target": 1378, + "target": 1466, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -272134,35 +268079,49 @@ "value": [ { "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 1378 }, - { "type": "dock", "targetId": 1378 }, + { "type": "move", "targetId": 1466 }, + { "type": "dock", "targetId": 1466 }, { - "targetId": 1378, + "targetId": 1466, "offer": { - "commodity": "silica", - "initiator": 2168, - "quantity": 32, - "price": 0, - "budget": null, + "initiator": 2273, + "quantity": 160, + "commodity": "fuel", + "factionId": 272, + "budget": 273, "allocations": { - "buyer": { "budget": null, "storage": 170 }, - "seller": { "budget": null, "storage": 34 } + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } }, - "type": "sell", - "factionId": 272 + "price": 83, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, + { + "targetId": 273, + "offer": { + "initiator": 2273, + "quantity": 160, + "commodity": "fuel", + "factionId": 272, + "budget": 273, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" }, "type": "trade" } - ], - "type": "trade" - }, - { - "origin": "OrderPlanningSystem:auto", - "actions": [ - { "type": "move", "targetId": 24889, "onlyManeuver": true } - ], - "type": "move" + ] } ], "mask": "BigInt:134217728" @@ -272170,8 +268129,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -59.21830140413323, - "coord": [-11.443685447094715, -33.90410548150733], + "angle": -1.341118084268714, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -272180,13 +268139,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 35, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -272195,7 +268154,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 0, + "fuel": 160, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -272204,19 +268163,46 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 32, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3591, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1466:2273:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "1378:2168:sell:3591" }, - "id": 34 + "meta": { "tradeId": "273:2273:sell:27" }, + "id": 2 } ], - "max": 32, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -272253,7 +268239,7 @@ "ice": 0, "metals": 0, "ore": 0, - "silica": 32, + "silica": 0, "silicon": 0, "superconductors": 0, "tauMetal": 0, @@ -272285,7 +268271,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -272296,27 +268282,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, + "range": 1, "cooldown": 0.3, - "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Slate", + "value": "GBF Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -272324,38 +268310,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 1, - "efficiency": 1, - "entityId": null, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1378, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 273, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 3, "mine": 0 } }, - "id": 2168, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2273, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 32 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 2, - "ttc": 6, - "maneuver": 0.15, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.05500000000000001, + "currentRotary": 0.14183938921873507, + "state": "warming", + "target": 1466, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -272366,10 +268345,49 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "origin": "auto", + "type": "trade", "actions": [ - { "targetFieldId": 215, "targetRockId": 4111, "type": "mine" } + { "type": "move", "targetId": 1466 }, + { "type": "dock", "targetId": 1466 }, + { + "targetId": 1466, + "offer": { + "initiator": 2274, + "quantity": 6, + "commodity": "fuel", + "factionId": 272, + "budget": 273, + "allocations": { + "buyer": { "budget": 2, "storage": 1 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 83, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, + { + "targetId": 273, + "offer": { + "initiator": 2274, + "quantity": 6, + "commodity": "fuel", + "factionId": 272, + "budget": 273, + "allocations": { + "buyer": { "budget": null, "storage": 2 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } ] } ], @@ -272378,8 +268396,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 19.827185584898093, - "coord": [-2.7648998182961972, 2.7858251439215738], + "angle": -1.341118084268714, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -272388,15 +268406,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMin", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 15, - "allocations": [], - "max": 160, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 6, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1466:2274:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 6, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "273:2274:sell:27" }, + "id": 2 + } + ], + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -272406,7 +268479,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 131, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -272427,7 +268500,7 @@ "fuel": 0, "fuelium": 0, "gold": 0, - "goldOre": 131, + "goldOre": 0, "hullPlates": 0, "hydrogen": 0, "ice": 0, @@ -272465,7 +268538,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -272476,27 +268549,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 2, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { "value": 1, "range": 1, - "cooldown": 0.5, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "minerA", - "value": "Miner A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Miner A", + "value": "GBF Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -272504,38 +268577,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 5, - "efficiency": 1, - "entityId": 4111, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1366, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 273, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 1 } }, - "id": 2169, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2274, + "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "mine", "sectorId": 32 }, + "default": { "type": "trade" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.09, - "rotary": 0.22689280275926285, + "acceleration": 0.1, + "rotary": 0.9424777960769379, "cruise": 1, - "ttc": 10, - "maneuver": 0.09, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": null, - "targetReached": true, + "currentSpeed": 0.013000000000000001, + "currentRotary": 0.14183938921873507, + "state": "warming", + "target": 1466, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -272546,10 +268612,49 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", - "type": "mine", + "origin": "auto", + "type": "trade", "actions": [ - { "targetFieldId": 214, "targetRockId": 6451, "type": "mine" } + { "type": "move", "targetId": 1466 }, + { "type": "dock", "targetId": 1466 }, + { + "targetId": 1466, + "offer": { + "initiator": 2275, + "quantity": 160, + "commodity": "fuel", + "factionId": 272, + "budget": 273, + "allocations": { + "buyer": { "budget": 3, "storage": 1 }, + "seller": { "budget": null, "storage": 3 } + }, + "price": 83, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, + { + "targetId": 273, + "offer": { + "initiator": 2275, + "quantity": 160, + "commodity": "fuel", + "factionId": 272, + "budget": 273, + "allocations": { + "buyer": { "budget": null, "storage": 3 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 0, + "type": "sell" + }, + "type": "trade" + } ] } ], @@ -272558,8 +268663,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -32.231118995364156, - "coord": [3.5194521939531676, -1.3974999366168637], + "angle": -1.341118084268714, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -272568,15 +268673,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lMin", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 6, - "allocations": [], - "max": 680, + "allocationIdCounter": 3, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1466:2275:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 160, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "outgoing", + "meta": { "tradeId": "273:2275:sell:27" }, + "id": 2 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -272584,7 +268744,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 521, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -272605,7 +268765,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 521, + "fuelium": 0, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -272645,7 +268805,7 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -272656,12 +268816,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 830, "regen": 0.2, "value": 830 }, - "shield": { "max": 310, "regen": 6.5, "value": 310 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -272670,13 +268830,13 @@ }, "model": { "name": "model", - "slug": "largeMinerA", - "value": "Large Miner A", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Large Miner A", + "value": "GBF Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -272684,18 +268844,11 @@ "ids": [], "mask": "BigInt:4294967296" }, - "mining": { - "name": "mining", - "buffer": 1.6, - "efficiency": 1.6, - "entityId": 6451, - "mask": "BigInt:16777216" - }, - "commander": { "name": "commander", "id": 1354, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 273, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 5 } }, - "id": 2170, - "tags": ["selection", "ship", "role:mining"] + "cooldowns": { "timers": { "cruise": 3.3 } }, + "id": 2275, + "tags": ["selection", "ship", "role:transport"] }, { "components": { @@ -272706,13 +268859,13 @@ }, "drive": { "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "rotary": 0.22689280275926285, + "cruise": 1, + "ttc": 10, + "maneuver": 0.09, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.22689280275926285, "state": "maneuver", "target": 221, "targetReached": false, @@ -272739,25 +268892,26 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -8.753531847202607, - "coord": [4.609206934140848, 30.78764014669051], + "angle": 2.491817792672603, + "coord": [6.47277634985547, -3.5800638021051503], "sector": 32, - "moved": true + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "lMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, + "allocationIdCounter": 7, "allocations": [], - "max": 32, + "max": 680, "availableWares": { "coolant": 0, "drones": 0, @@ -272826,7 +268980,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -272837,27 +268991,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 830, "regen": 0.2, "value": 830 }, + "shield": { "max": 310, "regen": 6.5, "value": 310 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 3, + "range": 1, "cooldown": 0.3, - "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "largeMinerA", + "value": "Large Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Slate", + "value": "GBF Large Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -272867,35 +269021,35 @@ }, "mining": { "name": "mining", - "buffer": 1, - "efficiency": 1, + "buffer": 1.6, + "efficiency": 1.6, "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1342, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1502, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2171, + "id": 2276, "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, - "currentSpeed": 1.1, - "currentRotary": -8.881784197001252e-16, - "state": "cruise", - "target": 24850, + "currentSpeed": 0.1764, + "currentRotary": -0.24559939677771414, + "state": "warming", + "target": 216, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -272907,11 +269061,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 32, - "actions": [{ "type": "move", "targetId": 24850 }], - "clockwise": false + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 216 }, + { "targetFieldId": 216, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -272919,18 +269074,17 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 24.649073292557986, - "coord": [6.630579850926223, -25.38699295674557], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 19.647321413605802, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -272938,7 +269092,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -273007,7 +269161,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -273018,57 +269172,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, + "value": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Patrol Leader Gunboat", + "value": "GBF Slate", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2225, 2224], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1490, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2172, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 2 } }, + "id": 2277, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.09, + "rotary": 1.605702911834783, + "cruise": 5.2, + "ttc": 8, + "maneuver": 0.28, "active": true, - "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-15, - "state": "cruise", - "target": 24856, + "currentSpeed": 0.28, + "currentRotary": 0.15380904747448554, + "state": "warming", + "target": 215, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -273080,11 +269242,12 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 32, - "actions": [{ "type": "move", "targetId": 24856 }], - "clockwise": false + "origin": "OrderPlanningSystem:auto", + "type": "mine", + "actions": [ + { "type": "move", "targetId": 215 }, + { "targetFieldId": 215, "targetRockId": null, "type": "mine" } + ] } ], "mask": "BigInt:134217728" @@ -273092,18 +269255,17 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 36.69210918148342, - "coord": [6.593813436930018, -17.275563545231734], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 3.0196401629699783, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -273111,7 +269273,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 32, "availableWares": { "coolant": 0, "drones": 0, @@ -273180,7 +269342,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -273191,57 +269353,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 95, "regen": 0.15, "value": 95 }, + "shield": { "max": 30, "regen": 1.9, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, + "value": 1, "cooldown": 0.3, + "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "smallMinerA", + "value": "Slate", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Patrol Leader Gunboat", + "value": "GBF Slate", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2223, 2222], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 0, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1478, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2173, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 1 } }, + "id": 2278, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 2, + "ttc": 6, "maneuver": 0.15, "active": true, - "currentSpeed": 0.2325, - "currentRotary": 2.6645352591003757e-15, + "currentSpeed": 0.2, + "currentRotary": 0.1421013147529102, "state": "cruise", - "target": 24905, + "target": 3160, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -273253,11 +269423,9 @@ "name": "orders", "value": [ { - "type": "patrol", - "origin": "auto", - "sectorId": 32, - "actions": [{ "type": "move", "targetId": 24905 }], - "clockwise": true + "origin": "OrderPlanningSystem:auto", + "actions": [{ "type": "move", "targetId": 3160 }], + "type": "move" } ], "mask": "BigInt:134217728" @@ -273265,18 +269433,17 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -21.924558416702812, - "coord": [24.864862133710847, -15.530721467720005], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 4.920209243910307, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -273284,7 +269451,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -273364,57 +269531,65 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 1, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "minerA", + "value": "Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Patrol Leader Gunboat", + "value": "GBF Miner A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2221, 2220], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1466, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2174, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2279, + "tags": ["selection", "ship", "role:mining"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "mine", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, + "acceleration": 0.1, + "rotary": 0.9424777960769379, + "cruise": 2, + "ttc": 6, "maneuver": 0.15, "active": true, - "currentSpeed": 0.11249999999999999, - "currentRotary": 3.1086244689504383e-15, + "currentSpeed": 0.105, + "currentRotary": 0.2643979159784715, "state": "maneuver", - "target": 24766, + "target": 1454, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -273426,11 +269601,38 @@ "name": "orders", "value": [ { - "type": "patrol", "origin": "auto", - "sectorId": 32, - "actions": [{ "type": "move", "targetId": 24766 }], - "clockwise": true + "actions": [ + { "type": "move", "targetId": 1454 }, + { "type": "dock", "targetId": 1454 }, + { + "targetId": 1454, + "offer": { + "commodity": "ice", + "initiator": 2280, + "quantity": 160, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 272 + }, + "type": "trade" + } + ], + "type": "trade" + }, + { + "origin": "OrderPlanningSystem:auto", + "actions": [ + { "type": "move", "targetId": 163 }, + { "type": "teleport", "targetId": 161 }, + { "type": "move", "targetId": 3672 } + ], + "type": "move" } ], "mask": "BigInt:134217728" @@ -273438,26 +269640,53 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.939429454467785, - "coord": [-9.358785847874655, 20.45634588225275], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 4.344565293375735, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "mMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 80, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 160, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 351, + "type": "outgoing", + "meta": { "tradeId": "1454:2280:sell:351" }, + "id": 1 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -273491,7 +269720,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 160, "metals": 0, "ore": 0, "silica": 0, @@ -273537,38 +269766,46 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 2, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 1, + "range": 1, + "cooldown": 0.5, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "minerA", + "value": "Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Patrol Leader Gunboat", + "value": "GBF Miner A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2219, 2218], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "mining": { + "name": "mining", + "buffer": 1, + "efficiency": 1, + "entityId": null, + "mask": "BigInt:16777216" + }, + "commander": { "name": "commander", "id": 1454, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2175, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, + "id": 2280, + "tags": ["selection", "ship", "role:mining"] }, { "components": { @@ -273585,9 +269822,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-15, + "currentRotary": -3.1086244689504383e-15, "state": "cruise", - "target": 24805, + "target": 7884, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -273602,7 +269839,7 @@ "type": "patrol", "origin": "auto", "sectorId": 32, - "actions": [{ "type": "move", "targetId": 24805 }], + "actions": [{ "type": "move", "targetId": 7884 }], "clockwise": true } ], @@ -273611,8 +269848,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -28.678773660509435, - "coord": [27.891067559142954, 4.210369749040371], + "angle": 34.38252213664425, + "coord": [27.09044648546737, -4.72390650707459], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -273735,12 +269972,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2217, 2216], + "ids": [2334, 2333], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2176, + "id": 2281, "tags": ["selection", "ship", "role:military"] }, { @@ -273757,11 +269994,11 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -5.329070518200751e-15, - "state": "cruise", - "target": 24800, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": 0, + "state": "maneuver", + "target": null, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -273775,8 +270012,8 @@ "type": "patrol", "origin": "auto", "sectorId": 32, - "actions": [{ "type": "move", "targetId": 24800 }], - "clockwise": true + "actions": [], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -273784,8 +270021,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -54.65414455657782, - "coord": [24.823072416168696, -13.672765914304245], + "angle": 11.841119516478477, + "coord": [31.187850640110117, 9.428458883197772], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -273908,12 +270145,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2215, 2214], + "ids": [2332, 2331], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2177, + "id": 2282, "tags": ["selection", "ship", "role:military"] }, { @@ -273930,10 +270167,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 3.1086244689504383e-15, - "state": "cruise", - "target": 24857, + "currentSpeed": 0.0225, + "currentRotary": 0.3833725241534651, + "state": "maneuver", + "target": 7910, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -273947,8 +270184,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 29, - "actions": [{ "type": "move", "targetId": 24857 }], + "sectorId": 32, + "actions": [{ "type": "move", "targetId": 7910 }], "clockwise": true } ], @@ -273957,10 +270194,11 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -52.433247494376936, - "coord": [22.825978209850724, 5.942492142801592], - "sector": 29, - "moved": true + "angle": -47.34886971770566, + "coord": [12.373799995158405, -24.696794361505084], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16750653, @@ -274080,12 +270318,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2213, 2212], + "ids": [2330, 2329], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2178, + "id": 2283, "tags": ["selection", "ship", "role:military"] }, { @@ -274103,9 +270341,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 1.1, - "currentRotary": 4.440892098500626e-15, + "currentRotary": 4.884981308350689e-15, "state": "cruise", - "target": 24806, + "target": 7889, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -274119,8 +270357,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 29, - "actions": [{ "type": "move", "targetId": 24806 }], + "sectorId": 32, + "actions": [{ "type": "move", "targetId": 7889 }], "clockwise": true } ], @@ -274129,10 +270367,11 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -27.050047955735774, - "coord": [6.867955723342281, 27.22142513481449], - "sector": 29, - "moved": true + "angle": -22.389633101255217, + "coord": [20.10804626423252, -16.34291424676986], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16750653, @@ -274252,12 +270491,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2211, 2210], + "ids": [2328, 2327], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2179, + "id": 2284, "tags": ["selection", "ship", "role:military"] }, { @@ -274274,10 +270513,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 5.329070518200751e-15, + "currentSpeed": 0.5625, + "currentRotary": 8.881784197001252e-16, "state": "cruise", - "target": 24807, + "target": 7898, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -274291,8 +270530,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 29, - "actions": [{ "type": "move", "targetId": 24807 }], + "sectorId": 32, + "actions": [{ "type": "move", "targetId": 7898 }], "clockwise": false } ], @@ -274301,10 +270540,11 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 40.013736627188855, - "coord": [-21.138473738275227, 0.14040596911619374], - "sector": 29, - "moved": true + "angle": 59.26145961087718, + "coord": [-23.610360534132024, -12.825798186447567], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16750653, @@ -274424,12 +270664,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2209, 2208], + "ids": [2326, 2325], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2180, + "id": 2285, "tags": ["selection", "ship", "role:military"] }, { @@ -274446,10 +270686,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.8925000000000001, - "currentRotary": 1.3322676295501878e-15, + "currentSpeed": 1.0575, + "currentRotary": -4.440892098500626e-15, "state": "cruise", - "target": 24880, + "target": 7895, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -274463,8 +270703,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 29, - "actions": [{ "type": "move", "targetId": 24880 }], + "sectorId": 32, + "actions": [{ "type": "move", "targetId": 7895 }], "clockwise": true } ], @@ -274473,10 +270713,11 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 8.052038236898868, - "coord": [-5.677425988137829, -25.982600466392512], - "sector": 29, - "moved": true + "angle": -16.13993197477619, + "coord": [21.811533929259756, -19.70307089835931], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16750653, @@ -274596,12 +270837,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2207, 2206], + "ids": [2324, 2323], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2181, + "id": 2286, "tags": ["selection", "ship", "role:military"] }, { @@ -274619,9 +270860,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 1.1, - "currentRotary": -3.9968028886505635e-15, + "currentRotary": -0.06060967596589384, "state": "cruise", - "target": 24783, + "target": 2483, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -274636,7 +270877,7 @@ "type": "patrol", "origin": "auto", "sectorId": 29, - "actions": [{ "type": "move", "targetId": 24783 }], + "actions": [{ "type": "move", "targetId": 2483 }], "clockwise": true } ], @@ -274645,8 +270886,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -41.46503306083335, - "coord": [26.339242140320188, 5.948884792777442], + "angle": 5.674354777461172, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -274768,12 +271009,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2205, 2204], + "ids": [2322, 2321], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2182, + "id": 2287, "tags": ["selection", "ship", "role:military"] }, { @@ -274790,10 +271031,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 4.440892098500626e-15, + "currentSpeed": 0.81, + "currentRotary": -0.19272959149872815, "state": "cruise", - "target": 24851, + "target": 2484, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -274808,8 +271049,8 @@ "type": "patrol", "origin": "auto", "sectorId": 29, - "actions": [{ "type": "move", "targetId": 24851 }], - "clockwise": true + "actions": [{ "type": "move", "targetId": 2484 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -274817,8 +271058,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -40.90920633604292, - "coord": [17.43036377841943, -12.84022634144722], + "angle": 0.6437788562811204, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -274940,12 +271181,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2203, 2202], + "ids": [2320, 2319], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2183, + "id": 2288, "tags": ["selection", "ship", "role:military"] }, { @@ -274962,10 +271203,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 3.552713678800501e-15, - "state": "cruise", - "target": 24858, + "currentSpeed": 0.15, + "currentRotary": 0.019653581514667007, + "state": "warming", + "target": 2485, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -274979,8 +271220,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 16, - "actions": [{ "type": "move", "targetId": 24858 }], + "sectorId": 29, + "actions": [{ "type": "move", "targetId": 2485 }], "clockwise": true } ], @@ -274989,9 +271230,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -19.9797884329484, - "coord": [-11.212050734970392, 18.92221209805183], - "sector": 16, + "angle": 5.388068906085968, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -275112,12 +271353,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2201, 2200], + "ids": [2318, 2317], "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2184, + "cooldowns": { "timers": { "cruise": 3 } }, + "id": 2289, "tags": ["selection", "ship", "role:military"] }, { @@ -275134,10 +271375,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": -1.064650843716541, - "state": "maneuver", - "target": 24750, + "currentSpeed": 0.7275, + "currentRotary": -0.2497743405173849, + "state": "cruise", + "target": 2486, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -275151,8 +271392,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 16, - "actions": [{ "type": "move", "targetId": 24750 }], + "sectorId": 29, + "actions": [{ "type": "move", "targetId": 2486 }], "clockwise": true } ], @@ -275161,9 +271402,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -13.980144895012245, - "coord": [-17.958245356570007, -8.03974432857813], - "sector": 16, + "angle": 1.0316093434024314, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -275284,12 +271525,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2199, 2198], + "ids": [2316, 2315], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2185, + "id": 2290, "tags": ["selection", "ship", "role:military"] }, { @@ -275306,10 +271547,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0, - "currentRotary": 0.9178557611885472, + "currentSpeed": 0.15, + "currentRotary": -0.309800023955467, "state": "maneuver", - "target": 24928, + "target": 2487, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -275323,9 +271564,9 @@ { "type": "patrol", "origin": "auto", - "sectorId": 16, - "actions": [{ "type": "move", "targetId": 24928 }], - "clockwise": false + "sectorId": 29, + "actions": [{ "type": "move", "targetId": 2487 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -275333,9 +271574,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 53.17685641895787, - "coord": [-25.53024594293325, -3.7480950494753493], - "sector": 16, + "angle": 31.973937497375005, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -275456,12 +271697,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2197, 2196], + "ids": [2314, 2313], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2186, + "id": 2291, "tags": ["selection", "ship", "role:military"] }, { @@ -275478,10 +271719,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": -4.440892098500626e-15, + "currentSpeed": 0.7275, + "currentRotary": -0.033690183592436806, "state": "cruise", - "target": 24829, + "target": 2488, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -275495,8 +271736,8 @@ { "type": "patrol", "origin": "auto", - "sectorId": 16, - "actions": [{ "type": "move", "targetId": 24829 }], + "sectorId": 29, + "actions": [{ "type": "move", "targetId": 2488 }], "clockwise": false } ], @@ -275505,9 +271746,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 15.37544391920154, - "coord": [-20.175164436499696, -1.4551637283992225], - "sector": 16, + "angle": 2.1590296707817456, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -275628,12 +271869,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2195, 2194], + "ids": [2312, 2311], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2187, + "id": 2292, "tags": ["selection", "ship", "role:military"] }, { @@ -275650,10 +271891,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.09, - "currentRotary": -8.881784197001252e-15, + "currentSpeed": 0, + "currentRotary": -1.064650843716541, "state": "maneuver", - "target": 24713, + "target": 175, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -275668,7 +271909,19 @@ "type": "patrol", "origin": "auto", "sectorId": 16, - "actions": [{ "type": "move", "targetId": 24713 }], + "actions": [ + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2489 } + ], "clockwise": false } ], @@ -275677,9 +271930,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 32.01021952382514, - "coord": [-30.76482139682815, 7.575361069621791], - "sector": 16, + "angle": 220.5313113215169, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -275800,12 +272053,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2193, 2192], + "ids": [2310, 2309], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2188, + "id": 2293, "tags": ["selection", "ship", "role:military"] }, { @@ -275822,10 +272075,10 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 1.1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 24758, + "currentSpeed": 0, + "currentRotary": -1.064650843716541, + "state": "maneuver", + "target": 175, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -275840,7 +272093,19 @@ "type": "patrol", "origin": "auto", "sectorId": 16, - "actions": [{ "type": "move", "targetId": 24758 }], + "actions": [ + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2490 } + ], "clockwise": true } ], @@ -275849,9 +272114,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -26.684582808121085, - "coord": [-8.044046279764808, 26.764469201015782], - "sector": 16, + "angle": 220.5313113215169, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -275972,50 +272237,60 @@ }, "subordinates": { "name": "subordinates", - "ids": [2191, 2190], + "ids": [2308, 2307], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2189, + "id": 2294, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2189 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, "currentSpeed": 0, - "currentRotary": -0.11342251771998235, - "state": "cruise", - "target": 2189, - "targetReached": true, + "currentRotary": -1.064650843716541, + "state": "maneuver", + "target": 175, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2189, + "sectorId": 16, "actions": [ - { "type": "move", "targetId": 2189, "ignoreReached": true } + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2491 } ], - "ordersForSector": 16 + "clockwise": true } ], "mask": "BigInt:134217728" @@ -276023,9 +272298,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -183.874812730999, - "coord": [-6.42256632138885, 26.598747976401683], - "sector": 16, + "angle": 220.5313113215169, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -276033,7 +272308,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -276041,7 +272316,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -276110,7 +272385,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -276121,76 +272396,85 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2306, 2305], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2189, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2190, + "id": 2295, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2189 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.76, - "currentRotary": 0.0007970635959821948, - "state": "cruise", - "target": 2189, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -1.064650843716541, + "state": "maneuver", + "target": 175, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2189, + "sectorId": 16, "actions": [ - { "type": "move", "targetId": 2189, "ignoreReached": true } + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2492 } ], - "ordersForSector": 16 + "clockwise": false } ], "mask": "BigInt:134217728" @@ -276198,9 +272482,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 161.81004990231725, - "coord": [-4.517268104528534, 26.979799870708476], - "sector": 16, + "angle": 220.5313113215169, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -276208,7 +272492,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -276216,7 +272500,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -276285,7 +272569,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -276296,76 +272580,85 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2304, 2303], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2189, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2191, + "id": 2296, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2188 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.09, - "currentRotary": -0.2007016560852466, + "currentSpeed": 0, + "currentRotary": -1.064650843716541, "state": "maneuver", - "target": 2188, - "targetReached": true, + "target": 175, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2188, + "sectorId": 16, "actions": [ - { "type": "move", "targetId": 2188, "ignoreReached": true } + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2493 } ], - "ordersForSector": 16 + "clockwise": false } ], "mask": "BigInt:134217728" @@ -276373,9 +272666,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -222.99005257440174, - "coord": [-30.762860318315738, 7.7844069705908305], - "sector": 16, + "angle": 220.5313113215169, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -276383,7 +272676,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -276391,7 +272684,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -276460,7 +272753,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -276471,251 +272764,85 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2302, 2301], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2188, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2192, + "id": 2297, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2188 }, + "default": { "type": "hold" }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, "active": true, - "currentSpeed": 0.09, - "currentRotary": 0.07904027480974296, + "currentSpeed": 0, + "currentRotary": -1.064650843716541, "state": "maneuver", - "target": 2188, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 2188, - "actions": [ - { "type": "move", "targetId": 2188, "ignoreReached": true } - ], - "ordersForSector": 16 - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": 245.23553619632588, - "coord": [-31.066996018757894, 7.98063206399398], - "sector": 16, - "moved": true - }, - "render": { - "color": 16750653, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "fighter", - "value": "Fighter", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "GBF Fighter", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2188, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2193, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 2187 }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, - "active": true, - "currentSpeed": 0.76, - "currentRotary": 0.02601710548661984, - "state": "cruise", - "target": 2187, - "targetReached": true, + "target": 175, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "follow", + "mode": "goto", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "escort", + "type": "patrol", "origin": "auto", - "targetId": 2187, + "sectorId": 16, "actions": [ - { "type": "move", "targetId": 2187, "ignoreReached": true } + { "type": "move", "targetId": 175 }, + { "type": "teleport", "targetId": 173 }, + { "type": "move", "targetId": 103 }, + { "type": "teleport", "targetId": 101 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 2494 } ], - "ordersForSector": 16 + "clockwise": false } ], "mask": "BigInt:134217728" @@ -276723,9 +272850,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -254.8238041013411, - "coord": [-21.404924597028113, -4.4767570292987156], - "sector": 16, + "angle": 220.5313113215169, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -276733,7 +272860,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMil", + "texture": "mMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -276741,7 +272868,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 10, + "max": 80, "availableWares": { "coolant": 0, "drones": 0, @@ -276810,7 +272937,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -276821,59 +272948,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, "mask": "BigInt:1048576" }, "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, + "value": 13, + "range": 1.4, + "cooldown": 0.3, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "gunboat", + "value": "Gunboat", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Patrol Leader Gunboat", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [], + "ids": [2300, 2299], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2187, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2194, + "id": 2298, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2187 }, + "default": { "type": "escort", "targetId": 2298 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.8351828377907302, - "state": "cruise", - "target": 2187, - "targetReached": true, + "currentRotary": -0.8308175612201185, + "state": "maneuver", + "target": 2298, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -276886,11 +273012,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2187, - "actions": [ - { "type": "move", "targetId": 2187, "ignoreReached": true } - ], - "ordersForSector": 16 + "targetId": 2298, + "actions": [{ "type": "move", "targetId": 2298 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -276898,9 +273022,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 284.8420588673142, - "coord": [-20.653050060076843, -2.771324886256142], - "sector": 16, + "angle": 217.47157578839634, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -277010,13 +273134,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -277024,31 +273148,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2187, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2298, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2195, + "id": 2299, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2186 }, + "default": { "type": "escort", "targetId": 2298 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.33568705722526193, + "currentRotary": -0.8308175612201354, "state": "maneuver", - "target": 2186, - "targetReached": true, + "target": 2298, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -277061,11 +273185,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2186, - "actions": [ - { "type": "move", "targetId": 2186, "ignoreReached": true } - ], - "ordersForSector": 16 + "targetId": 2298, + "actions": [{ "type": "move", "targetId": 2298 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -277073,9 +273195,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -237.75099017881917, - "coord": [-25.987288102497757, -3.461221494154223], - "sector": 16, + "angle": 219.437163234891, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -277185,13 +273307,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -277199,31 +273321,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2186, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2298, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2196, + "id": 2300, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2186 }, + "default": { "type": "escort", "targetId": 2297 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.10144333578487519, - "state": "warming", - "target": 2186, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201185, + "state": "maneuver", + "target": 2297, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -277236,11 +273358,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2186, - "actions": [ - { "type": "move", "targetId": 2186, "ignoreReached": true } - ], - "ordersForSector": 16 + "targetId": 2297, + "actions": [{ "type": "move", "targetId": 2297 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -277248,9 +273368,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 333.61637650135674, - "coord": [-25.871948615844477, -3.4984073062432497], - "sector": 16, + "angle": 217.47157578839634, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -277360,13 +273480,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -277374,31 +273494,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2186, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2297, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 2197, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2301, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2185 }, + "default": { "type": "escort", "targetId": 2297 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.12, - "currentRotary": 0.015855250328762782, - "state": "warming", - "target": 2185, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201354, + "state": "maneuver", + "target": 2297, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -277411,11 +273531,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2185, - "actions": [ - { "type": "move", "targetId": 2185, "ignoreReached": true } - ], - "ordersForSector": 16 + "targetId": 2297, + "actions": [{ "type": "move", "targetId": 2297 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -277423,9 +273541,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -344.83863811779725, - "coord": [-18.09531966815288, -7.655592969453073], - "sector": 16, + "angle": 219.437163234891, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -277535,13 +273653,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -277549,31 +273667,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2185, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2297, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0.8 } }, - "id": 2198, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2302, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2185 }, + "default": { "type": "escort", "targetId": 2296 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.6388721835268196, + "currentRotary": -0.8308175612201185, "state": "maneuver", - "target": 2185, - "targetReached": true, + "target": 2296, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -277586,11 +273704,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2185, - "actions": [ - { "type": "move", "targetId": 2185, "ignoreReached": true } - ], - "ordersForSector": 16 + "targetId": 2296, + "actions": [{ "type": "move", "targetId": 2296 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -277598,9 +273714,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 202.40444293129573, - "coord": [-18.33253092084384, -7.832306998302782], - "sector": 16, + "angle": 217.47157578839634, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -277710,13 +273826,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -277724,31 +273840,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2185, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2296, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2199, + "id": 2303, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2184 }, + "default": { "type": "escort", "targetId": 2296 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.6400000000000001, - "currentRotary": -0.0028345812610659493, - "state": "cruise", - "target": 2184, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201354, + "state": "maneuver", + "target": 2296, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -277761,11 +273877,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2184, - "actions": [ - { "type": "move", "targetId": 2184, "ignoreReached": true } - ], - "ordersForSector": 16 + "targetId": 2296, + "actions": [{ "type": "move", "targetId": 2296 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -277773,9 +273887,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -283.85983911496044, - "coord": [-10.505151166031593, 19.07700905647733], - "sector": 16, + "angle": 219.437163234891, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -277885,13 +273999,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -277899,31 +274013,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2184, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2296, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2200, + "id": 2304, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2184 }, + "default": { "type": "escort", "targetId": 2295 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.6400000000000001, - "currentRotary": -0.010063140752985866, - "state": "cruise", - "target": 2184, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201185, + "state": "maneuver", + "target": 2295, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -277936,11 +274050,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2184, - "actions": [ - { "type": "move", "targetId": 2184, "ignoreReached": true } - ], - "ordersForSector": 16 + "targetId": 2295, + "actions": [{ "type": "move", "targetId": 2295 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -277948,9 +274060,9 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 168.5375535814076, - "coord": [-10.656428736003889, 19.31903391860823], - "sector": 16, + "angle": 217.47157578839634, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, "moved": true }, "render": { @@ -278060,13 +274172,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -278074,31 +274186,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2184, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2295, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2201, + "id": 2305, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2183 }, + "default": { "type": "escort", "targetId": 2295 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.04488802141305204, - "state": "cruise", - "target": 2183, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201354, + "state": "maneuver", + "target": 2295, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -278111,10 +274223,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2183, - "actions": [ - { "type": "move", "targetId": 2183, "ignoreReached": true } - ], + "targetId": 2295, + "actions": [{ "type": "move", "targetId": 2295 }], "ordersForSector": 29 } ], @@ -278123,8 +274233,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -229.4296107606358, - "coord": [17.233473929907536, -12.739718724520285], + "angle": 219.437163234891, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -278235,13 +274345,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -278249,31 +274359,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2183, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2295, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2202, + "id": 2306, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2183 }, + "default": { "type": "escort", "targetId": 2294 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.05105975341868518, - "state": "cruise", - "target": 2183, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201185, + "state": "maneuver", + "target": 2294, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -278286,10 +274396,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2183, - "actions": [ - { "type": "move", "targetId": 2183, "ignoreReached": true } - ], + "targetId": 2294, + "actions": [{ "type": "move", "targetId": 2294 }], "ordersForSector": 29 } ], @@ -278298,8 +274406,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 191.55558014412233, - "coord": [17.500100657866586, -12.830337276820583], + "angle": 217.47157578839634, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -278410,13 +274518,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -278424,31 +274532,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2183, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2294, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2203, + "id": 2307, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2182 }, + "default": { "type": "escort", "targetId": 2294 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.0101828212048094, - "state": "cruise", - "target": 2182, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201354, + "state": "maneuver", + "target": 2294, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -278461,10 +274569,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2182, - "actions": [ - { "type": "move", "targetId": 2182, "ignoreReached": true } - ], + "targetId": 2294, + "actions": [{ "type": "move", "targetId": 2294 }], "ordersForSector": 29 } ], @@ -278473,8 +274579,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -273.94375649461324, - "coord": [26.244151531142208, 6.104718155352958], + "angle": 219.437163234891, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -278585,13 +274691,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -278599,31 +274705,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2182, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2294, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2204, + "id": 2308, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2182 }, + "default": { "type": "escort", "targetId": 2293 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.0014038391276232076, - "state": "cruise", - "target": 2182, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201185, + "state": "maneuver", + "target": 2293, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -278636,10 +274742,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2182, - "actions": [ - { "type": "move", "targetId": 2182, "ignoreReached": true } - ], + "targetId": 2293, + "actions": [{ "type": "move", "targetId": 2293 }], "ordersForSector": 29 } ], @@ -278648,8 +274752,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 203.57918409611577, - "coord": [26.3020871997158, 5.6452547556350945], + "angle": 217.47157578839634, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -278760,13 +274864,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -278774,31 +274878,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2182, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2293, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2205, + "id": 2309, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2181 }, + "default": { "type": "escort", "targetId": 2293 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.88, - "currentRotary": -0.0061782171331405955, - "state": "cruise", - "target": 2181, - "targetReached": true, + "currentSpeed": 0, + "currentRotary": -0.8308175612201354, + "state": "maneuver", + "target": 2293, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -278811,10 +274915,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2181, - "actions": [ - { "type": "move", "targetId": 2181, "ignoreReached": true } - ], + "targetId": 2293, + "actions": [{ "type": "move", "targetId": 2293 }], "ordersForSector": 29 } ], @@ -278823,8 +274925,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -293.5419587571817, - "coord": [-7.14531954552843, -26.11812024878614], + "angle": 219.437163234891, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -278935,13 +275037,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -278949,31 +275051,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2181, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2293, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2206, + "id": 2310, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2181 }, + "default": { "type": "escort", "targetId": 2292 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.62, - "currentRotary": -0.03977438808950273, - "state": "cruise", - "target": 2181, - "targetReached": true, + "currentSpeed": 0.5475, + "currentRotary": -0.1545855614915692, + "state": "maneuver", + "target": 2292, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -278986,10 +275088,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2181, - "actions": [ - { "type": "move", "targetId": 2181, "ignoreReached": true } - ], + "targetId": 2292, + "actions": [{ "type": "move", "targetId": 2292 }], "ordersForSector": 29 } ], @@ -278998,8 +275098,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 183.98030662444074, - "coord": [-7.509321204711965, -26.47723916442993], + "angle": 4.351518784716644, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -279110,13 +275210,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -279124,31 +275224,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2181, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2292, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2207, + "id": 2311, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2180 }, + "default": { "type": "escort", "targetId": 2292 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.0016848930006556628, - "state": "cruise", - "target": 2180, - "targetReached": true, + "currentSpeed": 0.5475, + "currentRotary": -0.15458556149156966, + "state": "maneuver", + "target": 2292, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -279161,10 +275261,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2180, - "actions": [ - { "type": "move", "targetId": 2180, "ignoreReached": true } - ], + "targetId": 2292, + "actions": [{ "type": "move", "targetId": 2292 }], "ordersForSector": 29 } ], @@ -279173,8 +275271,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -198.74350254807277, - "coord": [-22.17983174844419, -0.61871177489026], + "angle": 0.033920924031717536, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -279285,13 +275383,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -279299,31 +275397,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2180, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2292, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2208, + "id": 2312, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2180 }, + "default": { "type": "escort", "targetId": 2291 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.005507364116340341, - "state": "cruise", - "target": 2180, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": -0.2599601648322034, + "state": "maneuver", + "target": 2291, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -279336,10 +275434,181 @@ { "type": "escort", "origin": "auto", - "targetId": 2180, - "actions": [ - { "type": "move", "targetId": 2180, "ignoreReached": true } - ], + "targetId": 2291, + "actions": [{ "type": "move", "targetId": 2291 }], + "ordersForSector": 29 + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 34.442536451672936, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true + }, + "render": { + "color": 16750653, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 10, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 3, + "range": 1.2, + "cooldown": 0.2, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "dart", + "value": "Dart", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "GBF Dart", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 2291, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2313, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "escort", "targetId": 2291 }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, + "active": true, + "currentSpeed": 0.15, + "currentRotary": -0.2599601648321932, + "state": "maneuver", + "target": 2291, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "follow", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "escort", + "origin": "auto", + "targetId": 2291, + "actions": [{ "type": "move", "targetId": 2291 }], "ordersForSector": 29 } ], @@ -279348,8 +275617,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 241.0800103645646, - "coord": [-22.536563118659835, -1.3691043258108937], + "angle": 36.408123898167595, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -279460,13 +275729,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -279474,31 +275743,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2180, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2291, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2209, + "id": 2314, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2179 }, + "default": { "type": "escort", "targetId": 2290 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.0018171784754508202, - "state": "cruise", - "target": 2179, - "targetReached": true, + "currentSpeed": 0.5475, + "currentRotary": -0.2439968913423307, + "state": "maneuver", + "target": 2290, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -279511,10 +275780,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2179, - "actions": [ - { "type": "move", "targetId": 2179, "ignoreReached": true } - ], + "targetId": 2290, + "actions": [{ "type": "move", "targetId": 2290 }], "ordersForSector": 29 } ], @@ -279523,8 +275790,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -309.78840214260873, - "coord": [7.971860620319198, 26.667160942371215], + "angle": 3.4401826142622802, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -279635,13 +275902,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -279649,31 +275916,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2179, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2290, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2210, + "id": 2315, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2179 }, + "default": { "type": "escort", "targetId": 2290 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": -0.001109996806777147, - "state": "cruise", - "target": 2179, - "targetReached": true, + "currentSpeed": 0.5475, + "currentRotary": -0.24399689134232583, + "state": "maneuver", + "target": 2290, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -279686,10 +275953,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2179, - "actions": [ - { "type": "move", "targetId": 2179, "ignoreReached": true } - ], + "targetId": 2290, + "actions": [{ "type": "move", "targetId": 2290 }], "ordersForSector": 29 } ], @@ -279698,8 +275963,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 167.72402929460867, - "coord": [7.999713699460166, 26.97025688045568], + "angle": 5.405770060756941, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -279810,13 +276075,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -279824,31 +276089,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2179, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2290, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2211, + "id": 2316, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2178 }, + "default": { "type": "escort", "targetId": 2289 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.05440586429949823, - "state": "cruise", - "target": 2178, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": 0.262417931964138, + "state": "maneuver", + "target": 2289, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -279861,10 +276126,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2178, - "actions": [ - { "type": "move", "targetId": 2178, "ignoreReached": true } - ], + "targetId": 2289, + "actions": [{ "type": "move", "targetId": 2289 }], "ordersForSector": 29 } ], @@ -279873,8 +276136,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -234.65661972481237, - "coord": [22.85781725224992, 5.87955497799433], + "angle": 1.2440289477341793, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -279985,13 +276248,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -279999,31 +276262,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2178, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2289, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2212, + "id": 2317, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2178 }, + "default": { "type": "escort", "targetId": 2289 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.9, - "currentRotary": 0.010613225558193662, - "state": "cruise", - "target": 2178, - "targetReached": true, + "currentSpeed": 0.15, + "currentRotary": 0.26241793196414065, + "state": "maneuver", + "target": 2289, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -280036,10 +276299,8 @@ { "type": "escort", "origin": "auto", - "targetId": 2178, - "actions": [ - { "type": "move", "targetId": 2178, "ignoreReached": true } - ], + "targetId": 2289, + "actions": [{ "type": "move", "targetId": 2289 }], "ordersForSector": 29 } ], @@ -280048,8 +276309,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 192.61492900024248, - "coord": [22.884465066978777, 6.102560450283902], + "angle": 3.209616394228837, + "coord": [7.459598357632791, 11.051943186158896], "sector": 29, "moved": true }, @@ -280160,189 +276421,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", - "mask": "BigInt:67108864" - }, - "name": { - "name": "name", - "value": "GBF Fighter", - "mask": "BigInt:137438953472" - }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 2178, "mask": "BigInt:512" } - }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2213, - "tags": ["selection", "ship", "role:military"] - }, - { - "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 2177 }, - "mask": "BigInt:4" - }, - "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, - "active": true, - "currentSpeed": 1.52, - "currentRotary": -0.002875057066257014, - "state": "cruise", - "target": 2177, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" - }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 2177, - "actions": [ - { "type": "move", "targetId": 2177, "ignoreReached": true } - ], - "ordersForSector": 32 - } - ], - "mask": "BigInt:134217728" - }, - "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, - "position": { - "name": "position", - "angle": -280.84887131169603, - "coord": [22.14286242714705, -14.40913817506182], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" - }, - "render": { - "color": 16750653, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" - }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" - }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" - }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, - "mask": "BigInt:1048576" - }, - "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" - }, - "model": { - "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -280350,31 +276435,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2177, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2289, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2214, + "id": 2318, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2177 }, + "default": { "type": "escort", "targetId": 2288 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": 0.003640325986422166, - "state": "cruise", - "target": 2177, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.14591787018467706, + "state": "maneuver", + "target": 2288, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -280387,11 +276472,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2177, - "actions": [ - { "type": "move", "targetId": 2177, "ignoreReached": true } - ], - "ordersForSector": 32 + "targetId": 2288, + "actions": [{ "type": "move", "targetId": 2288 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -280399,11 +276482,10 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 253.22305336382158, - "coord": [22.359254509290526, -14.66521887705428], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 2.9953073781223134, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, @@ -280512,13 +276594,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -280526,31 +276608,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2177, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2288, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2215, + "id": 2319, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2176 }, + "default": { "type": "escort", "targetId": 2288 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": -0.009767631085064288, - "state": "cruise", - "target": 2176, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": -0.1459178701846744, + "state": "maneuver", + "target": 2288, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -280563,11 +276645,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2176, - "actions": [ - { "type": "move", "targetId": 2176, "ignoreReached": true } - ], - "ordersForSector": 32 + "targetId": 2288, + "actions": [{ "type": "move", "targetId": 2288 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -280575,11 +276655,10 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -254.86648156171503, - "coord": [26.455866378773766, 1.2296205474520208], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 4.960894824616974, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, @@ -280688,13 +276767,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -280702,31 +276781,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2176, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2288, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2216, + "id": 2320, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2176 }, + "default": { "type": "escort", "targetId": 2287 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": 0.003289506398398867, - "state": "cruise", - "target": 2176, - "targetReached": true, + "currentSpeed": 0.6, + "currentRotary": 0.18664393358231202, + "state": "maneuver", + "target": 2287, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -280739,11 +276818,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2176, - "actions": [ - { "type": "move", "targetId": 2176, "ignoreReached": true } - ], - "ordersForSector": 32 + "targetId": 2287, + "actions": [{ "type": "move", "targetId": 2287 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -280751,11 +276828,10 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 153.53141605198823, - "coord": [26.741321351985565, 1.1450476531990614], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 1.610578076589945, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, @@ -280864,13 +276940,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -280878,31 +276954,31 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2176, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2287, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2217, + "id": 2321, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2175 }, + "default": { "type": "escort", "targetId": 2287 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.11249999999999999, - "currentRotary": -0.2380840343808437, + "currentSpeed": 0.6, + "currentRotary": 0.18664393358230935, "state": "maneuver", - "target": 2175, - "targetReached": true, + "target": 2287, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -280915,11 +276991,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2175, - "actions": [ - { "type": "move", "targetId": 2175, "ignoreReached": true } - ], - "ordersForSector": 32 + "targetId": 2287, + "actions": [{ "type": "move", "targetId": 2287 }], + "ordersForSector": 29 } ], "mask": "BigInt:134217728" @@ -280927,11 +277001,10 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -299.1569642568833, - "coord": [-9.758341086923025, 20.367454303075704], - "sector": 32, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": 3.576165523084602, + "coord": [7.459598357632791, 11.051943186158896], + "sector": 29, + "moved": true }, "render": { "color": 16750653, @@ -281040,13 +277113,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -281054,30 +277127,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2175, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2287, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2218, + "id": 2322, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2175 }, + "default": { "type": "escort", "targetId": 2286 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.11249999999999999, - "currentRotary": 0.35232455624310477, - "state": "maneuver", - "target": 2175, + "currentSpeed": 1.76, + "currentRotary": -0.05259493285090233, + "state": "cruise", + "target": 2286, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -281091,9 +277164,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2175, + "targetId": 2286, "actions": [ - { "type": "move", "targetId": 2175, "ignoreReached": true } + { "type": "move", "targetId": 2286, "ignoreReached": true } ], "ordersForSector": 32 } @@ -281103,8 +277176,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 215.2838038490072, - "coord": [-9.616824169485447, 20.175527996266997], + "angle": -254.93772846475053, + "coord": [21.240213167271072, -20.388879047245386], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -281216,13 +277289,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -281230,30 +277303,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2175, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2286, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2219, + "id": 2323, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2174 }, + "default": { "type": "escort", "targetId": 2286 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.1875, - "currentRotary": -0.10226584418919948, - "state": "maneuver", - "target": 2174, + "currentSpeed": 0, + "currentRotary": -0.570470072877213, + "state": "cruise", + "target": 2286, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -281267,9 +277340,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2174, + "targetId": 2286, "actions": [ - { "type": "move", "targetId": 2174, "ignoreReached": true } + { "type": "move", "targetId": 2286, "ignoreReached": true } ], "ordersForSector": 32 } @@ -281279,8 +277352,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -279.4124736481401, - "coord": [24.719553835595683, -15.881464616107186], + "angle": 159.07800948745123, + "coord": [21.109476507847482, -20.978216444041813], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -281392,13 +277465,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -281406,30 +277479,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2174, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2286, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2220, + "id": 2324, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2174 }, + "default": { "type": "escort", "targetId": 2285 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": -0.9847260871473753, - "state": "maneuver", - "target": 2174, + "currentSpeed": 0.12, + "currentRotary": 0.20345707655117184, + "state": "warming", + "target": 2285, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -281443,9 +277516,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2174, + "targetId": 2285, "actions": [ - { "type": "move", "targetId": 2174, "ignoreReached": true } + { "type": "move", "targetId": 2285, "ignoreReached": true } ], "ordersForSector": 32 } @@ -281455,8 +277528,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 268.6483934231123, - "coord": [25.094177202827414, -15.850073263678897], + "angle": -236.23311245941005, + "coord": [-24.36368255277221, -13.89280175884644], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -281568,13 +277641,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -281582,30 +277655,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2174, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2285, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2221, + "cooldowns": { "timers": { "cruise": 0.8 } }, + "id": 2325, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2173 }, + "default": { "type": "escort", "targetId": 2285 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.76, - "currentRotary": 0.010032968078339088, - "state": "cruise", - "target": 2173, + "currentSpeed": 0.12, + "currentRotary": 0.09928740845455764, + "state": "warming", + "target": 2285, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -281619,9 +277692,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2173, + "targetId": 2285, "actions": [ - { "type": "move", "targetId": 2173, "ignoreReached": true } + { "type": "move", "targetId": 2285, "ignoreReached": true } ], "ordersForSector": 32 } @@ -281631,8 +277704,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -120.38784325075873, - "coord": [8.881204583876416, -15.998347620551774], + "angle": 184.86458489619176, + "coord": [-23.982846464304583, -13.954318195315436], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -281744,13 +277817,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -281758,30 +277831,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2173, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2285, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2222, + "cooldowns": { "timers": { "cruise": 0.8 } }, + "id": 2326, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2173 }, + "default": { "type": "escort", "targetId": 2284 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 2.478367537831948, + "currentSpeed": 0.76, + "currentRotary": 0.06561049021760823, "state": "cruise", - "target": 2173, + "target": 2284, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -281795,9 +277868,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2173, + "targetId": 2284, "actions": [ - { "type": "move", "targetId": 2173, "ignoreReached": true } + { "type": "move", "targetId": 2284, "ignoreReached": true } ], "ordersForSector": 32 } @@ -281807,8 +277880,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 227.6974324945573, - "coord": [7.453234306423022, -16.5572929581323], + "angle": -148.13368064825553, + "coord": [18.773583694045787, -18.906201039250742], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -281920,13 +277993,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -281934,30 +278007,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2173, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2284, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2223, + "id": 2327, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2172 }, + "default": { "type": "escort", "targetId": 2284 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.964122362241385, + "currentRotary": -0.9576158308152536, "state": "cruise", - "target": 2172, + "target": 2284, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -281971,9 +278044,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2172, + "targetId": 2284, "actions": [ - { "type": "move", "targetId": 2172, "ignoreReached": true } + { "type": "move", "targetId": 2284, "ignoreReached": true } ], "ordersForSector": 32 } @@ -281983,8 +278056,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -194.8451921859164, - "coord": [7.343015036717298, -24.069721135589738], + "angle": 140.20207591959996, + "coord": [19.37984014588472, -17.677133271883708], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -282096,13 +278169,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -282110,30 +278183,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2172, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2284, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2224, + "id": 2328, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2172 }, + "default": { "type": "escort", "targetId": 2283 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": 0.46415195179108126, - "state": "cruise", - "target": 2172, + "currentRotary": 1.0081872870534934, + "state": "maneuver", + "target": 2283, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -282147,9 +278220,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2172, + "targetId": 2283, "actions": [ - { "type": "move", "targetId": 2172, "ignoreReached": true } + { "type": "move", "targetId": 2283, "ignoreReached": true } ], "ordersForSector": 32 } @@ -282159,8 +278232,8 @@ "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 307.2156470488257, - "coord": [7.9571351785205024, -23.094591566213683], + "angle": -164.0558892088438, + "coord": [12.306783551317146, -24.559775911873377], "sector": 32, "moved": true, "mask": "BigInt:2199023255552" @@ -282272,13 +278345,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "GBF Fighter", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -282286,172 +278359,75 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2172, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2283, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2225, + "id": 2329, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 32 }, + "default": { "type": "escort", "targetId": 2283 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 6, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 631, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": -2.478367537831948, + "state": "maneuver", + "target": 2283, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", + "targetId": 2283, "actions": [ - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 2226, - "quantity": 6, - "commodity": "electronics", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 421, "storage": 67 }, - "seller": { "budget": null, "storage": 260 } - }, - "price": 267, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 93 }, - { "type": "teleport", "targetId": 95 }, - { "type": "move", "targetId": 101 }, - { "type": "teleport", "targetId": 103 }, - { "type": "move", "targetId": 173 }, - { "type": "teleport", "targetId": 175 }, - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2226, - "quantity": 6, - "commodity": "electronics", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 102, "storage": 102 }, - "seller": { "budget": null, "storage": 68 } - }, - "price": 381, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 2283, "ignoreReached": true } + ], + "ordersForSector": 32 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -183.86869769211975, - "coord": [-17.426330990790674, -16.33136114351487], - "sector": 25, - "moved": true + "angle": 159.14488824039742, + "coord": [12.208335040985073, -24.84782736603263], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { - "color": 16251995, + "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 69, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 6, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3555, - "type": "incoming", - "meta": { "tradeId": "631:2226:buy:3555" }, - "id": 67 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 6, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3555, - "type": "outgoing", - "meta": { "tradeId": "273:2226:sell:3555" }, - "id": 68 - } - ], - "max": 6, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -282526,597 +278502,108 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 170, - "target": "ACT Ross 128 I Factory", - "time": 384 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 433, - "target": "ACT Arges Factory", - "time": 443 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 170, - "target": "ACT Ross 128 I Factory", - "time": 503 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 433, - "target": "ACT Arges Factory", - "time": 561 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 11, - "target": "ACT Arges Factory", - "time": 579 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 28, - "target": "ACT Ross 128 I Hub", - "time": 637 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 712 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 783 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 170, - "target": "ACT Ross 128 I Factory", - "time": 812 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 433, - "target": "ACT Arges Factory", - "time": 863 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 907 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 978 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 277, - "target": "ACT Ross 128 I Factory", - "time": 1007 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 418, - "target": "ACT Arges Factory", - "time": 1047 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 6, - "price": 728, - "target": "ACT Ross 128 I Factory", - "time": 1087 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 6, - "price": 1146, - "target": "GBF Shipyard", - "time": 1230 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "ACT Arges Factory", - "time": 1359 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 20, - "target": "ACT Ross 128 II Hub", - "time": 1439 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "ACT Arges Factory", - "time": 1518 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 20, - "target": "ACT Ross 128 II Hub", - "time": 1596 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 6, - "price": 27, - "target": "ACT Arges Mining Complex", - "time": 1676 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 6, - "price": 35, - "target": "GBF Wolf 1061 I Factory", - "time": 1768 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 1, - "price": 728, - "target": "ACT Ross 128 I Factory", - "time": 1869 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 1, - "price": 1146, - "target": "GBF Shipyard", - "time": 2012 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "GBF Wolf 1061 I Factory", - "time": 2068 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "ACT Arges Hub", - "time": 2174 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 276, - "target": "ACT Ross 128 I Factory", - "time": 2226 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 456, - "target": "GBF Shipyard", - "time": 2346 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 276, - "target": "ACT Ross 128 I Factory", - "time": 2469 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 456, - "target": "GBF Shipyard", - "time": 2588 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "GBF Wolf 1061 I Factory", - "time": 2644 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "ACT Arges Hub", - "time": 2749 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "ACT Arges Factory", - "time": 2767 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "ACT Ross 128 I Hub", - "time": 2818 - }, - { - "type": "trade", - "action": "buy", - "commodity": "hullPlates", - "quantity": 6, - "price": 51, - "target": "ACT Arges Factory", - "time": 2871 - }, - { - "type": "trade", - "action": "sell", - "commodity": "hullPlates", - "quantity": 6, - "price": 61, - "target": "ACT Arges Factory", - "time": 2885 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 267, - "target": "ACT Ross 128 I Factory", - "time": 2948 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 381, - "target": "GBF Shipyard", - "time": 3068 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 14, - "target": "ACT Arges Factory", - "time": 3194 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 21, - "target": "ACT Ross 128 I Hub", - "time": 3245 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 1, - "price": 924, - "target": "ACT Ross 128 I Factory", - "time": 3266 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 1, - "price": 1251, - "target": "GBF Shipyard", - "time": 3409 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 48, - "target": "GBF Wolf 1061 I Mining Complex", - "time": 3461 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 72, - "target": "ACT Arges Factory", - "time": 3554 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Courier B", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2283, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2226, - "tags": ["selection", "ship", "role:transport"] + "id": 2330, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 32 }, + "default": { "type": "escort", "targetId": 2282 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 143, - "targetReached": false, + "currentSpeed": 0, + "currentRotary": -0.036039031630422436, + "state": "maneuver", + "target": 2282, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", + "targetId": 2282, "actions": [ - { "type": "move", "targetId": 143 }, - { "type": "teleport", "targetId": 141 }, - { "type": "move", "targetId": 55 }, - { "type": "teleport", "targetId": 53 }, - { "type": "move", "targetId": 815 }, - { "type": "dock", "targetId": 815 }, - { - "targetId": 815, - "offer": { - "initiator": 2227, - "quantity": 1, - "commodity": "hullPlates", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 418, "storage": 32 }, - "seller": { "budget": null, "storage": 182 } - }, - "price": 51, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 708 }, - { "type": "dock", "targetId": 708 }, - { - "targetId": 708, - "offer": { - "initiator": 2227, - "quantity": 1, - "commodity": "hullPlates", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 79, "storage": 79 }, - "seller": { "budget": null, "storage": 33 } - }, - "price": 61, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 2282, "ignoreReached": true } + ], + "ordersForSector": 32 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 20.683856309882593, - "coord": [-14.924431731986267, 23.162081376288487], - "sector": 30, - "moved": true + "angle": -158.87352660638706, + "coord": [31.530385441381487, 9.197345192037726], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { - "color": 16251995, + "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 34, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3468, - "type": "incoming", - "meta": { "tradeId": "815:2227:buy:3468" }, - "id": 32 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 1, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3468, - "type": "outgoing", - "meta": { "tradeId": "708:2227:sell:3468" }, - "id": 33 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -283185,381 +278672,290 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 575 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 28, - "target": "ACT Ross 128 I Hub", - "time": 680 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 829 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 972 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 19, - "price": 46, - "target": "GBF Wolf 1061 I Mining Complex", - "time": 1255 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 19, - "price": 71, - "target": "GBF Wolf 1061 I Factory", - "time": 1293 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 277, - "target": "ACT Ross 128 I Factory", - "time": 1533 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 418, - "target": "ACT Arges Factory", - "time": 1646 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 14, - "target": "ACT Arges Factory", - "time": 1704 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 20, - "target": "ACT Ross 128 II Hub", - "time": 1893 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 276, - "target": "ACT Ross 128 I Factory", - "time": 1961 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 456, - "target": "GBF Shipyard", - "time": 2255 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 14, - "target": "GBF Wolf 1061 I Factory", - "time": 2366 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "ACT Arges Hub", - "time": 2641 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 56, - "price": 39, - "target": "GBF Wolf 1061 I Mining Complex", - "time": 2890 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 56, - "price": 66, - "target": "GBF Wolf 1061 I Factory", - "time": 2928 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 267, - "target": "ACT Ross 128 I Factory", - "time": 3168 - }, + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 3, + "range": 1.2, + "cooldown": 0.2, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "dart", + "value": "Dart", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "GBF Dart", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [], + "mask": "BigInt:4294967296" + }, + "commander": { "name": "commander", "id": 2282, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2331, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "escort", "targetId": 2282 }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, + "active": true, + "currentSpeed": 0, + "currentRotary": 0.21544061452234775, + "state": "maneuver", + "target": 2282, + "targetReached": true, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "follow", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 381, - "target": "GBF Shipyard", - "time": 3466 + "type": "escort", + "origin": "auto", + "targetId": 2282, + "actions": [ + { "type": "move", "targetId": 2282, "ignoreReached": true } + ], + "ordersForSector": 32 } ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 161.55857758296162, + "coord": [31.566645547879574, 9.49402937700186], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16750653, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "sMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 10, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "small", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Freighter A", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2282, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2227, - "tags": ["selection", "ship", "role:transport"] + "id": 2332, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 32 }, + "default": { "type": "escort", "targetId": 2281 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0.15200000000000002, - "currentRotary": -1.0658141036401503e-14, + "currentSpeed": 1.52, + "currentRotary": 0.21268751036356104, "state": "cruise", - "target": 163, - "targetReached": false, + "target": 2281, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", + "targetId": 2281, "actions": [ - { "type": "move", "targetId": 163 }, - { "type": "teleport", "targetId": 161 }, - { "type": "move", "targetId": 175 }, - { "type": "teleport", "targetId": 173 }, - { "type": "move", "targetId": 103 }, - { "type": "teleport", "targetId": 101 }, - { "type": "move", "targetId": 95 }, - { "type": "teleport", "targetId": 93 }, - { "type": "move", "targetId": 631 }, - { "type": "dock", "targetId": 631 }, - { - "targetId": 631, - "offer": { - "initiator": 2228, - "quantity": 160, - "commodity": "electronics", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 422, "storage": 29 }, - "seller": { "budget": null, "storage": 262 } - }, - "price": 267, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 93 }, - { "type": "teleport", "targetId": 95 }, - { "type": "move", "targetId": 101 }, - { "type": "teleport", "targetId": 103 }, - { "type": "move", "targetId": 173 }, - { "type": "teleport", "targetId": 175 }, - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2228, - "quantity": 160, - "commodity": "electronics", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 107, "storage": 107 }, - "seller": { "budget": null, "storage": 30 } - }, - "price": 381, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 2281, "ignoreReached": true } + ], + "ordersForSector": 32 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 47.384422721318586, - "coord": [11.13890653826327, 6.294431805415407], + "angle": -204.26479243560578, + "coord": [27.034592672469405, -6.216479137408275], "sector": 32, - "moved": true + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { - "color": 16251995, + "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "incoming", - "meta": { "tradeId": "631:2228:buy:3594" }, - "id": 29 - }, - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 160, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3594, - "type": "outgoing", - "meta": { "tradeId": "273:2228:sell:3594" }, - "id": 30 - } - ], - "max": 160, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -283628,303 +279024,114 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 170, - "target": "ACT Ross 128 I Factory", - "time": 491 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 433, - "target": "ACT Arges Factory", - "time": 618 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 170, - "target": "ACT Ross 128 I Factory", - "time": 745 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 433, - "target": "ACT Arges Factory", - "time": 869 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 170, - "target": "ACT Ross 128 I Factory", - "time": 994 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 433, - "target": "ACT Arges Factory", - "time": 1117 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 160, - "price": 728, - "target": "ACT Ross 128 I Factory", - "time": 1226 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 160, - "price": 1146, - "target": "GBF Shipyard", - "time": 1577 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 46, - "price": 277, - "target": "ACT Ross 128 I Factory", - "time": 1876 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 46, - "price": 418, - "target": "ACT Arges Factory", - "time": 1988 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 276, - "target": "ACT Ross 128 I Factory", - "time": 2097 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 456, - "target": "GBF Shipyard", - "time": 2398 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 276, - "target": "ACT Ross 128 I Factory", - "time": 2697 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 456, - "target": "GBF Shipyard", - "time": 2995 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 267, - "target": "ACT Ross 128 I Factory", - "time": 3294 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 381, - "target": "GBF Shipyard", - "time": 3592 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Freighter A", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2281, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2228, - "tags": ["selection", "ship", "role:transport"] + "id": 2333, + "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 32 }, + "default": { "type": "escort", "targetId": 2281 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 0, - "currentRotary": 0.15707963267948966, - "state": "maneuver", - "target": 161, - "targetReached": false, + "currentSpeed": 1.52, + "currentRotary": 0.06791070923905362, + "state": "cruise", + "target": 2281, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { + "type": "escort", "origin": "auto", - "type": "trade", + "targetId": 2281, "actions": [ - { "type": "move", "targetId": 161 }, - { "type": "teleport", "targetId": 163 }, - { "type": "move", "targetId": 273 }, - { "type": "dock", "targetId": 273 }, - { - "targetId": 273, - "offer": { - "initiator": 2229, - "quantity": 940, - "commodity": "electronics", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 71, "storage": 71 }, - "seller": { "budget": null, "storage": 21 } - }, - "price": 381, - "type": "sell" - }, - "type": "trade" - } - ] + { "type": "move", "targetId": 2281, "ignoreReached": true } + ], + "ordersForSector": 32 } ], "mask": "BigInt:134217728" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "owner": { "name": "owner", "id": 272, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 13.974281097008134, - "coord": [-21.96633974675068, -23.454175471023913], - "sector": 29, - "moved": true + "angle": 191.49269374178462, + "coord": [27.08717100232046, -6.249893782249792], + "sector": 32, + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { - "color": 16251995, + "color": 16750653, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 22, - "allocations": [ - { - "amount": { - "coolant": 0, - "drones": 0, - "electronics": 940, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 2823, - "type": "outgoing", - "meta": { "tradeId": "273:2229:sell:2823" }, - "id": 21 - } - ], - "max": 940, + "allocationIdCounter": 1, + "allocations": [], + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -283949,7 +279156,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 940, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -283993,149 +279200,50 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 879 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 1137 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 277, - "target": "ACT Ross 128 I Factory", - "time": 1248 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 418, - "target": "ACT Arges Factory", - "time": 1400 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 216, - "price": 277, - "target": "ACT Ross 128 I Factory", - "time": 1565 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 216, - "price": 418, - "target": "ACT Arges Factory", - "time": 1731 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 277, - "target": "ACT Ross 128 I Factory", - "time": 1898 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 404, - "target": "ACT Pontus Factory", - "time": 2218 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 940, - "price": 1074, - "target": "ACT Arges Factory", - "time": 2365 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 940, - "price": 1373, - "target": "GBF Shipyard", - "time": 2822 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 267, - "target": "ACT Ross 128 I Factory", - "time": 3232 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, - "range": 1, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Large Freighter B", + "value": "GBF Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2281, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2229, - "tags": ["selection", "ship", "role:transport"] + "id": 2334, + "tags": ["selection", "ship", "role:military"] }, { "components": { @@ -284151,10 +279259,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0.063, - "currentRotary": 1.2434497875801753e-14, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, "state": "warming", - "target": 640, + "target": 161, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -284169,42 +279277,23 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 640 }, - { "type": "dock", "targetId": 640 }, - { - "targetId": 640, - "offer": { - "initiator": 2230, - "quantity": 940, - "commodity": "food", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 408, "storage": 20 }, - "seller": { "budget": null, "storage": 186 } - }, - "price": 14, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 617 }, - { "type": "dock", "targetId": 617 }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, { - "targetId": 617, + "targetId": 273, "offer": { - "initiator": 2230, + "initiator": 2335, "quantity": 940, - "commodity": "food", + "commodity": "drones", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 16, "storage": 16 }, - "seller": { "budget": null, "storage": 21 } + "buyer": { "budget": 8, "storage": 8 }, + "seller": { "budget": null, "storage": 6 } }, - "price": 21, + "price": 1672, "type": "sell" }, "type": "trade" @@ -284217,9 +279306,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -35.25410446694953, - "coord": [-7.9768566942036925, -24.33612232397183], - "sector": 7, + "angle": 5.342727363398885, + "coord": [2.096728698445146, 5.576009665449173], + "sector": 29, "moved": true }, "render": { @@ -284233,42 +279322,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 22, + "allocationIdCounter": 7, "allocations": [ { "amount": { "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 940, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3213, - "type": "incoming", - "meta": { "tradeId": "640:2230:buy:3213" }, - "id": 20 - }, - { - "amount": { - "coolant": 0, - "drones": 0, + "drones": 940, "electronics": 0, "engineParts": 0, - "food": 940, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -284284,10 +279346,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3213, + "issued": 156, "type": "outgoing", - "meta": { "tradeId": "617:2230:sell:3213" }, - "id": 21 + "meta": { "tradeId": "273:2335:sell:156" }, + "id": 6 } ], "max": 940, @@ -284314,7 +279376,7 @@ }, "stored": { "coolant": 0, - "drones": 0, + "drones": 940, "electronics": 0, "engineParts": 0, "food": 0, @@ -284366,95 +279428,15 @@ "journal": { "name": "journal", "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 940, - "price": 170, - "target": "ACT Ross 128 I Factory", - "time": 629 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 940, - "price": 433, - "target": "ACT Arges Factory", - "time": 817 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 945 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 1199 - }, { "type": "trade", "action": "buy", "commodity": "drones", - "quantity": 5, - "price": 728, - "target": "ACT Ross 128 I Factory", - "time": 1204 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 5, - "price": 1146, - "target": "GBF Shipyard", - "time": 1669 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 940, - "price": 27, - "target": "ACT Arges Mining Complex", - "time": 2106 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", "quantity": 940, - "price": 35, - "target": "GBF Wolf 1061 I Factory", - "time": 2465 - }, - { - "type": "trade", - "action": "buy", - "commodity": "drones", - "quantity": 1, - "price": 926, - "target": "ACT Ross 128 I Factory", - "time": 2792 - }, - { - "type": "trade", - "action": "sell", - "commodity": "drones", - "quantity": 1, - "price": 1373, - "target": "GBF Shipyard", - "time": 3211 + "price": 638, + "target": "ACT Ross 128 II Factory", + "targetId": 762, + "time": 2002 } ], "mask": "BigInt:4194304" @@ -284490,28 +279472,28 @@ "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 10 } }, - "id": 2230, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2335, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 14 }, + "default": { "type": "trade", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": -3.9968028886505635e-15, - "state": "cruise", - "target": 159, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 161, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -284526,56 +279508,23 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 159 }, - { "type": "teleport", "targetId": 157 }, - { "type": "move", "targetId": 149 }, - { "type": "teleport", "targetId": 151 }, - { "type": "move", "targetId": 57 }, - { "type": "teleport", "targetId": 59 }, - { "type": "move", "targetId": 397 }, - { "type": "dock", "targetId": 397 }, - { - "targetId": 397, - "offer": { - "initiator": 2231, - "quantity": 160, - "commodity": "metals", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 416, "storage": 30 }, - "seller": { "budget": null, "storage": 34 } - }, - "price": 52, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 59 }, - { "type": "teleport", "targetId": 57 }, - { "type": "move", "targetId": 151 }, - { "type": "teleport", "targetId": 149 }, - { "type": "move", "targetId": 157 }, - { "type": "teleport", "targetId": 159 }, - { "type": "move", "targetId": 61 }, - { "type": "teleport", "targetId": 63 }, - { "type": "move", "targetId": 133 }, - { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, { - "targetId": 1125, + "targetId": 273, "offer": { - "initiator": 2231, - "quantity": 160, - "commodity": "metals", + "initiator": 2336, + "quantity": 940, + "commodity": "drones", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 44, "storage": 44 }, - "seller": { "budget": null, "storage": 31 } + "buyer": { "budget": 6, "storage": 6 }, + "seller": { "budget": null, "storage": 4 } }, - "price": 93, + "price": 1672, "type": "sell" }, "type": "trade" @@ -284588,9 +279537,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -19.67922973077775, - "coord": [-5.679761209604285, 4.3448720053514815], - "sector": 12, + "angle": 11.625912670578469, + "coord": [2.096728698445146, 5.576009665449173], + "sector": 29, "moved": true }, "render": { @@ -284598,45 +279547,18 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 32, + "allocationIdCounter": 5, "allocations": [ { "amount": { "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3444, - "type": "incoming", - "meta": { "tradeId": "397:2231:buy:3444" }, - "id": 30 - }, - { - "amount": { - "coolant": 0, - "drones": 0, + "drones": 940, "electronics": 0, "engineParts": 0, "food": 0, @@ -284647,7 +279569,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -284655,13 +279577,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3444, + "issued": 87, "type": "outgoing", - "meta": { "tradeId": "1125:2231:sell:3444" }, - "id": 31 + "meta": { "tradeId": "273:2336:sell:87" }, + "id": 4 } ], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -284685,7 +279607,7 @@ }, "stored": { "coolant": 0, - "drones": 0, + "drones": 940, "electronics": 0, "engineParts": 0, "food": 0, @@ -284730,7 +279652,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -284740,158 +279662,24 @@ { "type": "trade", "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "FFW Juno III Mining Complex", - "time": 633 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "FFW Teegarden's Star I Factory", - "time": 747 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "FFW Juno III Mining Complex", - "time": 858 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "FFW Teegarden's Star I Factory", - "time": 982 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 27, - "target": "FFW Juno III Mining Complex", - "time": 1090 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 42, - "target": "FFW GJ 1002 II Hub", - "time": 1250 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "UEN Discordis c Mining Complex", - "time": 1691 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "FFW Juno IV Factory", - "time": 1943 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2132 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2249 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2369 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2486 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 74, - "price": 28, - "target": "FFW Juno III Mining Complex", - "time": 2753 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 74, - "price": 42, - "target": "UEN Terra Hub", - "time": 2923 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "UEN Discordis c Mining Complex", - "time": 3084 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 93, - "target": "FFW GJ 1002 I Factory", - "time": 3441 + "commodity": "drones", + "quantity": 940, + "price": 638, + "target": "ACT Ross 128 II Factory", + "targetId": 762, + "time": 2004 } ], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -284900,13 +279688,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Freighter A", + "value": "THT Trader Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -284915,15 +279703,15 @@ "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2231, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2336, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 14 }, + "default": { "type": "trade", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { @@ -284933,10 +279721,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 57, + "currentSpeed": 0, + "currentRotary": -0.9424777960769379, + "state": "maneuver", + "target": 161, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -284951,52 +279739,23 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 57 }, - { "type": "teleport", "targetId": 59 }, - { "type": "move", "targetId": 397 }, - { "type": "dock", "targetId": 397 }, - { - "targetId": 397, - "offer": { - "initiator": 2232, - "quantity": 160, - "commodity": "metals", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 417, "storage": 30 }, - "seller": { "budget": null, "storage": 35 } - }, - "price": 52, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 59 }, - { "type": "teleport", "targetId": 57 }, - { "type": "move", "targetId": 151 }, - { "type": "teleport", "targetId": 149 }, - { "type": "move", "targetId": 157 }, - { "type": "teleport", "targetId": 159 }, - { "type": "move", "targetId": 61 }, - { "type": "teleport", "targetId": 63 }, - { "type": "move", "targetId": 133 }, - { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, { - "targetId": 1125, + "targetId": 273, "offer": { - "initiator": 2232, + "initiator": 2337, "quantity": 160, - "commodity": "metals", + "commodity": "drones", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 45, "storage": 45 }, - "seller": { "budget": null, "storage": 31 } + "buyer": { "budget": 4, "storage": 4 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 93, + "price": 1672, "type": "sell" }, "type": "trade" @@ -285009,9 +279768,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 3.1105270308510495, - "coord": [26.64287742277515, 4.919802777402138], - "sector": 10, + "angle": 211.22870640838715, + "coord": [2.096728698445146, 5.576009665449173], + "sector": 29, "moved": true }, "render": { @@ -285025,39 +279784,12 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 32, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 160, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3450, - "type": "incoming", - "meta": { "tradeId": "397:2232:buy:3450" }, - "id": 30 - }, - { - "amount": { - "coolant": 0, - "drones": 0, + "drones": 160, "electronics": 0, "engineParts": 0, "food": 0, @@ -285068,7 +279800,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -285076,10 +279808,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3450, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "1125:2232:sell:3450" }, - "id": 31 + "meta": { "tradeId": "273:2337:sell:27" }, + "id": 2 } ], "max": 160, @@ -285106,7 +279838,7 @@ }, "stored": { "coolant": 0, - "drones": 0, + "drones": 160, "electronics": 0, "engineParts": 0, "food": 0, @@ -285161,146 +279893,12 @@ { "type": "trade", "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "FFW Juno III Mining Complex", - "time": 615 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "FFW Teegarden's Star I Factory", - "time": 731 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 1094 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 1351 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "UEN Discordis c Mining Complex", - "time": 1618 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "FFW Juno IV Factory", - "time": 1870 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2060 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2177 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2297 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2414 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2649 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 2900 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 13, - "target": "UEN Luna Factory", - "time": 3072 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "ACT Gaia Hub", - "time": 3192 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 13, - "target": "UEN Luna Factory", - "time": 3326 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", + "commodity": "drones", "quantity": 160, - "price": 21, - "target": "ACT Gaia Hub", - "time": 3447 + "price": 638, + "target": "ACT Ross 128 II Factory", + "targetId": 762, + "time": 145 } ], "mask": "BigInt:4194304" @@ -285337,14 +279935,14 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2232, + "id": 2337, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 14 }, + "default": { "type": "trade", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { @@ -285354,10 +279952,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 1.3322676295501878e-15, - "state": "cruise", - "target": 460, + "currentSpeed": 0, + "currentRotary": -0.9424777960769379, + "state": "maneuver", + "target": 161, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -285372,44 +279970,23 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 460 }, - { "type": "dock", "targetId": 460 }, - { - "targetId": 460, - "offer": { - "initiator": 2233, - "quantity": 160, - "commodity": "food", - "factionId": 282, - "budget": 282, - "allocations": { - "buyer": { "budget": 411, "storage": 29 }, - "seller": { "budget": null, "storage": 68 } - }, - "price": 13, - "type": "buy" - }, - "type": "trade" - }, - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, - { "type": "move", "targetId": 153 }, - { "type": "teleport", "targetId": 155 }, - { "type": "move", "targetId": 589 }, - { "type": "dock", "targetId": 589 }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, { - "targetId": 589, + "targetId": 273, "offer": { - "initiator": 2233, + "initiator": 2338, "quantity": 160, - "commodity": "food", + "commodity": "drones", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 31, "storage": 31 }, - "seller": { "budget": null, "storage": 30 } + "buyer": { "budget": 7, "storage": 7 }, + "seller": { "budget": null, "storage": 5 } }, - "price": 21, + "price": 1672, "type": "sell" }, "type": "trade" @@ -285422,9 +279999,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -31.03060767687633, - "coord": [-21.03426179077583, -13.410609540749332], - "sector": 2, + "angle": 79.28181495761582, + "coord": [2.096728698445146, 5.576009665449173], + "sector": 29, "moved": true }, "render": { @@ -285438,42 +280015,15 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, + "allocationIdCounter": 6, "allocations": [ { "amount": { "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 160, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "issued": 3327, - "type": "incoming", - "meta": { "tradeId": "460:2233:buy:3327" }, - "id": 29 - }, - { - "amount": { - "coolant": 0, - "drones": 0, + "drones": 160, "electronics": 0, "engineParts": 0, - "food": 160, + "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, @@ -285489,10 +280039,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3327, + "issued": 96, "type": "outgoing", - "meta": { "tradeId": "589:2233:sell:3327" }, - "id": 30 + "meta": { "tradeId": "273:2338:sell:96" }, + "id": 5 } ], "max": 160, @@ -285519,7 +280069,7 @@ }, "stored": { "coolant": 0, - "drones": 0, + "drones": 160, "electronics": 0, "engineParts": 0, "food": 0, @@ -285574,128 +280124,12 @@ { "type": "trade", "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 659 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "ACT Arges Factory", - "time": 908 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "UEN Discordis c Mining Complex", - "time": 1178 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "FFW Juno IV Factory", - "time": 1430 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1485 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1642 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "UEN Discordis c Mining Complex", - "time": 1938 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "FFW Juno IV Factory", - "time": 2190 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2381 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2498 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2618 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2735 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "UEN Discordis c Mining Complex", - "time": 2970 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", + "commodity": "drones", "quantity": 160, - "price": 93, - "target": "FFW GJ 1002 I Factory", - "time": 3326 + "price": 638, + "target": "ACT Ross 128 II Factory", + "targetId": 762, + "time": 2002 } ], "mask": "BigInt:4194304" @@ -285732,14 +280166,14 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2233, + "id": 2338, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 14 }, + "default": { "type": "trade", "sectorId": 32 }, "mask": "BigInt:4" }, "drive": { @@ -285749,10 +280183,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0.8999999999999999, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 33, + "currentSpeed": 0, + "currentRotary": -0.15707963267948966, + "state": "warming", + "target": 161, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -285767,23 +280201,23 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 482 }, - { "type": "dock", "targetId": 482 }, + { "type": "move", "targetId": 161 }, + { "type": "teleport", "targetId": 163 }, + { "type": "move", "targetId": 273 }, + { "type": "dock", "targetId": 273 }, { - "targetId": 482, + "targetId": 273, "offer": { - "initiator": 2234, + "initiator": 2339, "quantity": 940, - "commodity": "fuel", + "commodity": "drones", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 35, "storage": 36 }, - "seller": { "budget": null, "storage": 21 } + "buyer": { "budget": 5, "storage": 5 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 76, + "price": 1672, "type": "sell" }, "type": "trade" @@ -285796,9 +280230,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 2.762501035382969, - "coord": [15.180105507282239, -24.251184782041715], - "sector": 1, + "angle": 30.47546859211723, + "coord": [2.096728698445146, 5.576009665449173], + "sector": 29, "moved": true }, "render": { @@ -285812,16 +280246,16 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 22, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, - "drones": 0, + "drones": 940, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -285836,10 +280270,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3132, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "482:2234:sell:3132" }, - "id": 21 + "meta": { "tradeId": "273:2339:sell:27" }, + "id": 2 } ], "max": 940, @@ -285866,11 +280300,11 @@ }, "stored": { "coolant": 0, - "drones": 0, + "drones": 940, "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 940, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -285921,101 +280355,12 @@ { "type": "trade", "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "FFW Juno III Mining Complex", - "time": 831 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 52, - "target": "FFW Teegarden's Star I Factory", - "time": 1043 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 27, - "target": "FFW Juno III Mining Complex", - "time": 1210 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 42, - "target": "FFW GJ 1002 II Hub", - "time": 1461 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1886 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 73, - "target": "FFW Juno III Factory", - "time": 2142 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 29, - "target": "ACT Gaia Mining Complex", - "time": 2576 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 42, - "target": "UEN Terra Hub", - "time": 2769 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 940, - "price": 13, - "target": "UEN Luna Factory", - "time": 2873 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 940, - "price": 21, - "target": "ACT Gaia Hub", - "time": 3130 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", + "commodity": "drones", "quantity": 940, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3437 + "price": 638, + "target": "ACT Ross 128 II Factory", + "targetId": 762, + "time": 145 } ], "mask": "BigInt:4194304" @@ -286051,8 +280396,8 @@ "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2234, + "cooldowns": { "timers": { "cruise": 13 } }, + "id": 2339, "tags": ["selection", "ship", "role:transport"] }, { @@ -286064,15 +280409,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 373, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -286087,46 +280432,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 373 }, - { "type": "dock", "targetId": 373 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 373, + "targetId": 1214, "offer": { - "initiator": 2235, - "quantity": 160, - "commodity": "fuel", + "initiator": 2340, + "quantity": 940, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 413, "storage": 29 }, - "seller": { "budget": null, "storage": 194 } + "buyer": { "budget": 6, "storage": 1 }, + "seller": { "budget": null, "storage": 4 } }, - "price": 49, + "price": 27, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 43 }, - { "type": "teleport", "targetId": 41 }, - { "type": "move", "targetId": 39 }, - { "type": "teleport", "targetId": 37 }, - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 482 }, - { "type": "dock", "targetId": 482 }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, { - "targetId": 482, + "targetId": 233, "offer": { - "initiator": 2235, - "quantity": 160, - "commodity": "fuel", + "initiator": 2340, + "quantity": 940, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 38, "storage": 40 }, - "seller": { "budget": null, "storage": 30 } + "buyer": { "budget": 4, "storage": 4 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 76, + "price": 77, "type": "sell" }, "type": "trade" @@ -286139,9 +280486,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.208621648189557, - "coord": [-18.31960472279902, -0.5339265002960059], - "sector": 4, + "angle": -3.9576623078650677, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -286149,13 +280496,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -286164,11 +280511,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 160, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -286179,10 +280526,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3396, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "373:2235:buy:3396" }, - "id": 29 + "meta": { "tradeId": "1214:2340:buy:27" }, + "id": 1 }, { "amount": { @@ -286191,11 +280538,11 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 160, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, @@ -286206,13 +280553,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3396, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "482:2235:sell:3396" }, - "id": 30 + "meta": { "tradeId": "233:2340:sell:27" }, + "id": 2 } ], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -286281,150 +280628,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "FFW Juno III Mining Complex", - "time": 641 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 52, - "target": "FFW Teegarden's Star I Factory", - "time": 755 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 1116 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 1373 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 45, - "target": "UEN Discordis c Mining Complex", - "time": 1639 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 75, - "target": "FFW Juno IV Factory", - "time": 1891 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2139 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 2391 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2582 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2699 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 13, - "target": "UEN Luna Factory", - "time": 2846 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 21, - "target": "ACT Gaia Hub", - "time": 2967 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 49, - "target": "UEN Saturn Mining Complex", - "time": 3169 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 76, - "target": "UEN Luna Factory", - "time": 3394 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -286433,13 +280653,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Freighter A", + "value": "THT Trader Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -286449,28 +280669,28 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2235, + "id": 2340, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 6 }, + "default": { "type": "trade", "sectorId": 14 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 65, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -286484,28 +280704,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "teleport", "targetId": 47 }, - { "type": "move", "targetId": 169 }, - { "type": "teleport", "targetId": 171 }, - { "type": "move", "targetId": 111 }, - { "type": "teleport", "targetId": 109 }, - { "type": "move", "targetId": 107 }, - { "type": "teleport", "targetId": 105 }, - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 1499, + "targetId": 1214, "offer": { - "initiator": 2236, - "quantity": 6, - "commodity": "silicon", + "initiator": 2341, + "quantity": 160, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 146, "storage": 158 }, - "seller": { "budget": null, "storage": 49 } + "buyer": { "budget": 28, "storage": 2 }, + "seller": { "budget": null, "storage": 9 } }, - "price": 35, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 2341, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 9, "storage": 9 }, + "seller": { "budget": null, "storage": 3 } + }, + "price": 77, "type": "sell" }, "type": "trade" @@ -286518,9 +280758,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -81.39737321958188, - "coord": [-10.436502284783836, -20.044298626628407], - "sector": 4, + "angle": -781.7942402731906, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -286528,13 +280768,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 50, + "allocationIdCounter": 4, "allocations": [ { "amount": { @@ -286547,24 +280787,51 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 6, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 48, + "type": "incoming", + "meta": { "tradeId": "1214:2341:buy:48" }, + "id": 2 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3435, + "issued": 48, "type": "outgoing", - "meta": { "tradeId": "1499:2236:sell:3435" }, - "id": 49 + "meta": { "tradeId": "233:2341:sell:48" }, + "id": 3 } ], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -286602,7 +280869,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 6, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -286633,267 +280900,23 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 11, - "target": "ACT Arges Factory", - "time": 432 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 6, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 558 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 677 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 83, - "target": "ACT Arges Factory", - "time": 792 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 6, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 838 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 6, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 909 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 6, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1056 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 6, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1117 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 5, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1270 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 5, - "price": 421, - "target": "FFW Shipyard", - "time": 1420 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 2, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1571 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 2, - "price": 421, - "target": "FFW Shipyard", - "time": 1724 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 4, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1874 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 4, - "price": 421, - "target": "FFW Shipyard", - "time": 2027 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 6, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2118 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 6, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2181 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 6, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2285 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 6, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 2398 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 6, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2512 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 6, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 2624 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 6, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 2770 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 6, - "price": 423, - "target": "ACT Shipyard", - "time": 2901 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 6, - "price": 20, - "target": "UEN Mars Mining Complex", - "time": 2962 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 6, - "price": 35, - "target": "GBF Wolf 1061 I Factory", - "time": 3104 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 6, - "price": 52, - "target": "UEN Discordis c Mining Complex", - "time": 3281 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 6, - "price": 93, - "target": "FFW GJ 1002 I Factory", - "time": 3434 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 6, - "price": 20, - "target": "UEN Mars Mining Complex", - "time": 3552 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -286902,13 +280925,13 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Courier B", + "value": "THT Trader Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -286918,27 +280941,27 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2236, + "id": 2341, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 6 }, + "default": { "type": "trade", "sectorId": 14 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 0.15707963267948966, + "cruise": 0.9, + "ttc": 15, + "maneuver": 0.09, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 1499, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -286953,21 +280976,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 1499, + "targetId": 1214, "offer": { - "initiator": 2237, - "quantity": 160, - "commodity": "silicon", + "initiator": 2342, + "quantity": 940, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 127, "storage": 138 }, - "seller": { "budget": null, "storage": 25 } + "buyer": { "budget": 47, "storage": 3 }, + "seller": { "budget": null, "storage": 15 } }, - "price": 35, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 2342, + "quantity": 940, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 15, "storage": 15 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 77, "type": "sell" }, "type": "trade" @@ -286980,9 +281030,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -7.639974283152011, - "coord": [20.113942364884835, -19.10154983434788], - "sector": 29, + "angle": -3.9576623078650677, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -286990,13 +281040,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "lCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 26, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -287009,24 +281059,51 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 940, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 96, + "type": "incoming", + "meta": { "tradeId": "1214:2342:buy:96" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 940, "hydrogen": 0, "ice": 0, "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3072, + "issued": 96, "type": "outgoing", - "meta": { "tradeId": "1499:2237:sell:3072" }, - "id": 25 + "meta": { "tradeId": "233:2342:sell:96" }, + "id": 4 } ], - "max": 160, + "max": 940, "availableWares": { "coolant": 0, "drones": 0, @@ -287064,7 +281141,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -287095,123 +281172,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 639 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "ACT Arges Factory", - "time": 888 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 1140 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "ACT Arges Factory", - "time": 1389 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1642 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1796 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 21, - "target": "UEN Mars Mining Complex", - "time": 2024 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "GBF Wolf 1061 I Factory", - "time": 2407 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2817 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 3069 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 20, - "target": "UEN Mars Mining Complex", - "time": 3260 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, + "shield": { "max": 300, "regen": 8, "value": 300 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -287220,13 +281197,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "largeFreighterB", + "value": "Large Freighter B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Freighter A", + "value": "THT Trader Large Freighter B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -287236,14 +281213,14 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2237, + "id": 2342, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 6 }, + "default": { "type": "trade", "sectorId": 14 }, "mask": "BigInt:4" }, "drive": { @@ -287253,10 +281230,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 8.881784197001252e-16, - "state": "cruise", - "target": 33, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -287271,50 +281248,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 325 }, - { "type": "dock", "targetId": 325 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 325, + "targetId": 1214, "offer": { - "initiator": 2238, + "initiator": 2343, "quantity": 160, - "commodity": "gold", + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 412, "storage": 24 }, + "buyer": { "budget": 30, "storage": 2 }, "seller": { "budget": null, "storage": 10 } }, - "price": 404, + "price": 27, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, { "type": "move", "targetId": 153 }, { "type": "teleport", "targetId": 155 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 729 }, - { "type": "dock", "targetId": 729 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, { - "targetId": 729, + "targetId": 233, "offer": { - "initiator": 2238, + "initiator": 2343, "quantity": 160, - "commodity": "gold", + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 75, "storage": 123 }, - "seller": { "budget": null, "storage": 25 } + "buyer": { "budget": 10, "storage": 10 }, + "seller": { "budget": null, "storage": 3 } }, - "price": 719, + "price": 77, "type": "sell" }, "type": "trade" @@ -287327,9 +281302,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -3.8258190347373664, - "coord": [11.926162251610187, -16.93005263296512], - "sector": 1, + "angle": -781.7942402731906, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -287343,7 +281318,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 26, + "allocationIdCounter": 4, "allocations": [ { "amount": { @@ -287354,9 +281329,9 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 160, + "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -287367,10 +281342,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3369, + "issued": 51, "type": "incoming", - "meta": { "tradeId": "325:2238:buy:3369" }, - "id": 24 + "meta": { "tradeId": "1214:2343:buy:51" }, + "id": 2 }, { "amount": { @@ -287381,9 +281356,9 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 160, + "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -287394,10 +281369,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3369, + "issued": 51, "type": "outgoing", - "meta": { "tradeId": "729:2238:sell:3369" }, - "id": 25 + "meta": { "tradeId": "233:2343:sell:51" }, + "id": 3 } ], "max": 160, @@ -287475,98 +281450,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 666 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "ACT Arges Factory", - "time": 915 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 160, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1248 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 160, - "price": 421, - "target": "FFW Shipyard", - "time": 1579 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 21, - "target": "UEN Mars Mining Complex", - "time": 1797 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "GBF Wolf 1061 I Factory", - "time": 2179 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 9, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 2546 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 9, - "price": 423, - "target": "ACT Shipyard", - "time": 2854 - }, - { - "type": "trade", - "action": "buy", - "commodity": "gold", - "quantity": 160, - "price": 404, - "target": "UEN Luna Mining Complex", - "time": 3054 - }, - { - "type": "trade", - "action": "sell", - "commodity": "gold", - "quantity": 160, - "price": 719, - "target": "ACT Ross 128 I Factory", - "time": 3368 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -287601,14 +281485,14 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2238, + "id": 2343, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 6 }, + "default": { "type": "trade", "sectorId": 14 }, "mask": "BigInt:4" }, "drive": { @@ -287619,9 +281503,9 @@ "maneuver": 0.13, "active": true, "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, + "currentRotary": 0.06357370713853916, "state": "cruise", - "target": 107, + "target": 485, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -287636,23 +281520,50 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 107 }, - { "type": "teleport", "targetId": 105 }, - { "type": "move", "targetId": 1499 }, - { "type": "dock", "targetId": 1499 }, + { "type": "move", "targetId": 485 }, + { "type": "dock", "targetId": 485 }, { - "targetId": 1499, + "targetId": 485, "offer": { - "initiator": 2239, + "initiator": 2344, "quantity": 160, - "commodity": "silicon", + "commodity": "food", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 133, "storage": 144 }, - "seller": { "budget": null, "storage": 25 } + "buyer": { "budget": 60, "storage": 7 }, + "seller": { "budget": null, "storage": 17 } }, - "price": 35, + "price": 9, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 35 }, + { "type": "teleport", "targetId": 33 }, + { "type": "move", "targetId": 157 }, + { "type": "teleport", "targetId": 159 }, + { "type": "move", "targetId": 61 }, + { "type": "teleport", "targetId": 63 }, + { "type": "move", "targetId": 133 }, + { "type": "teleport", "targetId": 135 }, + { "type": "move", "targetId": 147 }, + { "type": "teleport", "targetId": 145 }, + { "type": "move", "targetId": 1174 }, + { "type": "dock", "targetId": 1174 }, + { + "targetId": 1174, + "offer": { + "initiator": 2344, + "quantity": 160, + "commodity": "food", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 8 } + }, + "price": 27, "type": "sell" }, "type": "trade" @@ -287665,9 +281576,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 16.43930696994166, - "coord": [0.3747149947445775, -10.053702600608908], - "sector": 30, + "angle": 12.21188972960455, + "coord": [-11.646747847317787, -4.916705615640465], + "sector": 2, "moved": true }, "render": { @@ -287681,7 +281592,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 26, + "allocationIdCounter": 9, "allocations": [ { "amount": { @@ -287689,7 +281600,34 @@ "drones": 0, "electronics": 0, "engineParts": 0, - "food": 0, + "food": 160, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "485:2344:buy:309" }, + "id": 7 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 160, "fuel": 0, "fuelium": 0, "gold": 0, @@ -287700,15 +281638,15 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 3204, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "1499:2239:sell:3204" }, - "id": 25 + "meta": { "tradeId": "1174:2344:sell:309" }, + "id": 8 } ], "max": 160, @@ -287749,7 +281687,7 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 160, + "silicon": 0, "superconductors": 0, "tauMetal": 0, "water": 0 @@ -287786,107 +281724,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 606 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 864 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 1169 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "ACT Arges Factory", - "time": 1418 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1669 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1823 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 2, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 2185 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 2, - "price": 423, - "target": "ACT Shipyard", - "time": 2493 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 100, - "price": 39, - "target": "GBF Wolf 1061 I Mining Complex", - "time": 2781 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 100, - "price": 71, - "target": "UEN Luna Factory", - "time": 3203 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 20, - "target": "UEN Mars Mining Complex", - "time": 3332 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -287921,7 +281759,7 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2239, + "id": 2344, "tags": ["selection", "ship", "role:transport"] }, { @@ -287933,15 +281771,15 @@ }, "drive": { "acceleration": 0.1, - "rotary": 0.15707963267948966, - "cruise": 0.9, - "ttc": 15, - "maneuver": 0.09, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.063, - "currentRotary": -0.000001049556749954661, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": 153, + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -287956,6 +281794,31 @@ "origin": "auto", "type": "trade", "actions": [ + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, + { + "targetId": 1214, + "offer": { + "initiator": 2345, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 11, "storage": 1 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, { "type": "move", "targetId": 153 }, { "type": "teleport", "targetId": 155 }, { "type": "move", "targetId": 233 }, @@ -287963,16 +281826,16 @@ { "targetId": 233, "offer": { - "initiator": 2240, - "quantity": 2, - "commodity": "electronics", + "initiator": 2345, + "quantity": 160, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 34, "storage": 34 }, - "seller": { "budget": null, "storage": 17 } + "buyer": { "budget": 5, "storage": 5 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 423, + "price": 77, "type": "sell" }, "type": "trade" @@ -287985,9 +281848,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 16.007874191212544, - "coord": [-2.594286925687155, -35.08496296587871], - "sector": 1, + "angle": -788.0774255803702, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -287995,26 +281858,26 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "lCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, + "allocationIdCounter": 3, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 2, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -288025,13 +281888,40 @@ "tauMetal": 0, "water": 0 }, - "issued": 2625, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1214:2345:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "233:2240:sell:2625" }, - "id": 17 + "meta": { "tradeId": "233:2345:sell:27" }, + "id": 2 } ], - "max": 940, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -288056,7 +281946,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 2, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -288100,87 +281990,23 @@ }, "dockable": { "name": "dockable", - "size": "large", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 787 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 1019 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1593 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1849 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 940, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2255 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 940, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 2622 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 2, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 3159 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 3900, "regen": 0.2, "value": 3900 }, - "shield": { "max": 300, "regen": 8, "value": 300 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -288189,13 +282015,13 @@ }, "model": { "name": "model", - "slug": "largeFreighterB", - "value": "Large Freighter B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Large Freighter B", + "value": "THT Trader Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -288205,27 +282031,27 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2240, + "id": 2345, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 1 }, + "default": { "type": "trade", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": 2.220446049250313e-15, - "state": "cruise", - "target": 57, + "currentSpeed": 0, + "currentRotary": 1.0902010392320385, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -288240,52 +282066,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 57 }, - { "type": "teleport", "targetId": 59 }, - { "type": "move", "targetId": 397 }, - { "type": "dock", "targetId": 397 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 397, + "targetId": 1214, "offer": { - "initiator": 2241, - "quantity": 160, - "commodity": "metals", + "initiator": 2346, + "quantity": 6, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 410, "storage": 25 }, - "seller": { "budget": null, "storage": 33 } + "buyer": { "budget": 41, "storage": 5 }, + "seller": { "budget": null, "storage": 13 } }, - "price": 52, + "price": 27, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 59 }, - { "type": "teleport", "targetId": 57 }, - { "type": "move", "targetId": 151 }, - { "type": "teleport", "targetId": 149 }, - { "type": "move", "targetId": 157 }, - { "type": "teleport", "targetId": 159 }, - { "type": "move", "targetId": 61 }, - { "type": "teleport", "targetId": 63 }, - { "type": "move", "targetId": 133 }, - { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, { - "targetId": 1125, + "targetId": 233, "offer": { - "initiator": 2241, - "quantity": 160, - "commodity": "metals", + "initiator": 2346, + "quantity": 6, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 43, "storage": 43 }, - "seller": { "budget": null, "storage": 26 } + "buyer": { "budget": 13, "storage": 13 }, + "seller": { "budget": null, "storage": 6 } }, - "price": 93, + "price": 77, "type": "sell" }, "type": "trade" @@ -288298,9 +282120,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -22.022088111740562, - "coord": [26.32873393185047, -5.2565927643835515], - "sector": 10, + "angle": -749.131033065381, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -288308,13 +282130,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 27, + "allocationIdCounter": 7, "allocations": [ { "amount": { @@ -288327,10 +282149,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -288338,10 +282160,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3324, + "issued": 78, "type": "incoming", - "meta": { "tradeId": "397:2241:buy:3324" }, - "id": 25 + "meta": { "tradeId": "1214:2346:buy:78" }, + "id": 5 }, { "amount": { @@ -288354,10 +282176,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -288365,13 +282187,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3324, + "issued": 78, "type": "outgoing", - "meta": { "tradeId": "1125:2241:sell:3324" }, - "id": 26 + "meta": { "tradeId": "233:2346:sell:78" }, + "id": 6 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -288440,114 +282262,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 585 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 843 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 1148 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "ACT Arges Factory", - "time": 1397 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 8, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1728 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 8, - "price": 421, - "target": "FFW Shipyard", - "time": 2059 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 16, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 2400 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 16, - "price": 423, - "target": "ACT Shipyard", - "time": 2708 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "UEN Discordis c Mining Complex", - "time": 2964 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 93, - "target": "FFW GJ 1002 I Factory", - "time": 3321 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -288556,13 +282287,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Freighter A", + "value": "THT Trader Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -288572,14 +282303,14 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2241, + "id": 2346, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 1 }, + "default": { "type": "trade", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { @@ -288589,10 +282320,10 @@ "ttc": 15, "maneuver": 0.09, "active": true, - "currentSpeed": 0.9, - "currentRotary": 0, - "state": "cruise", - "target": 233, + "currentSpeed": 0, + "currentRotary": 0.15707963267948966, + "state": "warming", + "target": 115, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -288607,21 +282338,52 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 233 }, - { "type": "dock", "targetId": 233 }, + { "type": "move", "targetId": 115 }, + { "type": "teleport", "targetId": 113 }, + { "type": "move", "targetId": 555 }, + { "type": "dock", "targetId": 555 }, { - "targetId": 233, + "targetId": 555, "offer": { - "initiator": 2242, - "quantity": 4, - "commodity": "electronics", + "initiator": 2347, + "quantity": 940, + "commodity": "silicon", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 31, "storage": 31 }, - "seller": { "budget": null, "storage": 17 } + "buyer": { "budget": 61, "storage": 10 }, + "seller": { "budget": null, "storage": 22 } }, - "price": 423, + "price": 17, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 113 }, + { "type": "teleport", "targetId": 115 }, + { "type": "move", "targetId": 93 }, + { "type": "teleport", "targetId": 95 }, + { "type": "move", "targetId": 97 }, + { "type": "teleport", "targetId": 99 }, + { "type": "move", "targetId": 127 }, + { "type": "teleport", "targetId": 125 }, + { "type": "move", "targetId": 69 }, + { "type": "teleport", "targetId": 71 }, + { "type": "move", "targetId": 1589 }, + { "type": "dock", "targetId": 1589 }, + { + "targetId": 1589, + "offer": { + "initiator": 2347, + "quantity": 940, + "commodity": "silicon", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 1, "storage": 1 }, + "seller": { "budget": null, "storage": 11 } + }, + "price": 44, "type": "sell" }, "type": "trade" @@ -288634,9 +282396,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 12.175877353486639, - "coord": [-6.629720957021513, -16.190894406816103], - "sector": 6, + "angle": -3.557056956812133, + "coord": [-1.258951771896632, -0.7093714441536972], + "sector": 25, "moved": true }, "render": { @@ -288650,13 +282412,40 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 18, + "allocationIdCounter": 12, "allocations": [ { "amount": { "coolant": 0, "drones": 0, - "electronics": 4, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 940, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 309, + "type": "incoming", + "meta": { "tradeId": "555:2347:buy:309" }, + "id": 10 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -288669,15 +282458,15 @@ "metals": 0, "ore": 0, "silica": 0, - "silicon": 0, + "silicon": 940, "superconductors": 0, "tauMetal": 0, "water": 0 }, - "issued": 2538, + "issued": 309, "type": "outgoing", - "meta": { "tradeId": "233:2242:sell:2538" }, - "id": 17 + "meta": { "tradeId": "1589:2347:sell:309" }, + "id": 11 } ], "max": 940, @@ -288705,7 +282494,7 @@ "stored": { "coolant": 0, "drones": 0, - "electronics": 4, + "electronics": 0, "engineParts": 0, "food": 0, "fuel": 0, @@ -288755,71 +282544,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 940, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 842 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 940, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 1100 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 940, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1674 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 940, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1932 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 940, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2341 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 940, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2536 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 4, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 3070 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -288853,15 +282578,15 @@ "mask": "BigInt:4294967296" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2242, + "cooldowns": { "timers": { "cruise": 11 } }, + "id": 2347, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 1 }, + "default": { "type": "trade", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { @@ -288871,10 +282596,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 0, - "state": "cruise", - "target": 63, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -288889,54 +282614,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 63 }, - { "type": "teleport", "targetId": 61 }, - { "type": "move", "targetId": 159 }, - { "type": "teleport", "targetId": 157 }, - { "type": "move", "targetId": 33 }, - { "type": "teleport", "targetId": 35 }, - { "type": "move", "targetId": 325 }, - { "type": "dock", "targetId": 325 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 325, + "targetId": 1214, "offer": { - "initiator": 2243, + "initiator": 2348, "quantity": 160, - "commodity": "gold", + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 420, "storage": 29 }, - "seller": { "budget": null, "storage": 11 } + "buyer": { "budget": 21, "storage": 2 }, + "seller": { "budget": null, "storage": 8 } }, - "price": 404, + "price": 27, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 35 }, - { "type": "teleport", "targetId": 33 }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, { "type": "move", "targetId": 153 }, { "type": "teleport", "targetId": 155 }, - { "type": "move", "targetId": 49 }, - { "type": "teleport", "targetId": 51 }, - { "type": "move", "targetId": 113 }, - { "type": "teleport", "targetId": 115 }, - { "type": "move", "targetId": 729 }, - { "type": "dock", "targetId": 729 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, { - "targetId": 729, + "targetId": 233, "offer": { - "initiator": 2243, + "initiator": 2348, "quantity": 160, - "commodity": "gold", + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 78, "storage": 126 }, - "seller": { "budget": null, "storage": 30 } + "buyer": { "budget": 8, "storage": 8 }, + "seller": { "budget": null, "storage": 3 } }, - "price": 719, + "price": 77, "type": "sell" }, "type": "trade" @@ -288949,9 +282668,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -14.121791902299224, - "coord": [7.439538590149565, -14.302187748107938], - "sector": 13, + "angle": -788.0774255803702, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -288965,7 +282684,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 31, + "allocationIdCounter": 4, "allocations": [ { "amount": { @@ -288976,9 +282695,9 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 160, + "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -288989,10 +282708,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3531, + "issued": 39, "type": "incoming", - "meta": { "tradeId": "325:2243:buy:3531" }, - "id": 29 + "meta": { "tradeId": "1214:2348:buy:39" }, + "id": 2 }, { "amount": { @@ -289003,9 +282722,9 @@ "food": 0, "fuel": 0, "fuelium": 0, - "gold": 160, + "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -289016,10 +282735,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3531, + "issued": 39, "type": "outgoing", - "meta": { "tradeId": "729:2243:sell:3531" }, - "id": 30 + "meta": { "tradeId": "233:2348:sell:39" }, + "id": 3 } ], "max": 160, @@ -289097,134 +282816,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 587 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 845 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 28, - "target": "UEN Saturn Mining Complex", - "time": 1148 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 83, - "target": "ACT Arges Factory", - "time": 1397 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1646 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1800 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2030 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2147 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2382 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 2633 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 22, - "target": "UEN Mars Mining Complex", - "time": 2822 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 35, - "target": "ACT Gaia Factory", - "time": 2939 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "UEN Discordis c Mining Complex", - "time": 3174 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 93, - "target": "FFW GJ 1002 I Factory", - "time": 3530 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -289259,27 +282851,27 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2243, + "id": 2348, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade", "sectorId": 1 }, + "default": { "type": "trade", "sectorId": 6 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 0.9424777960769379, - "cruise": 1, - "ttc": 3.3, - "maneuver": 0.13, + "rotary": 2.0420352248333655, + "cruise": 6, + "ttc": 1, + "maneuver": 0.55, "active": true, - "currentSpeed": 1, - "currentRotary": -4.440892098500626e-16, - "state": "cruise", - "target": 119, + "currentSpeed": 0, + "currentRotary": 1.0902010392320385, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -289294,54 +282886,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 119 }, - { "type": "teleport", "targetId": 117 }, - { "type": "move", "targetId": 57 }, - { "type": "teleport", "targetId": 59 }, - { "type": "move", "targetId": 397 }, - { "type": "dock", "targetId": 397 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 397, + "targetId": 1214, "offer": { - "initiator": 2244, - "quantity": 160, - "commodity": "metals", + "initiator": 2349, + "quantity": 6, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 419, "storage": 28 }, - "seller": { "budget": null, "storage": 37 } + "buyer": { "budget": 15, "storage": 1 }, + "seller": { "budget": null, "storage": 6 } }, - "price": 52, + "price": 27, "type": "buy" }, "type": "trade" }, - { "type": "move", "targetId": 59 }, - { "type": "teleport", "targetId": 57 }, - { "type": "move", "targetId": 151 }, - { "type": "teleport", "targetId": 149 }, - { "type": "move", "targetId": 157 }, - { "type": "teleport", "targetId": 159 }, - { "type": "move", "targetId": 61 }, - { "type": "teleport", "targetId": 63 }, - { "type": "move", "targetId": 133 }, - { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, { - "targetId": 1125, + "targetId": 233, "offer": { - "initiator": 2244, - "quantity": 160, - "commodity": "metals", + "initiator": 2349, + "quantity": 6, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 48, "storage": 48 }, - "seller": { "budget": null, "storage": 29 } + "buyer": { "budget": 6, "storage": 6 }, + "seller": { "budget": null, "storage": 2 } }, - "price": 93, + "price": 77, "type": "sell" }, "type": "trade" @@ -289354,9 +282940,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -6.381528822293959, - "coord": [4.712453352720574, -6.950563878322634], - "sector": 15, + "angle": -780.5469596012789, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -289364,13 +282950,13 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mCiv", + "texture": "sCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 30, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -289383,10 +282969,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -289394,10 +282980,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3522, + "issued": 27, "type": "incoming", - "meta": { "tradeId": "397:2244:buy:3522" }, - "id": 28 + "meta": { "tradeId": "1214:2349:buy:27" }, + "id": 1 }, { "amount": { @@ -289410,10 +282996,10 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 6, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -289421,13 +283007,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3522, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "1125:2244:sell:3522" }, - "id": 29 + "meta": { "tradeId": "233:2349:sell:27" }, + "id": 2 } ], - "max": 160, + "max": 6, "availableWares": { "coolant": 0, "drones": 0, @@ -289496,132 +283082,23 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 601 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 859 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 1176 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 1319 - }, - { - "type": "trade", - "action": "buy", - "commodity": "fuel", - "quantity": 160, - "price": 40, - "target": "FFW Juno IV Mining Complex", - "time": 1643 - }, - { - "type": "trade", - "action": "sell", - "commodity": "fuel", - "quantity": 160, - "price": 73, - "target": "FFW Juno III Factory", - "time": 1797 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 7, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 2161 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 7, - "price": 423, - "target": "ACT Shipyard", - "time": 2469 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 4, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 2792 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 4, - "price": 423, - "target": "ACT Shipyard", - "time": 3100 - }, - { - "type": "trade", - "action": "buy", - "commodity": "silicon", - "quantity": 160, - "price": 20, - "target": "UEN Mars Mining Complex", - "time": 3241 - }, - { - "type": "trade", - "action": "sell", - "commodity": "silicon", - "quantity": 160, - "price": 34, - "target": "GBF GJ 229 II Factory", - "time": 3519 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 780, "regen": 0.2, "value": 780 }, - "shield": { "max": 90, "regen": 4, "value": 90 }, + "hp": { "max": 90, "regen": 0.2, "value": 90 }, + "shield": { "max": 30, "regen": 2, "value": 30 }, "mask": "BigInt:1048576" }, "damage": { - "value": 2, + "value": 1, "range": 1, "cooldown": 0.3, "name": "damage", @@ -289630,13 +283107,13 @@ }, "model": { "name": "model", - "slug": "freighterA", - "value": "Freighter A", + "slug": "courierB", + "value": "Courier B", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Trader Freighter A", + "value": "THT Trader Courier B", "mask": "BigInt:137438953472" }, "subordinates": { @@ -289646,7 +283123,7 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2244, + "id": 2349, "tags": ["selection", "ship", "role:transport"] }, { @@ -289663,10 +283140,10 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 1, - "currentRotary": 4.440892098500626e-16, - "state": "cruise", - "target": 133, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, + "state": "maneuver", + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -289681,23 +283158,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 133 }, - { "type": "teleport", "targetId": 135 }, - { "type": "move", "targetId": 1125 }, - { "type": "dock", "targetId": 1125 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 1125, + "targetId": 1214, "offer": { - "initiator": 2245, + "initiator": 2350, "quantity": 160, - "commodity": "metals", + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 37, "storage": 3 }, + "seller": { "budget": null, "storage": 12 } + }, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 2350, + "quantity": 160, + "commodity": "hullPlates", "factionId": 282, "budget": 282, "allocations": { - "buyer": { "budget": 38, "storage": 38 }, - "seller": { "budget": null, "storage": 24 } + "buyer": { "budget": 12, "storage": 12 }, + "seller": { "budget": null, "storage": 4 } }, - "price": 93, + "price": 77, "type": "sell" }, "type": "trade" @@ -289710,9 +283212,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 14.152547955859022, - "coord": [20.11979807519692, -14.106943371362437], - "sector": 13, + "angle": -756.6614990444723, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -289726,7 +283228,7 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 25, + "allocationIdCounter": 5, "allocations": [ { "amount": { @@ -289739,10 +283241,37 @@ "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 66, + "type": "incoming", + "meta": { "tradeId": "1214:2350:buy:66" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -289750,10 +283279,10 @@ "tauMetal": 0, "water": 0 }, - "issued": 3051, + "issued": 66, "type": "outgoing", - "meta": { "tradeId": "1125:2245:sell:3051" }, - "id": 24 + "meta": { "tradeId": "233:2350:sell:66" }, + "id": 4 } ], "max": 160, @@ -289791,7 +283320,7 @@ "hullPlates": 0, "hydrogen": 0, "ice": 0, - "metals": 160, + "metals": 0, "ore": 0, "silica": 0, "silicon": 0, @@ -289831,107 +283360,7 @@ }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 160, - "price": 11, - "target": "ACT Arges Factory", - "time": 564 - }, - { - "type": "trade", - "action": "sell", - "commodity": "food", - "quantity": 160, - "price": 39, - "target": "FFW Juno IV Hub", - "time": 822 - }, - { - "type": "trade", - "action": "buy", - "commodity": "water", - "quantity": 160, - "price": 20, - "target": "ACT Pontus Mining Complex", - "time": 1140 - }, - { - "type": "trade", - "action": "sell", - "commodity": "water", - "quantity": 160, - "price": 55, - "target": "ACT Ross 128 I Factory", - "time": 1283 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 11, - "price": 224, - "target": "GBF GJ 229 II Factory", - "time": 1572 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 11, - "price": 421, - "target": "FFW Shipyard", - "time": 1901 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 48, - "target": "UEN Discordis c Mining Complex", - "time": 2177 - }, - { - "type": "trade", - "action": "sell", - "commodity": "metals", - "quantity": 160, - "price": 97, - "target": "FFW Juno IV Factory", - "time": 2429 - }, - { - "type": "trade", - "action": "buy", - "commodity": "electronics", - "quantity": 5, - "price": 251, - "target": "GBF GJ 229 II Factory", - "time": 2741 - }, - { - "type": "trade", - "action": "sell", - "commodity": "electronics", - "quantity": 5, - "price": 423, - "target": "ACT Shipyard", - "time": 3049 - }, - { - "type": "trade", - "action": "buy", - "commodity": "metals", - "quantity": 160, - "price": 52, - "target": "UEN Discordis c Mining Complex", - "time": 3307 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { @@ -289966,31 +283395,31 @@ } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2245, + "id": 2350, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "trade", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, - "currentSpeed": 0.16500000000000004, - "currentRotary": 4.440892098500626e-16, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": 24914, + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.55, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -289998,11 +283427,56 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24914, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, + { + "targetId": 1214, + "offer": { + "initiator": 2351, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 45, "storage": 4 }, + "seller": { "budget": null, "storage": 14 } + }, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 2351, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 14, "storage": 14 }, + "seller": { "budget": null, "storage": 5 } + }, + "price": 77, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -290010,9 +283484,9 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 37.8656029690107, - "coord": [1.566771461376952, -3.17941204902368], - "sector": 15, + "angle": -762.9446843516519, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, "moved": true }, "render": { @@ -290020,15 +283494,70 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 23, - "allocations": [], - "max": 6, + "allocationIdCounter": 6, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 90, + "type": "incoming", + "meta": { "tradeId": "1214:2351:buy:90" }, + "id": 4 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 90, + "type": "outgoing", + "meta": { "tradeId": "233:2351:sell:90" }, + "id": 5 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -290097,123 +283626,23 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, "journal": { "name": "journal", - "entries": [ - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 950 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1032 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1115 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1199 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1281 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1364 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1448 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1530 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1613 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1697 - }, - { - "type": "trade", - "action": "buy", - "commodity": "food", - "quantity": 6, - "price": 17, - "target": "GBF GJ 229 II Factory", - "time": 1779 - } - ], + "entries": [], "mask": "BigInt:4194304" }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -290222,31 +283651,30 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Courier B", + "value": "THT Trader Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1532, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2246, + "id": 2351, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "trade", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { @@ -290256,14 +283684,14 @@ "ttc": 3.3, "maneuver": 0.13, "active": true, - "currentSpeed": 0.13, - "currentRotary": 8.881784197001252e-16, + "currentSpeed": 0, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": 24840, + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, - "limit": 0.13, + "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, @@ -290271,11 +283699,56 @@ "name": "orders", "value": [ { - "origin": "OrderPlanningSystem:auto", + "origin": "auto", + "type": "trade", "actions": [ - { "type": "move", "targetId": 24840, "onlyManeuver": true } - ], - "type": "move" + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, + { + "targetId": 1214, + "offer": { + "initiator": 2352, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 49, "storage": 5 }, + "seller": { "budget": null, "storage": 17 } + }, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 2352, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 16, "storage": 16 }, + "seller": { "budget": null, "storage": 6 } + }, + "price": 77, + "type": "sell" + }, + "type": "trade" + } + ] } ], "mask": "BigInt:134217728" @@ -290283,11 +283756,10 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 9.77666589154039, - "coord": [17.193272671595803, -16.4727427862364], - "sector": 15, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -781.7942402731906, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, + "moved": true }, "render": { "color": 16251995, @@ -290300,8 +283772,63 @@ "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 55, - "allocations": [], + "allocationIdCounter": 7, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 105, + "type": "incoming", + "meta": { "tradeId": "1214:2352:buy:105" }, + "id": 5 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 105, + "type": "outgoing", + "meta": { "tradeId": "233:2352:sell:105" }, + "id": 6 + } + ], "max": 160, "availableWares": { "coolant": 0, @@ -290402,38 +283929,37 @@ }, "name": { "name": "name", - "value": "THT Freighter A", + "value": "THT Trader Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1520, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2247, + "id": 2352, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "trade", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": -1.095573003473549, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": 1508, + "target": 65, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -290448,21 +283974,48 @@ "origin": "auto", "type": "trade", "actions": [ - { "type": "move", "targetId": 1508 }, - { "type": "dock", "targetId": 1508 }, + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, { - "targetId": 1508, + "targetId": 1214, "offer": { - "initiator": 2248, - "quantity": 6, - "commodity": "fuel", + "initiator": 2353, + "quantity": 160, + "commodity": "hullPlates", "factionId": 282, - "budget": 1508, + "budget": 282, "allocations": { - "buyer": { "budget": null, "storage": 166 }, - "seller": { "budget": null, "storage": 120 } + "buyer": { "budget": 19, "storage": 1 }, + "seller": { "budget": null, "storage": 7 } }, - "price": 0, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 2353, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 7, "storage": 7 }, + "seller": { "budget": null, "storage": 2 } + }, + "price": 77, "type": "sell" }, "type": "trade" @@ -290475,24 +284028,23 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 0.3617673252389304, - "coord": [7.403145817516298, 9.471396211164558], - "sector": 15, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -788.0774255803702, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, + "moved": true }, "render": { "color": 16251995, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 121, + "allocationIdCounter": 3, "allocations": [ { "amount": { @@ -290501,11 +284053,38 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, - "hullPlates": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 27, + "type": "incoming", + "meta": { "tradeId": "1214:2353:buy:27" }, + "id": 1 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, "hydrogen": 0, "ice": 0, "metals": 0, @@ -290516,13 +284095,13 @@ "tauMetal": 0, "water": 0 }, - "issued": 3579, + "issued": 27, "type": "outgoing", - "meta": { "tradeId": "1508:2248:sell:3579" }, - "id": 120 + "meta": { "tradeId": "233:2353:sell:27" }, + "id": 2 } ], - "max": 6, + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -290550,7 +284129,7 @@ "electronics": 0, "engineParts": 0, "food": 0, - "fuel": 6, + "fuel": 0, "fuelium": 0, "gold": 0, "goldOre": 0, @@ -290591,7 +284170,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -290602,12 +284181,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -290616,75 +284195,185 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Courier B", + "value": "THT Trader Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1508, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2248, + "id": 2353, "tags": ["selection", "ship", "role:transport"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "trade" }, + "default": { "type": "trade", "sectorId": 1 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.1, - "rotary": 2.0420352248333655, - "cruise": 6, - "ttc": 1, - "maneuver": 0.55, + "rotary": 0.9424777960769379, + "cruise": 1, + "ttc": 3.3, + "maneuver": 0.13, "active": true, "currentSpeed": 0, - "currentRotary": 0, + "currentRotary": 0.9424777960769379, "state": "maneuver", - "target": null, - "targetReached": true, + "target": 65, + "targetReached": false, "name": "drive", "minimalDistance": 0.01, "limit": 2000, "mode": "goto", "mask": "BigInt:131072" }, - "orders": { "name": "orders", "value": [], "mask": "BigInt:134217728" }, + "orders": { + "name": "orders", + "value": [ + { + "origin": "auto", + "type": "trade", + "actions": [ + { "type": "move", "targetId": 65 }, + { "type": "teleport", "targetId": 67 }, + { "type": "move", "targetId": 1214 }, + { "type": "dock", "targetId": 1214 }, + { + "targetId": 1214, + "offer": { + "initiator": 2354, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 31, "storage": 3 }, + "seller": { "budget": null, "storage": 11 } + }, + "price": 27, + "type": "buy" + }, + "type": "trade" + }, + { "type": "move", "targetId": 67 }, + { "type": "teleport", "targetId": 65 }, + { "type": "move", "targetId": 159 }, + { "type": "teleport", "targetId": 157 }, + { "type": "move", "targetId": 153 }, + { "type": "teleport", "targetId": 155 }, + { "type": "move", "targetId": 233 }, + { "type": "dock", "targetId": 233 }, + { + "targetId": 233, + "offer": { + "initiator": 2354, + "quantity": 160, + "commodity": "hullPlates", + "factionId": 282, + "budget": 282, + "allocations": { + "buyer": { "budget": 11, "storage": 11 }, + "seller": { "budget": null, "storage": 4 } + }, + "price": 77, + "type": "sell" + }, + "type": "trade" + } + ] + } + ], + "mask": "BigInt:134217728" + }, "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 14.439744121400617, - "coord": [17.799606761739042, -17.242022599999753], - "sector": 15, - "moved": true, - "mask": "BigInt:2199023255552" + "angle": -775.511054966011, + "coord": [18.254311949602315, -2.8432713299937036], + "sector": 12, + "moved": true }, "render": { "color": 16251995, "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sCiv", + "texture": "mCiv", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 139, - "allocations": [], - "max": 6, + "allocationIdCounter": 5, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 54, + "type": "incoming", + "meta": { "tradeId": "1214:2354:buy:54" }, + "id": 3 + }, + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 160, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 54, + "type": "outgoing", + "meta": { "tradeId": "233:2354:sell:54" }, + "id": 4 + } + ], + "max": 160, "availableWares": { "coolant": 0, "drones": 0, @@ -290753,7 +284442,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "medium", "dockedIn": null, "mask": "BigInt:32768" }, @@ -290764,12 +284453,12 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 90, "regen": 0.2, "value": 90 }, - "shield": { "max": 30, "regen": 2, "value": 30 }, + "hp": { "max": 780, "regen": 0.2, "value": 780 }, + "shield": { "max": 90, "regen": 4, "value": 90 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 2, "range": 1, "cooldown": 0.3, "name": "damage", @@ -290778,24 +284467,23 @@ }, "model": { "name": "model", - "slug": "courierB", - "value": "Courier B", + "slug": "freighterA", + "value": "Freighter A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Courier B", + "value": "THT Trader Freighter A", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", "ids": [], "mask": "BigInt:4294967296" - }, - "commander": { "name": "commander", "id": 1508, "mask": "BigInt:512" } + } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2249, + "id": 2354, "tags": ["selection", "ship", "role:transport"] }, { @@ -290812,11 +284500,11 @@ "ttc": 6, "maneuver": 0.15, "active": true, - "currentSpeed": 0.06, - "currentRotary": -1.3322676295501878e-15, + "currentSpeed": 0, + "currentRotary": 0, "state": "maneuver", - "target": 197, - "targetReached": false, + "target": null, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, @@ -290830,8 +284518,7 @@ "origin": "OrderPlanningSystem:auto", "type": "mine", "actions": [ - { "type": "move", "targetId": 197 }, - { "targetFieldId": 197, "targetRockId": null, "type": "mine" } + { "targetFieldId": 197, "targetRockId": 2750, "type": "mine" } ] } ], @@ -290840,10 +284527,11 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 4.994656329639211, - "coord": [12.955344673464745, 10.115251321994409], + "angle": -27.115675506722948, + "coord": [-16.019276219732035, 0.5676922355427964], "sector": 15, - "moved": true + "moved": true, + "mask": "BigInt:2199023255552" }, "render": { "color": 16251995, @@ -290866,7 +284554,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 151, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -290887,7 +284575,7 @@ "engineParts": 0, "food": 0, "fuel": 0, - "fuelium": 0, + "fuelium": 151, "gold": 0, "goldOre": 0, "hullPlates": 0, @@ -290968,15 +284656,15 @@ }, "mining": { "name": "mining", - "buffer": 1, + "buffer": 3, "efficiency": 1, - "entityId": null, + "entityId": 2750, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1520, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1611, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2250, + "cooldowns": { "timers": { "cruise": 0, "mine": 3 } }, + "id": 2355, "tags": ["selection", "ship", "role:mining"] }, { @@ -290988,15 +284676,15 @@ }, "drive": { "acceleration": 0.09, - "rotary": 1.605702911834783, - "cruise": 5.2, - "ttc": 8, - "maneuver": 0.28, + "rotary": 0.22689280275926285, + "cruise": 1, + "ttc": 10, + "maneuver": 0.09, "active": true, - "currentSpeed": 0, - "currentRotary": 0, - "state": "maneuver", - "target": 127, + "currentSpeed": 1, + "currentRotary": -0.08274529406590236, + "state": "cruise", + "target": 1599, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -291007,12 +284695,37 @@ "orders": { "name": "orders", "value": [ + { + "origin": "auto", + "actions": [ + { "type": "move", "targetId": 1599 }, + { "type": "dock", "targetId": 1599 }, + { + "targetId": 1599, + "offer": { + "commodity": "ice", + "initiator": 2356, + "quantity": 680, + "price": 0, + "budget": null, + "allocations": { + "buyer": { "budget": null, "storage": 1 }, + "seller": { "budget": null, "storage": 1 } + }, + "type": "sell", + "factionId": 282 + }, + "type": "trade" + } + ], + "type": "trade" + }, { "origin": "OrderPlanningSystem:auto", "actions": [ { "type": "move", "targetId": 127 }, { "type": "teleport", "targetId": 125 }, - { "type": "move", "targetId": 24556 } + { "type": "move", "targetId": 3967 } ], "type": "move" } @@ -291022,8 +284735,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -11.220675831885895, - "coord": [17.858439820154466, -17.44203768226569], + "angle": -8.837547664686454, + "coord": [-6.800961704313487, -5.1212559166913], "sector": 15, "moved": true }, @@ -291032,15 +284745,43 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "sMin", + "texture": "lMin", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" }, "storage": { - "allocationIdCounter": 20, - "allocations": [], - "max": 32, + "allocationIdCounter": 2, + "allocations": [ + { + "amount": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 680, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "issued": 573, + "type": "outgoing", + "meta": { "tradeId": "1599:2356:sell:573" }, + "id": 1 + } + ], + "max": 680, "availableWares": { "coolant": 0, "drones": 0, @@ -291074,7 +284815,7 @@ "goldOre": 0, "hullPlates": 0, "hydrogen": 0, - "ice": 0, + "ice": 680, "metals": 0, "ore": 0, "silica": 0, @@ -291109,7 +284850,7 @@ }, "dockable": { "name": "dockable", - "size": "small", + "size": "large", "dockedIn": null, "mask": "BigInt:32768" }, @@ -291120,27 +284861,27 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 95, "regen": 0.15, "value": 95 }, - "shield": { "max": 30, "regen": 1.9, "value": 30 }, + "hp": { "max": 830, "regen": 0.2, "value": 830 }, + "shield": { "max": 310, "regen": 6.5, "value": 310 }, "mask": "BigInt:1048576" }, "damage": { - "value": 1, + "value": 3, + "range": 1, "cooldown": 0.3, - "range": 0.95, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "smallMinerA", - "value": "Slate", + "slug": "largeMinerA", + "value": "Large Miner A", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Slate", + "value": "THT Large Miner A", "mask": "BigInt:137438953472" }, "subordinates": { @@ -291150,15 +284891,15 @@ }, "mining": { "name": "mining", - "buffer": 4, - "efficiency": 1, + "buffer": 1.6, + "efficiency": 1.6, "entityId": null, "mask": "BigInt:16777216" }, - "commander": { "name": "commander", "id": 1508, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 1599, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0, "mine": 0 } }, - "id": 2251, + "id": 2356, "tags": ["selection", "ship", "role:mining"] }, { @@ -291176,9 +284917,9 @@ "maneuver": 0.15, "active": true, "currentSpeed": 1.1, - "currentRotary": 6.217248937900877e-15, + "currentRotary": -4.440892098500626e-16, "state": "cruise", - "target": 24772, + "target": 7879, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -291193,8 +284934,8 @@ "type": "patrol", "origin": "auto", "sectorId": 15, - "actions": [{ "type": "move", "targetId": 24772 }], - "clockwise": false + "actions": [{ "type": "move", "targetId": 7879 }], + "clockwise": true } ], "mask": "BigInt:134217728" @@ -291202,8 +284943,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 37.160462521495894, - "coord": [18.42069166237063, -1.0561879526882394], + "angle": -22.55952550542426, + "coord": [25.945111553798565, -10.150742222935182], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -291326,12 +285067,12 @@ }, "subordinates": { "name": "subordinates", - "ids": [2260, 2259], + "ids": [2365, 2364], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2252, + "id": 2357, "tags": ["selection", "ship", "role:military"] }, { @@ -291348,10 +285089,183 @@ "ttc": 3, "maneuver": 0.15, "active": true, - "currentSpeed": 0.0225, - "currentRotary": -3.1086244689504383e-15, + "currentSpeed": 0, + "currentRotary": 1.0122909661567103, "state": "maneuver", - "target": 24777, + "target": 7870, + "targetReached": false, + "name": "drive", + "minimalDistance": 0.01, + "limit": 2000, + "mode": "goto", + "mask": "BigInt:131072" + }, + "orders": { + "name": "orders", + "value": [ + { + "type": "patrol", + "origin": "auto", + "sectorId": 15, + "actions": [{ "type": "move", "targetId": 7870 }], + "clockwise": false + } + ], + "mask": "BigInt:134217728" + }, + "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "position": { + "name": "position", + "angle": 8.844485331217914, + "coord": [5.455900165292044, -29.90703636831471], + "sector": 15, + "moved": true, + "mask": "BigInt:2199023255552" + }, + "render": { + "color": 16251995, + "defaultScale": 0.4, + "name": "render", + "layer": "ship", + "texture": "mMil", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "storage": { + "allocationIdCounter": 1, + "allocations": [], + "max": 80, + "availableWares": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "stored": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "quota": { + "coolant": 0, + "drones": 0, + "electronics": 0, + "engineParts": 0, + "food": 0, + "fuel": 0, + "fuelium": 0, + "gold": 0, + "goldOre": 0, + "hullPlates": 0, + "hydrogen": 0, + "ice": 0, + "metals": 0, + "ore": 0, + "silica": 0, + "silicon": 0, + "superconductors": 0, + "tauMetal": 0, + "water": 0 + }, + "name": "storage", + "mask": "BigInt:35184372088832" + }, + "dockable": { + "name": "dockable", + "size": "medium", + "dockedIn": null, + "mask": "BigInt:32768" + }, + "journal": { + "name": "journal", + "entries": [], + "mask": "BigInt:4194304" + }, + "hitpoints": { + "name": "hitpoints", + "hp": { "max": 540, "regen": 0.2, "value": 540 }, + "shield": { "max": 120, "regen": 6, "value": 120 }, + "mask": "BigInt:1048576" + }, + "damage": { + "value": 13, + "range": 1.4, + "cooldown": 0.3, + "name": "damage", + "targetId": null, + "mask": "BigInt:4096" + }, + "model": { + "name": "model", + "slug": "gunboat", + "value": "Gunboat", + "mask": "BigInt:67108864" + }, + "name": { + "name": "name", + "value": "THT Patrol Leader Gunboat", + "mask": "BigInt:137438953472" + }, + "subordinates": { + "name": "subordinates", + "ids": [2363, 2362], + "mask": "BigInt:4294967296" + } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2358, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "autoOrder": { + "name": "autoOrder", + "default": { "type": "hold" }, + "mask": "BigInt:4" + }, + "drive": { + "acceleration": 0.15, + "rotary": 1.064650843716541, + "cruise": 1.1, + "ttc": 3, + "maneuver": 0.15, + "active": true, + "currentSpeed": 0.7275, + "currentRotary": 3.375077994860476e-14, + "state": "cruise", + "target": 7900, "targetReached": false, "name": "drive", "minimalDistance": 0.01, @@ -291366,8 +285280,8 @@ "type": "patrol", "origin": "auto", "sectorId": 15, - "actions": [{ "type": "move", "targetId": 24777 }], - "clockwise": true + "actions": [{ "type": "move", "targetId": 7900 }], + "clockwise": false } ], "mask": "BigInt:134217728" @@ -291375,8 +285289,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -61.740638666867994, - "coord": [-9.319750859823577, 28.372391128112287], + "angle": 6.753217888539815, + "coord": [14.086723446333659, 14.823662824459271], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -291499,48 +285413,50 @@ }, "subordinates": { "name": "subordinates", - "ids": [2258, 2257], + "ids": [2361, 2360], "mask": "BigInt:4294967296" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2253, + "id": 2359, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "hold" }, + "default": { "type": "escort", "targetId": 2359 }, "mask": "BigInt:4" }, "drive": { - "acceleration": 0.15, - "rotary": 1.064650843716541, - "cruise": 1.1, - "ttc": 3, - "maneuver": 0.15, + "acceleration": 0.2, + "rotary": 2.478367537831948, + "cruise": 3.8, + "ttc": 0.8, + "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": 2.6645352591003757e-15, + "currentSpeed": 0.88, + "currentRotary": -0.06592957877145889, "state": "cruise", - "target": 24808, - "targetReached": false, + "target": 2359, + "targetReached": true, "name": "drive", "minimalDistance": 0.01, "limit": 2000, - "mode": "goto", + "mode": "follow", "mask": "BigInt:131072" }, "orders": { "name": "orders", "value": [ { - "type": "patrol", + "type": "escort", "origin": "auto", - "sectorId": 15, - "actions": [{ "type": "move", "targetId": 24808 }], - "clockwise": false + "targetId": 2359, + "actions": [ + { "type": "move", "targetId": 2359, "ignoreReached": true } + ], + "ordersForSector": 15 } ], "mask": "BigInt:134217728" @@ -291548,8 +285464,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 21.4366498629923, - "coord": [-12.993853534504069, 15.364678591003068], + "angle": -213.1041084359086, + "coord": [13.71589978708253, 15.96965300533807], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -291559,7 +285475,7 @@ "defaultScale": 0.4, "name": "render", "layer": "ship", - "texture": "mMil", + "texture": "sMil", "visible": true, "interactive": false, "mask": "BigInt:4398046511104" @@ -291567,7 +285483,7 @@ "storage": { "allocationIdCounter": 1, "allocations": [], - "max": 80, + "max": 10, "availableWares": { "coolant": 0, "drones": 0, @@ -291636,7 +285552,7 @@ }, "dockable": { "name": "dockable", - "size": "medium", + "size": "small", "dockedIn": null, "mask": "BigInt:32768" }, @@ -291647,57 +285563,58 @@ }, "hitpoints": { "name": "hitpoints", - "hp": { "max": 540, "regen": 0.2, "value": 540 }, - "shield": { "max": 120, "regen": 6, "value": 120 }, + "hp": { "max": 110, "regen": 0.2, "value": 110 }, + "shield": { "max": 35, "regen": 3, "value": 35 }, "mask": "BigInt:1048576" }, "damage": { - "value": 13, - "range": 1.4, - "cooldown": 0.3, + "value": 3, + "range": 1.2, + "cooldown": 0.2, "name": "damage", "targetId": null, "mask": "BigInt:4096" }, "model": { "name": "model", - "slug": "gunboat", - "value": "Gunboat", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Patrol Leader Gunboat", + "value": "THT Dart", "mask": "BigInt:137438953472" }, "subordinates": { "name": "subordinates", - "ids": [2256, 2255], + "ids": [], "mask": "BigInt:4294967296" - } + }, + "commander": { "name": "commander", "id": 2359, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2254, + "id": 2360, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2254 }, + "default": { "type": "escort", "targetId": 2359 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1400000000000001, - "currentRotary": -0.0003697606930517239, + "currentSpeed": 1, + "currentRotary": -0.0727732255352489, "state": "cruise", - "target": 2254, + "target": 2359, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -291711,9 +285628,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2254, + "targetId": 2359, "actions": [ - { "type": "move", "targetId": 2254, "ignoreReached": true } + { "type": "move", "targetId": 2359, "ignoreReached": true } ], "ordersForSector": 15 } @@ -291723,8 +285640,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -211.04101522115008, - "coord": [-14.790949004001522, 12.747893726948773], + "angle": 201.49778276155897, + "coord": [13.644093707297335, 15.524227154609083], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -291836,13 +285753,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Fighter", + "value": "THT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -291850,30 +285767,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2254, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2359, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2255, + "id": 2361, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2254 }, + "default": { "type": "escort", "targetId": 2358 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.52, - "currentRotary": -0.0029221074563308136, - "state": "cruise", - "target": 2254, + "currentSpeed": 0, + "currentRotary": -0.03768713962024828, + "state": "maneuver", + "target": 2358, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -291887,9 +285804,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2254, + "targetId": 2358, "actions": [ - { "type": "move", "targetId": 2254, "ignoreReached": true } + { "type": "move", "targetId": 2358, "ignoreReached": true } ], "ordersForSector": 15 } @@ -291899,8 +285816,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 260.19812658202204, - "coord": [-14.377105986807386, 12.85331869294394], + "angle": -177.40605206977517, + "coord": [5.8310027793458445, -29.71044404526027], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -292012,13 +285929,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Fighter", + "value": "THT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -292026,30 +285943,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2254, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2358, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2256, + "id": 2362, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2253 }, + "default": { "type": "escort", "targetId": 2358 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 0.0225, - "currentRotary": -0.3765847920899166, - "state": "maneuver", - "target": 2253, + "currentSpeed": 0.12, + "currentRotary": 0.25245754223535943, + "state": "warming", + "target": 2358, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -292063,9 +285980,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2253, + "targetId": 2358, "actions": [ - { "type": "move", "targetId": 2253, "ignoreReached": true } + { "type": "move", "targetId": 2358, "ignoreReached": true } ], "ordersForSector": 15 } @@ -292075,8 +285992,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -305.26819319910516, - "coord": [-9.52901509284757, 28.290909655823846], + "angle": 219.77538227143177, + "coord": [5.37968456675179, -29.636550294774903], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -292188,13 +286105,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Fighter", + "value": "THT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -292202,30 +286119,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2253, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2358, "mask": "BigInt:512" } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2257, + "cooldowns": { "timers": { "cruise": 0.8 } }, + "id": 2363, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2253 }, + "default": { "type": "escort", "targetId": 2357 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, "currentSpeed": 0, - "currentRotary": -0.44527182644404917, - "state": "maneuver", - "target": 2253, + "currentRotary": -2.4024814357884274, + "state": "cruise", + "target": 2357, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -292239,9 +286156,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2253, + "targetId": 2357, "actions": [ - { "type": "move", "targetId": 2253, "ignoreReached": true } + { "type": "move", "targetId": 2357, "ignoreReached": true } ], "ordersForSector": 15 } @@ -292251,8 +286168,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": 219.3402293458171, - "coord": [-9.298682554482586, 28.605384069530242], + "angle": -204.60707433313763, + "coord": [25.053119003897706, -11.361572668597699], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -292364,13 +286281,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Fighter", + "value": "THT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -292378,30 +286295,30 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2253, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2357, "mask": "BigInt:512" } }, "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2258, + "id": 2364, "tags": ["selection", "ship", "role:military"] }, { "components": { "autoOrder": { "name": "autoOrder", - "default": { "type": "escort", "targetId": 2252 }, + "default": { "type": "escort", "targetId": 2357 }, "mask": "BigInt:4" }, "drive": { "acceleration": 0.2, "rotary": 2.478367537831948, - "cruise": 1.9, + "cruise": 3.8, "ttc": 0.8, "maneuver": 0.6, "active": true, - "currentSpeed": 1.1, - "currentRotary": -0.12865186765896208, + "currentSpeed": 0, + "currentRotary": 2.4385768656952598, "state": "cruise", - "target": 2252, + "target": 2357, "targetReached": true, "name": "drive", "minimalDistance": 0.01, @@ -292415,9 +286332,9 @@ { "type": "escort", "origin": "auto", - "targetId": 2252, + "targetId": 2357, "actions": [ - { "type": "move", "targetId": 2252, "ignoreReached": true } + { "type": "move", "targetId": 2357, "ignoreReached": true } ], "ordersForSector": 15 } @@ -292427,8 +286344,8 @@ "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, "position": { "name": "position", - "angle": -226.81593722763787, - "coord": [18.80900790040245, -0.8428641005019324], + "angle": 165.92160976011004, + "coord": [24.899571981772468, -12.040832953257809], "sector": 15, "moved": true, "mask": "BigInt:2199023255552" @@ -292540,13 +286457,13 @@ }, "model": { "name": "model", - "slug": "fighter", - "value": "Fighter", + "slug": "dart", + "value": "Dart", "mask": "BigInt:67108864" }, "name": { "name": "name", - "value": "THT Fighter", + "value": "THT Dart", "mask": "BigInt:137438953472" }, "subordinates": { @@ -292554,2771 +286471,3925 @@ "ids": [], "mask": "BigInt:4294967296" }, - "commander": { "name": "commander", "id": 2252, "mask": "BigInt:512" } + "commander": { "name": "commander", "id": 2357, "mask": "BigInt:512" } + }, + "cooldowns": { "timers": { "cruise": 0 } }, + "id": 2365, + "tags": ["selection", "ship", "role:military"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-4.79241928497799, -5.058345014562962], + "angle": 0, + "sector": 15, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 292, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2366, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-1.2173130554973026, 4.811913936368697], + "angle": 0, + "sector": 15, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 293, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2367, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-24.210558460409253, 23.192922840483153], + "angle": 0, + "sector": 15, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 295, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2369, + "tags": ["virtual"] + }, + { + "components": { + "minable": { + "name": "minable", + "commodity": "ice", + "minedById": null, + "resources": 23925.176916634846, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 206, + "mask": "BigInt:549755813888" + }, + "position": { + "name": "position", + "coord": [-16.27422840137396, -4.477792431843497], + "angle": 0, + "sector": 21, + "moved": false, + "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 2370, + "tags": ["asteroid"] + }, + { + "components": { + "minable": { + "name": "minable", + "commodity": "ore", + "minedById": null, + "resources": 1254092.3817262428, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 184, + "mask": "BigInt:549755813888" + }, + "position": { + "name": "position", + "coord": [11.253978396783642, 12.535725402721924], + "angle": 0, + "sector": 5, + "moved": false, + "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 2371, + "tags": ["asteroid"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-3, 21], + "angle": 0, + "sector": 11, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1670, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2372, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-15, 19], + "angle": 0, + "sector": 11, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1671, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2373, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-9, -8], + "angle": 0, + "sector": 11, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1672, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2374, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [9, 24], + "angle": 0, + "sector": 11, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1673, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2375, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [9, 3], + "angle": 0, + "sector": 10, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1674, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2376, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [20, -15], + "angle": 0, + "sector": 10, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1675, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2377, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-23, 5], + "angle": 0, + "sector": 10, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1676, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2378, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-13, 4], + "angle": 0, + "sector": 10, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1677, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2379, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-8, -7], + "angle": 0, + "sector": 4, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1678, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2380, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-1, -23], + "angle": 0, + "sector": 4, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1679, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2381, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-14, -22], + "angle": 0, + "sector": 4, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1680, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2382, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-22, 0], + "angle": 0, + "sector": 4, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1681, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2383, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-14, -22], + "angle": 0, + "sector": 3, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1682, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2384, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [17, 18], + "angle": 0, + "sector": 3, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1683, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2385, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [18, 9], + "angle": 0, + "sector": 3, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1684, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2386, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-21, 11], + "angle": 0, + "sector": 3, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1685, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2387, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [9, 24], + "angle": 0, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1686, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2388, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-17, 1], + "angle": 0, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1687, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2389, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-19, 3], + "angle": 0, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1688, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2390, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-7, 5], + "angle": 0, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1689, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2391, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [16, -6], + "angle": 0, + "sector": 26, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1863, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2396, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-13, 25], + "angle": 0, + "sector": 26, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1864, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2397, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [5, 11], + "angle": 0, + "sector": 26, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1865, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2398, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-6, -25], + "angle": 0, + "sector": 26, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1866, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2399, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [9, -2], + "angle": 0, + "sector": 26, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1867, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2400, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-9, 2], + "angle": 0, + "sector": 26, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1868, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2401, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [18, -5], + "angle": 0, + "sector": 25, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1869, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2402, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [7, -16], + "angle": 0, + "sector": 25, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1870, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2403, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-10, 2], + "angle": 0, + "sector": 25, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1871, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2404, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-15, 4], + "angle": 0, + "sector": 25, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1872, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2405, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-17, 0], + "angle": 0, + "sector": 25, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1873, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2406, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-22, -12], + "angle": 0, + "sector": 25, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1874, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2407, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [1, -10], + "angle": 0, + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1875, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2408, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [16, 0], + "angle": 0, + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1876, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2409, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [19, 4], + "angle": 0, + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1877, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2410, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [19, 14], + "angle": 0, + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1878, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2411, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [3, -9], + "angle": 0, + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1879, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2412, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [20, -13], + "angle": 0, + "sector": 9, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1880, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2413, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-3, 0], + "angle": 0, + "sector": 8, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1881, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2414, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [25, 17], + "angle": 0, + "sector": 8, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1882, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2415, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-5, -15], + "angle": 0, + "sector": 8, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1883, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2416, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [2, 16], + "angle": 0, + "sector": 8, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1884, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2417, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-7, -20], + "angle": 0, + "sector": 8, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1885, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2418, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-14, 10], + "angle": 0, + "sector": 8, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1886, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2419, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [1, 13], + "angle": 0, + "sector": 7, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1887, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2420, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [14, -12], + "angle": 0, + "sector": 7, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1888, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2421, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-19, 15], + "angle": 0, + "sector": 7, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1889, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2422, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [22, 24], + "angle": 0, + "sector": 7, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1890, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2423, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [14, -13], + "angle": 0, + "sector": 7, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1891, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2424, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [13, 11], + "angle": 0, + "sector": 7, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1892, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2425, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-3, 5], + "angle": 0, + "sector": 20, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2019, + "mask": "BigInt:16384" + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2259, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": {} }, + "id": 2439, + "tags": ["virtual"] }, { "components": { - "autoOrder": { - "name": "autoOrder", - "default": { "type": "escort", "targetId": 2252 }, - "mask": "BigInt:4" + "position": { + "name": "position", + "coord": [21, 5], + "angle": 0, + "sector": 20, + "moved": false, + "mask": "BigInt:2199023255552" }, - "drive": { - "acceleration": 0.2, - "rotary": 2.478367537831948, - "cruise": 1.9, - "ttc": 0.8, - "maneuver": 0.6, - "active": true, - "currentSpeed": 1.1, - "currentRotary": -0.05872796953427706, - "state": "cruise", - "target": 2252, - "targetReached": true, - "name": "drive", - "minimalDistance": 0.01, - "limit": 2000, - "mode": "follow", - "mask": "BigInt:131072" + "disposable": { + "name": "disposable", + "owner": 2020, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2440, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [24, 22], + "angle": 0, + "sector": 20, + "moved": false, + "mask": "BigInt:2199023255552" }, - "orders": { - "name": "orders", - "value": [ - { - "type": "escort", - "origin": "auto", - "targetId": 2252, - "actions": [ - { "type": "move", "targetId": 2252, "ignoreReached": true } - ], - "ordersForSector": 15 - } - ], - "mask": "BigInt:134217728" + "disposable": { + "name": "disposable", + "owner": 2021, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2441, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [13, -17], + "angle": 0, + "sector": 20, + "moved": false, + "mask": "BigInt:2199023255552" }, - "owner": { "name": "owner", "id": 282, "mask": "BigInt:274877906944" }, + "disposable": { + "name": "disposable", + "owner": 2022, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2442, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "angle": 263.30846044865956, - "coord": [18.466761070702244, -0.7309912086009368], - "sector": 15, - "moved": true, + "coord": [16, -8], + "angle": 0, + "sector": 20, + "moved": false, "mask": "BigInt:2199023255552" }, - "render": { - "color": 16251995, - "defaultScale": 0.4, - "name": "render", - "layer": "ship", - "texture": "sMil", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" + "disposable": { + "name": "disposable", + "owner": 2023, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2443, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-5, -21], + "angle": 0, + "sector": 20, + "moved": false, + "mask": "BigInt:2199023255552" }, - "storage": { - "allocationIdCounter": 1, - "allocations": [], - "max": 10, - "availableWares": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "stored": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "quota": { - "coolant": 0, - "drones": 0, - "electronics": 0, - "engineParts": 0, - "food": 0, - "fuel": 0, - "fuelium": 0, - "gold": 0, - "goldOre": 0, - "hullPlates": 0, - "hydrogen": 0, - "ice": 0, - "metals": 0, - "ore": 0, - "silica": 0, - "silicon": 0, - "superconductors": 0, - "tauMetal": 0, - "water": 0 - }, - "name": "storage", - "mask": "BigInt:35184372088832" + "disposable": { + "name": "disposable", + "owner": 2024, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2444, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [12, -7], + "angle": 0, + "sector": 20, + "moved": false, + "mask": "BigInt:2199023255552" }, - "dockable": { - "name": "dockable", - "size": "small", - "dockedIn": null, - "mask": "BigInt:32768" + "disposable": { + "name": "disposable", + "owner": 2025, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2445, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [16, -21], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" }, - "journal": { - "name": "journal", - "entries": [], - "mask": "BigInt:4194304" + "disposable": { + "name": "disposable", + "owner": 2026, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2446, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-19, -18], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" }, - "hitpoints": { - "name": "hitpoints", - "hp": { "max": 110, "regen": 0.2, "value": 110 }, - "shield": { "max": 35, "regen": 3, "value": 35 }, - "mask": "BigInt:1048576" + "disposable": { + "name": "disposable", + "owner": 2027, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2447, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-2, 13], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" }, - "damage": { - "value": 3, - "range": 1.2, - "cooldown": 0.2, - "name": "damage", - "targetId": null, - "mask": "BigInt:4096" + "disposable": { + "name": "disposable", + "owner": 2028, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2448, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [20, -16], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" }, - "model": { - "name": "model", - "slug": "fighter", - "value": "Fighter", - "mask": "BigInt:67108864" + "disposable": { + "name": "disposable", + "owner": 2029, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2449, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-6, 22], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" }, - "name": { - "name": "name", - "value": "THT Fighter", - "mask": "BigInt:137438953472" + "disposable": { + "name": "disposable", + "owner": 2030, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2450, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-21, -16], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" }, - "subordinates": { - "name": "subordinates", - "ids": [], - "mask": "BigInt:4294967296" + "disposable": { + "name": "disposable", + "owner": 2031, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2451, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [7, -15], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" }, - "commander": { "name": "commander", "id": 2252, "mask": "BigInt:512" } + "disposable": { + "name": "disposable", + "owner": 2032, + "mask": "BigInt:16384" + } }, - "cooldowns": { "timers": { "cruise": 0 } }, - "id": 2260, - "tags": ["selection", "ship", "role:military"] + "cooldowns": { "timers": {} }, + "id": 2452, + "tags": ["virtual"] }, { "components": { "minable": { "name": "minable", - "commodity": "goldOre", + "commodity": "silica", "minedById": null, - "resources": 154607.78768489152, + "resources": 207988.02502753685, "mask": "BigInt:8388608" }, "parent": { "name": "parent", - "id": 191, + "id": 196, "mask": "BigInt:549755813888" }, "position": { "name": "position", - "coord": [0.03163042647743097, -12.488695344628795], + "coord": [2.1924715269011608, -11.593140705426078], "angle": 0, - "sector": 9, + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" } }, "cooldowns": { "timers": {} }, - "id": 2870, + "id": 2453, "tags": ["asteroid"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 887981.2188739871, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [22, 15], + "angle": 0, + "sector": 23, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 193, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2120, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2454, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [3, -11], + "angle": 0, + "sector": 23, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2121, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2455, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [9.250035199177585, -4.91289999920467], + "coord": [-6, 15], "angle": 0, - "sector": 13, + "sector": 22, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2122, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3067, - "tags": ["asteroid"] + "id": 2456, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": null, - "resources": 312985.421871361, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [-6, -25], + "angle": 0, + "sector": 22, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 181, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2123, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2457, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [20, -10], + "angle": 0, + "sector": 18, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2124, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2458, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [-11.36122933040837, 19.925173727574983], + "coord": [-8, -5], "angle": 0, - "sector": 3, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2125, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3111, - "tags": ["asteroid"] + "id": 2459, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": null, - "resources": 111582.62372495394, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [3, -21], + "angle": 0, + "sector": 17, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 177, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2126, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2460, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-9, -19], + "angle": 0, + "sector": 17, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2127, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2461, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [10.084691477029883, 13.214043683044318], + "coord": [7, 19], "angle": 0, - "sector": 1, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2130, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3160, - "tags": ["asteroid"] + "id": 2464, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [-5, 1], "angle": 0, - "moved": true, - "coord": [0.0166797377019988, -12.735447808836682], - "sector": 9, + "sector": 13, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "goldOre", - "stored": 32, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" + "disposable": { + "name": "disposable", + "owner": 2131, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2465, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-11, 13], + "angle": 0, + "sector": 12, + "moved": false, + "mask": "BigInt:2199023255552" }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" + "disposable": { + "name": "disposable", + "owner": 2132, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2466, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [21, -14], + "angle": 0, + "sector": 12, + "moved": false, + "mask": "BigInt:2199023255552" }, - "creationDate": { - "name": "creationDate", - "date": 144, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 2133, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3236, - "tags": ["collectible", "selection"] + "id": 2467, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": 1763, - "resources": 339800.46728364343, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [-12, 25], + "angle": 0, + "sector": 31, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 190, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2219, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2468, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-3, -10], + "angle": 0, + "sector": 31, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2220, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2469, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [21.94465590801608, 15.513338415042917], + "coord": [-20, 12], "angle": 0, - "sector": 8, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2221, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3340, - "tags": ["asteroid"] + "id": 2470, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": 1571, - "resources": 1491253.6805504342, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [24, 8], + "angle": 0, + "sector": 24, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 180, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2222, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2471, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [0, 15], + "angle": 0, + "sector": 24, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2223, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2472, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [-17.05351869500896, 9.23894114275892], + "coord": [18, -3], "angle": 0, - "sector": 3, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2224, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3493, - "tags": ["asteroid"] + "id": 2473, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": null, - "resources": 141824.80923079024, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [-17, -17], + "angle": 0, + "sector": 29, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 216, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2287, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2483, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [24, -20], + "angle": 0, + "sector": 29, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2288, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2484, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [-12.335200591783288, -21.541319622901725], + "coord": [-23, -10], "angle": 0, "sector": 29, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2289, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3561, - "tags": ["asteroid"] + "id": 2485, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": null, - "resources": 681952.066483982, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [23, -3], + "angle": 0, + "sector": 29, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 195, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2290, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2486, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [14, -10], + "angle": 0, + "sector": 29, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2291, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2487, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [-2.6377717948928225, -6.361715691470223], + "coord": [23, 24], "angle": 0, - "sector": 14, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2292, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3718, - "tags": ["asteroid"] + "id": 2488, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": null, - "resources": 473084.1084441607, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [14, -25], + "angle": 0, + "sector": 16, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 194, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2293, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2489, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [10, 19], + "angle": 0, + "sector": 16, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2294, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2490, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [18.930084679076884, -17.90308410581132], + "coord": [4, -5], "angle": 0, - "sector": 14, + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2295, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3802, - "tags": ["asteroid"] + "id": 2491, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": 1572, - "resources": 337593.76159527927, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [8, -16], + "angle": 0, + "sector": 16, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 179, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 2296, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2492, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [1, -6], + "angle": 0, + "sector": 16, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 2297, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2493, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [17.130130320741852, 25.90072781850546], + "coord": [8, 0], "angle": 0, - "sector": 2, + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2298, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 3804, - "tags": ["asteroid"] + "id": 2494, + "tags": ["virtual"] }, { "components": { "minable": { "name": "minable", "commodity": "fuelium", - "minedById": 1569, - "resources": 491672.70553054387, + "minedById": 1861, + "resources": 427039.0382484951, "mask": "BigInt:8388608" }, "parent": { "name": "parent", - "id": 182, + "id": 186, "mask": "BigInt:549755813888" }, "position": { "name": "position", - "coord": [-11.497212781256199, 1.3201547374197493], + "coord": [-0.3776765006669221, -10.343461081087657], "angle": 0, - "sector": 4, + "sector": 6, "moved": false, "mask": "BigInt:2199023255552" } }, "cooldowns": { "timers": {} }, - "id": 3968, + "id": 2498, "tags": ["asteroid"] }, { "components": { "position": { "name": "position", + "coord": [-18.611386267330765, -4.831413422660924], "angle": 0, - "moved": true, - "coord": [9.905534280556465, 13.237521516334139], - "sector": 1, + "sector": 4, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "goldOre", - "stored": 50, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 207, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1630, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4096, - "tags": ["collectible", "selection"] + "id": 2499, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [-18.527775426883053, -5.564972934912882], "angle": 0, - "moved": true, - "coord": [10.2766421506233, 13.176517074287778], - "sector": 1, + "sector": 4, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "goldOre", - "stored": 46, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 207, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1631, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4097, - "tags": ["collectible", "selection"] + "id": 2500, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": 2169, - "resources": 126405.95307706052, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 215, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-2.7144581698375747, 2.7518198208830364], + "coord": [-20.886815185821135, -25.396163158541277], "angle": 0, - "sector": 29, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1632, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4111, - "tags": ["asteroid"] + "id": 2501, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": 1575, - "resources": 73661.8505474436, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 187, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-26.603931537239628, -2.8201015557884923], + "coord": [-20.442876029392266, -24.133779353814422], "angle": 0, - "sector": 6, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1633, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4154, - "tags": ["asteroid"] + "id": 2502, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": null, - "resources": 131921.72213125, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 189, - "mask": "BigInt:549755813888" + "position": { + "name": "position", + "coord": [-20.617488806757567, -25.453226261833915], + "angle": 0, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 1634, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2503, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [4.742823756622773, -3.1342080510039567], + "coord": [-0.03199832175020356, -23.49846207392511], "angle": 0, - "sector": 7, + "sector": 11, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1636, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4337, - "tags": ["asteroid"] + "id": 2505, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": null, - "resources": 354798.37432406686, - "mask": "BigInt:8388608" + "position": { + "name": "position", + "coord": [17.39223518413751, -19.824920545851246], + "angle": 0, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" }, - "parent": { - "name": "parent", - "id": 197, - "mask": "BigInt:549755813888" + "disposable": { + "name": "disposable", + "owner": 1637, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2506, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [16.58640607429615, -18.948067405273445], + "angle": 0, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" }, + "disposable": { + "name": "disposable", + "owner": 1638, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 2507, + "tags": ["virtual"] + }, + { + "components": { "position": { "name": "position", - "coord": [17.953701508321288, 9.711832614463235], + "coord": [-14.447445982991098, -15.425170450330281], "angle": 0, - "sector": 15, + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1639, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4429, - "tags": ["asteroid"] + "id": 2508, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": 2008, - "resources": 285415.896777405, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 196, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [20.112878055758497, 19.891890520971604], + "coord": [-14.91621835684701, -15.600673595847244], "angle": 0, - "sector": 14, + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1640, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4612, - "tags": ["asteroid"] + "id": 2509, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 34860.684171789755, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 217, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-2.6777855033715223, -3.8432318780246626], + "coord": [-15.1746100945845, -16.506355648270205], "angle": 0, - "sector": 30, + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1641, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4614, - "tags": ["asteroid"] + "id": 2510, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [-5.989855620522955, 3.2069113744122726], "angle": 0, - "moved": true, - "coord": [-12.455554801749578, -21.75933095970533], - "sector": 29, + "sector": 11, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "silica", - "stored": 50, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 243, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1642, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4641, - "tags": ["collectible", "selection"] + "id": 2511, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [-7.49635631382848, -3.6012386958123486], "angle": 0, - "moved": true, - "coord": [-12.526412051222819, -21.465994405882093], - "sector": 29, + "sector": 10, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "silica", - "stored": 46, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 243, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1643, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4642, - "tags": ["collectible", "selection"] + "id": 2512, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": null, - "resources": 295427.87144723523, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 188, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [14.680371104396976, -20.881429010165768], + "coord": [-6.195064680968306, -8.3659737982493], "angle": 0, - "sector": 7, + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1644, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 4725, - "tags": ["asteroid"] + "id": 2513, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [-6.272512136121016, 0.9845857019677755], "angle": 0, - "moved": true, - "coord": [9.048445953518552, -4.6985782875201485], - "sector": 13, + "sector": 3, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "ice", - "stored": 50, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 267, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1645, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5026, - "tags": ["collectible", "selection"] + "id": 2514, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [5.133907061217883, -7.003657988281659], "angle": 0, - "moved": true, - "coord": [9.197035311597286, -4.653008999586658], - "sector": 13, + "sector": 2, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "ice", - "stored": 50, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 267, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1646, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5027, - "tags": ["collectible", "selection"] + "id": 2515, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [5.647807946622516, -4.430507084254984], "angle": 0, - "moved": true, - "coord": [9.149274830267746, -4.816012078150282], - "sector": 13, + "sector": 11, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "ice", - "stored": 50, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 267, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1648, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5028, - "tags": ["collectible", "selection"] + "id": 2517, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [-5.9425593142770925, 5.923574312955436], "angle": 0, - "moved": true, - "coord": [9.061496219195286, -4.64426795132505], - "sector": 13, + "sector": 4, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "ice", - "stored": 50, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 267, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1649, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5029, - "tags": ["collectible", "selection"] + "id": 2518, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", + "coord": [31.05057055098322, 16.04476819377615], "angle": 0, - "moved": true, - "coord": [9.186162360452471, -4.924445523613154], - "sector": 13, + "sector": 4, + "moved": false, "mask": "BigInt:2199023255552" }, - "simpleCommodityStorage": { - "commodity": "ice", - "stored": 10, - "name": "simpleCommodityStorage", - "mask": "BigInt:17592186044416" - }, - "render": { - "color": 16777215, - "defaultScale": 0.32, - "name": "render", - "layer": "collectible", - "texture": "box", - "visible": true, - "interactive": false, - "mask": "BigInt:4398046511104" - }, - "creationDate": { - "name": "creationDate", - "date": 267, - "mask": "BigInt:2048" + "disposable": { + "name": "disposable", + "owner": 1650, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5030, - "tags": ["collectible", "selection"] + "id": 2519, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": 1767, - "resources": 604671.7363394051, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 186, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [3.0213417743952555, 5.021008246652261], + "coord": [5.982976606958796, -7.630148883325971], "angle": 0, - "sector": 6, + "sector": 3, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1651, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5825, - "tags": ["asteroid"] + "id": 2520, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 10293.954573958545, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 221, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [11.79095898788869, -4.550861453140527], + "coord": [5.890376951101185, 13.273464887745991], "angle": 0, - "sector": 32, + "sector": 3, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1652, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5892, - "tags": ["asteroid"] + "id": 2521, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": null, - "resources": 104505.71812371325, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 220, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [7.197178850047987, 4.904395102027667], + "coord": [-20.010590836739336, -3.7357897568258553], "angle": 0, - "sector": 31, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1653, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 5958, - "tags": ["asteroid"] + "id": 2522, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": 1903, - "resources": 996054.2881735797, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 207, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-5.67534464939149, -7.422527301458393], + "coord": [-4.27125917442999, 8.10323490936679], "angle": 0, - "sector": 21, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1654, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6020, - "tags": ["asteroid"] + "id": 2523, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": 1909, - "resources": 708669.6433216139, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 201, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-11.811377894095228, 15.758794149790084], + "coord": [-12.264267813143423, 23.315322048790478], "angle": 0, - "sector": 19, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1656, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6041, - "tags": ["asteroid"] + "id": 2525, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": 1761, - "resources": 388892.15508167085, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 211, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-9.82452890495667, -2.04105782825041], + "coord": [-12.63104167240655, 22.502774732092927], "angle": 0, - "sector": 25, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1657, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6102, - "tags": ["asteroid"] + "id": 2526, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": 2006, - "resources": 27434.184073990466, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 199, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [12.870442656538222, 22.713988847039627], + "coord": [-1.4421548928800476, -4.082190729955709], "angle": 0, - "sector": 18, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1766, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6174, - "tags": ["asteroid"] + "id": 2527, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": 1910, - "resources": 158509.10485767355, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 204, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [6.16570518522488, -6.180306723565797], + "coord": [-2.6724292483211167, -2.859474016459596], "angle": 0, - "sector": 21, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1767, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6319, - "tags": ["asteroid"] + "id": 2528, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": null, - "resources": 145003.78505870307, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 205, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-18.267127054777266, 27.873536889427086], + "coord": [0.175990471476829, -16.011317951374796], "angle": 0, - "sector": 21, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1768, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6378, - "tags": ["asteroid"] + "id": 2529, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": 2170, - "resources": 213768.27980789173, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 214, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [3.4852634977862245, -1.4297097503357197], + "coord": [-18.10645074772187, -0.5656600210734352], "angle": 0, - "sector": 29, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1770, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6451, - "tags": ["asteroid"] + "id": 2531, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": null, - "resources": 15645.466094364994, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 181, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-25.16955645748264, 24.80226900265624], + "coord": [-18.441797722327014, 0.07055221444550219], "angle": 0, - "sector": 3, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1771, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6458, - "tags": ["asteroid"] + "id": 2532, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": null, - "resources": 7710.434474081843, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 191, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [4.1759552149402746, -12.185434643301338], + "coord": [-18.03620129489859, -0.6143891327407275], "angle": 0, - "sector": 9, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1772, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6459, - "tags": ["asteroid"] + "id": 2533, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 15853.61741568506, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 190, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [12.33649571275075, 4.9284748314351345], + "coord": [-19.289256917088743, -0.15295185756125584], "angle": 0, - "sector": 8, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1773, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6463, - "tags": ["asteroid"] + "id": 2534, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 47231.94998586378, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 193, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [10.46590084309904, 3.733225537983653], + "coord": [-20.363037901781276, 10.34510975393746], "angle": 0, - "sector": 13, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1774, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6468, - "tags": ["asteroid"] + "id": 2535, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": null, - "resources": 4260.236330737546, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 177, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [5.0579138194364655, 14.489380083276705], + "coord": [-19.16291586405353, 10.102034596408823], "angle": 0, - "sector": 1, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1775, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6473, - "tags": ["asteroid"] + "id": 2536, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": null, - "resources": 7133.1175846566375, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 216, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-11.174694222901937, -34.45122936467612], + "coord": [13.031406902089943, 2.383941176295211], "angle": 0, - "sector": 29, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1776, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6474, - "tags": ["asteroid"] + "id": 2537, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": null, - "resources": 505872.08454337943, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 219, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [29.544954049144703, 11.219013430267614], + "coord": [13.328656858856915, 3.991467354968373], "angle": 0, - "sector": 31, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1777, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6482, - "tags": ["asteroid"] + "id": 2538, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 27833.23868567956, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 218, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [1.8720492258197112, -14.320845349931856], + "coord": [-22.878256320559043, 13.794612372836168], "angle": 0, - "sector": 31, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1778, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6483, - "tags": ["asteroid"] + "id": 2539, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": 2007, - "resources": 443574.49597071466, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 198, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-4.555281213713711, 27.69114829752114], + "coord": [-23.331292927338943, 14.840205962470996], "angle": 0, - "sector": 18, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1779, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6712, - "tags": ["asteroid"] + "id": 2540, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 3608.240533782867, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 187, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-25.428386701986657, -2.3640514898139564], + "coord": [-23.018043646533624, 14.670546116471957], "angle": 0, - "sector": 6, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1780, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6722, - "tags": ["asteroid"] + "id": 2541, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": 1568, - "resources": 118886.52176501568, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 183, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [22.42948614272591, 12.12690635708357], + "coord": [-23.841984064978092, 15.226364400314166], "angle": 0, - "sector": 4, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1781, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6865, - "tags": ["asteroid"] + "id": 2542, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": 1904, - "resources": 26688.700660200022, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 206, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [25.431557664518365, -14.259552707860806], + "coord": [-2.205688664102277, -12.043254686440175], "angle": 0, - "sector": 21, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1782, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6885, - "tags": ["asteroid"] + "id": 2543, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "silica", - "minedById": 2101, - "resources": 286335.57542791904, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 185, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [24.23324666321552, 5.147210188772594], + "coord": [-11.90794292013474, -8.828006074406323], "angle": 0, - "sector": 5, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1785, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6903, - "tags": ["asteroid"] + "id": 2546, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": 2100, - "resources": 712739.491528447, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 209, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [5.4324952143818255, -29.422357531476997], + "coord": [-12.110028142186769, -7.976901307403807], "angle": 0, - "sector": 24, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1786, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 6970, - "tags": ["asteroid"] + "id": 2547, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": 1908, - "resources": 273332.3180356799, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 202, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-11.47207932718472, 24.943838792954082], + "coord": [-10.81728821296768, -8.64157747440059], "angle": 0, - "sector": 20, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1787, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 7073, - "tags": ["asteroid"] + "id": 2548, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": 1567, - "resources": 568828.7428204617, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 192, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-9.73020569381041, -6.020366564988605], + "coord": [19.684853251250026, -8.540655865204982], "angle": 0, - "sector": 11, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1793, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 7277, - "tags": ["asteroid"] + "id": 2554, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "fuelium", - "minedById": 1906, - "resources": 6705.709418113651, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 204, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [3.372225391785973, -1.2440080682959689], + "coord": [20.036465494600996, -9.66165699131087], "angle": 0, - "sector": 21, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1794, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 7298, - "tags": ["asteroid"] + "id": 2555, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 733431.4193851687, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 212, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [21.879974551357797, 0.9621334886092594], + "coord": [-13.850217219262177, 12.047598657815058], "angle": 0, - "sector": 27, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1795, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 7337, - "tags": ["asteroid"] + "id": 2556, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 97732.44231190535, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 203, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-4.73198607046706, 8.008112963169555], + "coord": [-12.539069978272599, 12.220363630422353], "angle": 0, - "sector": 20, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1796, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 7403, - "tags": ["asteroid"] + "id": 2557, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": null, - "resources": 75187.36577413816, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 180, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-3.3096511147365257, 10.543330747995746], + "coord": [-12.078151104259033, -5.1684763097208215], "angle": 0, - "sector": 3, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1798, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 7866, - "tags": ["asteroid"] + "id": 2559, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": 1911, - "resources": 2641.208772363423, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 203, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-3.2013277023639675, 3.840277187709833], + "coord": [14.040780586780263, 5.257165064472503], "angle": 0, - "sector": 20, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1799, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 9297, - "tags": ["asteroid"] + "id": 2560, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": 1573, - "resources": 180578.7059469391, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 178, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [18.656958883600442, -16.618411618093134], + "coord": [14.073847639783262, 5.119413764456944], "angle": 0, - "sector": 2, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1800, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 10091, - "tags": ["asteroid"] + "id": 2561, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ore", - "minedById": 2102, - "resources": 2901739.830343481, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 184, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-4.203572456468853, -11.528528865041764], + "coord": [13.070509016776677, 5.635739131759132], "angle": 0, - "sector": 5, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1801, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 10455, - "tags": ["asteroid"] + "id": 2562, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "goldOre", - "minedById": 2099, - "resources": 902850.8320642953, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 210, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [-15.24918360969588, 6.0295221750761385], + "coord": [12.491217939984132, 6.426935422514474], "angle": 0, - "sector": 24, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1802, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 11138, - "tags": ["asteroid"] + "id": 2563, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": null, - "resources": 859.5948771747856, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 221, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [10.010907162155666, -6.148641569318523], + "coord": [14.017523336766535, 5.1288576527252925], "angle": 0, - "sector": 32, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1803, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 11591, - "tags": ["asteroid"] + "id": 2564, + "tags": ["virtual"] }, { "components": { - "minable": { - "name": "minable", - "commodity": "ice", - "minedById": 2103, - "resources": 6667.253290771347, - "mask": "BigInt:8388608" - }, - "parent": { - "name": "parent", - "id": 218, - "mask": "BigInt:549755813888" - }, "position": { "name": "position", - "coord": [3.503063142314225, -10.906189028661192], + "coord": [15.578318282565698, -12.730609653824395], "angle": 0, - "sector": 31, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1804, + "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 22608, - "tags": ["asteroid"] + "id": 2565, + "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-0.4244992927248644, -22.318060305569112], + "coord": [15.956508180002055, -11.81376202326138], "angle": 0, - "sector": 24, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2088, + "owner": 1805, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 23810, + "id": 2566, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [5.511536146190118, -2.555871757721943], + "coord": [15.890030714341082, -13.08592636512929], "angle": 0, - "sector": 29, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2171, + "owner": 1806, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24110, + "id": 2567, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [9.207675812662986, -26.255005398467794], + "coord": [16.91729843519216, -12.466497748226342], "angle": 0, - "sector": 7, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1753, + "owner": 1807, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24551, + "id": 2568, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [17.033762957398682, -16.686645049878734], + "coord": [16.603327023099173, -12.46695819186426], "angle": 0, - "sector": 15, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2251, + "owner": 1808, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24556, + "id": 2569, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-24.309581828324056, -10.522436469062237], + "coord": [19.883818843824113, -7.728457273332646], "angle": 0, - "sector": 11, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1547, + "owner": 1809, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24628, + "id": 2570, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-30.706088139767765, 7.48845070389388], + "coord": [21.11788428327332, -6.9778138510516206], "angle": 0, - "sector": 16, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2188, + "owner": 1810, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24713, + "id": 2571, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-3.1489089999854354, -12.647368476377107], + "coord": [21.463837712220496, -7.002678716744872], "angle": 0, - "sector": 16, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2135, + "owner": 1811, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24720, + "id": 2572, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-2.0027293377159188, -32.45917900348534], + "coord": [20.895643904753495, -8.243378540743821], "angle": 0, - "sector": 10, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1583, + "owner": 1812, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24727, + "id": 2573, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-3.269133174025128, -12.799809152472232], + "coord": [18.020842498553048, -11.540774725602654], "angle": 0, - "sector": 16, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2138, + "owner": 1813, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24734, + "id": 2574, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [16.533284074519017, -27.792996024685625], + "coord": [16.85840053144431, -11.933144665876679], "angle": 0, - "sector": 4, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1584, + "owner": 1814, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24738, + "id": 2575, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-17.66521628497346, -5.811525144841244], + "coord": [11.340664621901638, 5.375411096213071], "angle": 0, - "sector": 6, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1802, + "owner": 1815, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24740, + "id": 2576, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [28.168310714183736, -14.008874025078857], + "coord": [10.692952561310351, 5.197319739302771], "angle": 0, - "sector": 5, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2112, + "owner": 1816, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24742, + "id": 2577, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-14.588616204999278, -22.14277942582183], + "coord": [12.610767140416941, 4.611281054143544], "angle": 0, - "sector": 6, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1803, + "owner": 1817, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24745, + "id": 2578, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-5.020740751880836, -25.737676704816767], + "coord": [12.070409736307358, 6.15475277757291], "angle": 0, - "sector": 3, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1588, + "owner": 1818, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24747, + "id": 2579, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [7.34574023203758, 26.197906679769982], + "coord": [12.129638367894959, -24.141291369971825], "angle": 0, - "sector": 23, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2013, + "owner": 1819, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24748, + "id": 2580, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [23.190186475692865, -3.900722895906034], + "coord": [11.793186786115589, -25.565337382150517], "angle": 0, - "sector": 17, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2020, + "owner": 1820, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24749, + "id": 2581, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-18.29928204183841, -7.647380868614766], + "coord": [11.500167633048132, -25.297882817377126], "angle": 0, - "sector": 16, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2185, + "owner": 1821, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24750, + "id": 2582, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [17.163702235814544, -4.5518432610696], + "coord": [11.463799376529282, -24.030165082836138], "angle": 0, - "sector": 14, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2009, + "owner": 1822, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24754, + "id": 2583, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-9.91671104890523, 26.728969061739043], + "coord": [11.4255016631393, -25.39512740316536], "angle": 0, - "sector": 16, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2189, + "owner": 1823, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24758, + "id": 2584, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-14.594326623639677, -16.791132119598178], + "coord": [5.568273934472721, -25.063439524415614], "angle": 0, - "sector": 9, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1786, + "owner": 1824, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24760, + "id": 2585, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-16.635008482138552, 12.667138875914548], + "coord": [6.281640848742198, -23.765894405612503], "angle": 0, - "sector": 8, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1789, + "owner": 1825, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24761, + "id": 2586, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [22.313604043707063, 19.395626133496076], + "coord": [7.048376620760237, 12.744623287659756], "angle": 0, - "sector": 20, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1919, + "owner": 1826, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24762, + "id": 2587, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [11.525116383538911, -21.70398342800678], + "coord": [8.186780715265296, 13.6147278635295], "angle": 0, - "sector": 23, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2014, + "owner": 1827, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24764, + "id": 2588, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-24.654820914105116, 7.451199514201408], + "coord": [7.5944102257192645, 13.122494215072134], "angle": 0, - "sector": 24, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2108, + "owner": 1828, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24765, + "id": 2589, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-9.154131949742519, 20.56083694162975], + "coord": [6.935556317117124, 13.268275762093614], "angle": 0, - "sector": 32, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2175, + "owner": 1829, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24766, + "id": 2590, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [19.790976508741192, 24.06783195366624], + "coord": [7.465012569397666, 12.479080792046298], "angle": 0, - "sector": 8, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1792, + "owner": 1830, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24769, + "id": 2591, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [22.316835392056618, 11.934354442616605], + "coord": [-1.0292973537698349, 11.904226412831909], "angle": 0, - "sector": 14, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2022, + "owner": 1835, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24771, + "id": 2596, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [17.713556831545993, -2.2394888540881492], + "coord": [-0.13830310558951142, 11.661380656590751], "angle": 0, - "sector": 15, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2252, + "owner": 1836, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24772, + "id": 2597, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-9.165580152618205, 28.292210093374813], + "coord": [7.472237477470424, -9.198209531803274], "angle": 0, - "sector": 15, + "sector": 26, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2253, + "owner": 1837, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24777, + "id": 2598, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [18.044435686178172, -8.771439951074088], + "coord": [-6.395168430707363, 8.30846153974087], "angle": 0, - "sector": 2, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1594, + "owner": 1838, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24778, + "id": 2599, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [13.896407174203816, -10.467261999420217], + "coord": [-1.7533575165519573, 5.729330478708387], "angle": 0, - "sector": 26, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1774, + "owner": 1839, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24779, + "id": 2600, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [9.677998804823352, -26.374950603065624], + "coord": [-7.241034206922666, -8.452354119016972], "angle": 0, - "sector": 6, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1801, + "owner": 1840, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24780, + "id": 2601, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-9.933966323649557, 13.529984405888712], + "coord": [4.001511816145291, 3.218847844737328], "angle": 0, - "sector": 22, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2015, + "owner": 1841, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24782, + "id": 2602, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [26.53360208576195, 6.2186553129802], + "coord": [-10.507163092230613, 6.210117061181039], "angle": 0, - "sector": 29, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2182, + "owner": 1843, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24783, + "id": 2604, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [10.844882960512923, -21.507704310296607], + "coord": [17.617525131113783, -0.6236020414859929], "angle": 0, - "sector": 11, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1576, + "owner": 1844, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24784, + "id": 2605, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-28.7784014479175, 2.5376346856756857], + "coord": [-0.8982572723891228, 7.884898207665796], "angle": 0, - "sector": 14, + "sector": 8, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2021, + "owner": 1845, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24787, + "id": 2606, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-10.342490663879794, -6.738750904447698], + "coord": [-2.848853062193089, 0.3956323362168371], "angle": 0, - "sector": 29, + "sector": 7, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2161, + "owner": 1846, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24793, + "id": 2607, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-2.563865320003473, 19.553583907798643], + "coord": [-12.183322177104749, -8.448661511127758], "angle": 0, - "sector": 25, + "sector": 9, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1776, + "owner": 1850, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24795, + "id": 2611, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [13.37633121995193, -21.967528647861204], + "coord": [-12.379135970459185, -8.30429702945752], "angle": 0, "sector": 9, "moved": false, @@ -295326,879 +290397,879 @@ }, "disposable": { "name": "disposable", - "owner": 1783, + "owner": 1851, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24796, + "id": 2612, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-18.080548653097424, -10.496257624754579], + "coord": [19.144000157941512, -20.988053027441932], "angle": 0, - "sector": 7, + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1797, + "owner": 1971, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24797, + "id": 2613, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-20.03801243515404, 24.45544504718249], + "coord": [18.435902742932534, -21.977730203473428], "angle": 0, - "sector": 18, + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2018, + "owner": 1972, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24799, + "id": 2614, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [24.895992589055844, -13.64829895747001], + "coord": [10.968928457576599, -8.09228146377642], "angle": 0, - "sector": 32, + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2177, + "owner": 1979, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24800, + "id": 2621, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-16.244354919675438, 11.712992816393651], + "coord": [11.078009085285576, -6.404851310157163], "angle": 0, - "sector": 7, + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1795, + "owner": 1980, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24801, + "id": 2622, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [13.586992257562882, -28.591989713628564], + "coord": [6.0865350721871465, 8.005282902096404], "angle": 0, - "sector": 6, + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1804, + "owner": 1988, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24802, + "id": 2630, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-10.88148316959137, -30.28804911579868], + "coord": [-5.3319995555909525, -5.816924039175264], "angle": 0, - "sector": 22, + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2016, + "owner": 1989, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24803, + "id": 2631, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-1.5300593979501367, -30.124000303978242], + "coord": [-16.9854242385477, 11.272603110505838], "angle": 0, - "sector": 31, + "sector": 20, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2104, + "owner": 1995, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24804, + "id": 2637, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [30.83038195199983, 11.077341088788796], + "coord": [-7.532232779606875, 9.355138180378828], "angle": 0, - "sector": 32, + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2176, + "owner": 1996, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24805, + "id": 2638, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-0.7968034373274901, 29.989008213122588], + "coord": [4.336163441112904, 18.731485707928584], "angle": 0, - "sector": 29, + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2179, + "owner": 1997, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24806, + "id": 2639, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-18.088482886640893, 2.9468079647608425], + "coord": [7.694686249327911, -22.251868791655976], "angle": 0, - "sector": 29, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2180, + "owner": 2075, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24807, + "id": 2642, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-12.60017998784545, 16.000341157020337], + "coord": [6.599705271134753, -23.347220055526424], "angle": 0, - "sector": 15, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2254, + "owner": 2076, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24808, + "id": 2643, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-17.409319477924548, -6.419159392954388], + "coord": [7.505809885081579, -22.004933981543445], "angle": 0, - "sector": 11, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1577, + "owner": 2077, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24809, + "id": 2644, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-11.168329793595733, -29.944660944935116], + "coord": [-22.02201365072828, -7.02678293964734], "angle": 0, - "sector": 4, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1587, + "owner": 2078, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24810, + "id": 2645, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-20.970931805025405, -18.36186408536201], + "coord": [-20.854292592694453, -7.11998227410112], "angle": 0, - "sector": 1, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1599, + "owner": 2079, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24811, + "id": 2646, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [19.069449443243833, -18.018965923208874], + "coord": [9.690569073548827, -22.52122369147046], "angle": 0, - "sector": 21, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1912, + "owner": 2080, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24812, + "id": 2647, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-9.18386380814627, -19.654997440414977], + "coord": [10.334236518102648, -23.23008340948197], "angle": 0, - "sector": 11, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1541, + "owner": 2081, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24813, + "id": 2648, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [23.504439977313844, -6.189562413087427], + "coord": [-13.465778989806443, 0.025330302280075156], "angle": 0, - "sector": 8, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1768, + "owner": 2082, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24814, + "id": 2649, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [24.17033659355695, -11.575367445775353], + "coord": [-13.953552539948761, 0.7672801690332589], "angle": 0, - "sector": 11, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1579, + "owner": 2083, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24818, + "id": 2650, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-10.850539558137386, 15.097325515198959], + "coord": [-14.54928266051412, 1.4047877055073936], "angle": 0, - "sector": 26, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1771, + "owner": 2084, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24819, + "id": 2651, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [17.945614810206962, -26.95167736042122], + "coord": [15.70920055666838, 18.482681870234547], "angle": 0, - "sector": 7, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1798, + "owner": 2085, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24820, + "id": 2652, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-23.674682891007485, -3.8603816081692957], + "coord": [15.676834931626681, 19.515195141106847], "angle": 0, - "sector": 21, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1913, + "owner": 2086, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24821, + "id": 2653, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [26.636386221691993, 1.720190715331723], + "coord": [-20.02633659373339, -7.456869927295283], "angle": 0, - "sector": 21, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1915, + "owner": 2090, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24822, + "id": 2657, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-16.699550513994435, 23.226224079646308], + "coord": [-20.71325880951335, -7.793896315073059], "angle": 0, - "sector": 19, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1926, + "owner": 2091, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24824, + "id": 2658, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [24.08912589575111, -4.093194185125419], + "coord": [-19.94250916221836, -9.295318690088285], "angle": 0, - "sector": 19, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1928, + "owner": 2092, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24825, + "id": 2659, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-5.874842029033792, -27.4672391181631], + "coord": [-1.9206717890443117, -7.5471207636887705], "angle": 0, - "sector": 2, + "sector": 23, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1593, + "owner": 2095, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24826, + "id": 2662, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-20.560699378945117, 22.627871217397516], + "coord": [2.317352936392978, -5.60271144148929], "angle": 0, - "sector": 26, + "sector": 22, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1770, + "owner": 2096, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24827, + "id": 2663, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-15.305128412886138, -7.6079317420013295], + "coord": [2.720118343719369, -9.243420478135883], "angle": 0, - "sector": 26, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1773, + "owner": 2097, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24828, + "id": 2664, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-18.533766077775127, 3.2977978498300007], + "coord": [3.532023233878979, 8.821805356535165], "angle": 0, - "sector": 16, + "sector": 17, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2187, + "owner": 2098, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24829, + "id": 2665, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-23.853888030737842, 3.1005150321029866], + "coord": [1.3269836168352755, -3.281687762050977], "angle": 0, - "sector": 4, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1586, + "owner": 2100, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24830, + "id": 2667, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-16.672898922262455, 25.803266439413857], + "coord": [9.184435397775973, -2.2046975442243397], "angle": 0, - "sector": 17, + "sector": 12, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2019, + "owner": 2101, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24831, + "id": 2668, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-20.38621911898026, -15.138740708993668], + "coord": [3.4171217211326788, -7.342210749110269], "angle": 0, - "sector": 12, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2025, + "owner": 2102, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24832, + "id": 2669, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-9.349255127487375, -4.431929239799315], + "coord": [33.1160578955312, 1.3770228315223894], "angle": 0, - "sector": 11, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1548, + "owner": 2103, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24833, + "id": 2670, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-2.5159413117694625, 4.037331590476798], + "coord": [6.082567933935437, -0.707203663126531], "angle": 0, - "sector": 25, + "sector": 13, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1749, + "owner": 2107, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24835, + "id": 2674, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-22.425247717502916, -7.240588867138875], + "coord": [-23.309138666093386, 11.152826323477868], "angle": 0, - "sector": 14, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2001, + "owner": 2108, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24836, + "id": 2675, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-22.917241892023178, -7.72238074850498], + "coord": [-22.82650047844694, 10.127383607231735], "angle": 0, - "sector": 14, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2002, + "owner": 2109, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24837, + "id": 2676, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-6.54617918199535, 17.443102416031763], + "coord": [-23.37493469392847, 3.0734023727856616], "angle": 0, - "sector": 29, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2146, + "owner": 2181, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24838, + "id": 2682, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [4.357518859245771, 2.8085856060676155], + "coord": [16.678618395105524, 8.812100745328554], "angle": 0, - "sector": 32, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2155, + "owner": 2191, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24839, + "id": 2692, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [7.833554718620917, 9.018805151292916], + "coord": [18.20793143319927, 7.41110876905715], "angle": 0, - "sector": 15, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2247, + "owner": 2192, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24840, + "id": 2693, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [21.80894691805703, 22.652110304244292], + "coord": [-3.0726211124179446, -9.62156649857172], "angle": 0, - "sector": 3, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1591, + "owner": 2194, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24841, + "id": 2695, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-15.759672578903706, 7.663936342939145], + "coord": [-3.2781657766226098, -10.84940995425719], "angle": 0, - "sector": 26, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1769, + "owner": 2195, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24842, + "id": 2696, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-26.37457689143544, 16.456078102918035], + "coord": [-3.350063504849591, -8.878335235432605], "angle": 0, - "sector": 25, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1780, + "owner": 2196, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24843, + "id": 2697, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [20.738607223828183, -10.172623169570832], + "coord": [0.5106041145946114, -2.910624349893941], "angle": 0, - "sector": 8, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1791, + "owner": 2197, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24844, + "id": 2698, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-4.649029374701437, -24.506245744093636], + "coord": [-5.853405378705653, -6.389245830697345], "angle": 0, - "sector": 13, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2024, + "owner": 2199, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24845, + "id": 2700, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [20.485888143197208, -6.21494866895353], + "coord": [7.443367172786603, 19.56512791003551], "angle": 0, "sector": 31, "moved": false, @@ -296206,219 +291277,219 @@ }, "disposable": { "name": "disposable", - "owner": 2105, + "owner": 2200, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24846, + "id": 2701, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-5.366641275016668, 28.34781671903954], + "coord": [4.407170014429748, 2.5873457247365312], "angle": 0, - "sector": 2, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1595, + "owner": 2201, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24847, + "id": 2702, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [17.168326380147796, -6.0768817521689495], + "coord": [3.710034372058694, -11.162143320517046], "angle": 0, - "sector": 9, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1781, + "owner": 2202, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24848, + "id": 2703, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-12.604962806500932, 24.853971267250518], + "coord": [11.707980437184986, 2.7930655220433285], "angle": 0, - "sector": 19, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1927, + "owner": 2203, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24849, + "id": 2704, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [2.708086976861675, -32.85439884856419], + "coord": [-13.858401872793944, -6.827555287602291], "angle": 0, - "sector": 32, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2172, + "owner": 2206, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24850, + "id": 2707, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [18.04330118205573, -3.9064754744390897], + "coord": [-13.739488348956208, -7.768253986687173], "angle": 0, - "sector": 29, + "sector": 24, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2183, + "owner": 2207, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24851, + "id": 2708, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-20.176499848135702, 10.670155144305257], + "coord": [-16.191278813083866, 14.415140153100062], "angle": 0, - "sector": 10, + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1581, + "owner": 2246, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24852, + "id": 2709, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-6.484712596016604, -29.82251008672799], + "coord": [-14.733078164235433, 14.557123794473382], "angle": 0, - "sector": 1, + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1598, + "owner": 2247, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24853, + "id": 2710, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [14.415233809570998, 20.55386684505664], + "coord": [-16.240119245351785, 14.569449667360141], "angle": 0, - "sector": 19, + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1931, + "owner": 2248, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24854, + "id": 2711, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-23.863676834908123, 5.507210139227112], + "coord": [-14.990753274215098, 12.893641317318792], "angle": 0, - "sector": 19, + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1932, + "owner": 2249, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24855, + "id": 2712, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [4.79171409335946, -18.41493542197892], + "coord": [-0.8130862746844476, 21.12246722365403], "angle": 0, - "sector": 32, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2173, + "owner": 2252, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24856, + "id": 2715, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [13.846399650460432, 12.0458752317484], + "coord": [-1.7042235670667352, 22.045654027793276], "angle": 0, "sector": 29, "moved": false, @@ -296426,759 +291497,1075 @@ }, "disposable": { "name": "disposable", - "owner": 2178, + "owner": 2253, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24857, + "id": 2716, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-19.919247629086023, 14.817034450054924], + "coord": [-0.4214302296608299, 21.105190161226098], "angle": 0, - "sector": 16, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2184, + "owner": 2254, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24858, + "id": 2717, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-13.562893681428909, 17.97942914488265], + "coord": [-1.3724466700825553, 22.070544235022556], "angle": 0, - "sector": 15, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 292, + "owner": 2255, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24859, + "id": 2718, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-8.835560500177875, 0.14028768485955923], + "coord": [11.444613604732037, 6.488412616266508], "angle": 0, - "sector": 4, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1550, + "owner": 2258, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24860, + "id": 2721, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-17.074870359686532, -23.303171199134646], + "coord": [13.115794686470677, 6.583436881991638], "angle": 0, - "sector": 10, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1562, + "owner": 2259, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24861, + "id": 2722, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [0.8306726970390177, -0.7876686572866964], + "coord": [13.307726571796344, 6.538523092351536], "angle": 0, - "sector": 7, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1764, + "owner": 2260, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24862, + "id": 2723, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [17.1217765398308, -19.184949749611803], + "coord": [13.027985748317, 6.14811096039387], "angle": 0, - "sector": 13, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2000, + "owner": 2261, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24863, + "id": 2724, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-12.291064796105516, 23.182240443398857], + "coord": [-4.243965087538882, -22.619913606216194], "angle": 0, - "sector": 14, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2003, + "owner": 2262, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24864, + "id": 2725, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-13.08924811709805, 22.5822872351639], + "coord": [-5.440174558231115, -21.46699328141233], "angle": 0, - "sector": 14, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2004, + "owner": 2263, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24865, + "id": 2726, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [4.099757478817737, 6.458548639425219], + "coord": [-7.249016127111101, -7.629321949958696], "angle": 0, - "sector": 31, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2084, + "owner": 2265, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24866, + "id": 2728, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [6.903204460191456, -2.8036054536924016], + "coord": [-1.0712325537816245, 2.648551008186375], "angle": 0, - "sector": 29, + "sector": 16, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2162, + "owner": 2266, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24868, + "id": 2729, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-12.049534675788548, -16.241537202852157], + "coord": [30.899623730756197, -16.106447641704378], "angle": 0, - "sector": 25, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1777, + "owner": 2268, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24869, + "id": 2731, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [10.527726739806468, -20.8593461715644], + "coord": [3.567110106216605, 33.18376948069132], "angle": 0, - "sector": 8, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1790, + "owner": 2269, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24870, + "id": 2732, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-15.295098020894208, -8.0790434538826], + "coord": [-28.324050653955737, 3.159959221900563], "angle": 0, - "sector": 20, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1925, + "owner": 2270, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24871, + "id": 2733, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-15.426075288343009, -19.22553693325129], + "coord": [-23.947702669803242, 19.6237738114001], "angle": 0, - "sector": 19, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1930, + "owner": 2271, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24872, + "id": 2734, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-20.55739320111838, -4.933512059916124], + "coord": [-24.056537498284936, 20.229889469251585], "angle": 0, - "sector": 11, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1578, + "owner": 2272, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24873, + "id": 2735, "tags": ["virtual"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "ice", + "minedById": null, + "resources": 7634.186159561445, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 221, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [-13.517287567994645, 16.05868458654365], + "coord": [0.7060792377403431, -2.3936619973920674], "angle": 0, - "sector": 25, + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" - }, - "disposable": { - "name": "disposable", - "owner": 1775, - "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24874, - "tags": ["virtual"] + "id": 2749, + "tags": ["asteroid"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "fuelium", + "minedById": 2355, + "resources": 309560.0325900231, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 197, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [-0.4174432298325889, -21.155030528515944], + "coord": [-16.088413456321323, 0.5979173340462993], "angle": 0, - "sector": 6, + "sector": 15, "moved": false, "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 2750, + "tags": ["asteroid"] + }, + { + "components": { + "minable": { + "name": "minable", + "commodity": "goldOre", + "minedById": 1668, + "resources": 101945.47227945809, + "mask": "BigInt:8388608" }, - "disposable": { - "name": "disposable", - "owner": 1800, - "mask": "BigInt:16384" + "parent": { + "name": "parent", + "id": 177, + "mask": "BigInt:549755813888" + }, + "position": { + "name": "position", + "coord": [4.527088077053704, 23.23597907495735], + "angle": 0, + "sector": 1, + "moved": false, + "mask": "BigInt:2199023255552" } }, "cooldowns": { "timers": {} }, - "id": 24875, - "tags": ["virtual"] + "id": 2752, + "tags": ["asteroid"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "ore", + "minedById": null, + "resources": 370707.03140107583, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 207, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [-13.333966666884434, -16.70897556332965], + "coord": [-0.6245255206744811, -5.33391902361168], "angle": 0, - "sector": 10, + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 2753, + "tags": ["asteroid"] + }, + { + "components": { + "minable": { + "name": "minable", + "commodity": "fuelium", + "minedById": null, + "resources": 778588.2388275202, + "mask": "BigInt:8388608" }, - "disposable": { - "name": "disposable", - "owner": 1582, - "mask": "BigInt:16384" + "parent": { + "name": "parent", + "id": 194, + "mask": "BigInt:549755813888" + }, + "position": { + "name": "position", + "coord": [34.10152780291183, 11.76440801237646], + "angle": 0, + "sector": 14, + "moved": false, + "mask": "BigInt:2199023255552" } }, "cooldowns": { "timers": {} }, - "id": 24876, - "tags": ["virtual"] + "id": 2786, + "tags": ["asteroid"] }, { "components": { "position": { "name": "position", - "coord": [19.630472913302743, 12.04451563791765], "angle": 0, + "moved": true, + "coord": [4.654191145718276, 23.123222435354887], "sector": 1, - "moved": false, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1597, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "goldOre", + "stored": 32, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 81, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24877, - "tags": ["virtual"] + "id": 2831, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [11.199006507673564, 13.284325843220786], + "coord": [30.491649599424427, 16.97884489996897], "angle": 0, - "sector": 7, + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1793, + "owner": 1663, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24878, + "id": 2832, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-21.828212903620575, -3.2029189864796663], + "coord": [-9.640365945229613, 6.275565132078132], "angle": 0, - "sector": 6, + "sector": 25, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1799, + "owner": 1855, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24879, + "id": 2879, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [11.53962558525294, -22.527352123686544], + "coord": [2.9773778933316346, -6.169587628486047], "angle": 0, - "sector": 29, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2181, + "owner": 2113, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24880, + "id": 2880, "tags": ["virtual"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "ore", + "minedById": 2116, + "resources": 685288.2418217029, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 195, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [11.65951069113854, -14.649485962168816], + "coord": [1.5061494346474777, 21.160845180815798], "angle": 0, - "sector": 2, + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 2912, + "tags": ["asteroid"] + }, + { + "components": { + "minable": { + "name": "minable", + "commodity": "fuelium", + "minedById": null, + "resources": 497194.4804241617, + "mask": "BigInt:8388608" }, - "disposable": { - "name": "disposable", - "owner": 1560, - "mask": "BigInt:16384" + "parent": { + "name": "parent", + "id": 200, + "mask": "BigInt:549755813888" + }, + "position": { + "name": "position", + "coord": [-5.1039537143844305, 22.546142960577317], + "angle": 0, + "sector": 19, + "moved": false, + "mask": "BigInt:2199023255552" } }, "cooldowns": { "timers": {} }, - "id": 24881, - "tags": ["virtual"] + "id": 2913, + "tags": ["asteroid"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "ice", + "minedById": null, + "resources": 407799.702644419, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 212, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [2.1279172244227462, 3.5115811497736535], + "coord": [8.52815329320859, -17.76580640041473], "angle": 0, - "sector": 26, + "sector": 27, "moved": false, "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 3005, + "tags": ["asteroid"] + }, + { + "components": { + "position": { + "name": "position", + "angle": 0, + "moved": true, + "coord": [-16.05532514506947, -4.35680736731757], + "sector": 21, + "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1743, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 50, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 156, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24882, - "tags": ["virtual"] + "id": 3044, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [-32.0251738343966, -8.022907055321289], "angle": 0, - "sector": 6, - "moved": false, + "moved": true, + "coord": [-16.430501985512116, -4.224099697679552], + "sector": 21, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1754, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 50, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 156, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24883, - "tags": ["virtual"] + "id": 3045, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [-32.47086001861039, -7.18874020814717], "angle": 0, - "sector": 6, - "moved": false, + "moved": true, + "coord": [-16.400419880763867, -4.297180306958562], + "sector": 21, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1766, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 50, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 156, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24884, - "tags": ["virtual"] + "id": 3046, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [15.167050696777894, 12.665418373393315], "angle": 0, - "sector": 18, - "moved": false, + "moved": true, + "coord": [-16.050513976288517, -4.593636756163965], + "sector": 21, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1995, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 50, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 156, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24885, - "tags": ["virtual"] + "id": 3047, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [5.255139438892345, -3.199869108960249], "angle": 0, - "sector": 29, - "moved": false, + "moved": true, + "coord": [-16.235608088740396, -4.345433140132137], + "sector": 21, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 2163, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 10, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 156, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24888, - "tags": ["virtual"] + "id": 3048, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [-14.051368040632513, -30.00693391731474], + "coord": [-8.199088284229267, 9.412778519170539], "angle": 0, - "sector": 29, + "sector": 19, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2168, + "owner": 2009, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24889, + "id": 3129, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-31.21416534047434, 11.50047107936137], "angle": 0, - "sector": 26, - "moved": false, + "moved": true, + "coord": [0.6095756409209404, -2.4246966657191726], + "sector": 32, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1772, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 50, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 189, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24891, - "tags": ["virtual"] + "id": 3156, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [-32.973032777019085, -3.1235094569528004], "angle": 0, - "sector": 9, - "moved": false, + "moved": true, + "coord": [0.5931769391151991, -2.441350440700744], + "sector": 32, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1784, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 50, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 189, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24892, - "tags": ["virtual"] + "id": 3157, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [-1.5768549641188707, 18.24317958309919], "angle": 0, - "sector": 8, - "moved": false, + "moved": true, + "coord": [0.8225684622710188, -2.2236150667135544], + "sector": 32, "mask": "BigInt:2199023255552" }, - "disposable": { - "name": "disposable", - "owner": 1788, - "mask": "BigInt:16384" + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 50, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 189, + "mask": "BigInt:2048" } }, "cooldowns": { "timers": {} }, - "id": 24893, - "tags": ["virtual"] + "id": 3158, + "tags": ["collectible", "selection"] }, { "components": { "position": { "name": "position", - "coord": [-11.302538430330944, 16.407044554132813], "angle": 0, - "sector": 13, + "moved": true, + "coord": [0.5423005221144692, -2.26932564946431], + "sector": 32, + "mask": "BigInt:2199023255552" + }, + "simpleCommodityStorage": { + "commodity": "ice", + "stored": 10, + "name": "simpleCommodityStorage", + "mask": "BigInt:17592186044416" + }, + "render": { + "color": 16777215, + "defaultScale": 0.32, + "name": "render", + "layer": "collectible", + "texture": "box", + "visible": true, + "interactive": false, + "mask": "BigInt:4398046511104" + }, + "creationDate": { + "name": "creationDate", + "date": 189, + "mask": "BigInt:2048" + } + }, + "cooldowns": { "timers": {} }, + "id": 3159, + "tags": ["collectible", "selection"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-29.334199596859335, 3.2313699873974944], + "angle": 0, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2023, + "owner": 2279, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24894, + "id": 3160, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-3.823457699874816, 26.091019970404517], + "coord": [-6.82473429892612, 5.980169752392536], "angle": 0, - "sector": 5, + "sector": 4, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2110, + "owner": 1662, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24895, + "id": 3362, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [32.26752252061145, 3.1750987569511415], + "coord": [4.9523766400210505, 10.829572033360805], "angle": 0, - "sector": 9, + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1782, + "owner": 2006, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24896, + "id": 3407, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [31.2368126852409, -8.388021314723224], + "coord": [-22.933375698337255, 18.368966186572223], "angle": 0, - "sector": 9, + "sector": 29, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1785, + "owner": 2280, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24897, + "id": 3672, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-13.007863642327012, -19.14652869844592], + "coord": [-5.788407439935306, 9.122714118973436], "angle": 0, - "sector": 7, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1796, + "owner": 1667, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24898, + "id": 3743, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-19.95434310832009, -1.1938755854773027], + "coord": [11.929554465176091, -8.768278971996283], "angle": 0, "sector": 20, "moved": false, @@ -297186,199 +292573,334 @@ }, "disposable": { "name": "disposable", - "owner": 1921, + "owner": 2007, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24899, + "id": 3778, "tags": ["virtual"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "ice", + "minedById": 1857, + "resources": 628813.4532523387, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 179, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [-17.40898418085812, -12.382803720079615], + "coord": [-20.50357160470034, -10.475449396220608], "angle": 0, - "sector": 20, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 3802, + "tags": ["asteroid"] + }, + { + "components": { + "minable": { + "name": "minable", + "commodity": "ore", + "minedById": null, + "resources": 38160.29605424296, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 195, + "mask": "BigInt:549755813888" + }, + "position": { + "name": "position", + "coord": [5.982717168347187, 17.69073699259189], + "angle": 0, + "sector": 14, + "moved": false, + "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 3846, + "tags": ["asteroid"] + }, + { + "components": { + "minable": { + "name": "minable", + "commodity": "ore", + "minedById": null, + "resources": 63687.737515699526, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 184, + "mask": "BigInt:549755813888" + }, + "position": { + "name": "position", + "coord": [1.8866362024377956, -9.370043648723543], + "angle": 0, + "sector": 5, + "moved": false, + "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 3847, + "tags": ["asteroid"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [6.5291564428383575, 18.816527233175062], + "angle": 0, + "sector": 31, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1922, + "owner": 2212, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24900, + "id": 3854, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-20.890745071130574, 21.07345075674762], + "coord": [33.20392156905109, 1.157073950257309], "angle": 0, - "sector": 20, + "sector": 18, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1924, + "owner": 2114, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24901, + "id": 3922, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [32.310771971134805, -2.6371878376797127], + "coord": [-23.399758781175443, 22.25066393493883], "angle": 0, - "sector": 19, + "sector": 15, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1929, + "owner": 2356, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24902, + "id": 3967, "tags": ["virtual"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "ice", + "minedById": null, + "resources": 531733.0535525692, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 193, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [23.66431504075177, -4.9927858012785835], + "coord": [3.5705522319182155, -5.603098308730375], "angle": 0, - "sector": 10, + "sector": 13, + "moved": false, + "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 4172, + "tags": ["asteroid"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-18.717324220592936, -4.355463942870617], + "angle": 0, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1580, + "owner": 1666, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24903, + "id": 4379, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-23.52372051528322, 20.538018097390285], + "coord": [-12.417726056495292, 22.137588597335174], "angle": 0, - "sector": 3, + "sector": 2, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1590, + "owner": 1669, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24904, + "id": 4586, "tags": ["virtual"] }, { "components": { + "minable": { + "name": "minable", + "commodity": "ice", + "minedById": 1860, + "resources": 193333.55658251705, + "mask": "BigInt:8388608" + }, + "parent": { + "name": "parent", + "id": 179, + "mask": "BigInt:549755813888" + }, "position": { "name": "position", - "coord": [24.021666585067045, -2.886978204454585], + "coord": [-17.532608297575464, -8.04517197587593], "angle": 0, - "sector": 32, + "sector": 2, + "moved": false, + "mask": "BigInt:2199023255552" + } + }, + "cooldowns": { "timers": {} }, + "id": 7043, + "tags": ["asteroid"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [18.846511274690936, 9.99898201549008], + "angle": 0, + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2174, + "owner": 2106, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24905, + "id": 7654, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [2.7620619571216727, 19.943389047247344], + "coord": [-8.844421158746346, 0.6487560123238691], "angle": 0, - "sector": 1, + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1574, + "owner": 2217, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24906, + "id": 7869, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [1.286837298102766, 14.206444300898529], + "coord": [5.607637424445839, -29.675583772801467], "angle": 0, - "sector": 8, + "sector": 15, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1751, + "owner": 2358, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24907, + "id": 7870, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-1.0085807744764796, 6.816404813045345], + "coord": [-17.763143130809002, -11.31071682756806], "angle": 0, - "sector": 5, + "sector": 1, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2083, + "owner": 1692, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24908, + "id": 7877, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [29.221064611024865, 20.590477218196536], + "coord": [-26.379181800447675, -20.188288113591216], "angle": 0, "sector": 5, "moved": false, @@ -297386,79 +292908,79 @@ }, "disposable": { "name": "disposable", - "owner": 2089, + "owner": 2227, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24909, + "id": 7878, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [13.020866254070956, -19.46673076265889], + "coord": [27.538733850563297, -7.6555651233312565], "angle": 0, - "sector": 31, + "sector": 15, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2091, + "owner": 2357, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24910, + "id": 7879, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [11.883607268370767, -19.620338258611184], + "coord": [-5.459371555930525, -7.566255358861396], "angle": 0, - "sector": 31, + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2092, + "owner": 2110, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24911, + "id": 7881, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-4.914913539031304, -13.234698132794113], + "coord": [-22.028114122700718, 16.450506662922034], "angle": 0, - "sector": 16, + "sector": 6, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2137, + "owner": 1893, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24912, + "id": 7883, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [20.12312264942305, -0.4983909128772712], + "coord": [29.019120925156006, 6.184541423312725], "angle": 0, "sector": 32, "moved": false, @@ -297466,39 +292988,39 @@ }, "disposable": { "name": "disposable", - "owner": 2158, + "owner": 2281, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24913, + "id": 7884, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [1.639144941688103, -3.6100868188366158], + "coord": [25.874680268423486, 14.276290428360879], "angle": 0, - "sector": 15, + "sector": 6, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2246, + "owner": 1898, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24914, + "id": 7885, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [4.034773954112822, -31.8943305394019], + "coord": [-12.517728391644006, 1.3196097155663535], "angle": 0, "sector": 21, "moved": false, @@ -297506,79 +293028,79 @@ }, "disposable": { "name": "disposable", - "owner": 1917, + "owner": 2004, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24915, + "id": 7886, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-9.092807987091087, 14.521049574715532], + "coord": [5.470043347235221, 6.551776670275839], "angle": 0, - "sector": 4, + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1585, + "owner": 2104, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24916, + "id": 7887, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-23.695542433085087, -17.575964374239884], + "coord": [22.956070182749922, -12.145337852020505], "angle": 0, - "sector": 31, + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2106, + "owner": 2016, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24917, + "id": 7888, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-7.820770739484164, 18.6785978471792], + "coord": [25.79725100032283, -2.829620274045485], "angle": 0, - "sector": 25, + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1779, + "owner": 2284, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24918, + "id": 7889, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [2.3638056859059007, 30.987110031072586], + "coord": [8.401805615464873, -1.6115473716467235], "angle": 0, "sector": 21, "moved": false, @@ -297586,59 +293108,79 @@ }, "disposable": { "name": "disposable", - "owner": 1914, + "owner": 2003, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24919, + "id": 7890, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-15.297406893590908, 6.813271080076468], + "coord": [17.96841227248231, 20.70964928724514], "angle": 0, - "sector": 12, + "sector": 1, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2026, + "owner": 1693, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24920, + "id": 7891, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-17.24139527366795, -21.946718012345826], + "coord": [3.56156915061752, 30.107293414302504], "angle": 0, - "sector": 10, + "sector": 6, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1895, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 7892, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [2.5505573086997657, 30.501813009146296], + "angle": 0, + "sector": 6, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1563, + "owner": 1897, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24921, + "id": 7893, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-24.830673610604812, 34.86989483921246], + "coord": [-13.715852177001842, -21.063059913591783], "angle": 0, "sector": 21, "moved": false, @@ -297646,179 +293188,199 @@ }, "disposable": { "name": "disposable", - "owner": 1905, + "owner": 2015, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24922, + "id": 7894, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [18.488611217067852, -24.90144947311932], + "coord": [26.617578076217864, -9.277947479429937], "angle": 0, - "sector": 14, + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1999, + "owner": 2286, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24923, + "id": 7895, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [16.649216032541535, -19.301916214731868], + "coord": [16.4332267776236, 8.311250331290568], "angle": 0, - "sector": 13, + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2011, + "owner": 2017, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24924, + "id": 7896, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [1.4861053784441176, -9.961659634299943], + "coord": [14.357671206036938, -13.810998963983145], "angle": 0, - "sector": 16, + "sector": 14, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2157, + "owner": 2129, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24925, + "id": 7897, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [26.03529152693389, -6.891283927812066], + "coord": [-17.767680649934153, -0.045705880028659336], "angle": 0, - "sector": 2, + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1592, + "owner": 2285, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24926, + "id": 7898, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-5.984746776867684, -30.141587432206], + "coord": [9.173327960224665, 23.633332256421557], "angle": 0, - "sector": 24, + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2109, + "owner": 2018, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24927, + "id": 7899, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-21.95606212940998, 11.501817335743036], + "coord": [20.4012569466336, 2.3936472622801523], "angle": 0, - "sector": 16, + "sector": 15, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2186, + "owner": 2359, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24928, + "id": 7900, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-17.654358499472078, -5.787782469580736], + "coord": [30.323226069821374, 6.45659884944214], "angle": 0, - "sector": 7, + "sector": 6, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1794, + "owner": 1896, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24929, + "id": 7901, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [17.809741830306034, 14.294005628377993], + "coord": [-6.326939749868167, -8.563823434787313], "angle": 0, - "sector": 20, + "sector": 14, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2112, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 7902, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-13.068169273431234, -10.626228093688013], + "angle": 0, + "sector": 1, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1923, + "owner": 1691, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24930, + "id": 7903, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [3.4714678596019293, -28.728053652625483], + "coord": [-14.941626108932152, 7.4498660871214755], "angle": 0, "sector": 5, "moved": false, @@ -297826,59 +293388,79 @@ }, "disposable": { "name": "disposable", - "owner": 2111, + "owner": 2225, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24931, + "id": 7904, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-11.203323292801942, -17.308914051353455], + "coord": [10.742122321446168, 20.761250959099122], "angle": 0, - "sector": 3, + "sector": 21, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1589, + "owner": 2012, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24932, + "id": 7905, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [14.16228339331877, -24.488017443277997], + "coord": [6.696944463947063, -15.367178852397954], "angle": 0, - "sector": 8, + "sector": 5, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 1787, + "owner": 2226, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24933, + "id": 7906, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [4.9633598581579115, -17.92894375993913], + "coord": [-5.264495426170447, 21.204768759956366], + "angle": 0, + "sector": 6, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 1894, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 7907, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-8.431528260991042, -20.96345298474295], "angle": 0, "sector": 21, "moved": false, @@ -297886,52 +293468,72 @@ }, "disposable": { "name": "disposable", - "owner": 1916, + "owner": 2013, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24934, + "id": 7908, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-19.532157652108467, 11.603642286969121], + "coord": [-4.881245732300538, -21.186974309200806], "angle": 0, - "sector": 18, + "sector": 1, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2017, + "owner": 1690, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24935, + "id": 7909, "tags": ["virtual"] }, { "components": { "position": { "name": "position", - "coord": [-1.2080107044153747, -20.746664607087364], + "coord": [16.740540649443425, -5.578186284892273], "angle": 0, - "sector": 24, + "sector": 32, "moved": false, "mask": "BigInt:2199023255552" }, "disposable": { "name": "disposable", - "owner": 2107, + "owner": 2283, + "mask": "BigInt:16384" + } + }, + "cooldowns": { "timers": {} }, + "id": 7910, + "tags": ["virtual"] + }, + { + "components": { + "position": { + "name": "position", + "coord": [-9.541797254644184, -17.280252440946285], + "angle": 0, + "sector": 14, + "moved": false, + "mask": "BigInt:2199023255552" + }, + "disposable": { + "name": "disposable", + "owner": 2128, "mask": "BigInt:16384" } }, "cooldowns": { "timers": {} }, - "id": 24936, + "id": 7911, "tags": ["virtual"] } ] diff --git a/core/world/data/map.json b/core/world/data/map.json index 54865aa6..7b848afd 100644 --- a/core/world/data/map.json +++ b/core/world/data/map.json @@ -443,7 +443,7 @@ "freighterB", "largeFreighterA", "minerA", - "fighter", + "dart", "gunboat", "facilityStarter", "facilityBuilder", @@ -496,7 +496,7 @@ "freighterA", "largeFreighterB", "minerB", - "fighter", + "dart", "gunboat", "facilityStarter", "facilityBuilder", @@ -582,7 +582,7 @@ "freighterA", "largeFreighterB", "minerB", - "fighter", + "dart", "gunboat", "facilityStarter", "facilityBuilder", @@ -628,7 +628,7 @@ "freighterA", "largeFreighterB", "minerB", - "fighter", + "dart", "gunboat", "facilityStarter", "facilityBuilder", @@ -673,7 +673,7 @@ "freighterA", "largeFreighterB", "minerA", - "fighter", + "dart", "gunboat", "facilityStarter", "facilityBuilder", @@ -717,7 +717,7 @@ "freighterA", "largeFreighterB", "minerA", - "fighter", + "dart", "gunboat", "facilityStarter", "facilityBuilder", @@ -787,7 +787,7 @@ "name": "Pirates", "blueprints": { "facilityModules": ["habitat", "hub"], - "ships": ["fighter"] + "ships": ["roach"] }, "color": "#f55b5b", "sectors": [], diff --git a/core/world/data/missions.json b/core/world/data/missions.json deleted file mode 100644 index bc85c0fd..00000000 --- a/core/world/data/missions.json +++ /dev/null @@ -1,154 +0,0 @@ -{ - "patrol": [ - { - "title": "Patrol Request for Crime Surge", - "actorName": "Local Police", - "description": "Local Police urgently requests your fleet's assistance in patrolling {{sector}} due to a surge in crime. Your fleet will be rewarded with {{reward}} UTT upon successful completion of the patrols.", - "prompt": "We urgently need your fleet's assistance in patrolling {{sector}} for the next {{time}} due to a surge in crime. Your fleet will be rewarded with a payment of {{reward}} UTT upon successful completion of the patrols.", - "responses": [ - { - "text": "Affirmative. My fleet will deploy to {{sector}} and conduct patrols as requested.", - "next": "Thank you, Commander. Your fleet's assistance will greatly aid us in addressing the surge in crime.", - "type": "accept" - }, - { - "text": "Negative. My fleet is currently unavailable for patrols in {{sector}}.", - "next": "Understood, Commander. We will have to allocate other resources to address the situation in {{sector}}.", - "type": "decline" - } - ] - }, - { - "title": "Patrol Request for Protest Security", - "actorName": "Local Police", - "description": "Local Police requests your fleet's assistance in providing patrols for heightened security measures during an ongoing protest in {{sector}}. Your fleet will be rewarded with a special commendation of {{reward}} UTT and a token of appreciation for your team's support in maintaining public order.", - "prompt": "There is an ongoing situation involving a large protest in {{sector}} that requires heightened security measures. Can your fleet provide patrols for the next {{time}}? Your fleet will be rewarded with a special commendation of the {{reward}} UTT from the local police department, along with a token of appreciation for your team's support in maintaining public order.", - "responses": [ - { - "text": "Roger that. My fleet will be on standby to deploy to {{sector}} and assist with the security measures.", - "next": "We appreciate your willingness to assist with the security measures in {{sector}}. Your fleet's support will be invaluable.", - "type": "accept" - }, - { - "text": "I regret to inform you that my fleet is unable to provide patrols in {{sector}} at this time.", - "next": "Understood, Commander. We will have to explore other options to ensure the security of {{sector}}.", - "type": "decline" - } - ] - }, - { - "title": "Patrol Request for Combatting Illegal Activities", - "actorName": "Local Police", - "description": "Local Police requests your fleet's assistance in providing patrols to address reports of illegal activities in {{sector}}, including drug trafficking and vandalism. Your fleet will be rewarded with {{reward}} UTT and a letter of appreciation from the mayor's office for your team's efforts in combatting crime and safeguarding the community.", - "prompt": "We have received multiple reports of illegal activities in {{sector}}, including drug trafficking and vandalism. Can your fleet provide patrols for the next {{time}} to address this issue? Your fleet will be rewarded with {{reward}} UTT, as well as a letter of appreciation from the mayor's office for your team's efforts in combatting crime and safeguarding the community.", - "responses": [ - { - "text": "Affirmative. My fleet will be dispatched to {{sector}} immediately to investigate and address the illegal activities.", - "next": "Thank you for your prompt action, Commander. Your fleet's assistance will greatly help us in addressing the illegal activities in {{sector}}.", - "type": "accept" - }, - { - "text": "I'm afraid my fleet is currently engaged in other operations and won't be able to provide patrols in {{sector}}.", - "next": "Understood, Commander. We will have to allocate other resources to address the illegal activities in {{sector}}.", - "type": "decline" - } - ] - }, - { - "title": "Patrol Request for High-Profile Event Security", - "actorName": "Local Police", - "description": " Local Police requests your fleet's assistance in providing additional patrols for heightened security during a high-profile event in {{sector}} with VIPs attending. Your fleet will be rewarded with a premium compensation package of {{reward}} UTT, including a VIP invitation to the event's closing ceremony and a public acknowledgement of your team's vital role in ensuring a successful and secure event.", - "prompt": "{{sector}} is hosting a high-profile event with VIPs attending, and we have received credible threats of potential security breaches. Can your fleet provide additional patrols for the event's security for the next {{time}}? Your fleet will be rewarded with a premium compensation package of {{reward}} UTT, including a VIP invitation to the event's closing ceremony and a public acknowledgement of your team's vital role in ensuring a successful and secure event.", - "responses": [ - { - "text": "Copy that. My fleet will provide heightened security patrols in {{sector}} to ensure the safety of the event and its attendees.", - "next": "We are relieved to hear that your fleet will provide additional security for the high-profile event in {{sector}}. Your support is highly appreciated.", - "type": "accept" - }, - { - "text": "Unfortunately, my fleet is unable to provide additional patrols for the event's security at this time.", - "next": "Understood, Commander. We will have to explore other options to ensure the security of the event in {{sector}}.", - "type": "decline" - } - ] - } - ], - "destroyPirates": [ - { - "title": "Pirate Suppression Operation", - "actorName": "Local Police", - "description": "The local police urgently requests your fleet's assistance in suppressing a notorious pirate group operating in {{sector}}. Their attacks on civilian vessels have become increasingly frequent and pose a significant threat to the sector's safety. Your fleet will be rewarded with {{reward}} UTT upon successful neutralization of the pirate ships.", - "prompt": "We urgently need your fleet's assistance in suppressing a notorious pirate group in {{sector}}. The pirate attacks on civilian vessels have become rampant, endangering the sector's safety. In exchange for your successful neutralization of the pirate ships, your fleet will be rewarded with {{reward}} UTT.", - "responses": [ - { - "text": "Affirmative. My fleet will engage and neutralize the pirate ships in {{sector}}.", - "next": "Thank you, Commander. Your fleet's intervention will ensure the safety of our civilian vessels and restore peace in the sector.", - "type": "accept" - }, - { - "text": "Negative. My fleet's current engagements prevent us from dealing with the pirate ships in {{sector}}.", - "next": "Understood, Commander. We will have to explore alternative measures to protect civilian vessels in {{sector}}.", - "type": "decline" - } - ], - "variant": "ships" - }, - { - "title": "Pirate Infestation Eradication", - "actorName": "Local Police", - "description": "The local police urgently requests your fleet's assistance in eradicating a pirate infestation in {{sector}}. The pirate bases hidden in the sector have become a hub for illegal activities and threaten the safety of neighboring colonies. Your fleet will be rewarded with {{reward}} UTT upon successful elimination of the pirate bases.", - "prompt": "We urgently need your fleet's assistance in eradicating a pirate infestation in {{sector}}. These pirate bases have become a breeding ground for illegal activities, endangering neighboring colonies. In return for your successful elimination of the pirate bases, your fleet will receive a reward of {{reward}} UTT.", - "responses": [ - { - "text": "Affirmative. My fleet will eliminate the pirate bases in {{sector}}.", - "next": "Thank you, Commander. With your fleet's intervention, we can put an end to the pirate infestation and ensure the safety of the colonies in the sector.", - "type": "accept" - }, - { - "text": "Negative. My fleet's current priorities prevent us from dealing with the pirate bases in {{sector}}.", - "next": "Understood, Commander. We will have to devise alternate strategies to counter the pirate infestation in {{sector}}.", - "type": "decline" - } - ], - "variant": "ships" - }, - { - "title": "Pirate Hideout Assault", - "actorName": "Local Police", - "description": "The local police urgently requests your fleet's assistance in launching an assault on a well-fortified pirate hideout located in {{sector}}. This hideout serves as their main base of operations, from where they plan and execute their criminal activities. Your fleet will be rewarded with {{reward}} UTT upon successful destruction of the pirate hideout.", - "prompt": "We urgently need your fleet's assistance in launching an assault on a heavily fortified pirate hideout in {{sector}}. This hideout is their central hub for criminal activities. Your successful destruction of the pirate hideout will be rewarded with {{reward}} UTT.", - "responses": [ - { - "text": "Affirmative. My fleet will launch an assault on the pirate hideout in {{sector}}.", - "next": "Thank you, Commander. Your fleet's intervention will significantly weaken the pirates and disrupt their criminal operations in the sector.", - "type": "accept" - }, - { - "text": "Negative. My fleet's current engagements prevent us from assaulting the pirate hideout in {{sector}}.", - "next": "Understood, Commander. We will have to devise alternative plans to dismantle the pirate hideout in {{sector}}.", - "type": "decline" - } - ], - "variant": "facilityRaid" - }, - { - "title": "Pirate Kingpin Elimination", - "actorName": "Local Police", - "description": "The local police urgently requests your fleet's assistance in eliminating a notorious pirate kingpin operating in {{sector}}. This pirate leader commands a vast network of criminal activities and poses a grave threat to the security of the sector. Your fleet will be rewarded with {{reward}} UTT upon successful termination of the pirate kingpin.", - "prompt": "We urgently need your fleet's assistance in eliminating a notorious pirate kingpin operating in {{sector}}. This pirate leader is a significant threat to the sector's security. In return for your successful termination of the pirate kingpin, your fleet will receive a reward of {{reward}} UTT.", - "responses": [ - { - "text": "Affirmative. My fleet will eliminate the pirate kingpin in {{sector}}.", - "next": "Thank you, Commander. With your fleet's intervention, we can dismantle the pirate kingpin's network and restore order to the sector.", - "type": "accept" - }, - { - "text": "Negative. My fleet's current priorities prevent us from dealing with the pirate kingpin in {{sector}}.", - "next": "Understood, Commander. We will have to devise alternate strategies to neutralize the pirate kingpin's influence in {{sector}}.", - "type": "decline" - } - ], - "variant": "facilityRaid" - } - ] -} diff --git a/core/world/data/missions/generic/ship-rescue.d.ts b/core/world/data/missions/generic/ship-rescue.d.ts new file mode 100644 index 00000000..08a1c8c2 --- /dev/null +++ b/core/world/data/missions/generic/ship-rescue.d.ts @@ -0,0 +1,9 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/missions/generic/ship-rescue.yml" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} diff --git a/core/world/data/missions/generic/ship-rescue.yml b/core/world/data/missions/generic/ship-rescue.yml new file mode 100644 index 00000000..6585fc2d --- /dev/null +++ b/core/world/data/missions/generic/ship-rescue.yml @@ -0,0 +1,21 @@ +Start: npc.greeting + +Actors: + npc: + name: "{{ship}}" + lines: + greeting: + text: Mayday! Mayday! This is captain of the {{ship}}. We are under attack in {{sector}} by pirates and need immediate assistance. Is anyone out there? Please respond! + next: + - player.accept + - player.decline + + player: + lines: + accept: + text: "We hear you, {{ship}}. We are on our way to assist you. Hang in there." + set: + status: accepted + decline: + action: Ignore the distress call + text: We can't spare any resources to help them now. diff --git a/core/world/data/missions/main/ffw/tutorial-autoorder.d.ts b/core/world/data/missions/main/ffw/tutorial-autoorder.d.ts new file mode 100644 index 00000000..9e49e38e --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-autoorder.d.ts @@ -0,0 +1,9 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/missions/main/ffw/tutorial-autoorder.yml" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} diff --git a/core/world/data/missions/main/ffw/tutorial-autoorder.yml b/core/world/data/missions/main/ffw/tutorial-autoorder.yml new file mode 100644 index 00000000..db709af3 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-autoorder.yml @@ -0,0 +1,14 @@ +Start: Russo.greeting + +Actors: + Russo: + name: Cmdr. Raphael Russo + lines: + greeting: + text: Good. As you may have noticed, giving orders manually can be time-consuming and inefficient. That's why we have developed an automated order system that allows you to set up orders in advance and have them executed automatically. Let's try it out. + next: + - Russo.greeting2 + greeting2: + text: Select your mining ship and change default order to "mine". An option to select target sector will appear. For now, let's keep it simple and set Teegarden's Star II, your current sector of operation. Once you confirm it, the ship will start mining automatically. + set: + status: accepted diff --git a/core/world/data/missions/main/ffw/tutorial-end.d.ts b/core/world/data/missions/main/ffw/tutorial-end.d.ts new file mode 100644 index 00000000..f04b8550 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-end.d.ts @@ -0,0 +1,9 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/missions/main/ffw/tutorial-end.yml" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} diff --git a/core/world/data/missions/main/ffw/tutorial-end.yml b/core/world/data/missions/main/ffw/tutorial-end.yml new file mode 100644 index 00000000..bc9a1017 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-end.yml @@ -0,0 +1,12 @@ +Start: Russo.greeting + +Actors: + Russo: + name: Cmdr. Raphael Russo + lines: + greeting: + text: Well done lieutenant. Now that you can handle the basics, I'm sure you can figure out the rest. Your job here is to keep the peace and maintain order in the space of Federation of Free Worlds, however you see fit. + next: + - Russo.greeting2 + greeting2: + text: You have been officially promoted to the rank of captain. Congratulations. You are now in command of your own ship and crew. I expect great things from you, captain. Dismissed. diff --git a/core/world/data/missions/main/ffw/tutorial-escort.d.ts b/core/world/data/missions/main/ffw/tutorial-escort.d.ts new file mode 100644 index 00000000..164ced06 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-escort.d.ts @@ -0,0 +1,9 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/missions/main/ffw/tutorial-escort.yml" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} diff --git a/core/world/data/missions/main/ffw/tutorial-escort.yml b/core/world/data/missions/main/ffw/tutorial-escort.yml new file mode 100644 index 00000000..0690fe86 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-escort.yml @@ -0,0 +1,34 @@ +Start: Russo.greeting + +Actors: + Russo: + name: Cmdr. Raphael Russo + lines: + greeting: + text: As you can see, your miner is now mining ore on his own and will continue to do so until he runs out of storage space. Then, it will sell mined resources to facility known to buy this kind of commodities. This is the automated order system in action. It allows you to set up orders in advance and have them executed automatically. + next: + - Russo.greeting2 + greeting2: + text: Now, let's try something more complex. I want you to escort this miner using a fighter I'm giving you command on. It's an ordinary Dart-class fighter, but it will suffice to defend ship as small as Slate against pirates. Select the fighter and set up an escort order for the miner. Once you confirm it, the fighter will start escorting the miner automatically. Any questions, lieutenant? + next: + - player.response + - player.question + pirates: + text: It's a shame to admit it directly, but pirates are a common threat in this sector, so you should always be on the lookout for them. We believe they have a base somewhere in this sector, but we haven't been able to locate it yet. Keep your eyes open, lieutenant. + next: + - Russo.end + end: + text: Remember, you can always cancel orders by selecting the ship and clicking button with "x" on it. Now, report back to me when you have completed your task. + set: + status: accepted + + player: + lines: + response: + text: No, sir. + next: + - Russo.end + question: + text: Yes, sir. Is the activity of pirates high in the area? + next: + - Russo.pirates diff --git a/core/world/data/missions/main/ffw/tutorial-miner.d.ts b/core/world/data/missions/main/ffw/tutorial-miner.d.ts new file mode 100644 index 00000000..10458a5d --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-miner.d.ts @@ -0,0 +1,9 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/missions/main/ffw/tutorial-miner.yml" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} diff --git a/core/world/data/missions/main/ffw/tutorial-miner.yml b/core/world/data/missions/main/ffw/tutorial-miner.yml new file mode 100644 index 00000000..bf2fec68 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-miner.yml @@ -0,0 +1,38 @@ +Start: Russo.greeting + +Actors: + Russo: + name: Cmdr. Raphael Russo + lines: + greeting: + text: This is Commander Russo speaking. I am your new commanding officer at Federation of Free Worlds' Space Force, and I will be guiding you through your training. I expect you to follow my orders to the letter, and I will not tolerate any insubordination. Do you understand? + next: + - player.greeting + instructions: + text: Good. Now, let's get started. Your first task is to mine some ore from the nearby field. You will need to use your mining laser to extract the ore from the asteroids. We already sent you a Slate-class mining ship so you wouldn't have to worry about that. Do you have any questions? + next: + - player.instructions + - player.instructions_question + instructions_question: + text: Simply select the mining ship with LMB, and then right-click on the asteroid field you want to mine - it will appear as a red circle on your tactical map. After you click on it, a menu will appear with the option to start mining. + next: + - Russo.instructions2 + instructions2: + text: Very well. Report back to me when you have completed your task. + set: + status: accepted + + player: + lines: + greeting: + text: Yes, sir. + next: + - Russo.instructions + instructions: + text: No, sir. + next: + - Russo.instructions2 + instructions_question: + text: Yes, sir. How do I order the ship to start mining? + next: + - Russo.instructions_question diff --git a/core/world/data/missions/main/ffw/tutorial-pirates.d.ts b/core/world/data/missions/main/ffw/tutorial-pirates.d.ts new file mode 100644 index 00000000..05383584 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-pirates.d.ts @@ -0,0 +1,9 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/missions/main/ffw/tutorial-pirates.yml" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} diff --git a/core/world/data/missions/main/ffw/tutorial-pirates.yml b/core/world/data/missions/main/ffw/tutorial-pirates.yml new file mode 100644 index 00000000..66a83248 --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-pirates.yml @@ -0,0 +1,42 @@ +Start: Russo.greeting + +Actors: + Russo: + name: Cmdr. Raphael Russo + lines: + greeting: + text: It looks like someone is following your miner. Hail them and see what they want. + next: + - player.response + pirates: + text: Looks like they are pirates. Truly a scourge upon this sector. I hope you understand that handing over the cargo is unacceptable. You need to defend your miner. + next: + - player.pirates1 + - player.pirates2 + + player: + lines: + response: + text: Yes, sir. I will hail them. Unidentified ship, this is the Federation of Free Worlds' Space Force. Identify yourself and state your intentions. + next: + - pirate.greeting + pirates1: + text: I understand, sir. I will defend the miner. + set: + status: accepted + pirates2: + text: Pirate ship, I'll give you one chance to leave peacefully. If you don't, I will be forced to defend my ship. + next: + - pirate.end + + pirate: + name: Pirate + lines: + greeting: + text: Hello, guys. We noticed you are carrying quite heavy cargo, so we came here to relieve you of your this burden. Hand over your ore, and we'll let you go unharmed. + next: + - Russo.pirates + end: + text: This is where the fun begins. Let's see if you can handle yourself in a fight. + set: + status: accepted diff --git a/core/world/data/missions/main/ffw/tutorial-trade.d.ts b/core/world/data/missions/main/ffw/tutorial-trade.d.ts new file mode 100644 index 00000000..00da440f --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-trade.d.ts @@ -0,0 +1,9 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +declare module "*/missions/main/ffw/tutorial-trade.yml" { + import type { MissionConversation } from "@core/systems/mission/types"; + + const content: MissionConversation; + export default content; +} diff --git a/core/world/data/missions/main/ffw/tutorial-trade.yml b/core/world/data/missions/main/ffw/tutorial-trade.yml new file mode 100644 index 00000000..4593eddd --- /dev/null +++ b/core/world/data/missions/main/ffw/tutorial-trade.yml @@ -0,0 +1,34 @@ +Start: Russo.greeting + +Actors: + Russo: + name: Cmdr. Raphael Russo + lines: + greeting: + text: Well done, lieutenant. As you may recall, there are few different kinds of materials which can be mined, that is ore, fuelium, gold ore, silica and ice, and they all play very important role in our economy. + next: + - Russo.greeting2 + greeting2: + text: Now that your miner is full, it's time to sell the ore. Head to the nearby station and dock with it. Once you're docked, you can sell the ore in the station's market. + next: + - player.accept + - player.instructions + instructions: + text: Select the mining ship with LMB, and then right-click on the station you want to dock with. A menu will appear with the option to trade, which will also automatically create order for the mining ship to dock. + next: + - Russo.report + report: + text: Report back to me when you have completed your task. + set: + status: accepted + + player: + lines: + accept: + text: Yes, sir. On my way. + next: + - Russo.report + instructions: + text: How do I do it? + next: + - Russo.instructions diff --git a/core/world/data/missions/schema.json b/core/world/data/missions/schema.json new file mode 100644 index 00000000..a2448630 --- /dev/null +++ b/core/world/data/missions/schema.json @@ -0,0 +1,50 @@ +{ + "$schema": "http://json-schema.org/draft-07/schema#", + "title": "Schema for mission dialogues", + "type": "object", + "properties": { + "Start": { + "type": "string" + }, + "Actors": { + "type": "object", + "additionalProperties": { + "type": "object", + "properties": { + "name": { + "type": "string" + }, + "lines": { + "type": "object", + "additionalProperties": { + "type": "object", + "properties": { + "text": { + "type": "string" + }, + "action": { + "type": "string" + }, + "next": { + "type": "array", + "items": { + "type": "string" + } + }, + "set": { + "type": "object", + "additionalProperties": { + "type": "string" + } + } + }, + "required": ["text"] + } + } + }, + "required": ["lines"] + } + } + }, + "required": ["Start", "Actors"] +} diff --git a/core/world/data/shipNames.json b/core/world/data/shipNames.json new file mode 100644 index 00000000..4d0219ae --- /dev/null +++ b/core/world/data/shipNames.json @@ -0,0 +1,14 @@ +{ + "ffw": { + "miner": [ + "Ruby Dream", + "Nugget", + "Gold Fever", + "Shovel", + "Dwarf", + "Misty Mountain", + "Pyrite Coin" + ], + "freighter": ["Pompeii", "Juno's Grace", "Tuesday", "Siren", "Siren's Call"] + } +} diff --git a/core/world/data/ships.json b/core/world/data/ships.json index 52a74fba..07b219b2 100644 --- a/core/world/data/ships.json +++ b/core/world/data/ships.json @@ -317,15 +317,15 @@ "range": 2, "mining": 0, "role": "military", - "cruise": 1.9, + "cruise": 3.8, "maneuver": 0.6, "rotary": 142, "ttc": 0.8, - "name": "Fighter", + "name": "Dart", "size": "small", "storage": 10, "texture": "sMil", - "slug": "fighter", + "slug": "dart", "hitpoints": { "hp": { "value": 110, "regen": 0.2 }, "shield": { "value": 35, "regen": 3 } diff --git a/core/world/index.ts b/core/world/index.ts index d271cde1..94ae5158 100644 --- a/core/world/index.ts +++ b/core/world/index.ts @@ -1,12 +1,13 @@ -import { createSector } from "@core/archetypes/sector"; +import { createSector, sectorSize } from "@core/archetypes/sector"; import { random } from "mathjs"; import type { PositionAxial } from "@core/components/hecsPosition"; -import { axialToCube } from "@core/components/hecsPosition"; +import { axialToCube, hecsToCartesian } from "@core/components/hecsPosition"; import type { AiType } from "@core/components/ai"; import { requestShip } from "@core/systems/ai/shipPlanning"; import { facilityModules } from "@core/archetypes/facilityModule"; import { changeRelations } from "@core/components/relations"; import settings from "@core/settings"; +import { find } from "@fxts/core"; import { createFaction } from "../archetypes/faction"; import { createShip } from "../archetypes/ship"; import { changeBudgetMoney, createBudget } from "../components/budget"; @@ -126,15 +127,6 @@ export function getFixedWorld(sim: Sim): Promise { }); playerShip.cp.autoOrder!.default = { type: "hold" }; - const playerMiningShip = createShip(sim, { - ...shipClasses.find(({ slug }) => slug === "smallMinerA")!, - angle: random(-Math.PI, Math.PI), - position: [random(-1, 1), random(-1, 1)], - owner: player, - sector: startingSector, - }); - playerMiningShip.cp.autoOrder!.default = { type: "hold" }; - const builderShip = createShip(sim, { ...pickRandom(shipClasses.filter(({ role }) => role === "building")), angle: random(-Math.PI, Math.PI), @@ -153,6 +145,13 @@ export function getFixedWorld(sim: Sim): Promise { }); storageShip.cp.autoOrder!.default = { type: "hold" }; + const sector = find( + (s) => s.cp.name.value === "Teegarden's Star II", + sim.queries.sectors.get() + )!; + const camera = sim.queries.settings.get()[0].cp.camera; + camera.position = hecsToCartesian(sector.cp.hecsPosition.value, sectorSize); + return Promise.resolve(); } diff --git a/core/world/teleporters.ts b/core/world/teleporters.ts index 4d9eb9b9..7e54766d 100644 --- a/core/world/teleporters.ts +++ b/core/world/teleporters.ts @@ -1,5 +1,6 @@ import type { Position2D } from "@core/components/position"; import { random, subtract } from "mathjs"; +import { fromPolar } from "@core/utils/misc"; import type { Sector } from "../archetypes/sector"; import { sectorSize } from "../archetypes/sector"; import { hecsToCartesian } from "../components/hecsPosition"; @@ -33,7 +34,7 @@ export function createLink( random(-Math.PI / 6, Math.PI / 6); const r = random(20, 35); - linkPosition = [r * Math.cos(a), r * Math.sin(a)]; + linkPosition = fromPolar(a, r); } else { linkPosition = position[sectorIndex]; } diff --git a/jest.config.js b/jest.config.js index 6c42bc0b..90531b0c 100644 --- a/jest.config.js +++ b/jest.config.js @@ -11,7 +11,7 @@ module.exports = { loader: "tsx", }, ], - ".+\\.(svg|css|styl|less|sass|scss|png|jpg|ttf|woff|woff2)$": + ".+\\.(svg|css|styl|less|sass|scss|png|jpg|ttf|woff|woff2|yml)$": "jest-transform-stub", }, testRegex: ".*\\.test\\.tsx?$", diff --git a/kit/Dialog.tsx b/kit/Dialog.tsx index eb0df6a6..d7f90fe8 100644 --- a/kit/Dialog.tsx +++ b/kit/Dialog.tsx @@ -19,16 +19,12 @@ export interface DialogProps { onClose: () => void; } -export const Dialog: React.FC = ({ - children, - title, - open, - width, - onClose, -}) => ( +export const Dialog: React.FC< + Omit & { onClose: (() => void) | null } +> = ({ children, title, open, width, onClose }) => ( = ({ {title} - - - + {onClose && ( + + + + )} {children} diff --git a/kit/Dropdown.scss b/kit/Dropdown.scss index 763f9b54..db3c11af 100644 --- a/kit/Dropdown.scss +++ b/kit/Dropdown.scss @@ -77,4 +77,5 @@ } .root { position: relative; + z-index: 2; } diff --git a/kit/Scrollbar.scss b/kit/Scrollbar.scss new file mode 100644 index 00000000..c1ac8c76 --- /dev/null +++ b/kit/Scrollbar.scss @@ -0,0 +1,7 @@ +.root { + ::before { + background-color: var(--palette-primary); + } + + padding-right: var(--spacing-3); +} diff --git a/kit/Scrollbar.scss.d.ts b/kit/Scrollbar.scss.d.ts new file mode 100644 index 00000000..fb98eada --- /dev/null +++ b/kit/Scrollbar.scss.d.ts @@ -0,0 +1,4 @@ +/* @generated */ +/* prettier-ignore */ +/* eslint-disable */ +export const root: string; diff --git a/kit/Scrollbar.tsx b/kit/Scrollbar.tsx new file mode 100644 index 00000000..2ab03dd2 --- /dev/null +++ b/kit/Scrollbar.tsx @@ -0,0 +1,15 @@ +import clsx from "clsx"; +import React from "react"; +import type { Props } from "simplebar-react"; +import SimpleBar from "simplebar-react"; +import "simplebar-react/dist/simplebar.min.css"; +import styles from "./Scrollbar.scss"; + +export const Scrollbar: React.FC = ({ className, ...props }) => ( + +); diff --git a/kit/theming/global.scss b/kit/theming/global.scss index c290e259..06e1d26d 100644 --- a/kit/theming/global.scss +++ b/kit/theming/global.scss @@ -1,3 +1,5 @@ +$spacing: 8px; + * { box-sizing: border-box; font-family: Space Mono, monospace; diff --git a/package-lock.json b/package-lock.json index c1867428..ac19f895 100644 --- a/package-lock.json +++ b/package-lock.json @@ -46,27 +46,31 @@ "recoil": "^0.7.5", "reflect-metadata": "^0.1.13", "sharp": "^0.32.0", + "simplebar-react": "^3.2.4", "spritesmith": "^3.4.1" }, "devDependencies": { "@babel/core": "^7.20.12", "@storybook/addon-actions": "^7.0.0-beta.45", - "@storybook/addon-essentials": "^7.0.0-beta.45", - "@storybook/addon-interactions": "^7.0.0-beta.45", - "@storybook/addon-links": "^7.0.0-beta.45", - "@storybook/react": "^7.0.0-beta.45", - "@storybook/react-webpack5": "^7.0.0-beta.45", + "@storybook/addon-essentials": "^7.6.17", + "@storybook/addon-interactions": "^7.6.17", + "@storybook/addon-links": "^7.6.17", + "@storybook/react": "^7.6.17", + "@storybook/react-webpack5": "^7.6.17", "@storybook/testing-library": "^0.0.14-next.1", "@types/graphlib": "^2.1.8", "@types/jest": "^27.0.2", + "@types/js-yaml": "^4.0.9", "@types/mustache": "^4.2.2", "@types/react": "^18.2.6", "@types/react-dom": "^18.2.4", "@types/react-modal": "^3.13.1", "@types/react-router": "^5.1.18", "@types/react-router-dom": "^5.3.3", + "@types/webpack": "^5.28.5", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", + "ajv": "^8.12.0", "babel-loader": "^8.3.0", "css-loader": "^6.7.1", "dart-sass": "^1.25.0", @@ -86,13 +90,14 @@ "jest": "^27.3.0", "jest-canvas-mock": "^2.4.0", "jest-transform-stub": "^2.0.0", + "js-yaml": "^4.1.0", "lint-staged": "^13.2.2", "prettier": "2.8.4", "prettier-eslint": "^8.8.2", "release-it": "17.1.1", "sass": "^1.72.0", "sass-loader": "^13.1.0", - "storybook": "^7.0.0-beta.45", + "storybook": "^7.6.17", "string-replace-loader": "^3.1.0", "style-loader": "^3.3.1", "ts-node": "^10.9.2", @@ -136,9 +141,9 @@ } }, "node_modules/@aw-web-design/x-default-browser": { - "version": "1.4.88", - "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz", - "integrity": "sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==", + "version": "1.4.126", + "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz", + "integrity": "sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==", "dev": true, "dependencies": { "default-browser-id": "3.0.0" @@ -148,47 +153,48 @@ } }, "node_modules/@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", "dev": true, "dependencies": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/compat-data": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", - "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", + "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/core": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", - "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", - "dev": true, - "dependencies": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helpers": "^7.20.7", - "@babel/parser": "^7.20.7", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.12", - "@babel/types": "^7.20.7", - "convert-source-map": "^1.7.0", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", + "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", + "dev": true, + "dependencies": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.4", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.24.4", + "@babel/parser": "^7.24.4", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -198,23 +204,30 @@ "url": "https://opencollective.com/babel" } }, + "node_modules/@babel/core/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, "node_modules/@babel/core/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/generator": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", - "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", + "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", "dev": true, "dependencies": { - "@babel/types": "^7.20.7", - "@jridgewell/gen-mapping": "^0.3.2", + "@babel/types": "^7.24.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "engines": { @@ -222,61 +235,57 @@ } }, "node_modules/@babel/generator/node_modules/@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, "dependencies": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" }, "engines": { "node": ">=6.0.0" } }, "node_modules/@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", - "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", "dev": true, "dependencies": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" + "@babel/types": "^7.22.15" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-compilation-targets": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", - "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "dev": true, "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-compilation-targets/node_modules/lru-cache": { @@ -289,9 +298,9 @@ } }, "node_modules/@babel/helper-compilation-targets/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" @@ -304,19 +313,20 @@ "dev": true }, "node_modules/@babel/helper-create-class-features-plugin": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", - "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz", + "integrity": "sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.24.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -325,14 +335,24 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-class-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-create-regexp-features-plugin": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", - "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.2.1" + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -341,152 +361,138 @@ "@babel/core": "^7.0.0" } }, + "node_modules/@babel/helper-create-regexp-features-plugin/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } + }, "node_modules/@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz", + "integrity": "sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" + "resolve": "^1.14.2" }, "peerDependencies": { - "@babel/core": "^7.4.0-0" - } - }, - "node_modules/@babel/helper-define-polyfill-provider/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "dev": true, "engines": { "node": ">=6.9.0" } }, - "node_modules/@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "dev": true, - "dependencies": { - "@babel/types": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - } - }, "node_modules/@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "dependencies": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-member-expression-to-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", - "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", "dev": true, "dependencies": { - "@babel/types": "^7.20.7" + "@babel/types": "^7.23.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-module-transforms": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", - "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.10", - "@babel/types": "^7.20.7" + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", + "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-remap-async-to-generator": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", - "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -496,132 +502,132 @@ } }, "node_modules/@babel/helper-replace-supers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", - "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", + "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", "dev": true, "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5" }, "engines": { "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, "node_modules/@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, "dependencies": { - "@babel/types": "^7.20.2" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", "dev": true, "dependencies": { - "@babel/types": "^7.20.0" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "dependencies": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", "dev": true, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helper-wrap-function": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", - "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", "dev": true, "dependencies": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/helpers": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", - "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", + "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", "dev": true, "dependencies": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.13", - "@babel/types": "^7.20.7" + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", "dev": true, "dependencies": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/parser": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", - "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", + "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", "dev": true, "bin": { "parser": "bin/babel-parser.js" @@ -630,13 +636,14 @@ "node": ">=6.0.0" } }, - "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", + "node_modules/@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz", + "integrity": "sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -645,249 +652,59 @@ "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", - "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-proposal-optional-chaining": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.13.0" - } - }, - "node_modules/@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", - "dev": true, - "dependencies": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-class-static-block": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", - "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", - "dev": true, - "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0" - } - }, - "node_modules/@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - }, - "engines": { - "node": ">=6.9.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "node_modules/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", + "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, - "node_modules/@babel/plugin-proposal-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", - "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "node_modules/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", + "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.24.1" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.13.0" } }, - "node_modules/@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "node_modules/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", + "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0" } }, "node_modules/@babel/plugin-proposal-private-property-in-object": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", - "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - }, "engines": { "node": ">=6.9.0" }, @@ -895,22 +712,6 @@ "@babel/core": "^7.0.0-0" } }, - "node_modules/@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", - "dev": true, - "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - }, - "engines": { - "node": ">=4" - }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, "node_modules/@babel/plugin-syntax-async-generators": { "version": "7.8.4", "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-async-generators/-/plugin-syntax-async-generators-7.8.4.tgz", @@ -987,12 +788,12 @@ } }, "node_modules/@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz", + "integrity": "sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1002,12 +803,27 @@ } }, "node_modules/@babel/plugin-syntax-import-assertions": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", - "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", + "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-syntax-import-attributes": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", + "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1041,12 +857,12 @@ } }, "node_modules/@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", + "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1158,12 +974,12 @@ } }, "node_modules/@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", - "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz", + "integrity": "sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1172,13 +988,47 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/plugin-transform-arrow-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", - "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", + "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-async-generator-functions": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", + "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "dev": true, + "dependencies": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" }, "engines": { "node": ">=6.9.0" @@ -1188,14 +1038,14 @@ } }, "node_modules/@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", + "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", "dev": true, "dependencies": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" + "@babel/helper-module-imports": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-remap-async-to-generator": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -1205,12 +1055,12 @@ } }, "node_modules/@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", + "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1220,12 +1070,28 @@ } }, "node_modules/@babel/plugin-transform-block-scoping": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", - "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz", + "integrity": "sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-class-properties": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", + "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1234,20 +1100,36 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-class-static-block": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", + "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.4", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-class-static-block": "^7.14.5" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.12.0" + } + }, "node_modules/@babel/plugin-transform-classes": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", - "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", - "dev": true, - "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", + "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", + "dev": true, + "dependencies": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1", + "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" }, "engines": { @@ -1258,13 +1140,13 @@ } }, "node_modules/@babel/plugin-transform-computed-properties": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", - "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", + "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/template": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1274,12 +1156,12 @@ } }, "node_modules/@babel/plugin-transform-destructuring": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", - "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", + "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1289,13 +1171,13 @@ } }, "node_modules/@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", + "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1305,12 +1187,28 @@ } }, "node_modules/@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", - "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", + "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-dynamic-import": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", + "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1320,13 +1218,29 @@ } }, "node_modules/@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", + "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", "dev": true, "dependencies": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-export-namespace-from": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", + "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1336,13 +1250,13 @@ } }, "node_modules/@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz", + "integrity": "sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/plugin-syntax-flow": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-flow": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1352,12 +1266,13 @@ } }, "node_modules/@babel/plugin-transform-for-of": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", - "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", + "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1367,14 +1282,30 @@ } }, "node_modules/@babel/plugin-transform-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", - "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", + "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", "dev": true, "dependencies": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-json-strings": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", + "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-json-strings": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1384,12 +1315,28 @@ } }, "node_modules/@babel/plugin-transform-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", + "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", + "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" }, "engines": { "node": ">=6.9.0" @@ -1399,12 +1346,12 @@ } }, "node_modules/@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", + "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1414,13 +1361,13 @@ } }, "node_modules/@babel/plugin-transform-modules-amd": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", - "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", + "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1430,14 +1377,14 @@ } }, "node_modules/@babel/plugin-transform-modules-commonjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", - "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", + "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-simple-access": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1447,15 +1394,15 @@ } }, "node_modules/@babel/plugin-transform-modules-systemjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", - "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", + "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", "dev": true, "dependencies": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-identifier": "^7.19.1" + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-identifier": "^7.22.20" }, "engines": { "node": ">=6.9.0" @@ -1465,13 +1412,13 @@ } }, "node_modules/@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", + "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", "dev": true, "dependencies": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1481,13 +1428,13 @@ } }, "node_modules/@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", - "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1497,12 +1444,62 @@ } }, "node_modules/@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", + "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", + "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-numeric-separator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", + "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-object-rest-spread": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", + "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", + "dev": true, + "dependencies": { + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1512,13 +1509,46 @@ } }, "node_modules/@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", + "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", + "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-optional-chaining": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", + "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" }, "engines": { "node": ">=6.9.0" @@ -1528,12 +1558,46 @@ } }, "node_modules/@babel/plugin-transform-parameters": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", - "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", + "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-methods": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", + "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", + "dev": true, + "dependencies": { + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-private-property-in-object": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", + "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" }, "engines": { "node": ">=6.9.0" @@ -1543,12 +1607,12 @@ } }, "node_modules/@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", + "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1558,12 +1622,12 @@ } }, "node_modules/@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz", + "integrity": "sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1573,16 +1637,16 @@ } }, "node_modules/@babel/plugin-transform-react-jsx": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", - "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.20.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" }, "engines": { "node": ">=6.9.0" @@ -1592,12 +1656,12 @@ } }, "node_modules/@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", "dev": true, "dependencies": { - "@babel/plugin-transform-react-jsx": "^7.18.6" + "@babel/plugin-transform-react-jsx": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1607,13 +1671,13 @@ } }, "node_modules/@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.1.tgz", + "integrity": "sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==", "dev": true, "dependencies": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1623,13 +1687,13 @@ } }, "node_modules/@babel/plugin-transform-regenerator": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", - "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", + "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "regenerator-transform": "^0.15.1" + "@babel/helper-plugin-utils": "^7.24.0", + "regenerator-transform": "^0.15.2" }, "engines": { "node": ">=6.9.0" @@ -1639,12 +1703,12 @@ } }, "node_modules/@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", + "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1654,12 +1718,12 @@ } }, "node_modules/@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", + "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1669,13 +1733,13 @@ } }, "node_modules/@babel/plugin-transform-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", - "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", + "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" }, "engines": { "node": ">=6.9.0" @@ -1685,12 +1749,12 @@ } }, "node_modules/@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", + "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1700,12 +1764,12 @@ } }, "node_modules/@babel/plugin-transform-template-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", - "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", + "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1715,12 +1779,12 @@ } }, "node_modules/@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", - "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", + "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1730,14 +1794,15 @@ } }, "node_modules/@babel/plugin-transform-typescript": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.13.tgz", - "integrity": "sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.4.tgz", + "integrity": "sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==", "dev": true, "dependencies": { - "@babel/helper-create-class-features-plugin": "^7.20.12", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-typescript": "^7.20.0" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.4", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-typescript": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1747,12 +1812,28 @@ } }, "node_modules/@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", - "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", + "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", + "dev": true, + "dependencies": { + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0-0" + } + }, + "node_modules/@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", + "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1762,13 +1843,13 @@ } }, "node_modules/@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", + "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", "dev": true, "dependencies": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" }, "engines": { "node": ">=6.9.0" @@ -1777,39 +1858,45 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", + "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", + "dev": true, + "dependencies": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + }, + "engines": { + "node": ">=6.9.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" + } + }, "node_modules/@babel/preset-env": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", - "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.20.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.2", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.4.tgz", + "integrity": "sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==", + "dev": true, + "dependencies": { + "@babel/compat-data": "^7.24.4", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.4", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.24.1", + "@babel/plugin-syntax-import-attributes": "^7.24.1", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -1819,45 +1906,61 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.20.2", - "@babel/plugin-transform-classes": "^7.20.2", - "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.20.2", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.8", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.19.6", - "@babel/plugin-transform-modules-commonjs": "^7.19.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.20.1", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.19.0", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.1", + "@babel/plugin-transform-async-generator-functions": "^7.24.3", + "@babel/plugin-transform-async-to-generator": "^7.24.1", + "@babel/plugin-transform-block-scoped-functions": "^7.24.1", + "@babel/plugin-transform-block-scoping": "^7.24.4", + "@babel/plugin-transform-class-properties": "^7.24.1", + "@babel/plugin-transform-class-static-block": "^7.24.4", + "@babel/plugin-transform-classes": "^7.24.1", + "@babel/plugin-transform-computed-properties": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.1", + "@babel/plugin-transform-dotall-regex": "^7.24.1", + "@babel/plugin-transform-duplicate-keys": "^7.24.1", + "@babel/plugin-transform-dynamic-import": "^7.24.1", + "@babel/plugin-transform-exponentiation-operator": "^7.24.1", + "@babel/plugin-transform-export-namespace-from": "^7.24.1", + "@babel/plugin-transform-for-of": "^7.24.1", + "@babel/plugin-transform-function-name": "^7.24.1", + "@babel/plugin-transform-json-strings": "^7.24.1", + "@babel/plugin-transform-literals": "^7.24.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", + "@babel/plugin-transform-member-expression-literals": "^7.24.1", + "@babel/plugin-transform-modules-amd": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-modules-systemjs": "^7.24.1", + "@babel/plugin-transform-modules-umd": "^7.24.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.24.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", + "@babel/plugin-transform-numeric-separator": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.1", + "@babel/plugin-transform-object-super": "^7.24.1", + "@babel/plugin-transform-optional-catch-binding": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.1", + "@babel/plugin-transform-parameters": "^7.24.1", + "@babel/plugin-transform-private-methods": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.1", + "@babel/plugin-transform-property-literals": "^7.24.1", + "@babel/plugin-transform-regenerator": "^7.24.1", + "@babel/plugin-transform-reserved-words": "^7.24.1", + "@babel/plugin-transform-shorthand-properties": "^7.24.1", + "@babel/plugin-transform-spread": "^7.24.1", + "@babel/plugin-transform-sticky-regex": "^7.24.1", + "@babel/plugin-transform-template-literals": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.1", + "@babel/plugin-transform-unicode-escapes": "^7.24.1", + "@babel/plugin-transform-unicode-property-regex": "^7.24.1", + "@babel/plugin-transform-unicode-regex": "^7.24.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" }, "engines": { "node": ">=6.9.0" @@ -1867,23 +1970,23 @@ } }, "node_modules/@babel/preset-env/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, "bin": { "semver": "bin/semver.js" } }, "node_modules/@babel/preset-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.18.6.tgz", - "integrity": "sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.1.tgz", + "integrity": "sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-flow-strip-types": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-transform-flow-strip-types": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1893,33 +1996,31 @@ } }, "node_modules/@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "dependencies": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" }, "peerDependencies": { - "@babel/core": "^7.0.0-0" + "@babel/core": "^7.0.0-0 || ^8.0.0-0 <8.0.0" } }, "node_modules/@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.1.tgz", + "integrity": "sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-transform-react-display-name": "^7.24.1", + "@babel/plugin-transform-react-jsx": "^7.23.4", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1929,14 +2030,16 @@ } }, "node_modules/@babel/preset-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", - "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz", + "integrity": "sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==", "dev": true, "dependencies": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-typescript": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-syntax-jsx": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-typescript": "^7.24.1" }, "engines": { "node": ">=6.9.0" @@ -1946,15 +2049,15 @@ } }, "node_modules/@babel/register": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.18.9.tgz", - "integrity": "sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.23.7.tgz", + "integrity": "sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==", "dev": true, "dependencies": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", "make-dir": "^2.1.0", - "pirates": "^4.0.5", + "pirates": "^4.0.6", "source-map-support": "^0.5.16" }, "engines": { @@ -1964,6 +2067,45 @@ "@babel/core": "^7.0.0-0" } }, + "node_modules/@babel/register/node_modules/find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "dependencies": { + "locate-path": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "dependencies": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/@babel/register/node_modules/make-dir": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", @@ -1977,10 +2119,43 @@ "node": ">=6" } }, + "node_modules/@babel/register/node_modules/p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "dependencies": { + "p-limit": "^2.0.0" + }, + "engines": { + "node": ">=6" + } + }, + "node_modules/@babel/register/node_modules/path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/@babel/register/node_modules/pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "dependencies": { + "find-up": "^3.0.0" + }, + "engines": { + "node": ">=6" + } + }, "node_modules/@babel/register/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true, "bin": { "semver": "bin/semver" @@ -2017,34 +2192,34 @@ } }, "node_modules/@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", + "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.24.0", + "@babel/types": "^7.24.0" }, "engines": { "node": ">=6.9.0" } }, "node_modules/@babel/traverse": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", - "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", - "dev": true, - "dependencies": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.13", - "@babel/types": "^7.20.7", - "debug": "^4.1.0", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", + "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", + "dev": true, + "dependencies": { + "@babel/code-frame": "^7.24.1", + "@babel/generator": "^7.24.1", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.24.1", + "@babel/types": "^7.24.0", + "debug": "^4.3.1", "globals": "^11.1.0" }, "engines": { @@ -2052,13 +2227,13 @@ } }, "node_modules/@babel/types": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", - "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", + "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", "dev": true, "dependencies": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" }, "engines": { @@ -2217,9 +2392,9 @@ } }, "node_modules/@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz", - "integrity": "sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", "dev": true, "peerDependencies": { "react": ">=16.8.0" @@ -2242,9 +2417,9 @@ } }, "node_modules/@esbuild/android-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", - "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", "cpu": [ "arm" ], @@ -2258,9 +2433,9 @@ } }, "node_modules/@esbuild/android-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", - "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", "cpu": [ "arm64" ], @@ -2274,9 +2449,9 @@ } }, "node_modules/@esbuild/android-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", - "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", "cpu": [ "x64" ], @@ -2290,9 +2465,9 @@ } }, "node_modules/@esbuild/darwin-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", - "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", "cpu": [ "arm64" ], @@ -2306,9 +2481,9 @@ } }, "node_modules/@esbuild/darwin-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", - "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", "cpu": [ "x64" ], @@ -2322,9 +2497,9 @@ } }, "node_modules/@esbuild/freebsd-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", - "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", "cpu": [ "arm64" ], @@ -2338,9 +2513,9 @@ } }, "node_modules/@esbuild/freebsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", - "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", "cpu": [ "x64" ], @@ -2354,9 +2529,9 @@ } }, "node_modules/@esbuild/linux-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", - "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", "cpu": [ "arm" ], @@ -2370,9 +2545,9 @@ } }, "node_modules/@esbuild/linux-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", - "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", "cpu": [ "arm64" ], @@ -2386,9 +2561,9 @@ } }, "node_modules/@esbuild/linux-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", - "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", "cpu": [ "ia32" ], @@ -2402,9 +2577,9 @@ } }, "node_modules/@esbuild/linux-loong64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", - "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", "cpu": [ "loong64" ], @@ -2418,9 +2593,9 @@ } }, "node_modules/@esbuild/linux-mips64el": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", - "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", "cpu": [ "mips64el" ], @@ -2434,9 +2609,9 @@ } }, "node_modules/@esbuild/linux-ppc64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", - "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", "cpu": [ "ppc64" ], @@ -2450,9 +2625,9 @@ } }, "node_modules/@esbuild/linux-riscv64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", - "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", "cpu": [ "riscv64" ], @@ -2466,9 +2641,9 @@ } }, "node_modules/@esbuild/linux-s390x": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", - "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", "cpu": [ "s390x" ], @@ -2482,9 +2657,9 @@ } }, "node_modules/@esbuild/linux-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", - "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", "cpu": [ "x64" ], @@ -2498,9 +2673,9 @@ } }, "node_modules/@esbuild/netbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", - "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", "cpu": [ "x64" ], @@ -2514,9 +2689,9 @@ } }, "node_modules/@esbuild/openbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", - "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", "cpu": [ "x64" ], @@ -2530,9 +2705,9 @@ } }, "node_modules/@esbuild/sunos-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", - "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", "cpu": [ "x64" ], @@ -2546,9 +2721,9 @@ } }, "node_modules/@esbuild/win32-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", - "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", "cpu": [ "arm64" ], @@ -2562,9 +2737,9 @@ } }, "node_modules/@esbuild/win32-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", - "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", "cpu": [ "ia32" ], @@ -2578,9 +2753,9 @@ } }, "node_modules/@esbuild/win32-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", - "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", "cpu": [ "x64" ], @@ -2640,11 +2815,21 @@ "url": "https://opencollective.com/eslint" } }, - "node_modules/@eslint/eslintrc/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "node_modules/@eslint/eslintrc/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } }, "node_modules/@eslint/eslintrc/node_modules/globals": { "version": "13.24.0", @@ -2661,17 +2846,11 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@eslint/eslintrc/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } + "node_modules/@eslint/eslintrc/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "node_modules/@eslint/eslintrc/node_modules/type-fest": { "version": "0.20.2", @@ -2700,6 +2879,44 @@ "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==", "dev": true }, + "node_modules/@floating-ui/core": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", + "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", + "dev": true, + "dependencies": { + "@floating-ui/utils": "^0.2.1" + } + }, + "node_modules/@floating-ui/dom": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", + "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", + "dev": true, + "dependencies": { + "@floating-ui/core": "^1.0.0", + "@floating-ui/utils": "^0.2.0" + } + }, + "node_modules/@floating-ui/react-dom": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz", + "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==", + "dev": true, + "dependencies": { + "@floating-ui/dom": "^1.6.1" + }, + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" + } + }, + "node_modules/@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==", + "dev": true + }, "node_modules/@fxts/core": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/@fxts/core/-/core-0.9.0.tgz", @@ -2767,6 +2984,96 @@ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==", "dev": true }, + "node_modules/@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "dependencies": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "engines": { + "node": ">=12" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@isaacs/cliui/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" + } + }, + "node_modules/@isaacs/cliui/node_modules/wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "dependencies": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + }, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, "node_modules/@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -2783,6 +3090,28 @@ "node": ">=8" } }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "dependencies": { + "sprintf-js": "~1.0.2" + } + }, + "node_modules/@istanbuljs/load-nyc-config/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "dependencies": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" + } + }, "node_modules/@istanbuljs/schema": { "version": "0.1.3", "resolved": "https://registry.npmjs.org/@istanbuljs/schema/-/schema-0.1.3.tgz", @@ -3625,12 +3954,12 @@ } }, "node_modules/@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "dependencies": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" }, "engines": { "node": "^14.15.0 || ^16.10.0 || >=18.0.0" @@ -3899,6 +4228,172 @@ "node": ">=8" } }, + "node_modules/@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/transform/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/transform/node_modules/convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "node_modules/@jest/transform/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/transform/node_modules/write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "dependencies": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "dependencies": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "engines": { + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + } + }, + "node_modules/@jest/types/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@jest/types/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@jest/types/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -3922,9 +4417,9 @@ } }, "node_modules/@jridgewell/set-array": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz", - "integrity": "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true, "engines": { "node": ">=6.0.0" @@ -3955,19 +4450,19 @@ } }, "node_modules/@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", "dev": true }, "node_modules/@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "dependencies": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "node_modules/@juggle/resize-observer": { @@ -4021,6 +4516,17 @@ "react": ">=16" } }, + "node_modules/@ndelangen/get-tarball": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.9.tgz", + "integrity": "sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==", + "dev": true, + "dependencies": { + "gunzip-maybe": "^1.4.2", + "pump": "^3.0.0", + "tar-fs": "^2.1.1" + } + }, "node_modules/@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -4459,10 +4965,20 @@ "url": "^0.11.0" } }, + "node_modules/@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true, + "engines": { + "node": ">=14" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", - "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", + "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", "dev": true, "dependencies": { "ansi-html-community": "^0.0.8", @@ -4482,7 +4998,7 @@ "@types/webpack": "4.x || 5.x", "react-refresh": ">=0.10.0 <1.0.0", "sockjs-client": "^1.4.0", - "type-fest": ">=0.17.0 <4.0.0", + "type-fest": ">=0.17.0 <5.0.0", "webpack": ">=4.43.0 <6.0.0", "webpack-dev-server": "3.x || 4.x", "webpack-hot-middleware": "2.x", @@ -4509,6 +5025,31 @@ } } }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -4525,6 +5066,12 @@ "url": "https://github.com/sponsors/sindresorhus" } }, + "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", @@ -4571,9 +5118,9 @@ } }, "node_modules/@pmmmwh/react-refresh-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { "@types/json-schema": "^7.0.8", @@ -4642,808 +5189,799 @@ "url": "https://opencollective.com/popperjs" } }, - "node_modules/@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", - "dev": true - }, - "node_modules/@sindresorhus/is": { - "version": "5.6.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", - "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/is?sponsor=1" - } - }, - "node_modules/@sindresorhus/merge-streams": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", - "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", + "node_modules/@radix-ui/number": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz", + "integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==", "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@babel/runtime": "^7.13.10" } }, - "node_modules/@sinonjs/commons": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", - "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", + "node_modules/@radix-ui/primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", + "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==", "dev": true, "dependencies": { - "type-detect": "4.0.8" + "@babel/runtime": "^7.13.10" } }, - "node_modules/@sinonjs/fake-timers": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", - "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", + "node_modules/@radix-ui/react-arrow": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz", + "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==", "dev": true, "dependencies": { - "@sinonjs/commons": "^1.7.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.9.tgz", - "integrity": "sha512-xEO/Ekj6m6p1l4CXGh75BNBD/sqF7TqnUA/f2T3UCtLf9xVMoGEczxNi28iZq2RHoIAaV2aKArqjM+qTwoLjZw==", + "node_modules/@radix-ui/react-collection": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz", + "integrity": "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.9", - "@storybook/components": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.9", - "@storybook/preview-api": "7.0.9", - "@storybook/theming": "7.0.9", - "@storybook/types": "7.0.9", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "polished": "^4.2.2", - "prop-types": "^15.7.2", - "react-inspector": "^6.0.0", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0", - "uuid": "^9.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" }, "peerDependenciesMeta": { - "react": { + "@types/react": { "optional": true }, - "react-dom": { + "@types/react-dom": { "optional": true } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/channel-postmessage": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.9.tgz", - "integrity": "sha512-6zsUPlsD3GVhKNq4UZ5MePJPjiMcPs/K02mH5/uVTN2JSgLdWgbLhZ4VYit4HgwE+d98bd9zWbgNgSOXpTArag==", + "node_modules/@radix-ui/react-compose-refs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", + "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "@babel/runtime": "^7.13.10" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", + "node_modules/@radix-ui/react-context": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz", + "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/preview-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.9.tgz", - "integrity": "sha512-cLyhq2nk0eiMOUwIIKhgDgZoS1ecRGojl92hR0agZDzNJrb1lvXK6uIkJh/Anl2Jbir28lAjQGU54voPODwTUA==", + "node_modules/@radix-ui/react-direction": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz", + "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==", "dev": true, "dependencies": { - "@storybook/channel-postmessage": "7.0.9", - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.9", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "@babel/runtime": "^7.13.10" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "node_modules/@radix-ui/react-dismissable-layer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.4.tgz", + "integrity": "sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.9", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-escape-keydown": "1.0.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-actions/node_modules/uuid": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", - "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", + "node_modules/@radix-ui/react-focus-guards": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz", + "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==", "dev": true, - "bin": { - "uuid": "dist/bin/uuid" + "dependencies": { + "@babel/runtime": "^7.13.10" + }, + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.0-beta.45.tgz", - "integrity": "sha512-X7AHUgAwRRa2eehc7RuIk2MjBnY/OpYIdywrh93ZGoQmEjY2OpFjxJ2Onf+Wb0MMMMXkUYUJqauoIjAxfMcURw==", + "node_modules/@radix-ui/react-focus-scope": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.3.tgz", + "integrity": "sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" }, "peerDependenciesMeta": { - "react": { + "@types/react": { "optional": true }, - "react-dom": { + "@types/react-dom": { "optional": true } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@radix-ui/react-id": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz", + "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@radix-ui/react-popper": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.2.tgz", + "integrity": "sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@floating-ui/react-dom": "^2.0.0", + "@radix-ui/react-arrow": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-rect": "1.0.1", + "@radix-ui/react-use-size": "1.0.1", + "@radix-ui/rect": "1.0.1" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@radix-ui/react-portal": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.3.tgz", + "integrity": "sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@radix-ui/react-primitive": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz", + "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-slot": "1.0.2" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-backgrounds/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@radix-ui/react-roving-focus": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz", + "integrity": "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-collection": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-controllable-state": "1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } + } + }, + "node_modules/@radix-ui/react-select": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-1.2.2.tgz", + "integrity": "sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/number": "1.0.1", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-collection": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.4", + "@radix-ui/react-focus-guards": "1.0.1", + "@radix-ui/react-focus-scope": "1.0.3", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-popper": "1.1.2", + "@radix-ui/react-portal": "1.0.3", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-controllable-state": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-previous": "1.0.1", + "@radix-ui/react-visually-hidden": "1.0.3", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.5.5" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-controls": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.0.0-beta.45.tgz", - "integrity": "sha512-bRwUBN96nVgp15NFObs+cgnUzsVV6WTJfY4dF+G+FWKm9g79qrZFqfgBPdSu8lKiew9Ctv93zxRzFAzFOaSDMg==", + "node_modules/@radix-ui/react-separator": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.0.3.tgz", + "integrity": "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==", "dev": true, "dependencies": { - "@storybook/blocks": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "lodash": "^4.17.21", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" }, "peerDependenciesMeta": { - "react": { + "@types/react": { "optional": true }, - "react-dom": { + "@types/react-dom": { "optional": true } } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@radix-ui/react-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", + "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@radix-ui/react-toggle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.0.3.tgz", + "integrity": "sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-controllable-state": "1.0.1" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@radix-ui/react-toggle-group": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.0.4.tgz", + "integrity": "sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "dependencies": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-roving-focus": "1.0.4", + "@radix-ui/react-toggle": "1.0.3", + "@radix-ui/react-use-controllable-state": "1.0.1" + }, + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@radix-ui/react-toolbar": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.0.4.tgz", + "integrity": "sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-roving-focus": "1.0.4", + "@radix-ui/react-separator": "1.0.3", + "@radix-ui/react-toggle-group": "1.0.4" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-controls/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@radix-ui/react-use-callback-ref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", + "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.0.0-beta.45.tgz", - "integrity": "sha512-fUlsTEkiAOQWXTtUxDVLFOp80t8f0M3y8dJLrSf35/Y5YAHjolTLL+l6f4AJrr4PlrgVWJPhayW7OZgaR0g5Tg==", + "node_modules/@radix-ui/react-use-controllable-state": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", + "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", "dev": true, "dependencies": { - "@babel/core": "^7.20.2", - "@babel/plugin-transform-react-jsx": "^7.19.0", - "@jest/transform": "^29.3.1", - "@mdx-js/react": "^2.1.5", - "@storybook/blocks": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/csf-plugin": "7.0.0-beta.45", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/mdx2-csf": "next", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/postinstall": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "fs-extra": "^11.1.0", - "remark-external-links": "^8.0.0", - "remark-slug": "^6.0.0", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" }, "peerDependencies": { - "@storybook/mdx1-csf": ">=1.0.0-0", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" }, "peerDependenciesMeta": { - "@storybook/mdx1-csf": { + "@types/react": { "optional": true } } }, - "node_modules/@storybook/addon-docs/node_modules/@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", + "node_modules/@radix-ui/react-use-escape-keydown": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", + "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", "dev": true, "dependencies": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", + "node_modules/@radix-ui/react-use-layout-effect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", + "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", "dev": true, "dependencies": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" + "@babel/runtime": "^7.13.10" }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@radix-ui/react-use-previous": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz", + "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@babel/runtime": "^7.13.10" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@radix-ui/react-use-rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz", + "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/rect": "1.0.1" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@radix-ui/react-use-size": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz", + "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-docs/node_modules/@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/@storybook/addon-docs/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "@types/react": "*", + "react": "^16.8 || ^17.0 || ^18.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@radix-ui/react-visually-hidden": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", + "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" }, - "engines": { - "node": ">=10" + "peerDependencies": { + "@types/react": "*", + "@types/react-dom": "*", + "react": "^16.8 || ^17.0 || ^18.0", + "react-dom": "^16.8 || ^17.0 || ^18.0" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "peerDependenciesMeta": { + "@types/react": { + "optional": true + }, + "@types/react-dom": { + "optional": true + } } }, - "node_modules/@storybook/addon-docs/node_modules/convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "node_modules/@storybook/addon-docs/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/@radix-ui/rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz", + "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" + "@babel/runtime": "^7.13.10" } }, - "node_modules/@storybook/addon-docs/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/@sinclair/typebox": { + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", + "dev": true }, - "node_modules/@storybook/addon-docs/node_modules/jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", + "node_modules/@sindresorhus/is": { + "version": "5.6.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/is/-/is-5.6.0.tgz", + "integrity": "sha512-TV7t8GKYaJWsn00tFDqBw8+Uqmr8A0fRU1tvTQhyZzGv0sJCGRQL3JGMI3ucuKo3XIZdUP+Lx7/gh2t3lewy7g==", "dev": true, - "dependencies": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=14.16" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "funding": { + "url": "https://github.com/sindresorhus/is?sponsor=1" } }, - "node_modules/@storybook/addon-docs/node_modules/jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", + "node_modules/@sindresorhus/merge-streams": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@sindresorhus/merge-streams/-/merge-streams-2.3.0.tgz", + "integrity": "sha512-LtoMMhxAlorcGhmFYI+LhPgbPZCkgP6ra1YL604EeF6U98pLlQ3iWIGMdWSC+vWmPBWBNgmDBAhnAobLROJmwg==", "dev": true, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-docs/node_modules/jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", + "node_modules/@sinonjs/commons": { + "version": "1.8.3", + "resolved": "https://registry.npmjs.org/@sinonjs/commons/-/commons-1.8.3.tgz", + "integrity": "sha512-xkNcLAn/wZaX14RPlwizcKicDk9G3F8m2nU3L7Ukm5zBgTwiT0wsoFAHx9Jq56fJA1z/7uKGtCRu16sOUCLIHQ==", "dev": true, "dependencies": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "type-detect": "4.0.8" } }, - "node_modules/@storybook/addon-docs/node_modules/jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", + "node_modules/@sinonjs/fake-timers": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/@sinonjs/fake-timers/-/fake-timers-8.1.0.tgz", + "integrity": "sha512-OAPJUAtgeINhh/TAlUID4QTs53Njm7xzddaVlEs/SXwgtiD1tW22zAB/W1wdqfrpmikgaWQ9Fw6Ws+hsiRm5Vg==", "dev": true, "dependencies": { - "@types/node": "*", - "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + "@sinonjs/commons": "^1.7.0" } }, - "node_modules/@storybook/addon-docs/node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/@storybook/addon-actions": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.6.17.tgz", + "integrity": "sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=10" + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "@types/uuid": "^9.0.1", + "dequal": "^2.0.2", + "polished": "^4.2.2", + "uuid": "^9.0.0" }, "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-docs/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@storybook/addon-actions/node_modules/uuid": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", + "integrity": "sha512-MXcSTerfPa4uqyzStbRoTgt5XIe3x5+42+q1sDuy3R5MDk66URdLMOZe5aPX/SQd+kuYAh0FdP/pO28IkQyTeg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "bin": { + "uuid": "dist/bin/uuid" } }, - "node_modules/@storybook/addon-docs/node_modules/write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "node_modules/@storybook/addon-backgrounds": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.6.17.tgz", + "integrity": "sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==", "dev": true, "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3", + "ts-dedent": "^2.0.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.0.0-beta.45.tgz", - "integrity": "sha512-ZKckeBsbdgGkeZen2FCQU8bji3XReA8YxFuknpt7GWEQ6Le3uHQ30VbSPEfdjF0p2plcTjtH3VLtkfuxxAVn5Q==", - "dev": true, - "dependencies": { - "@storybook/addon-actions": "7.0.0-beta.45", - "@storybook/addon-backgrounds": "7.0.0-beta.45", - "@storybook/addon-controls": "7.0.0-beta.45", - "@storybook/addon-docs": "7.0.0-beta.45", - "@storybook/addon-highlight": "7.0.0-beta.45", - "@storybook/addon-measure": "7.0.0-beta.45", - "@storybook/addon-outline": "7.0.0-beta.45", - "@storybook/addon-toolbars": "7.0.0-beta.45", - "@storybook/addon-viewport": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", + "node_modules/@storybook/addon-controls": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.6.17.tgz", + "integrity": "sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==", + "dev": true, + "dependencies": { + "@storybook/blocks": "7.6.17", + "lodash": "^4.17.21", "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/addon-actions": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.0-beta.45.tgz", - "integrity": "sha512-08XKNWhhjuBbM3NFkxwhAbMkePNgSzQU58dK4i4JL7jvzY6ubED6LYpMD7xBjhzkFQuWmra8sWHEfL2/3O/CdA==", + "node_modules/@storybook/addon-docs": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.6.17.tgz", + "integrity": "sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", + "@jest/transform": "^29.3.1", + "@mdx-js/react": "^2.1.5", + "@storybook/blocks": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/components": "7.6.17", + "@storybook/csf-plugin": "7.6.17", + "@storybook/csf-tools": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "polished": "^4.2.2", - "prop-types": "^15.7.2", - "react-inspector": "^6.0.0", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0", - "uuid-browser": "^3.1.0" + "@storybook/mdx2-csf": "^1.0.0", + "@storybook/node-logger": "7.6.17", + "@storybook/postinstall": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/react-dom-shim": "7.6.17", + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", + "fs-extra": "^11.1.0", + "remark-external-links": "^8.0.0", + "remark-slug": "^6.0.0", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", @@ -5452,83 +5990,101 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/addon-docs/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@storybook/addon-docs/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/addon-docs/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, + "dependencies": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/addon-docs/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@storybook/addon-essentials": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.6.17.tgz", + "integrity": "sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==", + "dev": true, + "dependencies": { + "@storybook/addon-actions": "7.6.17", + "@storybook/addon-backgrounds": "7.6.17", + "@storybook/addon-controls": "7.6.17", + "@storybook/addon-docs": "7.6.17", + "@storybook/addon-highlight": "7.6.17", + "@storybook/addon-measure": "7.6.17", + "@storybook/addon-outline": "7.6.17", + "@storybook/addon-toolbars": "7.6.17", + "@storybook/addon-viewport": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/manager-api": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/preview-api": "7.6.17", "ts-dedent": "^2.0.0" }, "funding": { @@ -5540,92 +6096,70 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-essentials/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/addon-essentials/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-highlight": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.0.0-beta.45.tgz", - "integrity": "sha512-h1ctbEKrOoXBRv35qm6RZODUT39tdt/zwazqeF+T3fi3/hKdBxNjj/IcIXf32vNZhL2UlAgYdbT5qPOrZaRF7g==", + "node_modules/@storybook/addon-essentials/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "@storybook/core-events": "7.0.0-beta.45", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.45" + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-highlight/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/addon-interactions": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.0.0-beta.45.tgz", - "integrity": "sha512-4MvZjaV14CRVzfqDBA0ec2Ku57IJXlBpJTxp71hXQJbYCKYo7pATD8yXrovPxibKOdiA/TdJ4SG9sCyjeNAbTg==", + "node_modules/@storybook/addon-essentials/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/instrumenter": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "jest-mock": "^27.0.6", - "polished": "^4.2.2", - "ts-dedent": "^2.2.0" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/addon-highlight": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.6.17.tgz", + "integrity": "sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0" @@ -5635,106 +6169,65 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@storybook/addon-interactions": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.6.17.tgz", + "integrity": "sha512-6zlX+RDQ1PlA6fp7C+hun8t7h2RXfCGs5dGrhEenp2lqnR/rYuUJRC0tmKpkZBb8kZVcbSChzkB/JYkBjBCzpQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@storybook/types": "7.6.17", + "jest-mock": "^27.0.6", + "polished": "^4.2.2", + "ts-dedent": "^2.2.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/addon-interactions/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-interactions/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/addon-interactions/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, "node_modules/@storybook/addon-links": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.0.0-beta.45.tgz", - "integrity": "sha512-mfyugfvUvZe+h3mUioiAB1WJg2AwsLqpjpTLalI9s+3T8xaY8bwpox+e27VrEiA4nMLr6ht7AADPyPd9UTyaGg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.6.17.tgz", + "integrity": "sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/router": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "prop-types": "^15.7.2", "ts-dedent": "^2.0.0" }, "funding": { @@ -5742,105 +6235,94 @@ "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" }, "peerDependenciesMeta": { "react": { "optional": true - }, - "react-dom": { - "optional": true } } }, - "node_modules/@storybook/addon-links/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/addon-measure": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.6.17.tgz", + "integrity": "sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/global": "^5.0.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-links/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/addon-outline": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.6.17.tgz", + "integrity": "sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==", "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0", + "ts-dedent": "^2.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-links/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/addon-toolbars": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.6.17.tgz", + "integrity": "sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==", "dev": true, - "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-links/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/addon-viewport": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.6.17.tgz", + "integrity": "sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", "memoizerific": "^1.11.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-measure": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.0.0-beta.45.tgz", - "integrity": "sha512-bzUmtgM6IKn4z/NhfGT7H2ATsK6xArhA+oJCXzm+iwjqCWUvqwzMX8G1bVZ0x72BCV1q5GwoKl1c+rmCcbQ6vw==", + "node_modules/@storybook/blocks": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.17.tgz", + "integrity": "sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/components": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/docs-tools": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45" + "@storybook/manager-api": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", + "@types/lodash": "^4.14.167", + "color-convert": "^2.0.1", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "markdown-to-jsx": "^7.1.8", + "memoizerific": "^1.11.3", + "polished": "^4.2.2", + "react-colorful": "^5.1.2", + "telejson": "^7.2.0", + "tocbot": "^4.20.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", @@ -5849,522 +6331,646 @@ "peerDependencies": { "react": "^16.8.0 || ^17.0.0 || ^18.0.0", "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/blocks/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@storybook/blocks/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/blocks/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, + "dependencies": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/builder-manager": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.6.17.tgz", + "integrity": "sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "@fal-works/esbuild-plugin-global-externals": "^2.1.2", + "@storybook/core-common": "7.6.17", + "@storybook/manager": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@types/ejs": "^3.1.1", + "@types/find-cache-dir": "^3.2.1", + "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", + "browser-assert": "^1.2.1", + "ejs": "^3.1.8", + "esbuild": "^0.18.0", + "esbuild-plugin-alias": "^0.2.1", + "express": "^4.17.3", + "find-cache-dir": "^3.0.0", + "fs-extra": "^11.1.0", + "process": "^0.11.10", + "util": "^0.12.4" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-measure/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/builder-manager/node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", "dev": true, - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=12" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" } }, - "node_modules/@storybook/addon-outline": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.0.0-beta.45.tgz", - "integrity": "sha512-MQGcHcrD/AwYFg67G6EPTlY6dlDltoKKmOAmFVf/WGXnTGcFtEJ9fk3/bCbCfePtnRX5r05nhoye1V/f9tpazA==", + "node_modules/@storybook/builder-manager/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "ts-dedent": "^2.0.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@storybook/builder-webpack5": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.6.17.tgz", + "integrity": "sha512-GMaBd8/RzivuAmWrYSt9Rga3j8WLcu5LCMYiPVs+XKXsKAC8lTkV0WRWh8Nk6wTmfzsRQ2acwFjSG5oE4ClZKA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.2", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/core-webpack": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/preview": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@swc/core": "^1.3.82", + "@types/node": "^18.0.0", + "@types/semver": "^7.3.4", + "babel-loader": "^9.0.0", + "browser-assert": "^1.2.1", + "case-sensitive-paths-webpack-plugin": "^2.4.0", + "cjs-module-lexer": "^1.2.3", + "constants-browserify": "^1.0.0", + "css-loader": "^6.7.1", + "es-module-lexer": "^1.4.1", + "express": "^4.17.3", + "fork-ts-checker-webpack-plugin": "^8.0.0", + "fs-extra": "^11.1.0", + "html-webpack-plugin": "^5.5.0", + "magic-string": "^0.30.5", + "path-browserify": "^1.0.1", + "process": "^0.11.10", + "semver": "^7.3.7", + "style-loader": "^3.3.1", + "swc-loader": "^0.2.3", + "terser-webpack-plugin": "^5.3.1", + "ts-dedent": "^2.0.0", + "url": "^0.11.0", + "util": "^0.12.4", + "util-deprecate": "^1.0.2", + "webpack": "5", + "webpack-dev-middleware": "^6.1.1", + "webpack-hot-middleware": "^2.25.1", + "webpack-virtual-modules": "^0.5.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { + "typescript": { "optional": true } } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/builder-webpack5/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@storybook/builder-webpack5/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/builder-webpack5/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, + "dependencies": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/builder-webpack5/node_modules/@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader": { + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", + "dev": true, + "dependencies": { + "find-cache-dir": "^4.0.0", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@babel/core": "^7.12.0", + "webpack": ">=5" } }, - "node_modules/@storybook/addon-outline/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=14.16" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-toolbars": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.0.0-beta.45.tgz", - "integrity": "sha512-CQAm505NZgkwZeA5YqzBhiHbW4jLe+nrD7eRE5LbO4S82DyyBD1pAYoYFz7u+DdlamXyWuqq7JDubaD8Onrm6A==", + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45" + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "dependencies": { + "p-locate": "^6.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "yocto-queue": "^1.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "p-limit": "^4.0.0" + }, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "dev": true, + "dependencies": { + "find-up": "^6.3.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/builder-webpack5/node_modules/babel-loader/node_modules/yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", "dev": true, + "engines": { + "node": ">=12.20" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/builder-webpack5/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/cosmiconfig": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", + "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "dev": true, + "dependencies": { + "@types/parse-json": "^4.0.0", + "import-fresh": "^3.2.1", + "parse-json": "^5.0.0", + "path-type": "^4.0.0", + "yaml": "^1.10.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/addon-toolbars/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/builder-webpack5/node_modules/es-module-lexer": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.0.tgz", + "integrity": "sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==", + "dev": true + }, + "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz", + "integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^7.0.1", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=12.13.0", + "yarn": ">=1.0.0" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "typescript": ">3.6.0", + "webpack": "^5.11.0" } }, - "node_modules/@storybook/addon-viewport": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.0.0-beta.45.tgz", - "integrity": "sha512-cL/90Xk+FF0+Vje9SK8BhOntdlahTHsZULqGs30b6VgYRMiH1VDghA2kcGJKxTiwIdKlogZ/usKoFUxmD8VECQ==", + "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "prop-types": "^15.7.2" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "react": { - "optional": true - }, - "react-dom": { - "optional": true - } + "ajv": "^6.9.1" } }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=12" } }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" + }, + "engines": { + "node": ">= 10.13.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "dev": true, + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=14.14" } }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/builder-webpack5/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/builder-webpack5/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/@storybook/builder-webpack5/node_modules/schema-utils": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "@types/json-schema": "^7.0.9", + "ajv": "^8.9.0", + "ajv-formats": "^2.1.1", + "ajv-keywords": "^5.1.0" + }, + "engines": { + "node": ">= 12.13.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/webpack" + } + }, + "node_modules/@storybook/builder-webpack5/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/addon-viewport/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/builder-webpack5/node_modules/webpack-dev-middleware": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.3.tgz", + "integrity": "sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "colorette": "^2.0.10", + "memfs": "^3.4.12", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + }, + "engines": { + "node": ">= 14.15.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/webpack" }, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "webpack": "^5.0.0" + }, + "peerDependenciesMeta": { + "webpack": { + "optional": true + } } }, - "node_modules/@storybook/addons": { + "node_modules/@storybook/channel-postmessage": { "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-7.0.0-beta.45.tgz", - "integrity": "sha512-AzFLgG1+MsbiyrAh6SDr1lZJtXBMhxdpYDBJN5yRr1xzt+xqp77dPLW5opaNK5G+4R4+fW0jP+qjG07qR+vJaw==", + "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.0-beta.45.tgz", + "integrity": "sha512-K2QLwE7eqpUqoRpbvSHJHDA1I0/aAnv8ZQSZ6j7JGGRmRMUeZkWbQGwnhZp6rxboXNxQuich/ZtZ0erVQPbMqw==", "dev": true, "dependencies": { - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45" + "@storybook/channels": "7.0.0-beta.45", + "@storybook/client-logger": "7.0.0-beta.45", + "@storybook/core-events": "7.0.0-beta.45", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.0.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addons/node_modules/@storybook/client-logger": { + "node_modules/@storybook/channel-postmessage/node_modules/@storybook/client-logger": { "version": "7.0.0-beta.45", "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", @@ -6377,7 +6983,7 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addons/node_modules/@storybook/core-events": { + "node_modules/@storybook/channel-postmessage/node_modules/@storybook/core-events": { "version": "7.0.0-beta.45", "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", @@ -6387,186 +6993,246 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/addons/node_modules/@storybook/manager-api": { + "node_modules/@storybook/channels": { "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.0-beta.45.tgz", + "integrity": "sha512-wu497OYFmeD+0WQKxAMieaD1SfohvKa+IOocnNRQKGxbYWcKjjnKhoxN7JRoc6xG+GFS+x3Y48CiedtW0x0aqw==", "dev": true, - "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/addons/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "node_modules/@storybook/cli": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.6.17.tgz", + "integrity": "sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/types": "^7.23.0", + "@ndelangen/get-tarball": "^3.0.7", + "@storybook/codemod": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/core-server": "7.6.17", + "@storybook/csf-tools": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/telemetry": "7.6.17", + "@storybook/types": "7.6.17", + "@types/semver": "^7.3.4", + "@yarnpkg/fslib": "2.10.3", + "@yarnpkg/libzip": "2.3.0", + "chalk": "^4.1.0", + "commander": "^6.2.1", + "cross-spawn": "^7.0.3", + "detect-indent": "^6.1.0", + "envinfo": "^7.7.3", + "execa": "^5.0.0", + "express": "^4.17.3", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "get-npm-tarball-url": "^2.0.3", + "get-port": "^5.1.1", + "giget": "^1.0.0", + "globby": "^11.0.2", + "jscodeshift": "^0.15.1", + "leven": "^3.1.0", + "ora": "^5.4.1", + "prettier": "^2.8.0", + "prompts": "^2.4.0", + "puppeteer-core": "^2.1.1", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "strip-json-comments": "^3.0.1", + "tempy": "^1.0.1", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "bin": { + "getstorybook": "bin/index.js", + "sb": "bin/index.js" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/api/-/api-7.0.0-beta.45.tgz", - "integrity": "sha512-VDOGSKCu1/7Iql64I8T4LFY824im8i2Dyf88BRG7X6CPraLqExgDIT1ZwsGTgmhfGPqQgwCFKYEeUNIfFSWsPg==", + "node_modules/@storybook/cli/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/api/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/cli/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/api/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/api/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/chalk/chalk?sponsor=1" + } + }, + "node_modules/@storybook/cli/node_modules/commander": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", + "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", + "dev": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/@storybook/cli/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "dev": true, + "dependencies": { + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/api/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/cli/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@storybook/cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/cli/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "dev": true, + "dependencies": { + "p-locate": "^5.0.0" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "dev": true, + "dependencies": { + "yocto-queue": "^0.1.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/blocks": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.0.0-beta.45.tgz", - "integrity": "sha512-xCFnoPhFZfkTC4kKZNyWHB89TBYX5J4OcpOWf4ehm0c524L8xXOy+sKveoBzs2LdjvMYEr4hmLrhEEv6dedumw==", + "node_modules/@storybook/cli/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/docs-tools": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/lodash": "^4.14.167", - "color-convert": "^2.0.1", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "markdown-to-jsx": "^7.1.8", - "memoizerific": "^1.11.3", - "polished": "^4.2.2", - "react-colorful": "^5.1.2", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/@storybook/cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "dependencies": { + "has-flag": "^4.0.0" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "engines": { + "node": ">=8" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/client-logger": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.17.tgz", + "integrity": "sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==", "dev": true, "dependencies": { "@storybook/global": "^5.0.0" @@ -6576,81 +7242,82 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "node_modules/@storybook/codemod": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.6.17.tgz", + "integrity": "sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/cross-spawn": "^6.0.2", + "cross-spawn": "^7.0.3", + "globby": "^11.0.2", + "jscodeshift": "^0.15.1", + "lodash": "^4.17.21", + "prettier": "^2.8.0", + "recast": "^0.23.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/codemod/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, + "dependencies": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/codemod/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/blocks/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/components": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.17.tgz", + "integrity": "sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", + "@radix-ui/react-select": "^1.2.2", + "@radix-ui/react-toolbar": "^1.0.4", + "@storybook/client-logger": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", + "memoizerific": "^1.11.3", + "use-resize-observer": "^9.1.0", + "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", @@ -6661,273 +7328,193 @@ "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/builder-manager": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.0.0-beta.45.tgz", - "integrity": "sha512-etNprDOuRbZbIbMhxNWxLR7WBHS5f/GgOcSr4j4p23UQTIL/2s5gXyI9Y94cEV0Wkw7UjG290HWIuD2RlTBz8w==", + "node_modules/@storybook/components/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/manager": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@types/ejs": "^3.1.1", - "@types/find-cache-dir": "^3.2.1", - "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", - "browser-assert": "^1.2.1", - "ejs": "^3.1.8", - "esbuild": "^0.16.4", - "esbuild-plugin-alias": "^0.2.1", - "express": "^4.17.3", - "find-cache-dir": "^3.0.0", - "fs-extra": "^11.1.0", - "process": "^0.11.10", - "slash": "^3.0.0", - "util": "^0.12.4" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/esbuild": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", - "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.16.17", - "@esbuild/android-arm64": "0.16.17", - "@esbuild/android-x64": "0.16.17", - "@esbuild/darwin-arm64": "0.16.17", - "@esbuild/darwin-x64": "0.16.17", - "@esbuild/freebsd-arm64": "0.16.17", - "@esbuild/freebsd-x64": "0.16.17", - "@esbuild/linux-arm": "0.16.17", - "@esbuild/linux-arm64": "0.16.17", - "@esbuild/linux-ia32": "0.16.17", - "@esbuild/linux-loong64": "0.16.17", - "@esbuild/linux-mips64el": "0.16.17", - "@esbuild/linux-ppc64": "0.16.17", - "@esbuild/linux-riscv64": "0.16.17", - "@esbuild/linux-s390x": "0.16.17", - "@esbuild/linux-x64": "0.16.17", - "@esbuild/netbsd-x64": "0.16.17", - "@esbuild/openbsd-x64": "0.16.17", - "@esbuild/sunos-x64": "0.16.17", - "@esbuild/win32-arm64": "0.16.17", - "@esbuild/win32-ia32": "0.16.17", - "@esbuild/win32-x64": "0.16.17" - } - }, - "node_modules/@storybook/builder-manager/node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/@storybook/components/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-manager/node_modules/fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "node_modules/@storybook/core-client": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.6.17.tgz", + "integrity": "sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/preview-api": "7.6.17" }, - "engines": { - "node": ">=14.14" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-webpack5": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.0.0-beta.45.tgz", - "integrity": "sha512-TeFkBolegUrqNQsxFURGyOa5GUryrkpQWND3NHdBmr3a0HO79dnjauSYdj511Vz5I3/5ced7vUtb1L/GI/KfMw==", + "node_modules/@storybook/core-client/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@babel/core": "^7.12.10", - "@storybook/addons": "7.0.0-beta.45", - "@storybook/api": "7.0.0-beta.45", - "@storybook/channel-postmessage": "7.0.0-beta.45", - "@storybook/channel-websocket": "7.0.0-beta.45", - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-api": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/core-webpack": "7.0.0-beta.45", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/router": "7.0.0-beta.45", - "@storybook/store": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@types/node": "^16.0.0", - "@types/semver": "^7.3.4", - "babel-loader": "^9.0.0", - "babel-plugin-named-exports-order": "^0.0.2", - "browser-assert": "^1.2.1", - "case-sensitive-paths-webpack-plugin": "^2.4.0", - "css-loader": "^6.7.1", - "express": "^4.17.3", - "fork-ts-checker-webpack-plugin": "^7.2.8", - "fs-extra": "^11.1.0", - "html-webpack-plugin": "^5.5.0", - "path-browserify": "^1.0.1", - "process": "^0.11.10", - "semver": "^7.3.7", - "slash": "^3.0.0", - "style-loader": "^3.3.1", - "terser-webpack-plugin": "^5.3.1", - "ts-dedent": "^2.0.0", - "util": "^0.12.4", - "util-deprecate": "^1.0.2", - "webpack": "5", - "webpack-dev-middleware": "^5.3.1", - "webpack-hot-middleware": "^2.25.1", - "webpack-virtual-modules": "^0.4.3" + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } } }, - "node_modules/@storybook/builder-webpack5/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/core-client/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-webpack5/node_modules/@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "node_modules/@storybook/core-client/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/builder-webpack5/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/core-common": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.17.tgz", + "integrity": "sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==", "dev": true, + "dependencies": { + "@storybook/core-events": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/find-cache-dir": "^3.2.1", + "@types/node": "^18.0.0", + "@types/node-fetch": "^2.6.4", + "@types/pretty-hrtime": "^1.0.0", + "chalk": "^4.1.0", + "esbuild": "^0.18.0", + "esbuild-register": "^3.5.0", + "file-system-cache": "2.3.0", + "find-cache-dir": "^3.0.0", + "find-up": "^5.0.0", + "fs-extra": "^11.1.0", + "glob": "^10.0.0", + "handlebars": "^4.7.7", + "lazy-universal-dotenv": "^4.0.0", + "node-fetch": "^2.0.0", + "picomatch": "^2.3.0", + "pkg-dir": "^5.0.0", + "pretty-hrtime": "^1.0.3", + "resolve-from": "^5.0.0", + "ts-dedent": "^2.0.0" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/builder-webpack5/node_modules/@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "node_modules/@storybook/core-common/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/builder-webpack5/node_modules/@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "node_modules/@storybook/core-common/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/builder-webpack5/node_modules/@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true + "node_modules/@storybook/core-common/node_modules/@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } }, - "node_modules/@storybook/builder-webpack5/node_modules/ansi-styles": { + "node_modules/@storybook/core-common/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -6942,24 +7529,16 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/builder-webpack5/node_modules/babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "node_modules/@storybook/core-common/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, "dependencies": { - "find-cache-dir": "^3.3.2", - "schema-utils": "^4.0.0" - }, - "engines": { - "node": ">= 14.15.0" - }, - "peerDependencies": { - "@babel/core": "^7.12.0", - "webpack": ">=5" + "balanced-match": "^1.0.0" } }, - "node_modules/@storybook/builder-webpack5/node_modules/chalk": { + "node_modules/@storybook/core-common/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -6975,182 +7554,186 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/builder-webpack5/node_modules/cosmiconfig": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-7.1.0.tgz", - "integrity": "sha512-AdmX6xUzdNASswsFtmwSt7Vj8po9IuqXm0UXz7QKPuEUmPB4XyjGfaAr2PSuELMwkRMVH1EpIkX5bTZGRB3eCA==", + "node_modules/@storybook/core-common/node_modules/esbuild": { + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", "dev": true, - "dependencies": { - "@types/parse-json": "^4.0.0", - "import-fresh": "^3.2.1", - "parse-json": "^5.0.0", - "path-type": "^4.0.0", - "yaml": "^1.10.0" + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">=10" + "node": ">=12" + }, + "optionalDependencies": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" } }, - "node_modules/@storybook/builder-webpack5/node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/@storybook/core-common/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.3.0.tgz", - "integrity": "sha512-IN+XTzusCjR5VgntYFgxbxVx3WraPRnKehBFrf00cMSrtUuW9MsG9dhL6MWpY6MkjC3wVwoujfCDgZZCQwbswA==", + "node_modules/@storybook/core-common/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^7.0.1", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "typescript": ">3.6.0", - "vue-template-compiler": "*", - "webpack": "^5.11.0" - }, - "peerDependenciesMeta": { - "vue-template-compiler": { - "optional": true - } + "node": ">=14.14" } }, - "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin/node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", + "node_modules/@storybook/core-common/node_modules/glob": { + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" + }, + "bin": { + "glob": "dist/esm/bin.mjs" }, "engines": { - "node": ">=12" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@storybook/builder-webpack5/node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", + "node_modules/@storybook/core-common/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/@storybook/core-common/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "p-locate": "^5.0.0" }, "engines": { - "node": ">= 10.13.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/builder-webpack5/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/@storybook/core-common/node_modules/minimatch": { + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=14.14" + "node": ">=16 || 14 >=14.17" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@storybook/builder-webpack5/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@storybook/core-common/node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/@storybook/builder-webpack5/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, - "node_modules/@storybook/builder-webpack5/node_modules/schema-utils": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", - "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "node_modules/@storybook/core-common/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.9", - "ajv": "^8.9.0", - "ajv-formats": "^2.1.1", - "ajv-keywords": "^5.1.0" + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">= 12.13.0" + "node": ">=10" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/builder-webpack5/node_modules/schema-utils/node_modules/ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "node_modules/@storybook/core-common/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "p-limit": "^3.0.2" + }, + "engines": { + "node": ">=10" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/builder-webpack5/node_modules/schema-utils/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", + "node_modules/@storybook/core-common/node_modules/pkg-dir": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", + "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.3" + "find-up": "^5.0.0" }, - "peerDependencies": { - "ajv": "^8.8.2" + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/builder-webpack5/node_modules/supports-color": { + "node_modules/@storybook/core-common/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -7162,138 +7745,142 @@ "node": ">=8" } }, - "node_modules/@storybook/channel-postmessage": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.0-beta.45.tgz", - "integrity": "sha512-K2QLwE7eqpUqoRpbvSHJHDA1I0/aAnv8ZQSZ6j7JGGRmRMUeZkWbQGwnhZp6rxboXNxQuich/ZtZ0erVQPbMqw==", + "node_modules/@storybook/core-events": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.17.tgz", + "integrity": "sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/channel-postmessage/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/core-server": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.6.17.tgz", + "integrity": "sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@aw-web-design/x-default-browser": "1.4.126", + "@discoveryjs/json-ext": "^0.5.3", + "@storybook/builder-manager": "7.6.17", + "@storybook/channels": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "7.6.17", + "@storybook/docs-mdx": "^0.1.0", + "@storybook/global": "^5.0.0", + "@storybook/manager": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/telemetry": "7.6.17", + "@storybook/types": "7.6.17", + "@types/detect-port": "^1.3.0", + "@types/node": "^18.0.0", + "@types/pretty-hrtime": "^1.0.0", + "@types/semver": "^7.3.4", + "better-opn": "^3.0.2", + "chalk": "^4.1.0", + "cli-table3": "^0.6.1", + "compression": "^1.7.4", + "detect-port": "^1.3.0", + "express": "^4.17.3", + "fs-extra": "^11.1.0", + "globby": "^11.0.2", + "ip": "^2.0.1", + "lodash": "^4.17.21", + "open": "^8.4.0", + "pretty-hrtime": "^1.0.3", + "prompts": "^2.4.0", + "read-pkg-up": "^7.0.1", + "semver": "^7.3.7", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1", + "ts-dedent": "^2.0.0", + "util": "^0.12.4", + "util-deprecate": "^1.0.2", + "watchpack": "^2.2.0", + "ws": "^8.2.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/channel-postmessage/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/core-server/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, + "dependencies": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/channel-websocket": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-7.0.0-beta.45.tgz", - "integrity": "sha512-+jXf16R35KzA+0M4tJ5qxJTbfWCd2D2KMil6xr83NNS+MvkvU5if+vBWgzkhkrUTxoIDfbX/qBxUL0pgFScm6g==", + "node_modules/@storybook/core-server/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "telejson": "^7.0.3" + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/channel-websocket/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/core-server/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/channels": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.0-beta.45.tgz", - "integrity": "sha512-wu497OYFmeD+0WQKxAMieaD1SfohvKa+IOocnNRQKGxbYWcKjjnKhoxN7JRoc6xG+GFS+x3Y48CiedtW0x0aqw==", + "node_modules/@storybook/core-server/node_modules/@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/cli": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.0.0-beta.45.tgz", - "integrity": "sha512-dfcfar7Fi41EgsupTYimA/dZsTSHlT3c5m5bLM/uiPcRtPCTSjp/S3c5ePPFV8NuxtRn+vp6MD1izZfd7cNIUw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.20.2", - "@babel/preset-env": "^7.20.2", - "@storybook/codemod": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-server": "7.0.0-beta.45", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/telemetry": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/semver": "^7.3.4", - "boxen": "^5.1.2", - "chalk": "^4.1.0", - "commander": "^6.2.1", - "cross-spawn": "^7.0.3", - "detect-indent": "^6.1.0", - "envinfo": "^7.7.3", - "execa": "^5.0.0", - "express": "^4.17.3", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "get-port": "^5.1.1", - "giget": "^1.0.0", - "globby": "^11.0.2", - "jscodeshift": "^0.14.0", - "leven": "^3.1.0", - "prompts": "^2.4.0", - "puppeteer-core": "^2.1.1", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "shelljs": "^0.8.5", - "simple-update-notifier": "^1.0.0", - "strip-json-comments": "^3.0.1", - "tempy": "^1.0.1", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "bin": { - "getstorybook": "bin/index.js", - "sb": "bin/index.js" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "dependencies": { + "undici-types": "~5.26.4" } }, - "node_modules/@storybook/cli/node_modules/ansi-styles": { + "node_modules/@storybook/core-server/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -7308,7 +7895,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/cli/node_modules/chalk": { + "node_modules/@storybook/core-server/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -7324,35 +7911,10 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/cli/node_modules/commander": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-6.2.1.tgz", - "integrity": "sha512-U7VdrJFnJgo4xjrHpTzu0yrHPGImdsmD95ZlgYSEajAn2JKzDhDTPG9kBTefmObL2w/ngeZnilk+OV9CG3d7UA==", - "dev": true, - "engines": { - "node": ">= 6" - } - }, - "node_modules/@storybook/cli/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/cli/node_modules/fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "node_modules/@storybook/core-server/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -7363,7 +7925,7 @@ "node": ">=14.14" } }, - "node_modules/@storybook/cli/node_modules/has-flag": { + "node_modules/@storybook/core-server/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -7372,234 +7934,258 @@ "node": ">=8" } }, - "node_modules/@storybook/cli/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/@storybook/core-server/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "p-locate": "^5.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/@storybook/cli/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/@storybook/core-server/node_modules/ws": { + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, "engines": { - "node": ">=10" + "node": ">=10.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "bufferutil": "^4.0.1", + "utf-8-validate": ">=5.0.2" + }, + "peerDependenciesMeta": { + "bufferutil": { + "optional": true + }, + "utf-8-validate": { + "optional": true + } } }, - "node_modules/@storybook/cli/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/@storybook/core-webpack": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-7.6.17.tgz", + "integrity": "sha512-PyGrFhRM8sTONGwwLWLqBQ1HO+LBnVZ+5TOQO7ejQfdV2FWyNOzjBXm2e5jL/C6XlqiEhmL5pyHEyDBaQJQ3KA==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" + "@storybook/core-common": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/node": "^18.0.0", + "ts-dedent": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/cli/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@storybook/core-webpack/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, - "engines": { - "node": ">=8" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/client-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-7.0.0-beta.45.tgz", - "integrity": "sha512-caRNv0Gw3MlO51vs3KAAkGtoyVSAV+4LwWbxMDHYLhO9l74PLUd6BX7WUNuIBp9+X6uyqYuZ+g+tYPjdKmauYg==", + "node_modules/@storybook/core-webpack/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/client-api/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@storybook/core-webpack/node_modules/@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "undici-types": "~5.26.4" } }, - "node_modules/@storybook/client-logger": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.9.tgz", - "integrity": "sha512-EJnXWvpTFEj462ixZbDouTN9X/FinRgaKKN6zXdhSSZUnm5PcZBtnoX5S+982z3LiAjdNIuAdZE/4vwBIAF88A==", + "node_modules/@storybook/csf": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.3.tgz", + "integrity": "sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "type-fest": "^2.19.0" } }, - "node_modules/@storybook/codemod": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.0.0-beta.45.tgz", - "integrity": "sha512-1NuQtcvJ+kMZ01XOuTczyIESFeLqBXSDF68FsJSCc1BgbvGEq9uIzbYLZAoB6oIpmjIWN1sUlT5NuEV+ofekGw==", + "node_modules/@storybook/csf-plugin": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.6.17.tgz", + "integrity": "sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==", "dev": true, "dependencies": { - "@babel/core": "^7.20.2", - "@babel/preset-env": "^7.20.2", - "@babel/types": "^7.20.7", - "@storybook/csf": "next", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "cross-spawn": "^7.0.3", - "globby": "^11.0.2", - "jscodeshift": "^0.14.0", - "lodash": "^4.17.21", - "prettier": "^2.8.0", - "recast": "^0.23.1", - "util": "^0.12.4" + "@storybook/csf-tools": "7.6.17", + "unplugin": "^1.3.1" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/components": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.9.tgz", - "integrity": "sha512-60TcZSHYjHkJ6YyheL5SQ8zWi4zmefUKzjcRdIJwMQ57PyEK0LL7wKv63xD3ePbKHTZaQaIB3yOJSF/HQ1BHcQ==", + "node_modules/@storybook/csf-tools": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.17.tgz", + "integrity": "sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.9", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.9", - "@storybook/types": "7.0.9", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "7.6.17", + "fs-extra": "^11.1.0", + "recast": "^0.23.1", + "ts-dedent": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/components/node_modules/@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", + "node_modules/@storybook/csf-tools/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, + "dependencies": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/components/node_modules/@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "node_modules/@storybook/csf-tools/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.9", + "@storybook/channels": "7.6.17", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-client": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.9.tgz", - "integrity": "sha512-gBZnwh+YgFVBdwyYX4SKQyjVq56WyJU3l2s5on6im2SjxKLZXFfeOpl6XtAgbP2eIU8oaV9txY2hURsUJRkEoA==", + "node_modules/@storybook/csf-tools/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.9", - "@storybook/preview-api": "7.0.9" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, + "engines": { + "node": ">=14.14" + } + }, + "node_modules/@storybook/csf/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "dev": true, + "engines": { + "node": ">=12.20" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-client/node_modules/@storybook/channel-postmessage": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.9.tgz", - "integrity": "sha512-6zsUPlsD3GVhKNq4UZ5MePJPjiMcPs/K02mH5/uVTN2JSgLdWgbLhZ4VYit4HgwE+d98bd9zWbgNgSOXpTArag==", + "node_modules/@storybook/docs-mdx": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz", + "integrity": "sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==", + "dev": true + }, + "node_modules/@storybook/docs-tools": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.6.17.tgz", + "integrity": "sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" + "@storybook/core-common": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/types": "7.6.17", + "@types/doctrine": "^0.0.3", + "assert": "^2.1.0", + "doctrine": "^3.0.0", + "lodash": "^4.17.21" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-client/node_modules/@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", + "node_modules/@storybook/docs-tools/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, + "dependencies": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-client/node_modules/@storybook/preview-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.9.tgz", - "integrity": "sha512-cLyhq2nk0eiMOUwIIKhgDgZoS1ecRGojl92hR0agZDzNJrb1lvXK6uIkJh/Anl2Jbir28lAjQGU54voPODwTUA==", + "node_modules/@storybook/docs-tools/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "@storybook/channel-postmessage": "7.0.9", - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.9", + "@storybook/types": "7.6.17", "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", @@ -7614,161 +8200,222 @@ "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-client/node_modules/@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "node_modules/@storybook/docs-tools/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.9", + "@storybook/channels": "7.6.17", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "file-system-cache": "2.3.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common": { + "node_modules/@storybook/global": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", + "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", + "dev": true + }, + "node_modules/@storybook/instrumenter": { "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.0-beta.45.tgz", - "integrity": "sha512-NG95uCQyF4wWC/o7gZi7dJ+huUrESLR1MO0jUgEEZbbTUeimFudT3CIEogqeIK1JsLRD19rfjEpb7QBeYsYNSg==", + "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.0.0-beta.45.tgz", + "integrity": "sha512-eO7AZeeaJ78qYdnKzl9C+Pl0V6CUhZRhjN2PObr/SvLLv66dmLo3Qwq24cTrIpIIQgaG4E0JdtUztGipRpKnBQ==", "dev": true, "dependencies": { - "@babel/core": "^7.20.2", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/babel__core": "^7.1.20", - "@types/express": "^4.7.0", - "@types/node": "^16.0.0", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.16.4", - "esbuild-register": "^3.3.3", - "express": "^4.17.3", - "file-system-cache": "^2.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^8.1.0", - "glob-promise": "^6.0.2", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "slash": "^3.0.0", - "ts-dedent": "^2.0.0" + "@storybook/channels": "7.0.0-beta.45", + "@storybook/client-logger": "7.0.0-beta.45", + "@storybook/core-events": "7.0.0-beta.45", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "7.0.0-beta.45" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true - }, - "node_modules/@storybook/core-common/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@storybook/instrumenter/node_modules/@storybook/client-logger": { + "version": "7.0.0-beta.45", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", + "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "@storybook/global": "^5.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/@storybook/instrumenter/node_modules/@storybook/core-events": { + "version": "7.0.0-beta.45", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", + "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@storybook/manager": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.6.17.tgz", + "integrity": "sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/esbuild": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", - "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", + "node_modules/@storybook/manager-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.6.17.tgz", + "integrity": "sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/router": "7.6.17", + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "store2": "^2.14.2", + "telejson": "^7.2.0", + "ts-dedent": "^2.0.0" }, - "engines": { - "node": ">=12" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/manager-api/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "dependencies": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, - "optionalDependencies": { - "@esbuild/android-arm": "0.16.17", - "@esbuild/android-arm64": "0.16.17", - "@esbuild/android-x64": "0.16.17", - "@esbuild/darwin-arm64": "0.16.17", - "@esbuild/darwin-x64": "0.16.17", - "@esbuild/freebsd-arm64": "0.16.17", - "@esbuild/freebsd-x64": "0.16.17", - "@esbuild/linux-arm": "0.16.17", - "@esbuild/linux-arm64": "0.16.17", - "@esbuild/linux-ia32": "0.16.17", - "@esbuild/linux-loong64": "0.16.17", - "@esbuild/linux-mips64el": "0.16.17", - "@esbuild/linux-ppc64": "0.16.17", - "@esbuild/linux-riscv64": "0.16.17", - "@esbuild/linux-s390x": "0.16.17", - "@esbuild/linux-x64": "0.16.17", - "@esbuild/netbsd-x64": "0.16.17", - "@esbuild/openbsd-x64": "0.16.17", - "@esbuild/sunos-x64": "0.16.17", - "@esbuild/win32-arm64": "0.16.17", - "@esbuild/win32-ia32": "0.16.17", - "@esbuild/win32-x64": "0.16.17" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/@storybook/manager-api/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/mdx2-csf": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz", + "integrity": "sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==", + "dev": true + }, + "node_modules/@storybook/node-logger": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.17.tgz", + "integrity": "sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/postinstall": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.6.17.tgz", + "integrity": "sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/preset-react-webpack": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-7.6.17.tgz", + "integrity": "sha512-gn/LvIbll9loOkzwbFlxzOZGmJ6t1vF2/gfi+p/N/AifDYe8+LVM1QV4KRVKt6UEJwsQd79lKf7vPH92AQaKKQ==", + "dev": true, + "dependencies": { + "@babel/preset-flow": "^7.22.15", + "@babel/preset-react": "^7.22.15", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", + "@storybook/core-webpack": "7.6.17", + "@storybook/docs-tools": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/react": "7.6.17", + "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", + "@types/node": "^18.0.0", + "@types/semver": "^7.3.4", + "babel-plugin-add-react-displayname": "^0.0.5", + "fs-extra": "^11.1.0", + "magic-string": "^0.30.5", + "react-docgen": "^7.0.0", + "react-refresh": "^0.14.0", + "semver": "^7.3.7", + "webpack": "5" }, "engines": { - "node": ">=10" + "node": ">=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@babel/core": "^7.22.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/core-common/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/@storybook/preset-react-webpack/node_modules/@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "dev": true, + "dependencies": { + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/preset-react-webpack/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -7779,216 +8426,317 @@ "node": ">=14.14" } }, - "node_modules/@storybook/core-common/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/@storybook/preview": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.6.17.tgz", + "integrity": "sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/preview-api": { + "version": "7.0.0-beta.45", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.0-beta.45.tgz", + "integrity": "sha512-GBVqxeRFK4oQc17J+QV92+w3NuFbENRCo8xkybf7uUhzz9+72Znj89jjg/hbf86B5UBs2uen2GGciaNckyQmJg==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "@storybook/channel-postmessage": "7.0.0-beta.45", + "@storybook/channels": "7.0.0-beta.45", + "@storybook/client-logger": "7.0.0-beta.45", + "@storybook/core-events": "7.0.0-beta.45", + "@storybook/csf": "next", + "@storybook/global": "^5.0.0", + "@storybook/types": "7.0.0-beta.45", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "slash": "^3.0.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, - "engines": { - "node": ">=12" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/preview-api/node_modules/@storybook/client-logger": { + "version": "7.0.0-beta.45", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", + "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "dev": true, + "dependencies": { + "@storybook/global": "^5.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/glob-promise": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz", - "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==", + "node_modules/@storybook/preview-api/node_modules/@storybook/core-events": { + "version": "7.0.0-beta.45", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", + "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + } + }, + "node_modules/@storybook/react": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.6.17.tgz", + "integrity": "sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==", "dev": true, "dependencies": { - "@types/glob": "^8.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-client": "7.6.17", + "@storybook/docs-tools": "7.6.17", + "@storybook/global": "^5.0.0", + "@storybook/preview-api": "7.6.17", + "@storybook/react-dom-shim": "7.6.17", + "@storybook/types": "7.6.17", + "@types/escodegen": "^0.0.6", + "@types/estree": "^0.0.51", + "@types/node": "^18.0.0", + "acorn": "^7.4.1", + "acorn-jsx": "^5.3.1", + "acorn-walk": "^7.2.0", + "escodegen": "^2.1.0", + "html-tags": "^3.1.0", + "lodash": "^4.17.21", + "prop-types": "^15.7.2", + "react-element-to-jsx-string": "^15.0.0", + "ts-dedent": "^2.0.0", + "type-fest": "~2.19", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=16" + "node": ">=16.0.0" }, "funding": { - "type": "individual", - "url": "https://github.com/sponsors/ahmadnassri" + "type": "opencollective", + "url": "https://opencollective.com/storybook" }, "peerDependencies": { - "glob": "^8.0.3" + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "typescript": "*" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/core-common/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@storybook/react-docgen-typescript-plugin": { + "version": "1.0.6--canary.9.0c3f3b7.0", + "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.6--canary.9.0c3f3b7.0.tgz", + "integrity": "sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "debug": "^4.1.1", + "endent": "^2.0.1", + "find-cache-dir": "^3.3.1", + "flat-cache": "^3.0.4", + "micromatch": "^4.0.2", + "react-docgen-typescript": "^2.2.2", + "tslib": "^2.0.0" + }, + "peerDependencies": { + "typescript": ">= 4.x", + "webpack": ">= 4" } }, - "node_modules/@storybook/core-common/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/@storybook/react-dom-shim": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.6.17.tgz", + "integrity": "sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==", + "dev": true, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/@storybook/react-webpack5": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-7.6.17.tgz", + "integrity": "sha512-qGc2JxaSmvPXV7ndxA/8qPtPLK7lAwejL/QdrzLXhxEmVdZLMew640FBYgOV/zWnehV3BnivThln/8PsQyst/g==", "dev": true, "dependencies": { - "p-locate": "^5.0.0" + "@storybook/builder-webpack5": "7.6.17", + "@storybook/preset-react-webpack": "7.6.17", + "@storybook/react": "7.6.17", + "@types/node": "^18.0.0" }, "engines": { - "node": ">=10" + "node": ">=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "@babel/core": "^7.22.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", + "typescript": "*" + }, + "peerDependenciesMeta": { + "@babel/core": { + "optional": true + }, + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/core-common/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/@storybook/react-webpack5/node_modules/@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" + "undici-types": "~5.26.4" } }, - "node_modules/@storybook/core-common/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/@storybook/react/node_modules/@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/@storybook/react/node_modules/@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "node_modules/@storybook/react/node_modules/@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "dependencies": { - "find-up": "^5.0.0" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" }, - "engines": { - "node": ">=10" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-common/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@storybook/react/node_modules/@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "undici-types": "~5.26.4" + } + }, + "node_modules/@storybook/react/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "dev": true, + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">=8" + "node": ">=0.4.0" } }, - "node_modules/@storybook/core-events": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.9.tgz", - "integrity": "sha512-xJiyX7Gq/TgDdBv+8KbfTJ4Sc7fCMeIEUqWTtnYCHWB7Mp6Iui37+caDX3aGQRTz7FVgb7aL5QkQES9Ihc1+dg==", + "node_modules/@storybook/react/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, + "engines": { + "node": ">=12.20" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@storybook/core-server": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.0.0-beta.45.tgz", - "integrity": "sha512-mR7ijKJmmOTa+YS1uxfaYBQfEZunRfCDCtthZiM7z77FOF7WK5mZbR+mK8tlqDE9FZsMDRNDtIaZLa+nnKpmvg==", + "node_modules/@storybook/router": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.6.17.tgz", + "integrity": "sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==", "dev": true, "dependencies": { - "@aw-web-design/x-default-browser": "1.4.88", - "@discoveryjs/json-ext": "^0.5.3", - "@storybook/builder-manager": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/docs-mdx": "next", - "@storybook/global": "^5.0.0", - "@storybook/manager": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/telemetry": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/detect-port": "^1.3.0", - "@types/node": "^16.0.0", - "@types/node-fetch": "^2.5.7", - "@types/pretty-hrtime": "^1.0.0", - "@types/semver": "^7.3.4", - "better-opn": "^2.1.1", - "boxen": "^5.1.2", - "chalk": "^4.1.0", - "cli-table3": "^0.6.1", - "compression": "^1.7.4", - "detect-port": "^1.3.0", - "express": "^4.17.3", - "fs-extra": "^11.1.0", - "globby": "^11.0.2", - "ip": "^2.0.0", - "lodash": "^4.17.21", - "node-fetch": "^2.6.7", - "open": "^8.4.0", - "pretty-hrtime": "^1.0.3", - "prompts": "^2.4.0", - "read-pkg-up": "^7.0.1", - "semver": "^7.3.7", - "serve-favicon": "^2.5.0", - "slash": "^3.0.0", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2", - "watchpack": "^2.2.0", - "ws": "^8.2.3" + "@storybook/client-logger": "7.6.17", + "memoizerific": "^1.11.3", + "qs": "^6.10.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-server/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@storybook/telemetry": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.6.17.tgz", + "integrity": "sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==", "dev": true, + "dependencies": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/csf-tools": "7.6.17", + "chalk": "^4.1.0", + "detect-package-manager": "^2.0.1", + "fetch-retry": "^5.0.2", + "fs-extra": "^11.1.0", + "read-pkg-up": "^7.0.1" + }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/core-server/node_modules/@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==", - "dev": true - }, - "node_modules/@storybook/core-server/node_modules/ansi-styles": { + "node_modules/@storybook/telemetry/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -8003,7 +8751,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/core-server/node_modules/chalk": { + "node_modules/@storybook/telemetry/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -8019,10 +8767,10 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/core-server/node_modules/fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "node_modules/@storybook/telemetry/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { "graceful-fs": "^4.2.0", @@ -8033,7 +8781,7 @@ "node": ">=14.14" } }, - "node_modules/@storybook/core-server/node_modules/has-flag": { + "node_modules/@storybook/telemetry/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -8042,7 +8790,7 @@ "node": ">=8" } }, - "node_modules/@storybook/core-server/node_modules/supports-color": { + "node_modules/@storybook/telemetry/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -8054,297 +8802,302 @@ "node": ">=8" } }, - "node_modules/@storybook/core-server/node_modules/ws": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz", - "integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==", + "node_modules/@storybook/testing-library": { + "version": "0.0.14-next.1", + "resolved": "https://registry.npmjs.org/@storybook/testing-library/-/testing-library-0.0.14-next.1.tgz", + "integrity": "sha512-1CAl40IKIhcPaCC4pYCG0b9IiYNymktfV/jTrX7ctquRY3akaN7f4A1SippVHosksft0M+rQTFE0ccfWW581fw==", "dev": true, - "engines": { - "node": ">=10.0.0" - }, - "peerDependencies": { - "bufferutil": "^4.0.1", - "utf-8-validate": ">=5.0.2" - }, - "peerDependenciesMeta": { - "bufferutil": { - "optional": true - }, - "utf-8-validate": { - "optional": true - } + "dependencies": { + "@storybook/client-logger": "next", + "@storybook/instrumenter": "next", + "@testing-library/dom": "^8.3.0", + "@testing-library/user-event": "^13.2.1", + "ts-dedent": "^2.2.0" } }, - "node_modules/@storybook/core-webpack": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-7.0.0-beta.45.tgz", - "integrity": "sha512-L0mb2Afo+Px/FXq9b5ReZP83SOSDA+gIGPEykr+nddhfw96qzZazoNtb1EEDGCz5IZK7rdSYlnyXHzmoNtZCQA==", + "node_modules/@storybook/theming": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.17.tgz", + "integrity": "sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==", "dev": true, "dependencies": { - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/node": "^16.0.0", - "ts-dedent": "^2.0.0" + "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", + "@storybook/client-logger": "7.6.17", + "@storybook/global": "^5.0.0", + "memoizerific": "^1.11.3" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" + }, + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/@storybook/core-webpack/node_modules/@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==", - "dev": true - }, - "node_modules/@storybook/csf": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.0.tgz", - "integrity": "sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ==", - "dev": true, - "dependencies": { - "type-fest": "^2.19.0" - } - }, - "node_modules/@storybook/csf-plugin": { + "node_modules/@storybook/types": { "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.0.0-beta.45.tgz", - "integrity": "sha512-epFppRrY0A3uNp/rIiHvoCnahu69Sq4+Z/5YcROTUPBZsragImd3HuWWvMlsrsqHVv7UnNzTfsHAKb+zvpkNSQ==", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.0-beta.45.tgz", + "integrity": "sha512-DGiw1lhOQ/Zy7TM7qsboR3Htu0FaMYEk3bSxLFMQgHZmf+n5z6ZPiNYTLQVrZ41BahfSCZMIRJDLQjJAQtPsdg==", "dev": true, "dependencies": { - "@storybook/csf-tools": "7.0.0-beta.45", - "unplugin": "^0.10.2" + "@babel/core": "^7.12.10", + "@storybook/channels": "7.0.0-beta.45", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "express": "^4.17.3", + "file-system-cache": "^2.0.0" }, "funding": { "type": "opencollective", "url": "https://opencollective.com/storybook" } }, - "node_modules/@storybook/csf-tools": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.0.0-beta.45.tgz", - "integrity": "sha512-pQznSfpPht8IZQvmRjAjieQ1Y3B9wGryvNJ7asDMGVPbfZCIR8/9m+9QrvOKqBmlRJ1NzwoxHORG/RShBCPTcQ==", + "node_modules/@swc/core": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.4.12.tgz", + "integrity": "sha512-QljRxTaUajSLB9ui93cZ38/lmThwIw/BPxjn+TphrYN6LPU3vu9/ykjgHtlpmaXDDcngL4K5i396E7iwwEUxYg==", "dev": true, + "hasInstallScript": true, "dependencies": { - "@babel/types": "^7.20.2", - "@storybook/csf": "next", - "@storybook/types": "7.0.0-beta.45", - "fs-extra": "^11.1.0", - "recast": "^0.23.1", - "ts-dedent": "^2.0.0" + "@swc/counter": "^0.1.2", + "@swc/types": "^0.1.5" + }, + "engines": { + "node": ">=10" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/swc" + }, + "optionalDependencies": { + "@swc/core-darwin-arm64": "1.4.12", + "@swc/core-darwin-x64": "1.4.12", + "@swc/core-linux-arm-gnueabihf": "1.4.12", + "@swc/core-linux-arm64-gnu": "1.4.12", + "@swc/core-linux-arm64-musl": "1.4.12", + "@swc/core-linux-x64-gnu": "1.4.12", + "@swc/core-linux-x64-musl": "1.4.12", + "@swc/core-win32-arm64-msvc": "1.4.12", + "@swc/core-win32-ia32-msvc": "1.4.12", + "@swc/core-win32-x64-msvc": "1.4.12" + }, + "peerDependencies": { + "@swc/helpers": "^0.5.0" + }, + "peerDependenciesMeta": { + "@swc/helpers": { + "optional": true + } } }, - "node_modules/@storybook/csf-tools/node_modules/fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "node_modules/@swc/core-darwin-arm64": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.4.12.tgz", + "integrity": "sha512-BZUUq91LGJsLI2BQrhYL3yARkcdN4TS3YGNS6aRYUtyeWrGCTKHL90erF2BMU2rEwZLLkOC/U899R4o4oiSHfA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=14.14" + "node": ">=10" } }, - "node_modules/@storybook/csf/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "node_modules/@swc/core-darwin-x64": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.4.12.tgz", + "integrity": "sha512-Wkk8rq1RwCOgg5ybTlfVtOYXLZATZ+QjgiBNM7pIn03A5/zZicokNTYd8L26/mifly2e74Dz34tlIZBT4aTGDA==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=10" } }, - "node_modules/@storybook/docs-mdx": { - "version": "0.0.1-next.6", - "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.0.1-next.6.tgz", - "integrity": "sha512-DjoSIXADmLJtdroXAjUotFiZlcZ2usWhqrS7aeOtZs0DVR0Ws5WQjnwtpDUXt8gryTSd+OZJ0cNsDcqg4JDEvQ==", - "dev": true + "node_modules/@swc/core-linux-arm-gnueabihf": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.4.12.tgz", + "integrity": "sha512-8jb/SN67oTQ5KSThWlKLchhU6xnlAlnmnLCCOKK1xGtFS6vD+By9uL+qeEY2krV98UCRTf68WSmC0SLZhVoz5A==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" + } }, - "node_modules/@storybook/docs-tools": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.0-beta.45.tgz", - "integrity": "sha512-EYHg9GiE6PiAi0BhFq5dKrMOvrEFCiZAQQgZVXOU8aVQOiLBMbWqcOfPPdlZq0Ef+1dHae2sqe5qCaxCagFL6A==", + "node_modules/@swc/core-linux-arm64-gnu": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.4.12.tgz", + "integrity": "sha512-DhW47DQEZKCdSq92v5F03rqdpjRXdDMqxfu4uAlZ9Uo1wJEGvY23e1SNmhji2sVHsZbBjSvoXoBLk0v00nSG8w==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@babel/core": "^7.12.10", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/doctrine": "^0.0.3", - "doctrine": "^3.0.0", - "lodash": "^4.17.21" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/global": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/@storybook/global/-/global-5.0.0.tgz", - "integrity": "sha512-FcOqPAXACP0I3oJ/ws6/rrPT9WGhu915Cg8D02a9YxLo0DE9zI+a9A5gRGvmQ09fiWPukqI8ZAEoQEdWUKMQdQ==", - "dev": true - }, - "node_modules/@storybook/instrumenter": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/instrumenter/-/instrumenter-7.0.0-beta.45.tgz", - "integrity": "sha512-eO7AZeeaJ78qYdnKzl9C+Pl0V6CUhZRhjN2PObr/SvLLv66dmLo3Qwq24cTrIpIIQgaG4E0JdtUztGipRpKnBQ==", + "node_modules/@swc/core-linux-arm64-musl": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.4.12.tgz", + "integrity": "sha512-PR57pT3TssnCRvdsaKNsxZy9N8rFg9AKA1U7W+LxbZ/7Z7PHc5PjxF0GgZpE/aLmU6xOn5VyQTlzjoamVkt05g==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.45" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@swc/core-linux-x64-gnu": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.4.12.tgz", + "integrity": "sha512-HLZIWNHWuFIlH+LEmXr1lBiwGQeCshKOGcqbJyz7xpqTh7m2IPAxPWEhr/qmMTMsjluGxeIsLrcsgreTyXtgNA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/instrumenter/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@swc/core-linux-x64-musl": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.4.12.tgz", + "integrity": "sha512-M5fBAtoOcpz2YQAFtNemrPod5BqmzAJc8pYtT3dVTn1MJllhmLHlphU8BQytvoGr1PHgJL8ZJBlBGdt70LQ7Mw==", + "cpu": [ + "x64" + ], "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/manager": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.0.0-beta.45.tgz", - "integrity": "sha512-iMaJ1Wn26OxIW4vbHx3MFXTDIkJVGmJNl/D7UgXTHKRlUzAj497SVhT/2jv+dIRC/3CZsQySGMgl6RdFRd7VPQ==", + "node_modules/@swc/core-win32-arm64-msvc": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.4.12.tgz", + "integrity": "sha512-K8LjjgZ7VQFtM+eXqjfAJ0z+TKVDng3r59QYn7CL6cyxZI2brLU3lNknZcUFSouZD+gsghZI/Zb8tQjVk7aKDQ==", + "cpu": [ + "arm64" + ], "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/manager-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.9.tgz", - "integrity": "sha512-x3sbSkf1HPSTVci2N/uaRr7Hdc7dOwk4YUO37jWLi1aWeaoawgLJS6w0qWsgFNE8Yn7mSMybdvI+1IIhj69ghg==", + "node_modules/@swc/core-win32-ia32-msvc": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.4.12.tgz", + "integrity": "sha512-hflO5LCxozngoOmiQbDPyvt6ODc5Cu9AwTJP9uH/BSMPdEQ6PCnefuUOJLAKew2q9o+NmDORuJk+vgqQz9Uzpg==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.9", - "@storybook/theming": "7.0.9", - "@storybook/types": "7.0.9", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/manager-api/node_modules/@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", + "node_modules/@swc/core-win32-x64-msvc": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.4.12.tgz", + "integrity": "sha512-3A4qMtddBDbtprV5edTB/SgJn9L+X5TL7RGgS3eWtEgn/NG8gA80X/scjf1v2MMeOsrcxiYhnemI2gXCKuQN2g==", + "cpu": [ + "x64" + ], "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=10" } }, - "node_modules/@storybook/manager-api/node_modules/@storybook/router": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.9.tgz", - "integrity": "sha512-1htgfqGuQxMB258ErNfShpJQncbY4/EL/5qhVB//7Ph98ZeJkaXzdVM9N8MYME5htuoVX43Jpg5hf3W6FB9jIg==", + "node_modules/@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "dev": true + }, + "node_modules/@swc/types": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.6.tgz", + "integrity": "sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.9", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@swc/counter": "^0.1.3" } }, - "node_modules/@storybook/manager-api/node_modules/@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "node_modules/@szmarczak/http-timer": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", + "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.9", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "defer-to-connect": "^2.0.1" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=14.16" } }, - "node_modules/@storybook/mdx2-csf": { - "version": "1.1.0-next.1", - "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0-next.1.tgz", - "integrity": "sha512-ONvFBZySHsBIkUYGrUM8FCG2tDKf663TIErztPSOghOpmBGyFLjSsXJHkNWiRi4c740PoemLqJd2XZZVlXRVLQ==", - "dev": true - }, - "node_modules/@storybook/node-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-U9xCgJp0WHgpsSQkkGqqHcHr6krs+xjOxdMf31MdW94M4Po5qKJFpUF0k/Wf277pr3BTiNR/ci0tulAfUE+LLw==", + "node_modules/@testing-library/dom": { + "version": "8.20.0", + "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", + "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", "dev": true, "dependencies": { - "@types/npmlog": "^4.1.2", + "@babel/code-frame": "^7.10.4", + "@babel/runtime": "^7.12.5", + "@types/aria-query": "^5.0.1", + "aria-query": "^5.0.0", "chalk": "^4.1.0", - "npmlog": "^5.0.1", - "pretty-hrtime": "^1.0.3" + "dom-accessibility-api": "^0.5.9", + "lz-string": "^1.4.4", + "pretty-format": "^27.0.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">=12" } }, - "node_modules/@storybook/node-logger/node_modules/ansi-styles": { + "node_modules/@testing-library/dom/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -8359,7 +9112,16 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/@storybook/node-logger/node_modules/chalk": { + "node_modules/@testing-library/dom/node_modules/aria-query": { + "version": "5.1.3", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", + "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "dev": true, + "dependencies": { + "deep-equal": "^2.0.5" + } + }, + "node_modules/@testing-library/dom/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -8375,7 +9137,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/@storybook/node-logger/node_modules/has-flag": { + "node_modules/@testing-library/dom/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -8384,7 +9146,7 @@ "node": ">=8" } }, - "node_modules/@storybook/node-logger/node_modules/supports-color": { + "node_modules/@testing-library/dom/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -8396,996 +9158,794 @@ "node": ">=8" } }, - "node_modules/@storybook/postinstall": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.0.0-beta.45.tgz", - "integrity": "sha512-+iC3Cu8bqiTMcGHXtQF78dRcP6hlbcPeMG2ZLccofpWwCt6wUb/vCuWF4E1wdsQ6cVcA4TmVZZvQ+SAQV/tMiw==", + "node_modules/@testing-library/user-event": { + "version": "13.5.0", + "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", + "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/preset-react-webpack": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-7.0.0-beta.45.tgz", - "integrity": "sha512-JDRAizbr+M8+S7hDX1YVfrsf1C8oFj/IoLCT9c7oqGDntI0h4TOOhNd4DA2ub0XugvTVgWuso1HDDOnEire+CQ==", - "dev": true, - "dependencies": { - "@babel/preset-flow": "^7.18.6", - "@babel/preset-react": "^7.18.6", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.5", - "@storybook/core-webpack": "7.0.0-beta.45", - "@storybook/docs-tools": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/react": "7.0.0-beta.45", - "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", - "@types/node": "^16.0.0", - "@types/semver": "^7.3.4", - "babel-plugin-add-react-displayname": "^0.0.5", - "babel-plugin-react-docgen": "^4.2.1", - "fs-extra": "^11.1.0", - "react-refresh": "^0.11.0", - "semver": "^7.3.7" + "dependencies": { + "@babel/runtime": "^7.12.5" }, "engines": { - "node": ">=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "node": ">=10", + "npm": ">=6" }, "peerDependencies": { - "@babel/core": "^7.11.5", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0", - "webpack": "5" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "typescript": { - "optional": true - } + "@testing-library/dom": ">=7.21.4" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@tootallnate/once": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", + "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", "dev": true, - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "engines": { + "node": ">= 6" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/@storybook/core-client": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.0-beta.45.tgz", - "integrity": "sha512-KojSCerPbKrX/rq7I0G2RqiKRID8IDyp+HRGjvp1a/iGNT7j5fB+wLXC8MuJPwFXImI3XSxhhbXW8BDu83H0uQ==", - "dev": true, - "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } + "node_modules/@tootallnate/quickjs-emscripten": { + "version": "0.23.0", + "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", + "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", + "dev": true }, - "node_modules/@storybook/preset-react-webpack/node_modules/@storybook/react": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.0-beta.45.tgz", - "integrity": "sha512-Z2ShzXat5dQM2nGVezcnGZumf/3mC8kyfCZ+4ss5kZRWH3Lsl+GKfQQKzONyP9ebnxPEvz6dQLYoLOCO9JlPEg==", + "node_modules/@tsconfig/node10": { + "version": "1.0.9", + "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", + "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", + "dev": true + }, + "node_modules/@tsconfig/node12": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", + "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", + "dev": true + }, + "node_modules/@tsconfig/node14": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", + "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", + "dev": true + }, + "node_modules/@tsconfig/node16": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", + "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", + "dev": true + }, + "node_modules/@types/aria-query": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", + "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", + "dev": true + }, + "node_modules/@types/babel__core": { + "version": "7.20.0", + "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", + "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-client": "7.0.0-beta.45", - "@storybook/docs-tools": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^16.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.0.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "^2.19.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@babel/parser": "^7.20.7", + "@babel/types": "^7.20.7", + "@types/babel__generator": "*", + "@types/babel__template": "*", + "@types/babel__traverse": "*" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/@storybook/react-docgen-typescript-plugin": { - "version": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", - "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0.tgz", - "integrity": "sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==", + "node_modules/@types/babel__generator": { + "version": "7.6.4", + "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", + "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", "dev": true, "dependencies": { - "debug": "^4.1.1", - "endent": "^2.0.1", - "find-cache-dir": "^3.3.1", - "flat-cache": "^3.0.4", - "micromatch": "^4.0.2", - "react-docgen-typescript": "^2.1.1", - "tslib": "^2.0.0" - }, - "peerDependencies": { - "typescript": ">= 3.x", - "webpack": ">= 4" + "@babel/types": "^7.0.0" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true - }, - "node_modules/@storybook/preset-react-webpack/node_modules/acorn": { + "node_modules/@types/babel__template": { "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", + "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "dependencies": { + "@babel/parser": "^7.1.0", + "@babel/types": "^7.0.0" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/@types/babel__traverse": { + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", "dev": true, "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "@babel/types": "^7.20.7" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/@types/body-parser": { + "version": "1.19.2", + "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", + "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=14.14" + "@types/connect": "*", + "@types/node": "*" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/react-docgen-typescript": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", - "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", + "node_modules/@types/bonjour": { + "version": "3.5.10", + "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", + "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", "dev": true, - "peerDependencies": { - "typescript": ">= 4.3.x" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@storybook/preset-react-webpack/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/@types/color": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/@types/color/-/color-3.0.3.tgz", + "integrity": "sha512-X//qzJ3d3Zj82J9sC/C18ZY5f43utPbAJ6PhYt/M7uG6etcF6MRpKdN880KBy43B0BMzSfeT96MzrsNjFI3GbA==", + "dependencies": { + "@types/color-convert": "*" } }, - "node_modules/@storybook/preview": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.0.0-beta.45.tgz", - "integrity": "sha512-fofDdHtkj7dSSzrtuetBZe4QcSG/igzN+ZponBOBq09okFG5kdFeSBuMcwNRsyFByFwSTa95QHVEfvIdoZulGQ==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "node_modules/@types/color-convert": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.0.tgz", + "integrity": "sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==", + "dependencies": { + "@types/color-name": "*" } }, - "node_modules/@storybook/preview-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.0-beta.45.tgz", - "integrity": "sha512-GBVqxeRFK4oQc17J+QV92+w3NuFbENRCo8xkybf7uUhzz9+72Znj89jjg/hbf86B5UBs2uen2GGciaNckyQmJg==", + "node_modules/@types/color-name": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", + "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + }, + "node_modules/@types/connect": { + "version": "3.4.35", + "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", + "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", "dev": true, "dependencies": { - "@storybook/channel-postmessage": "7.0.0-beta.45", - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.0-beta.45", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "slash": "^3.0.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/node": "*" } }, - "node_modules/@storybook/preview-api/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@types/connect-history-api-fallback": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", + "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/express-serve-static-core": "*", + "@types/node": "*" } }, - "node_modules/@storybook/preview-api/node_modules/@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", + "node_modules/@types/cross-spawn": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@storybook/react": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.9.tgz", - "integrity": "sha512-wYrtyk6qVqgqODgBh/vWO31SrjzFER0NfnrZy6FvwR4AAHhM0u2qMs8ZXCJFXFIgwjkgGwpD9/EwjRuYHUqDTQ==", - "dev": true, - "dependencies": { - "@storybook/client-logger": "7.0.9", - "@storybook/core-client": "7.0.9", - "@storybook/docs-tools": "7.0.9", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.9", - "@storybook/react-dom-shim": "7.0.9", - "@storybook/types": "7.0.9", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^16.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.0.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "^2.19.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } + "node_modules/@types/css-font-loading-module": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/@types/css-font-loading-module/-/css-font-loading-module-0.0.7.tgz", + "integrity": "sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q==" }, - "node_modules/@storybook/react-dom-shim": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.0.9.tgz", - "integrity": "sha512-3S+zJtC0L7yBwLItF3GHn3dZ3T3/9chuzpKU36K+h+oNde/JEBMi8xNh00qXjr/wyl4kJgMhktczCLFgS23dOQ==", + "node_modules/@types/detect-port": { + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.5.tgz", + "integrity": "sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==", + "dev": true + }, + "node_modules/@types/doctrine": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", + "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", + "dev": true + }, + "node_modules/@types/earcut": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-2.1.1.tgz", + "integrity": "sha512-w8oigUCDjElRHRRrMvn/spybSMyX8MTkKA5Dv+tS1IE/TgmNZPqUYtvYBXGY8cieSE66gm+szeK+bnbxC2xHTQ==" + }, + "node_modules/@types/ejs": { + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.5.tgz", + "integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==", + "dev": true + }, + "node_modules/@types/emscripten": { + "version": "1.39.10", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.10.tgz", + "integrity": "sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==", + "dev": true + }, + "node_modules/@types/escodegen": { + "version": "0.0.6", + "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", + "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", + "dev": true + }, + "node_modules/@types/eslint": { + "version": "8.4.2", + "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.2.tgz", + "integrity": "sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==", "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "dependencies": { + "@types/estree": "*", + "@types/json-schema": "*" } }, - "node_modules/@storybook/react-webpack5": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-7.0.0-beta.45.tgz", - "integrity": "sha512-mHJBq2j+j8Ae5j/gsjGCHsay7iDyE7jssZCqlBAnWNLjsSxdAfveHcVA2rL+DlNdz1brT6mTmff9FCBHv+o1Wg==", + "node_modules/@types/eslint-scope": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", + "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", "dev": true, "dependencies": { - "@storybook/builder-webpack5": "7.0.0-beta.45", - "@storybook/preset-react-webpack": "7.0.0-beta.45", - "@storybook/react": "7.0.0-beta.45", - "@types/node": "^16.0.0" - }, - "engines": { - "node": ">=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "@babel/core": "^7.11.5", - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "@babel/core": { - "optional": true - }, - "typescript": { - "optional": true - } + "@types/eslint": "*", + "@types/estree": "*" } }, - "node_modules/@storybook/react-webpack5/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@types/estree": { + "version": "0.0.51", + "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", + "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", + "dev": true + }, + "node_modules/@types/express": { + "version": "4.17.13", + "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", + "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/body-parser": "*", + "@types/express-serve-static-core": "^4.17.18", + "@types/qs": "*", + "@types/serve-static": "*" } }, - "node_modules/@storybook/react-webpack5/node_modules/@storybook/core-client": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.0-beta.45.tgz", - "integrity": "sha512-KojSCerPbKrX/rq7I0G2RqiKRID8IDyp+HRGjvp1a/iGNT7j5fB+wLXC8MuJPwFXImI3XSxhhbXW8BDu83H0uQ==", + "node_modules/@types/express-serve-static-core": { + "version": "4.17.28", + "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz", + "integrity": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/node": "*", + "@types/qs": "*", + "@types/range-parser": "*" } }, - "node_modules/@storybook/react-webpack5/node_modules/@storybook/react": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.0-beta.45.tgz", - "integrity": "sha512-Z2ShzXat5dQM2nGVezcnGZumf/3mC8kyfCZ+4ss5kZRWH3Lsl+GKfQQKzONyP9ebnxPEvz6dQLYoLOCO9JlPEg==", + "node_modules/@types/find-cache-dir": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", + "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", + "dev": true + }, + "node_modules/@types/graceful-fs": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", + "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-client": "7.0.0-beta.45", - "@storybook/docs-tools": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^16.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.0.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "^2.19.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@types/node": "*" } }, - "node_modules/@storybook/react-webpack5/node_modules/@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==", + "node_modules/@types/graphlib": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/@types/graphlib/-/graphlib-2.1.8.tgz", + "integrity": "sha512-8nbbyD3zABRA9ePoBgAl2ym8cIwKQXTfv1gaIRTdY99yEOCaHfmjBeRp+BIemS8NtOqoWK7mfzWxjNrxLK3T5w==", "dev": true }, - "node_modules/@storybook/react-webpack5/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "node_modules/@types/history": { + "version": "4.7.11", + "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", + "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", + "dev": true + }, + "node_modules/@types/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", + "dev": true + }, + "node_modules/@types/http-cache-semantics": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", + "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", + "dev": true + }, + "node_modules/@types/http-proxy": { + "version": "1.17.9", + "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", + "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@storybook/react-webpack5/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "node_modules/@types/istanbul-lib-coverage": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", + "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", + "dev": true + }, + "node_modules/@types/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/istanbul-lib-coverage": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/android-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", - "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", - "cpu": [ - "arm" - ], + "node_modules/@types/istanbul-reports": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", + "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/istanbul-lib-report": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/android-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", - "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", - "cpu": [ - "arm64" - ], + "node_modules/@types/jest": { + "version": "27.5.2", + "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", + "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "dependencies": { + "jest-matcher-utils": "^27.0.0", + "pretty-format": "^27.0.0" } }, - "node_modules/@storybook/react/node_modules/@esbuild/android-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", - "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" + "node_modules/@types/js-yaml": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", + "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", + "dev": true + }, + "node_modules/@types/json-schema": { + "version": "7.0.15", + "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", + "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", + "dev": true + }, + "node_modules/@types/json5": { + "version": "0.0.29", + "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", + "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", + "dev": true + }, + "node_modules/@types/lodash": { + "version": "4.14.182", + "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz", + "integrity": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" + }, + "node_modules/@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "dependencies": { + "@types/lodash": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/darwin-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", - "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", - "cpu": [ - "arm64" - ], + "node_modules/@types/mdx": { + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.12.tgz", + "integrity": "sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==", + "dev": true + }, + "node_modules/@types/mime": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", + "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", + "dev": true + }, + "node_modules/@types/mime-types": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.4.tgz", + "integrity": "sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==", + "dev": true + }, + "node_modules/@types/minimist": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", + "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", + "dev": true + }, + "node_modules/@types/mustache": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@types/mustache/-/mustache-4.2.2.tgz", + "integrity": "sha512-MUSpfpW0yZbTgjekDbH0shMYBUD+X/uJJJMm9LXN1d5yjl5lCY1vN/eWKD6D1tOtjA6206K0zcIPnUaFMurdNA==", + "dev": true + }, + "node_modules/@types/node": { + "version": "17.0.41", + "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.41.tgz", + "integrity": "sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==", + "dev": true + }, + "node_modules/@types/node-fetch": { + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/node": "*", + "form-data": "^4.0.0" } }, - "node_modules/@storybook/react/node_modules/@esbuild/darwin-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", - "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", - "cpu": [ - "x64" - ], + "node_modules/@types/node-fetch/node_modules/form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/@storybook/react/node_modules/@esbuild/freebsd-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", - "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", - "cpu": [ - "arm64" - ], + "node_modules/@types/normalize-package-data": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", + "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", + "dev": true + }, + "node_modules/@types/offscreencanvas": { + "version": "2019.7.0", + "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz", + "integrity": "sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg==" + }, + "node_modules/@types/parse-json": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", + "dev": true + }, + "node_modules/@types/prettier": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.3.tgz", + "integrity": "sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==", + "dev": true + }, + "node_modules/@types/pretty-hrtime": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz", + "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==", + "dev": true + }, + "node_modules/@types/prop-types": { + "version": "15.7.5", + "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", + "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", + "dev": true + }, + "node_modules/@types/qs": { + "version": "6.9.7", + "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", + "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", + "dev": true + }, + "node_modules/@types/range-parser": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", + "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", + "dev": true + }, + "node_modules/@types/react": { + "version": "18.2.6", + "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.6.tgz", + "integrity": "sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/prop-types": "*", + "@types/scheduler": "*", + "csstype": "^3.0.2" } }, - "node_modules/@storybook/react/node_modules/@esbuild/freebsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", - "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", - "cpu": [ - "x64" - ], + "node_modules/@types/react-dom": { + "version": "18.2.4", + "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", + "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/react": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", - "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", - "cpu": [ - "arm" - ], + "node_modules/@types/react-modal": { + "version": "3.13.1", + "resolved": "https://registry.npmjs.org/@types/react-modal/-/react-modal-3.13.1.tgz", + "integrity": "sha512-iY/gPvTDIy6Z+37l+ibmrY+GTV4KQTHcCyR5FIytm182RQS69G5ps4PH2FxtC7bAQ2QRHXMevsBgck7IQruHNg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/react": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", - "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", - "cpu": [ - "arm64" - ], + "node_modules/@types/react-router": { + "version": "5.1.18", + "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.18.tgz", + "integrity": "sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", - "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", - "cpu": [ - "ia32" - ], + "node_modules/@types/react-router-dom": { + "version": "5.3.3", + "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", + "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/history": "^4.7.11", + "@types/react": "*", + "@types/react-router": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-loong64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", - "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", - "cpu": [ - "loong64" - ], + "node_modules/@types/resolve": { + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.6.tgz", + "integrity": "sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==", + "dev": true + }, + "node_modules/@types/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", + "dev": true + }, + "node_modules/@types/scheduler": { + "version": "0.16.2", + "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", + "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", + "dev": true + }, + "node_modules/@types/semver": { + "version": "7.5.8", + "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", + "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "dev": true + }, + "node_modules/@types/serve-index": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", + "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/express": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-mips64el": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", - "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", - "cpu": [ - "mips64el" - ], + "node_modules/@types/serve-static": { + "version": "1.13.10", + "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", + "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/mime": "^1", + "@types/node": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-ppc64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", - "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", - "cpu": [ - "ppc64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-riscv64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", - "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", - "cpu": [ - "riscv64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-s390x": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", - "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", - "cpu": [ - "s390x" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" - } - }, - "node_modules/@storybook/react/node_modules/@esbuild/linux-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", - "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", - "cpu": [ - "x64" - ], + "node_modules/@types/sockjs": { + "version": "0.3.33", + "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", + "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@storybook/react/node_modules/@esbuild/netbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", - "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" - } + "node_modules/@types/stack-utils": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", + "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", + "dev": true }, - "node_modules/@storybook/react/node_modules/@esbuild/openbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", - "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" - } + "node_modules/@types/trusted-types": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", + "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" }, - "node_modules/@storybook/react/node_modules/@esbuild/sunos-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", - "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", - "cpu": [ - "x64" - ], - "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" - } + "node_modules/@types/unist": { + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", + "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", + "dev": true }, - "node_modules/@storybook/react/node_modules/@esbuild/win32-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", - "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" - } + "node_modules/@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", + "dev": true }, - "node_modules/@storybook/react/node_modules/@esbuild/win32-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", - "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", - "cpu": [ - "ia32" - ], + "node_modules/@types/webpack": { + "version": "5.28.5", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-5.28.5.tgz", + "integrity": "sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==", "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/node": "*", + "tapable": "^2.2.0", + "webpack": "^5" } }, - "node_modules/@storybook/react/node_modules/@esbuild/win32-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", - "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", - "cpu": [ - "x64" - ], + "node_modules/@types/ws": { + "version": "8.5.3", + "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", + "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", "dev": true, - "optional": true, - "os": [ - "win32" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/node": "*" } }, - "node_modules/@storybook/react/node_modules/@storybook/channel-postmessage": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.9.tgz", - "integrity": "sha512-6zsUPlsD3GVhKNq4UZ5MePJPjiMcPs/K02mH5/uVTN2JSgLdWgbLhZ4VYit4HgwE+d98bd9zWbgNgSOXpTArag==", + "node_modules/@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", "dev": true, "dependencies": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@types/yargs-parser": "*" } }, - "node_modules/@storybook/react/node_modules/@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - } + "node_modules/@types/yargs-parser": { + "version": "21.0.0", + "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", + "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "dev": true }, - "node_modules/@storybook/react/node_modules/@storybook/core-common": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.9.tgz", - "integrity": "sha512-IchifM372HCKfhqSIL9uShSNBHEGoPaDnKky3XfAz4IeI/iepFVWUtJ95znnhfRj4lzMenA6/Ng7TWWuQj5Q8w==", + "node_modules/@typescript-eslint/eslint-plugin": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.4.0.tgz", + "integrity": "sha512-yHMQ/oFaM7HZdVrVm/M2WHaNPgyuJH4WelkSVEWSSsir34kxW2kDJCxlXRhhGWEsMN0WAW/vLpKfKVcm8k+MPw==", "dev": true, "dependencies": { - "@storybook/node-logger": "7.0.9", - "@storybook/types": "7.0.9", - "@types/node": "^16.0.0", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.17.0", - "esbuild-register": "^3.4.0", - "file-system-cache": "^2.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^8.1.0", - "glob-promise": "^6.0.2", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" + "@eslint-community/regexpp": "^4.5.1", + "@typescript-eslint/scope-manager": "7.4.0", + "@typescript-eslint/type-utils": "7.4.0", + "@typescript-eslint/utils": "7.4.0", + "@typescript-eslint/visitor-keys": "7.4.0", + "debug": "^4.3.4", + "graphemer": "^1.4.0", + "ignore": "^5.2.4", + "natural-compare": "^1.4.0", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "@typescript-eslint/parser": "^7.0.0", + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/react/node_modules/@storybook/docs-tools": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.9.tgz", - "integrity": "sha512-E/4aIDDGbSReqggPDVp+TchxnwKKZ7AmODV0N0yYi/srHuunZ8SgpshF5t0EQmoy8UpxzURU1VeSoZvzVIrLQw==", + "node_modules/@typescript-eslint/parser": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.4.0.tgz", + "integrity": "sha512-ZvKHxHLusweEUVwrGRXXUVzFgnWhigo4JurEj0dGF1tbcGh6buL+ejDdjxOQxv6ytcY1uhun1p2sm8iWStlgLQ==", "dev": true, "dependencies": { - "@babel/core": "^7.12.10", - "@storybook/core-common": "7.0.9", - "@storybook/preview-api": "7.0.9", - "@storybook/types": "7.0.9", - "@types/doctrine": "^0.0.3", - "doctrine": "^3.0.0", - "lodash": "^4.17.21" + "@typescript-eslint/scope-manager": "7.4.0", + "@typescript-eslint/types": "7.4.0", + "@typescript-eslint/typescript-estree": "7.4.0", + "@typescript-eslint/visitor-keys": "7.4.0", + "debug": "^4.3.4" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/react/node_modules/@storybook/node-logger": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.9.tgz", - "integrity": "sha512-aD3OxqnXxDDx3yPoUhoQ863cTfALWhx5i8wKDECb2LWZBAMsh21wJk/CB/fW5FPd9YwzJ8nbvQxlaNpfsM4N7w==", + "node_modules/@typescript-eslint/scope-manager": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.4.0.tgz", + "integrity": "sha512-68VqENG5HK27ypafqLVs8qO+RkNc7TezCduYrx8YJpXq2QGZ30vmNZGJJJC48+MVn4G2dCV8m5ZTVnzRexTVtw==", "dev": true, "dependencies": { - "@types/npmlog": "^4.1.2", - "chalk": "^4.1.0", - "npmlog": "^5.0.1", - "pretty-hrtime": "^1.0.3" + "@typescript-eslint/types": "7.4.0", + "@typescript-eslint/visitor-keys": "7.4.0" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@storybook/react/node_modules/@storybook/preview-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.9.tgz", - "integrity": "sha512-cLyhq2nk0eiMOUwIIKhgDgZoS1ecRGojl92hR0agZDzNJrb1lvXK6uIkJh/Anl2Jbir28lAjQGU54voPODwTUA==", + "node_modules/@typescript-eslint/type-utils": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.4.0.tgz", + "integrity": "sha512-247ETeHgr9WTRMqHbbQdzwzhuyaJ8dPTuyuUEMANqzMRB1rj/9qFIuIXK7l0FX9i9FXbHeBQl/4uz6mYuCE7Aw==", "dev": true, "dependencies": { - "@storybook/channel-postmessage": "7.0.9", - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.9", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" + "@typescript-eslint/typescript-estree": "7.4.0", + "@typescript-eslint/utils": "7.4.0", + "debug": "^4.3.4", + "ts-api-utils": "^1.0.1" + }, + "engines": { + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^8.56.0" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/react/node_modules/@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "node_modules/@typescript-eslint/types": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.4.0.tgz", + "integrity": "sha512-mjQopsbffzJskos5B4HmbsadSJQWaRK0UxqQ7GuNA9Ga4bEKeiO6b2DnB6cM6bpc8lemaPseh0H9B/wyg+J7rw==", "dev": true, - "dependencies": { - "@storybook/channels": "7.0.9", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "engines": { + "node": "^18.18.0 || >=20.0.0" }, "funding": { "type": "opencollective", - "url": "https://opencollective.com/storybook" - } - }, - "node_modules/@storybook/react/node_modules/@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true - }, - "node_modules/@storybook/react/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@storybook/react/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@typescript-eslint/typescript-estree": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.4.0.tgz", + "integrity": "sha512-A99j5AYoME/UBQ1ucEbbMEmGkN7SE0BvZFreSnTd1luq7yulcHdyGamZKizU7canpGDWGJ+Q6ZA9SyQobipePg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "@typescript-eslint/types": "7.4.0", + "@typescript-eslint/visitor-keys": "7.4.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "minimatch": "9.0.3", + "semver": "^7.5.4", + "ts-api-utils": "^1.0.1" }, "engines": { - "node": ">=8" + "node": "^18.18.0 || >=20.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/@storybook/react/node_modules/brace-expansion": { + "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", @@ -9394,1792 +9954,1778 @@ "balanced-match": "^1.0.0" } }, - "node_modules/@storybook/react/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { + "version": "9.0.3", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", + "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "brace-expansion": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/@storybook/react/node_modules/esbuild": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", - "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", - "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" - }, - "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "@esbuild/android-arm": "0.17.18", - "@esbuild/android-arm64": "0.17.18", - "@esbuild/android-x64": "0.17.18", - "@esbuild/darwin-arm64": "0.17.18", - "@esbuild/darwin-x64": "0.17.18", - "@esbuild/freebsd-arm64": "0.17.18", - "@esbuild/freebsd-x64": "0.17.18", - "@esbuild/linux-arm": "0.17.18", - "@esbuild/linux-arm64": "0.17.18", - "@esbuild/linux-ia32": "0.17.18", - "@esbuild/linux-loong64": "0.17.18", - "@esbuild/linux-mips64el": "0.17.18", - "@esbuild/linux-ppc64": "0.17.18", - "@esbuild/linux-riscv64": "0.17.18", - "@esbuild/linux-s390x": "0.17.18", - "@esbuild/linux-x64": "0.17.18", - "@esbuild/netbsd-x64": "0.17.18", - "@esbuild/openbsd-x64": "0.17.18", - "@esbuild/sunos-x64": "0.17.18", - "@esbuild/win32-arm64": "0.17.18", - "@esbuild/win32-ia32": "0.17.18", - "@esbuild/win32-x64": "0.17.18" - } - }, - "node_modules/@storybook/react/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", + "node_modules/@typescript-eslint/utils": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.4.0.tgz", + "integrity": "sha512-NQt9QLM4Tt8qrlBVY9lkMYzfYtNz8/6qwZg8pI3cMGlPnj6mOpRxxAm7BMJN9K0AiY+1BwJ5lVC650YJqYOuNg==", "dev": true, "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "@eslint-community/eslint-utils": "^4.4.0", + "@types/json-schema": "^7.0.12", + "@types/semver": "^7.5.0", + "@typescript-eslint/scope-manager": "7.4.0", + "@typescript-eslint/types": "7.4.0", + "@typescript-eslint/typescript-estree": "7.4.0", + "semver": "^7.5.4" }, "engines": { - "node": ">=10" + "node": "^18.18.0 || >=20.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/@storybook/react/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" }, - "engines": { - "node": ">=14.14" + "peerDependencies": { + "eslint": "^8.56.0" } }, - "node_modules/@storybook/react/node_modules/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", + "node_modules/@typescript-eslint/visitor-keys": { + "version": "7.4.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.4.0.tgz", + "integrity": "sha512-0zkC7YM0iX5Y41homUUeW1CHtZR01K3ybjM1l6QczoMuay0XKtrb93kv95AxUGwdjGr64nNqnOCwmEl616N8CA==", "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "@typescript-eslint/types": "7.4.0", + "eslint-visitor-keys": "^3.4.1" }, "engines": { - "node": ">=12" + "node": "^18.18.0 || >=20.0.0" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/@storybook/react/node_modules/glob-promise": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz", - "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==", + "node_modules/@ungap/structured-clone": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", + "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", + "dev": true + }, + "node_modules/@webassemblyjs/ast": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", + "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", "dev": true, "dependencies": { - "@types/glob": "^8.0.0" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "type": "individual", - "url": "https://github.com/sponsors/ahmadnassri" - }, - "peerDependencies": { - "glob": "^8.0.3" + "@webassemblyjs/helper-numbers": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1" } }, - "node_modules/@storybook/react/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } + "node_modules/@webassemblyjs/floating-point-hex-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", + "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "dev": true }, - "node_modules/@storybook/react/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/@webassemblyjs/helper-api-error": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", + "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-buffer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", + "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", + "dev": true }, - "node_modules/@storybook/react/node_modules/minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "node_modules/@webassemblyjs/helper-numbers": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", + "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" - }, - "engines": { - "node": ">=10" + "@webassemblyjs/floating-point-hex-parser": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "node_modules/@storybook/react/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/@webassemblyjs/helper-wasm-bytecode": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", + "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "dev": true + }, + "node_modules/@webassemblyjs/helper-wasm-section": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", + "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1" } }, - "node_modules/@storybook/react/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/@webassemblyjs/ieee754": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", + "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@xtuc/ieee754": "^1.2.0" } }, - "node_modules/@storybook/react/node_modules/pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", + "node_modules/@webassemblyjs/leb128": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", + "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", "dev": true, "dependencies": { - "find-up": "^5.0.0" - }, - "engines": { - "node": ">=10" + "@xtuc/long": "4.2.2" } }, - "node_modules/@storybook/react/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/@webassemblyjs/utf8": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", + "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", + "dev": true + }, + "node_modules/@webassemblyjs/wasm-edit": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", + "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/helper-wasm-section": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-opt": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1", + "@webassemblyjs/wast-printer": "1.11.1" } }, - "node_modules/@storybook/react/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", + "node_modules/@webassemblyjs/wasm-gen": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", + "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, - "node_modules/@storybook/router": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.0-beta.45.tgz", - "integrity": "sha512-WRDlAMD2SQ2qX7TCNVuDQVSq4cvrjvNoFPxvtDLM7GjhnVk2+4Yw2AlKaRYed65ItzkvHMvBg/wXM5GpgdRvfQ==", + "node_modules/@webassemblyjs/wasm-opt": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", + "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-buffer": "1.11.1", + "@webassemblyjs/wasm-gen": "1.11.1", + "@webassemblyjs/wasm-parser": "1.11.1" } }, - "node_modules/@storybook/router/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@webassemblyjs/wasm-parser": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", + "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", "dev": true, "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@webassemblyjs/ast": "1.11.1", + "@webassemblyjs/helper-api-error": "1.11.1", + "@webassemblyjs/helper-wasm-bytecode": "1.11.1", + "@webassemblyjs/ieee754": "1.11.1", + "@webassemblyjs/leb128": "1.11.1", + "@webassemblyjs/utf8": "1.11.1" } }, - "node_modules/@storybook/store": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/store/-/store-7.0.0-beta.45.tgz", - "integrity": "sha512-2ceV9/n9hYWpM/NHX/NTSWHGI0IFfZ2Xa4rO4IpzXO6PtDfXvr6g9RH4Hhnakckez9RD20az75DioRb63sEQ/A==", + "node_modules/@webassemblyjs/wast-printer": { + "version": "1.11.1", + "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", + "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "@webassemblyjs/ast": "1.11.1", + "@xtuc/long": "4.2.2" } }, - "node_modules/@storybook/store/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@webpack-cli/configtest": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz", + "integrity": "sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==", "dev": true, - "dependencies": { - "@storybook/global": "^5.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "webpack": "4.x.x || 5.x.x", + "webpack-cli": "4.x.x" } }, - "node_modules/@storybook/telemetry": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.0.0-beta.45.tgz", - "integrity": "sha512-xbDcRHqAXFHt6kJSkRviN0KvUjw69c8yk6cEA/xuzxSYNmfpfmuL5i1sflIYWnAKKGn7tDQwmXc/PIdoi0N7Ug==", + "node_modules/@webpack-cli/info": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz", + "integrity": "sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==", "dev": true, "dependencies": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "chalk": "^4.1.0", - "detect-package-manager": "^2.0.1", - "fetch-retry": "^5.0.2", - "fs-extra": "^11.1.0", - "isomorphic-unfetch": "^3.1.0", - "nanoid": "^3.3.1", - "read-pkg-up": "^7.0.1" + "envinfo": "^7.7.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "webpack-cli": "4.x.x" } }, - "node_modules/@storybook/telemetry/node_modules/@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "node_modules/@webpack-cli/serve": { + "version": "1.6.1", + "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz", + "integrity": "sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==", "dev": true, - "dependencies": { - "@storybook/global": "^5.0.0" + "peerDependencies": { + "webpack-cli": "4.x.x" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependenciesMeta": { + "webpack-dev-server": { + "optional": true + } } }, - "node_modules/@storybook/telemetry/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/@xtuc/ieee754": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", + "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", + "dev": true + }, + "node_modules/@xtuc/long": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", + "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", + "dev": true + }, + "node_modules/@yarnpkg/esbuild-plugin-pnp": { + "version": "3.0.0-rc.15", + "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", + "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "tslib": "^2.4.0" }, "engines": { - "node": ">=8" + "node": ">=14.15.0" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "esbuild": ">=0.10.0" } }, - "node_modules/@storybook/telemetry/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/@yarnpkg/fslib": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.10.3.tgz", + "integrity": "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "@yarnpkg/libzip": "^2.3.0", + "tslib": "^1.13.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0" } }, - "node_modules/@storybook/telemetry/node_modules/fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "node_modules/@yarnpkg/fslib/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/@yarnpkg/libzip": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.3.0.tgz", + "integrity": "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@types/emscripten": "^1.39.6", + "tslib": "^1.13.0" }, "engines": { - "node": ">=14.14" + "node": ">=12 <14 || 14.2 - 14.9 || >14.10.0" } }, - "node_modules/@storybook/telemetry/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/@yarnpkg/libzip/node_modules/tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + }, + "node_modules/abab": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", + "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "dev": true + }, + "node_modules/abbrev": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", + "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/accepts": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", + "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", "dev": true, + "dependencies": { + "mime-types": "~2.1.34", + "negotiator": "0.6.3" + }, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/@storybook/telemetry/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/acorn": { + "version": "8.11.3", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", + "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">=8" + "node": ">=0.4.0" } }, - "node_modules/@storybook/testing-library": { - "version": "0.0.14-next.1", - "resolved": "https://registry.npmjs.org/@storybook/testing-library/-/testing-library-0.0.14-next.1.tgz", - "integrity": "sha512-1CAl40IKIhcPaCC4pYCG0b9IiYNymktfV/jTrX7ctquRY3akaN7f4A1SippVHosksft0M+rQTFE0ccfWW581fw==", + "node_modules/acorn-globals": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", + "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", "dev": true, "dependencies": { - "@storybook/client-logger": "next", - "@storybook/instrumenter": "next", - "@testing-library/dom": "^8.3.0", - "@testing-library/user-event": "^13.2.1", - "ts-dedent": "^2.2.0" + "acorn": "^7.1.1", + "acorn-walk": "^7.1.1" } }, - "node_modules/@storybook/theming": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.9.tgz", - "integrity": "sha512-HVbl4ljFRe5VIcg/HGUdZP7Vc8k9rPhWhE4K98MbuSdxnaU+uvHUhj0fE1umoCn39N9/Ws8Lm596+PKoTE3D1g==", + "node_modules/acorn-globals/node_modules/acorn": { + "version": "7.4.1", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", + "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true, - "dependencies": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.9", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "bin": { + "acorn": "bin/acorn" }, + "engines": { + "node": ">=0.4.0" + } + }, + "node_modules/acorn-import-assertions": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", + "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "dev": true, "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + "acorn": "^8" } }, - "node_modules/@storybook/types": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.0-beta.45.tgz", - "integrity": "sha512-DGiw1lhOQ/Zy7TM7qsboR3Htu0FaMYEk3bSxLFMQgHZmf+n5z6ZPiNYTLQVrZ41BahfSCZMIRJDLQjJAQtPsdg==", + "node_modules/acorn-jsx": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", + "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", "dev": true, - "dependencies": { - "@babel/core": "^7.12.10", - "@storybook/channels": "7.0.0-beta.45", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "express": "^4.17.3", - "file-system-cache": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/storybook" + "peerDependencies": { + "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/@szmarczak/http-timer": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", - "integrity": "sha512-+PmQX0PiAYPMeVYe237LJAYvOMYW1j2rH5YROyS3b4CTVJum34HfRvKvAzozHAQG0TnHNdUfY9nCeUyRAs//cw==", + "node_modules/acorn-walk": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", + "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", "dev": true, - "dependencies": { - "defer-to-connect": "^2.0.1" - }, "engines": { - "node": ">=14.16" + "node": ">=0.4.0" } }, - "node_modules/@testing-library/dom": { - "version": "8.20.0", - "resolved": "https://registry.npmjs.org/@testing-library/dom/-/dom-8.20.0.tgz", - "integrity": "sha512-d9ULIT+a4EXLX3UU8FBjauG9NnsZHkHztXoIcTsOKoOw030fyjheN9svkTULjJxtYag9DZz5Jz5qkWZDPxTFwA==", + "node_modules/address": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", + "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "dev": true, + "engines": { + "node": ">= 10.0.0" + } + }, + "node_modules/agent-base": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", + "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.10.4", - "@babel/runtime": "^7.12.5", - "@types/aria-query": "^5.0.1", - "aria-query": "^5.0.0", - "chalk": "^4.1.0", - "dom-accessibility-api": "^0.5.9", - "lz-string": "^1.4.4", - "pretty-format": "^27.0.2" + "debug": "4" }, "engines": { - "node": ">=12" + "node": ">= 6.0.0" } }, - "node_modules/@testing-library/dom/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/agentkeepalive": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", + "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 8.0.0" } }, - "node_modules/@testing-library/dom/node_modules/aria-query": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-5.1.3.tgz", - "integrity": "sha512-R5iJ5lkuHybztUfuOAznmboyjWq8O6sqNqtK7CLOqdydi54VNbORp49mb14KbWgG1QD3JFO9hJdZ+y4KutfdOQ==", + "node_modules/agentkeepalive/node_modules/depd": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", + "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", "dev": true, - "dependencies": { - "deep-equal": "^2.0.5" + "optional": true, + "peer": true, + "engines": { + "node": ">= 0.6" } }, - "node_modules/@testing-library/dom/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/aggregate-error": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", + "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=8" } }, - "node_modules/@testing-library/dom/node_modules/has-flag": { + "node_modules/aggregate-error/node_modules/indent-string": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/@testing-library/dom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/ajv": { + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "fast-deep-equal": "^3.1.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", + "uri-js": "^4.2.2" }, - "engines": { - "node": ">=8" + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/@testing-library/user-event": { - "version": "13.5.0", - "resolved": "https://registry.npmjs.org/@testing-library/user-event/-/user-event-13.5.0.tgz", - "integrity": "sha512-5Kwtbo3Y/NowpkbRuSepbyMFkZmHgD+vPzYB/RJ4oxt5Gj/avFFBYjhw27cqSVPVw/3a67NK1PbiIr9k4Gwmdg==", + "node_modules/ajv-formats": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", + "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", "dev": true, "dependencies": { - "@babel/runtime": "^7.12.5" - }, - "engines": { - "node": ">=10", - "npm": ">=6" + "ajv": "^8.0.0" }, "peerDependencies": { - "@testing-library/dom": ">=7.21.4" + "ajv": "^8.0.0" + }, + "peerDependenciesMeta": { + "ajv": { + "optional": true + } } }, - "node_modules/@tootallnate/once": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/@tootallnate/once/-/once-1.1.2.tgz", - "integrity": "sha512-RbzJvlNzmRq5c3O09UipeuXno4tA1FE6ikOjxZK0tuxVv3412l64l5t1W5pj4+rJq9vpkm/kwiR07aZXnsKPxw==", + "node_modules/ajv-keywords": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, - "engines": { - "node": ">= 6" + "dependencies": { + "fast-deep-equal": "^3.1.3" + }, + "peerDependencies": { + "ajv": "^8.8.2" } }, - "node_modules/@tootallnate/quickjs-emscripten": { - "version": "0.23.0", - "resolved": "https://registry.npmjs.org/@tootallnate/quickjs-emscripten/-/quickjs-emscripten-0.23.0.tgz", - "integrity": "sha512-C5Mc6rdnsaJDjO3UpGW/CQTHtCKaYlScZTly4JIu97Jxo/odCiH0ITnDXSJPTOrEKk/ycSZ0AOgTmkDtkOsvIA==", - "dev": true - }, - "node_modules/@tsconfig/node10": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/@tsconfig/node10/-/node10-1.0.9.tgz", - "integrity": "sha512-jNsYVVxU8v5g43Erja32laIDHXeoNvFEpX33OK4d6hljo3jDhCBDhx5dhCCTMWUojscpAagGiRkBKxpdl9fxqA==", - "dev": true - }, - "node_modules/@tsconfig/node12": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/@tsconfig/node12/-/node12-1.0.11.tgz", - "integrity": "sha512-cqefuRsh12pWyGsIoBKJA9luFu3mRxCA+ORZvA4ktLSzIuCUtWVxGIuXigEwO5/ywWFMZ2QEGKWvkZG1zDMTag==", - "dev": true - }, - "node_modules/@tsconfig/node14": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/@tsconfig/node14/-/node14-1.0.3.tgz", - "integrity": "sha512-ysT8mhdixWK6Hw3i1V2AeRqZ5WfXg1G43mqoYlM2nc6388Fq5jcXyr5mRsqViLx/GJYdoL0bfXD8nmF+Zn/Iow==", - "dev": true - }, - "node_modules/@tsconfig/node16": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/@tsconfig/node16/-/node16-1.0.4.tgz", - "integrity": "sha512-vxhUy4J8lyeyinH7Azl1pdd43GJhZH/tP2weN8TntQblOY+A0XbT8DJk1/oCPuOOyg/Ja757rG0CgHcWC8OfMA==", - "dev": true - }, - "node_modules/@types/aria-query": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/aria-query/-/aria-query-5.0.1.tgz", - "integrity": "sha512-XTIieEY+gvJ39ChLcB4If5zHtPxt3Syj5rgZR+e1ctpmK8NjPf0zFqsz4JpLJT0xla9GFDKjy8Cpu331nrmE1Q==", - "dev": true - }, - "node_modules/@types/babel__core": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@types/babel__core/-/babel__core-7.20.0.tgz", - "integrity": "sha512-+n8dL/9GWblDO0iU6eZAwEIJVr5DWigtle+Q6HLOrh/pdbXOhOtqzq8VPPE2zvNJzSKY4vH/z3iT3tn0A3ypiQ==", + "node_modules/ansi-align": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", + "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", "dev": true, "dependencies": { - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7", - "@types/babel__generator": "*", - "@types/babel__template": "*", - "@types/babel__traverse": "*" + "string-width": "^4.1.0" } }, - "node_modules/@types/babel__generator": { - "version": "7.6.4", - "resolved": "https://registry.npmjs.org/@types/babel__generator/-/babel__generator-7.6.4.tgz", - "integrity": "sha512-tFkciB9j2K755yrTALxD44McOrk+gfpIpvC3sxHjRawj6PfnQxrse4Clq5y/Rq+G3mrBurMax/lG8Qn2t9mSsg==", + "node_modules/ansi-colors": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", + "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", "dev": true, - "dependencies": { - "@babel/types": "^7.0.0" + "engines": { + "node": ">=6" } }, - "node_modules/@types/babel__template": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/@types/babel__template/-/babel__template-7.4.1.tgz", - "integrity": "sha512-azBFKemX6kMg5Io+/rdGT0dkGreboUVR0Cdm3fz9QJWpaQGJRQXl7C+6hOTCZcMll7KFyEQpgbYI2lHdsS4U7g==", + "node_modules/ansi-escapes": { + "version": "4.3.2", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", + "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", "dev": true, "dependencies": { - "@babel/parser": "^7.1.0", - "@babel/types": "^7.0.0" + "type-fest": "^0.21.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/@types/babel__traverse": { - "version": "7.17.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz", - "integrity": "sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==", + "node_modules/ansi-html-community": { + "version": "0.0.8", + "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", + "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", "dev": true, - "dependencies": { - "@babel/types": "^7.3.0" + "engines": [ + "node >= 0.8.0" + ], + "bin": { + "ansi-html": "bin/ansi-html" } }, - "node_modules/@types/body-parser": { - "version": "1.19.2", - "resolved": "https://registry.npmjs.org/@types/body-parser/-/body-parser-1.19.2.tgz", - "integrity": "sha512-ALYone6pm6QmwZoAgeyNksccT9Q4AWZQ6PvfwR37GT6r6FWUPguq6sUmNGSMV2Wr761oQoBxwGGa6DR5o1DC9g==", + "node_modules/ansi-regex": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", + "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", "dev": true, - "dependencies": { - "@types/connect": "*", - "@types/node": "*" + "engines": { + "node": ">=8" } }, - "node_modules/@types/bonjour": { - "version": "3.5.10", - "resolved": "https://registry.npmjs.org/@types/bonjour/-/bonjour-3.5.10.tgz", - "integrity": "sha512-p7ienRMiS41Nu2/igbJxxLDWrSZ0WxM8UQgCeO9KhoVF7cOVFkrKsiDr1EsJIla8vV3oEEjGcz11jc5yimhzZw==", + "node_modules/ansi-styles": { + "version": "3.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", + "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", "dev": true, "dependencies": { - "@types/node": "*" + "color-convert": "^1.9.0" + }, + "engines": { + "node": ">=4" } }, - "node_modules/@types/color": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/color/-/color-3.0.3.tgz", - "integrity": "sha512-X//qzJ3d3Zj82J9sC/C18ZY5f43utPbAJ6PhYt/M7uG6etcF6MRpKdN880KBy43B0BMzSfeT96MzrsNjFI3GbA==", + "node_modules/ansi-styles/node_modules/color-convert": { + "version": "1.9.3", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", + "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "dev": true, "dependencies": { - "@types/color-convert": "*" + "color-name": "1.1.3" } }, - "node_modules/@types/color-convert": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/@types/color-convert/-/color-convert-2.0.0.tgz", - "integrity": "sha512-m7GG7IKKGuJUXvkZ1qqG3ChccdIM/qBBo913z+Xft0nKCX4hAU/IxKwZBU4cpRZ7GS5kV4vOblUkILtSShCPXQ==", + "node_modules/ansi-styles/node_modules/color-name": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", + "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", + "dev": true + }, + "node_modules/anymatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", + "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "dev": true, "dependencies": { - "@types/color-name": "*" + "normalize-path": "^3.0.0", + "picomatch": "^2.0.4" + }, + "engines": { + "node": ">= 8" } }, - "node_modules/@types/color-name": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@types/color-name/-/color-name-1.1.1.tgz", - "integrity": "sha512-rr+OQyAjxze7GgWrSaJwydHStIhHq2lvY3BOC2Mj7KnzI7XK0Uw1TOOdI9lDoajEbSWLiYgoo4f1R51erQfhPQ==" + "node_modules/app-root-dir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", + "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", + "dev": true }, - "node_modules/@types/connect": { - "version": "3.4.35", - "resolved": "https://registry.npmjs.org/@types/connect/-/connect-3.4.35.tgz", - "integrity": "sha512-cdeYyv4KWoEgpBISTxWvqYsVy444DOqehiF3fM3ne10AmJ62RSyNkUnxMJXHQWRQQX2eR94m5y1IZyDwBjV9FQ==", + "node_modules/aproba": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", + "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", "dev": true, - "dependencies": { - "@types/node": "*" - } + "optional": true, + "peer": true }, - "node_modules/@types/connect-history-api-fallback": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/@types/connect-history-api-fallback/-/connect-history-api-fallback-1.3.5.tgz", - "integrity": "sha512-h8QJa8xSb1WD4fpKBDcATDNGXghFj6/3GRWG6dhmRcu0RX1Ubasur2Uvx5aeEwlf0MwblEC2bMzzMQntxnw/Cw==", + "node_modules/are-we-there-yet": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", + "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "@types/express-serve-static-core": "*", - "@types/node": "*" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/css-font-loading-module": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/@types/css-font-loading-module/-/css-font-loading-module-0.0.7.tgz", - "integrity": "sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q==" - }, - "node_modules/@types/detect-port": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.2.tgz", - "integrity": "sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==", - "dev": true - }, - "node_modules/@types/doctrine": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.3.tgz", - "integrity": "sha512-w5jZ0ee+HaPOaX25X2/2oGR/7rgAQSYII7X7pp0m9KgBfMP7uKfMfTvcpl5Dj+eDBbpxKGiqE+flqDr6XTd2RA==", - "dev": true - }, - "node_modules/@types/earcut": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/earcut/-/earcut-2.1.1.tgz", - "integrity": "sha512-w8oigUCDjElRHRRrMvn/spybSMyX8MTkKA5Dv+tS1IE/TgmNZPqUYtvYBXGY8cieSE66gm+szeK+bnbxC2xHTQ==" - }, - "node_modules/@types/ejs": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.1.tgz", - "integrity": "sha512-RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA==", + "node_modules/arg": { + "version": "4.1.3", + "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", + "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", "dev": true }, - "node_modules/@types/escodegen": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/@types/escodegen/-/escodegen-0.0.6.tgz", - "integrity": "sha512-AjwI4MvWx3HAOaZqYsjKWyEObT9lcVV0Y0V8nXo6cXzN8ZiMxVhf6F3d/UNvXVGKrEzL/Dluc5p+y9GkzlTWig==", + "node_modules/argparse": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", "dev": true }, - "node_modules/@types/eslint": { - "version": "8.4.2", - "resolved": "https://registry.npmjs.org/@types/eslint/-/eslint-8.4.2.tgz", - "integrity": "sha512-Z1nseZON+GEnFjJc04sv4NSALGjhFwy6K0HXt7qsn5ArfAKtb63dXNJHf+1YW6IpOIYRBGUbu3GwJdj8DGnCjA==", + "node_modules/aria-hidden": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", + "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", "dev": true, "dependencies": { - "@types/estree": "*", - "@types/json-schema": "*" + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/@types/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/@types/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-PB3ldyrcnAicT35TWPs5IcwKD8S333HMaa2VVv4+wdvebJkjWuW/xESoB8IwRcog8HYVYamb1g/R31Qv5Bx03g==", + "node_modules/aria-query": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", + "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", "dev": true, "dependencies": { - "@types/eslint": "*", - "@types/estree": "*" + "@babel/runtime": "^7.10.2", + "@babel/runtime-corejs3": "^7.10.2" + }, + "engines": { + "node": ">=6.0" } }, - "node_modules/@types/estree": { - "version": "0.0.51", - "resolved": "https://registry.npmjs.org/@types/estree/-/estree-0.0.51.tgz", - "integrity": "sha512-CuPgU6f3eT/XgKKPqKd/gLZV1Xmvf1a2R5POBOGQa6uv82xpls89HU5zKeVoyR8XzHd1RGNOlQlvUe3CFkjWNQ==", - "dev": true - }, - "node_modules/@types/express": { - "version": "4.17.13", - "resolved": "https://registry.npmjs.org/@types/express/-/express-4.17.13.tgz", - "integrity": "sha512-6bSZTPaTIACxn48l50SR+axgrqm6qXFIxrdAKaG6PaJk3+zuUr35hBlgT7vOmJcum+OEaIBLtHV/qloEAFITeA==", + "node_modules/array-back": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", + "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", "dev": true, - "dependencies": { - "@types/body-parser": "*", - "@types/express-serve-static-core": "^4.17.18", - "@types/qs": "*", - "@types/serve-static": "*" + "engines": { + "node": ">=6" } }, - "node_modules/@types/express-serve-static-core": { - "version": "4.17.28", - "resolved": "https://registry.npmjs.org/@types/express-serve-static-core/-/express-serve-static-core-4.17.28.tgz", - "integrity": "sha512-P1BJAEAW3E2DJUlkgq4tOL3RyMunoWXqbSCygWo5ZIWTjUgN1YnaXWW4VWl/oc8vs/XoYibEGBKP0uZyF4AHig==", + "node_modules/array-buffer-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", + "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", "dev": true, "dependencies": { - "@types/node": "*", - "@types/qs": "*", - "@types/range-parser": "*" + "call-bind": "^1.0.5", + "is-array-buffer": "^3.0.4" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/find-cache-dir": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/@types/find-cache-dir/-/find-cache-dir-3.2.1.tgz", - "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", + "node_modules/array-flatten": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", + "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", "dev": true }, - "node_modules/@types/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", + "node_modules/array-includes": { + "version": "3.1.6", + "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", + "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", "dev": true, "dependencies": { - "@types/minimatch": "^5.1.2", - "@types/node": "*" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "get-intrinsic": "^1.1.3", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/graceful-fs": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", - "integrity": "sha512-anKkLmZZ+xm4p8JWBf4hElkM4XR+EZeA2M9BAkkTldmcyDY4mbdIJnRghDJH3Ov5ooY7/UAoENtmdMSkaAd7Cw==", + "node_modules/array-union": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", + "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", "dev": true, - "dependencies": { - "@types/node": "*" + "engines": { + "node": ">=8" } }, - "node_modules/@types/graphlib": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/@types/graphlib/-/graphlib-2.1.8.tgz", - "integrity": "sha512-8nbbyD3zABRA9ePoBgAl2ym8cIwKQXTfv1gaIRTdY99yEOCaHfmjBeRp+BIemS8NtOqoWK7mfzWxjNrxLK3T5w==", - "dev": true - }, - "node_modules/@types/history": { - "version": "4.7.11", - "resolved": "https://registry.npmjs.org/@types/history/-/history-4.7.11.tgz", - "integrity": "sha512-qjDJRrmvBMiTx+jyLxvLfJU7UznFuokDv4f3WRuriHKERccVpFU+8XMQUAbDzoiJCsmexxRExQeMwwCdamSKDA==", - "dev": true - }, - "node_modules/@types/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/@types/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-oh/6byDPnL1zeNXFrDXFLyZjkr1MsBG667IM792caf1L2UPOOMf65NFzjUH/ltyfwjAGfs1rsX1eftK0jC/KIg==", - "dev": true - }, - "node_modules/@types/http-cache-semantics": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/@types/http-cache-semantics/-/http-cache-semantics-4.0.4.tgz", - "integrity": "sha512-1m0bIFVc7eJWyve9S0RnuRgcQqF/Xd5QsUZAZeQFr1Q3/p9JWoQQEqmVy+DPTNpGXwhgIetAoYF8JSc33q29QA==", - "dev": true - }, - "node_modules/@types/http-proxy": { - "version": "1.17.9", - "resolved": "https://registry.npmjs.org/@types/http-proxy/-/http-proxy-1.17.9.tgz", - "integrity": "sha512-QsbSjA/fSk7xB+UXlCT3wHBy5ai9wOcNDWwZAtud+jXhwOM3l+EYZh8Lng4+/6n8uar0J7xILzqftJdJ/Wdfkw==", + "node_modules/array.prototype.flat": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", + "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", "dev": true, "dependencies": { - "@types/node": "*" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/istanbul-lib-coverage": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-coverage/-/istanbul-lib-coverage-2.0.4.tgz", - "integrity": "sha512-z/QT1XN4K4KYuslS23k62yDIDLwLFkzxOuMplDtObz0+y7VqJCaO2o+SPwHCvLFZh7xazvvoor2tA/hPz9ee7g==", - "dev": true + "node_modules/array.prototype.flatmap": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", + "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } }, - "node_modules/@types/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-plGgXAPfVKFoYfa9NpYDAkseG+g6Jr294RqeqcqDixSbU34MZVJRi/P+7Y8GDpzkEwLaGZZOpKIEmeVZNtKsrg==", + "node_modules/array.prototype.map": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.6.tgz", + "integrity": "sha512-nK1psgF2cXqP3wSyCSq0Hc7zwNq3sfljQqaG27r/7a7ooNUnn5nGq6yYWyks9jMO5EoFQ0ax80hSg6oXSRNXaw==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "*" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "es-array-method-boxes-properly": "^1.0.0", + "is-string": "^1.0.7" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/istanbul-reports": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/@types/istanbul-reports/-/istanbul-reports-3.0.1.tgz", - "integrity": "sha512-c3mAZEuK0lvBp8tmuL74XRKn1+y2dcwOUpH7x4WrF6gk1GIgiluDRgMYQtw2OFcBvAJWlt6ASU3tSqxp0Uu0Aw==", + "node_modules/array.prototype.tosorted": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", + "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", "dev": true, + "peer": true, "dependencies": { - "@types/istanbul-lib-report": "*" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4", + "es-shim-unscopables": "^1.0.0", + "get-intrinsic": "^1.1.3" } }, - "node_modules/@types/jest": { - "version": "27.5.2", - "resolved": "https://registry.npmjs.org/@types/jest/-/jest-27.5.2.tgz", - "integrity": "sha512-mpT8LJJ4CMeeahobofYWIjFo0xonRS/HfxnVEPMPFSQdGUt1uHCnoPT7Zhb+sjDU2wz0oKV0OLUR0WzrHNgfeA==", + "node_modules/arraybuffer.prototype.slice": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", + "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", "dev": true, "dependencies": { - "jest-matcher-utils": "^27.0.0", - "pretty-format": "^27.0.0" + "array-buffer-byte-length": "^1.0.1", + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "es-abstract": "^1.22.3", + "es-errors": "^1.2.1", + "get-intrinsic": "^1.2.3", + "is-array-buffer": "^3.0.4", + "is-shared-array-buffer": "^1.0.2" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/json-schema": { - "version": "7.0.15", - "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", - "integrity": "sha512-5+fP8P8MFNC+AyZCDxrB2pkZFPGzqQWUzpSeuuVLvm8VMcorNYavBqoFcxK8bQz4Qsbn4oUEEem4wDLfcysGHA==", - "dev": true + "node_modules/arrify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", + "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/@types/json5": { - "version": "0.0.29", - "resolved": "https://registry.npmjs.org/@types/json5/-/json5-0.0.29.tgz", - "integrity": "sha512-dRLjCWHYg4oaA77cxO64oO+7JwCwnIzkZPdrrC71jQmQtlhM556pwKo5bUzqvZndkVbeFLIIi+9TC40JNF5hNQ==", - "dev": true + "node_modules/asn1": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", + "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", + "dependencies": { + "safer-buffer": "~2.1.0" + } }, - "node_modules/@types/lodash": { - "version": "4.14.182", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz", - "integrity": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" + "node_modules/assert": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", + "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "is-nan": "^1.3.2", + "object-is": "^1.1.5", + "object.assign": "^4.1.4", + "util": "^0.12.5" + } }, - "node_modules/@types/mdx": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.5.tgz", - "integrity": "sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==", - "dev": true + "node_modules/assert-plus": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", + "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "engines": { + "node": ">=0.8" + } }, - "node_modules/@types/mime": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/mime/-/mime-1.3.2.tgz", - "integrity": "sha512-YATxVxgRqNH6nHEIsvg6k2Boc1JHI9ZbH5iWFFv/MTkchz3b1ieGDa5T0a9RznNdI0KhVbdbWSN+KWWrQZRxTw==", - "dev": true + "node_modules/ast-types": { + "version": "0.16.1", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", + "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "dev": true, + "dependencies": { + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" + } }, - "node_modules/@types/mime-types": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz", - "integrity": "sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==", + "node_modules/ast-types-flow": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", + "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", "dev": true }, - "node_modules/@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", - "dev": true + "node_modules/astral-regex": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", + "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "node_modules/@types/minimist": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/@types/minimist/-/minimist-1.2.2.tgz", - "integrity": "sha512-jhuKLIRrhvCPLqwPcx6INqmKeiA5EWrsCOPhrlFSrbrmU4ZMPjj5Ul/oLCMDO98XRUIwVm78xICz4EPCektzeQ==", - "dev": true + "node_modules/async": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", + "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" }, - "node_modules/@types/mustache": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@types/mustache/-/mustache-4.2.2.tgz", - "integrity": "sha512-MUSpfpW0yZbTgjekDbH0shMYBUD+X/uJJJMm9LXN1d5yjl5lCY1vN/eWKD6D1tOtjA6206K0zcIPnUaFMurdNA==", - "dev": true + "node_modules/async-foreach": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", + "integrity": "sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==", + "dev": true, + "optional": true, + "peer": true, + "engines": { + "node": "*" + } }, - "node_modules/@types/node": { - "version": "17.0.41", - "resolved": "https://registry.npmjs.org/@types/node/-/node-17.0.41.tgz", - "integrity": "sha512-xA6drNNeqb5YyV5fO3OAEsnXLfO7uF0whiOfPTz5AeDo8KeZFmODKnvwPymMNO8qE/an8pVY/O50tig2SQCrGw==", + "node_modules/async-limiter": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", + "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", "dev": true }, - "node_modules/@types/node-fetch": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz", - "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==", + "node_modules/async-retry": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", + "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", "dev": true, "dependencies": { - "@types/node": "*", - "form-data": "^3.0.0" + "retry": "0.13.1" } }, - "node_modules/@types/normalize-package-data": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/@types/normalize-package-data/-/normalize-package-data-2.4.1.tgz", - "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", - "dev": true - }, - "node_modules/@types/npmlog": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz", - "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==", - "dev": true - }, - "node_modules/@types/offscreencanvas": { - "version": "2019.7.0", - "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz", - "integrity": "sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg==" - }, - "node_modules/@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", - "dev": true - }, - "node_modules/@types/prettier": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/@types/prettier/-/prettier-2.6.3.tgz", - "integrity": "sha512-ymZk3LEC/fsut+/Q5qejp6R9O1rMxz3XaRHDV6kX8MrGAhOSPqVARbDi+EZvInBpw+BnCX3TD240byVkOfQsHg==", - "dev": true - }, - "node_modules/@types/pretty-hrtime": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/@types/pretty-hrtime/-/pretty-hrtime-1.0.1.tgz", - "integrity": "sha512-VjID5MJb1eGKthz2qUerWT8+R4b9N+CHvGCzg9fn4kWZgaF9AhdYikQio3R7wV8YY1NsQKPaCwKz1Yff+aHNUQ==", - "dev": true - }, - "node_modules/@types/prop-types": { - "version": "15.7.5", - "resolved": "https://registry.npmjs.org/@types/prop-types/-/prop-types-15.7.5.tgz", - "integrity": "sha512-JCB8C6SnDoQf0cNycqd/35A7MjcnK+ZTqE7judS6o7utxUCg6imJg3QK2qzHKszlTjcj2cn+NwMB2i96ubpj7w==", - "dev": true - }, - "node_modules/@types/qs": { - "version": "6.9.7", - "resolved": "https://registry.npmjs.org/@types/qs/-/qs-6.9.7.tgz", - "integrity": "sha512-FGa1F62FT09qcrueBA6qYTrJPVDzah9a+493+o2PCXsesWHIn27G98TsSMs3WPNbZIEj4+VJf6saSFpvD+3Zsw==", - "dev": true - }, - "node_modules/@types/range-parser": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/@types/range-parser/-/range-parser-1.2.4.tgz", - "integrity": "sha512-EEhsLsD6UsDM1yFhAvy0Cjr6VwmpMWqFBCb9w07wVugF7w9nfajxLuVmngTIpgS6svCnm6Vaw+MZhoDCKnOfsw==", - "dev": true - }, - "node_modules/@types/react": { - "version": "18.2.6", - "resolved": "https://registry.npmjs.org/@types/react/-/react-18.2.6.tgz", - "integrity": "sha512-wRZClXn//zxCFW+ye/D2qY65UsYP1Fpex2YXorHc8awoNamkMZSvBxwxdYVInsHOZZd2Ppq8isnSzJL5Mpf8OA==", - "dev": true, - "dependencies": { - "@types/prop-types": "*", - "@types/scheduler": "*", - "csstype": "^3.0.2" - } + "node_modules/asynckit": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", + "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" }, - "node_modules/@types/react-dom": { - "version": "18.2.4", - "resolved": "https://registry.npmjs.org/@types/react-dom/-/react-dom-18.2.4.tgz", - "integrity": "sha512-G2mHoTMTL4yoydITgOGwWdWMVd8sNgyEP85xVmMKAPUBwQWm9wBPQUmvbeF4V3WBY1P7mmL4BkjQ0SqUpf1snw==", + "node_modules/available-typed-arrays": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", + "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", "dev": true, "dependencies": { - "@types/react": "*" + "possible-typed-array-names": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/@types/react-modal": { - "version": "3.13.1", - "resolved": "https://registry.npmjs.org/@types/react-modal/-/react-modal-3.13.1.tgz", - "integrity": "sha512-iY/gPvTDIy6Z+37l+ibmrY+GTV4KQTHcCyR5FIytm182RQS69G5ps4PH2FxtC7bAQ2QRHXMevsBgck7IQruHNg==", - "dev": true, - "dependencies": { - "@types/react": "*" + "node_modules/aws-sign2": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", + "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "engines": { + "node": "*" } }, - "node_modules/@types/react-router": { - "version": "5.1.18", - "resolved": "https://registry.npmjs.org/@types/react-router/-/react-router-5.1.18.tgz", - "integrity": "sha512-YYknwy0D0iOwKQgz9v8nOzt2J6l4gouBmDnWqUUznltOTaon+r8US8ky8HvN0tXvc38U9m6z/t2RsVsnd1zM0g==", - "dev": true, - "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*" - } + "node_modules/aws4": { + "version": "1.11.0", + "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", + "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" }, - "node_modules/@types/react-router-dom": { - "version": "5.3.3", - "resolved": "https://registry.npmjs.org/@types/react-router-dom/-/react-router-dom-5.3.3.tgz", - "integrity": "sha512-kpqnYK4wcdm5UaWI3fLcELopqLrHgLqNsdpHauzlQktfkHL3npOSwtj1Uz9oKBAzs7lFtVkV8j83voAz2D8fhw==", + "node_modules/axe-core": { + "version": "4.4.2", + "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", + "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==", "dev": true, - "dependencies": { - "@types/history": "^4.7.11", - "@types/react": "*", - "@types/react-router": "*" + "engines": { + "node": ">=12" } }, - "node_modules/@types/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-wWKOClTTiizcZhXnPY4wikVAwmdYHp8q6DmC+EJUzAMsycb7HB32Kh9RN4+0gExjmPmZSAQjgURXIGATPegAvA==", - "dev": true - }, - "node_modules/@types/scheduler": { - "version": "0.16.2", - "resolved": "https://registry.npmjs.org/@types/scheduler/-/scheduler-0.16.2.tgz", - "integrity": "sha512-hppQEBDmlwhFAXKJX2KnWLYu5yMfi91yazPb2l+lbJiwW+wdo1gNeRA+3RgNSO39WYX2euey41KEwnqesU2Jew==", - "dev": true - }, - "node_modules/@types/semver": { - "version": "7.5.8", - "resolved": "https://registry.npmjs.org/@types/semver/-/semver-7.5.8.tgz", - "integrity": "sha512-I8EUhyrgfLrcTkzV3TSsGyl1tSuPrEDzr0yd5m90UgNxQkyDXULk3b6MlQqTCpZpNtWe1K0hzclnZkTcLBe2UQ==", + "node_modules/axobject-query": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", + "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", "dev": true }, - "node_modules/@types/serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/@types/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha512-d/Hs3nWDxNL2xAczmOVZNj92YZCS6RGxfBPjKzuu/XirCgXdpKEb88dYNbrYGint6IVWLNP+yonwVAuRC0T2Dg==", + "node_modules/babel-code-frame": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", + "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==", "dev": true, "dependencies": { - "@types/express": "*" + "chalk": "^1.1.3", + "esutils": "^2.0.2", + "js-tokens": "^3.0.2" } }, - "node_modules/@types/serve-static": { - "version": "1.13.10", - "resolved": "https://registry.npmjs.org/@types/serve-static/-/serve-static-1.13.10.tgz", - "integrity": "sha512-nCkHGI4w7ZgAdNkrEu0bv+4xNV/XDqW+DydknebMOQwkpDGx8G+HTlj7R7ABI8i8nKxVw0wtKPi1D+lPOkh4YQ==", + "node_modules/babel-code-frame/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, - "dependencies": { - "@types/mime": "^1", - "@types/node": "*" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@types/sockjs": { - "version": "0.3.33", - "resolved": "https://registry.npmjs.org/@types/sockjs/-/sockjs-0.3.33.tgz", - "integrity": "sha512-f0KEEe05NvUnat+boPTZ0dgaLZ4SfSouXUgv5noUiefG2ajgKjmETo9ZJyuqsl7dfl2aHlLJUiki6B4ZYldiiw==", + "node_modules/babel-code-frame/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", "dev": true, - "dependencies": { - "@types/node": "*" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@types/stack-utils": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/@types/stack-utils/-/stack-utils-2.0.1.tgz", - "integrity": "sha512-Hl219/BT5fLAaz6NDkSuhzasy49dwQS/DSdu4MdggFB8zcXv7vflBI3xp7FEmkmdDkBUI2bPUNeMttp2knYdxw==", - "dev": true - }, - "node_modules/@types/trusted-types": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/@types/trusted-types/-/trusted-types-2.0.2.tgz", - "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" - }, - "node_modules/@types/unist": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", - "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", - "dev": true - }, - "node_modules/@types/ws": { - "version": "8.5.3", - "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", - "integrity": "sha512-6YOoWjruKj1uLf3INHH7D3qTXwFfEsg1kf3c0uDdSBJwfa/llkwIjrAGV7j7mVgGNbzTQ3HiHKKDXl6bJPD97w==", + "node_modules/babel-code-frame/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", "dev": true, "dependencies": { - "@types/node": "*" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/@types/yargs-parser": { - "version": "21.0.0", - "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", - "integrity": "sha512-iO9ZQHkZxHn4mSakYV0vFHAVDyEOIJQrV2uZ06HxEPcx+mt8swXoZHIbaaJ2crJYFfErySgktuTZ3BeLz+XmFA==", + "node_modules/babel-code-frame/node_modules/js-tokens": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", + "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", "dev": true }, - "node_modules/@typescript-eslint/eslint-plugin": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/eslint-plugin/-/eslint-plugin-7.4.0.tgz", - "integrity": "sha512-yHMQ/oFaM7HZdVrVm/M2WHaNPgyuJH4WelkSVEWSSsir34kxW2kDJCxlXRhhGWEsMN0WAW/vLpKfKVcm8k+MPw==", + "node_modules/babel-code-frame/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, "dependencies": { - "@eslint-community/regexpp": "^4.5.1", - "@typescript-eslint/scope-manager": "7.4.0", - "@typescript-eslint/type-utils": "7.4.0", - "@typescript-eslint/utils": "7.4.0", - "@typescript-eslint/visitor-keys": "7.4.0", - "debug": "^4.3.4", - "graphemer": "^1.4.0", - "ignore": "^5.2.4", - "natural-compare": "^1.4.0", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" + "ansi-regex": "^2.0.0" }, "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "@typescript-eslint/parser": "^7.0.0", - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=0.10.0" } }, - "node_modules/@typescript-eslint/parser": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/parser/-/parser-7.4.0.tgz", - "integrity": "sha512-ZvKHxHLusweEUVwrGRXXUVzFgnWhigo4JurEj0dGF1tbcGh6buL+ejDdjxOQxv6ytcY1uhun1p2sm8iWStlgLQ==", + "node_modules/babel-code-frame/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true, - "dependencies": { - "@typescript-eslint/scope-manager": "7.4.0", - "@typescript-eslint/types": "7.4.0", - "@typescript-eslint/typescript-estree": "7.4.0", - "@typescript-eslint/visitor-keys": "7.4.0", - "debug": "^4.3.4" - }, "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=0.8.0" } }, - "node_modules/@typescript-eslint/scope-manager": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-7.4.0.tgz", - "integrity": "sha512-68VqENG5HK27ypafqLVs8qO+RkNc7TezCduYrx8YJpXq2QGZ30vmNZGJJJC48+MVn4G2dCV8m5ZTVnzRexTVtw==", + "node_modules/babel-core": { + "version": "7.0.0-bridge.0", + "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", + "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "7.4.0", - "@typescript-eslint/visitor-keys": "7.4.0" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@babel/core": "^7.0.0-0" } }, - "node_modules/@typescript-eslint/type-utils": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/type-utils/-/type-utils-7.4.0.tgz", - "integrity": "sha512-247ETeHgr9WTRMqHbbQdzwzhuyaJ8dPTuyuUEMANqzMRB1rj/9qFIuIXK7l0FX9i9FXbHeBQl/4uz6mYuCE7Aw==", + "node_modules/babel-loader": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", + "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", "dev": true, "dependencies": { - "@typescript-eslint/typescript-estree": "7.4.0", - "@typescript-eslint/utils": "7.4.0", - "debug": "^4.3.4", - "ts-api-utils": "^1.0.1" + "find-cache-dir": "^3.3.1", + "loader-utils": "^2.0.0", + "make-dir": "^3.1.0", + "schema-utils": "^2.6.5" }, "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">= 8.9" }, "peerDependencies": { - "eslint": "^8.56.0" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "@babel/core": "^7.0.0", + "webpack": ">=2" } }, - "node_modules/@typescript-eslint/types": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-7.4.0.tgz", - "integrity": "sha512-mjQopsbffzJskos5B4HmbsadSJQWaRK0UxqQ7GuNA9Ga4bEKeiO6b2DnB6cM6bpc8lemaPseh0H9B/wyg+J7rw==", + "node_modules/babel-plugin-add-react-displayname": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz", + "integrity": "sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==", + "dev": true + }, + "node_modules/babel-plugin-istanbul": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", + "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", "dev": true, - "engines": { - "node": "^18.18.0 || >=20.0.0" + "dependencies": { + "@babel/helper-plugin-utils": "^7.0.0", + "@istanbuljs/load-nyc-config": "^1.0.0", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-instrument": "^5.0.4", + "test-exclude": "^6.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "engines": { + "node": ">=8" } }, - "node_modules/@typescript-eslint/typescript-estree": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-7.4.0.tgz", - "integrity": "sha512-A99j5AYoME/UBQ1ucEbbMEmGkN7SE0BvZFreSnTd1luq7yulcHdyGamZKizU7canpGDWGJ+Q6ZA9SyQobipePg==", + "node_modules/babel-plugin-polyfill-corejs2": { + "version": "0.4.10", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz", + "integrity": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.4.0", - "@typescript-eslint/visitor-keys": "7.4.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "minimatch": "9.0.3", - "semver": "^7.5.4", - "ts-api-utils": "^1.0.1" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.1", + "semver": "^6.3.1" }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/@typescript-eslint/typescript-estree/node_modules/minimatch": { - "version": "9.0.3", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.3.tgz", - "integrity": "sha512-RHiac9mvaRw0x3AYRgDC1CxAP7HTcNrrECeA8YYJeWnpo+2Q5CegtZjaotWTWxDG3UeGA1coE05iH1mPjT/2mg==", + "node_modules/babel-plugin-polyfill-corejs3": { + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, "dependencies": { - "brace-expansion": "^2.0.1" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" }, - "engines": { - "node": ">=16 || 14 >=14.17" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "peerDependencies": { + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@typescript-eslint/utils": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-7.4.0.tgz", - "integrity": "sha512-NQt9QLM4Tt8qrlBVY9lkMYzfYtNz8/6qwZg8pI3cMGlPnj6mOpRxxAm7BMJN9K0AiY+1BwJ5lVC650YJqYOuNg==", + "node_modules/babel-plugin-polyfill-regenerator": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.1.tgz", + "integrity": "sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.4.0", - "@types/json-schema": "^7.0.12", - "@types/semver": "^7.5.0", - "@typescript-eslint/scope-manager": "7.4.0", - "@typescript-eslint/types": "7.4.0", - "@typescript-eslint/typescript-estree": "7.4.0", - "semver": "^7.5.4" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "@babel/helper-define-polyfill-provider": "^0.6.1" }, "peerDependencies": { - "eslint": "^8.56.0" + "@babel/core": "^7.4.0 || ^8.0.0-0 <8.0.0" } }, - "node_modules/@typescript-eslint/visitor-keys": { - "version": "7.4.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-7.4.0.tgz", - "integrity": "sha512-0zkC7YM0iX5Y41homUUeW1CHtZR01K3ybjM1l6QczoMuay0XKtrb93kv95AxUGwdjGr64nNqnOCwmEl616N8CA==", + "node_modules/babel-preset-current-node-syntax": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", + "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "7.4.0", - "eslint-visitor-keys": "^3.4.1" - }, - "engines": { - "node": "^18.18.0 || >=20.0.0" + "@babel/plugin-syntax-async-generators": "^7.8.4", + "@babel/plugin-syntax-bigint": "^7.8.3", + "@babel/plugin-syntax-class-properties": "^7.8.3", + "@babel/plugin-syntax-import-meta": "^7.8.3", + "@babel/plugin-syntax-json-strings": "^7.8.3", + "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", + "@babel/plugin-syntax-numeric-separator": "^7.8.3", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", + "@babel/plugin-syntax-optional-chaining": "^7.8.3", + "@babel/plugin-syntax-top-level-await": "^7.8.3" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/@ungap/structured-clone": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@ungap/structured-clone/-/structured-clone-1.2.0.tgz", - "integrity": "sha512-zuVdFrMJiuCDQUMCzQaD6KL28MjnqqN8XnAqiEq9PNm/hCPTSGfrXCOfwj1ow4LFb/tNymJPwsNbVePc1xFqrQ==", - "dev": true - }, - "node_modules/@webassemblyjs/ast": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ast/-/ast-1.11.1.tgz", - "integrity": "sha512-ukBh14qFLjxTQNTXocdyksN5QdM28S1CxHt2rdskFyL+xFV7VremuBLVbmCePj+URalXBENx/9Lm7lnhihtCSw==", + "node_modules/babel-runtime": { + "version": "6.26.0", + "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", + "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", "dev": true, "dependencies": { - "@webassemblyjs/helper-numbers": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1" + "core-js": "^2.4.0", + "regenerator-runtime": "^0.11.0" } }, - "node_modules/@webassemblyjs/floating-point-hex-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/floating-point-hex-parser/-/floating-point-hex-parser-1.11.1.tgz", - "integrity": "sha512-iGRfyc5Bq+NnNuX8b5hwBrRjzf0ocrJPI6GWFodBFzmFnyvrQ83SHKhmilCU/8Jv67i4GJZBMhEzltxzcNagtQ==", + "node_modules/babel-runtime/node_modules/regenerator-runtime": { + "version": "0.11.1", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", + "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", "dev": true }, - "node_modules/@webassemblyjs/helper-api-error": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-api-error/-/helper-api-error-1.11.1.tgz", - "integrity": "sha512-RlhS8CBCXfRUR/cwo2ho9bkheSXG0+NwooXcc3PAILALf2QLdFyj7KGsKRbVc95hZnhnERon4kW/D3SZpp6Tcg==", + "node_modules/balanced-match": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", + "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", "dev": true }, - "node_modules/@webassemblyjs/helper-buffer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-buffer/-/helper-buffer-1.11.1.tgz", - "integrity": "sha512-gwikF65aDNeeXa8JxXa2BAk+REjSyhrNC9ZwdT0f8jc4dQQeDQ7G4m0f2QCLPJiMTTO6wfDmRmj/pW0PsUvIcA==", - "dev": true + "node_modules/base64-js": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", + "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/@webassemblyjs/helper-numbers": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-numbers/-/helper-numbers-1.11.1.tgz", - "integrity": "sha512-vDkbxiB8zfnPdNK9Rajcey5C0w+QJugEglN0of+kmO8l7lDb77AnlKYQF7aarZuCrv+l0UvqL+68gSDr3k9LPQ==", + "node_modules/basic-ftp": { + "version": "5.0.5", + "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", + "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", "dev": true, + "engines": { + "node": ">=10.0.0" + } + }, + "node_modules/batch": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", + "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", + "dev": true + }, + "node_modules/bcrypt-pbkdf": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", + "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dependencies": { - "@webassemblyjs/floating-point-hex-parser": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@xtuc/long": "4.2.2" + "tweetnacl": "^0.14.3" } }, - "node_modules/@webassemblyjs/helper-wasm-bytecode": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-bytecode/-/helper-wasm-bytecode-1.11.1.tgz", - "integrity": "sha512-PvpoOGiJwXeTrSf/qfudJhwlvDQxFgelbMqtq52WWiXC6Xgg1IREdngmPN3bs4RoO83PnL/nFrxucXj1+BX62Q==", + "node_modules/before-after-hook": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", + "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", "dev": true }, - "node_modules/@webassemblyjs/helper-wasm-section": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/helper-wasm-section/-/helper-wasm-section-1.11.1.tgz", - "integrity": "sha512-10P9No29rYX1j7F3EVPX3JvGPQPae+AomuSTPiF9eBQeChHI6iqjMIwR9JmOJXwpnn/oVGDk7I5IlskuMwU/pg==", + "node_modules/better-opn": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1" + "open": "^8.0.4" + }, + "engines": { + "node": ">=12.0.0" } }, - "node_modules/@webassemblyjs/ieee754": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/ieee754/-/ieee754-1.11.1.tgz", - "integrity": "sha512-hJ87QIPtAMKbFq6CGTkZYJivEwZDbQUgYd3qKSadTNOhVY7p+gfP6Sr0lLRVTaG1JjFj+r3YchoqRYxNH3M0GQ==", + "node_modules/big-integer": { + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "dev": true, - "dependencies": { - "@xtuc/ieee754": "^1.2.0" + "engines": { + "node": ">=0.6" } }, - "node_modules/@webassemblyjs/leb128": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/leb128/-/leb128-1.11.1.tgz", - "integrity": "sha512-BJ2P0hNZ0u+Th1YZXJpzW6miwqQUGcIHT1G/sf72gLVD9DZ5AdYTqPNbHZh6K1M5VmKvFXwGSWZADz+qBWxeRw==", + "node_modules/big.js": { + "version": "5.2.2", + "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", + "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", "dev": true, - "dependencies": { - "@xtuc/long": "4.2.2" + "engines": { + "node": "*" } }, - "node_modules/@webassemblyjs/utf8": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/utf8/-/utf8-1.11.1.tgz", - "integrity": "sha512-9kqcxAEdMhiwQkHpkNiorZzqpGrodQQ2IGrHHxCy+Ozng0ofyMA0lTqiLkVs1uzTRejX+/O0EOT7KxqVPuXosQ==", - "dev": true + "node_modules/bin-pack": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/bin-pack/-/bin-pack-1.0.2.tgz", + "integrity": "sha512-aOk0SxEon5LF9cMxQFViSKb4qccG6rs7XKyMXIb1J8f8LA2acTIWnHdT0IOTe4gYBbqgjdbuTZ5f+UP+vlh4Mw==" }, - "node_modules/@webassemblyjs/wasm-edit": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-edit/-/wasm-edit-1.11.1.tgz", - "integrity": "sha512-g+RsupUC1aTHfR8CDgnsVRVZFJqdkFHpsHMfJuWQzWU3tvnLC07UqHICfP+4XyL2tnr1amvl1Sdp06TnYCmVkA==", + "node_modules/binary-extensions": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", + "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/helper-wasm-section": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-opt": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1", - "@webassemblyjs/wast-printer": "1.11.1" + "engines": { + "node": ">=8" } }, - "node_modules/@webassemblyjs/wasm-gen": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-gen/-/wasm-gen-1.11.1.tgz", - "integrity": "sha512-F7QqKXwwNlMmsulj6+O7r4mmtAlCWfO/0HdgOxSklZfQcDu0TpLiD1mRt/zF25Bk59FIjEuGAIyn5ei4yMfLhA==", - "dev": true, + "node_modules/bl": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", + "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "buffer": "^5.5.0", + "inherits": "^2.0.4", + "readable-stream": "^3.4.0" } }, - "node_modules/@webassemblyjs/wasm-opt": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-opt/-/wasm-opt-1.11.1.tgz", - "integrity": "sha512-VqnkNqnZlU5EB64pp1l7hdm3hmQw7Vgqa0KF/KCNO9sIpI6Fk6brDEiX+iCOYrvMuBWDws0NkTOxYEb85XQHHw==", + "node_modules/body-parser": { + "version": "1.20.0", + "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", + "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-buffer": "1.11.1", - "@webassemblyjs/wasm-gen": "1.11.1", - "@webassemblyjs/wasm-parser": "1.11.1" + "bytes": "3.1.2", + "content-type": "~1.0.4", + "debug": "2.6.9", + "depd": "2.0.0", + "destroy": "1.2.0", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "on-finished": "2.4.1", + "qs": "6.10.3", + "raw-body": "2.5.1", + "type-is": "~1.6.18", + "unpipe": "1.0.0" + }, + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/@webassemblyjs/wasm-parser": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wasm-parser/-/wasm-parser-1.11.1.tgz", - "integrity": "sha512-rrBujw+dJu32gYB7/Lup6UhdkPx9S9SnobZzRVL7VcBH9Bt9bCBLEuX/YXOOtBsOZ4NQrRykKhffRWHvigQvOA==", + "node_modules/body-parser/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, - "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@webassemblyjs/helper-api-error": "1.11.1", - "@webassemblyjs/helper-wasm-bytecode": "1.11.1", - "@webassemblyjs/ieee754": "1.11.1", - "@webassemblyjs/leb128": "1.11.1", - "@webassemblyjs/utf8": "1.11.1" + "engines": { + "node": ">= 0.8" } }, - "node_modules/@webassemblyjs/wast-printer": { - "version": "1.11.1", - "resolved": "https://registry.npmjs.org/@webassemblyjs/wast-printer/-/wast-printer-1.11.1.tgz", - "integrity": "sha512-IQboUWM4eKzWW+N/jij2sRatKMh99QEelo3Eb2q0qXkvPRISAj8Qxtmw5itwqK+TTkBuUIE45AxYPToqPtL5gg==", + "node_modules/body-parser/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "@webassemblyjs/ast": "1.11.1", - "@xtuc/long": "4.2.2" + "ms": "2.0.0" } }, - "node_modules/@webpack-cli/configtest": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/configtest/-/configtest-1.1.1.tgz", - "integrity": "sha512-1FBc1f9G4P/AxMqIgfZgeOTuRnwZMten8E7zap5zgpPInnCrP8D4Q81+4CWIch8i/Nf7nXjP0v6CjjbHOrXhKg==", + "node_modules/body-parser/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/bonjour-service": { + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz", + "integrity": "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==", "dev": true, - "peerDependencies": { - "webpack": "4.x.x || 5.x.x", - "webpack-cli": "4.x.x" + "dependencies": { + "array-flatten": "^2.1.2", + "dns-equal": "^1.0.0", + "fast-deep-equal": "^3.1.3", + "multicast-dns": "^7.2.5" } }, - "node_modules/@webpack-cli/info": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/info/-/info-1.4.1.tgz", - "integrity": "sha512-PKVGmazEq3oAo46Q63tpMr4HipI3OPfP7LiNOEJg963RMgT0rqheag28NCML0o3GIzA3DmxP1ZIAv9oTX1CUIA==", + "node_modules/boolbase": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", + "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", + "dev": true + }, + "node_modules/bplist-parser": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", + "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", "dev": true, "dependencies": { - "envinfo": "^7.7.3" + "big-integer": "^1.6.44" }, - "peerDependencies": { - "webpack-cli": "4.x.x" + "engines": { + "node": ">= 5.10.0" } }, - "node_modules/@webpack-cli/serve": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/@webpack-cli/serve/-/serve-1.6.1.tgz", - "integrity": "sha512-gNGTiTrjEVQ0OcVnzsRSqTxaBSr+dmTfm+qJsCDluky8uhdLWep7Gcr62QsAKHTMxjCS/8nEITsmFAhfIx+QSw==", + "node_modules/brace-expansion": { + "version": "1.1.11", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", + "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", "dev": true, - "peerDependencies": { - "webpack-cli": "4.x.x" - }, - "peerDependenciesMeta": { - "webpack-dev-server": { - "optional": true - } + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/@xtuc/ieee754": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/@xtuc/ieee754/-/ieee754-1.2.0.tgz", - "integrity": "sha512-DX8nKgqcGwsc0eJSqYt5lwP4DH5FlHnmuWWBRy7X0NcaGR0ZtuyeESgMwTYVEtxmsNGY+qit4QYT/MIYTOTPeA==", - "dev": true - }, - "node_modules/@xtuc/long": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/@xtuc/long/-/long-4.2.2.tgz", - "integrity": "sha512-NuHqBY1PB/D8xU6s/thBgOAiAP7HOYDQ32+BFZILJ8ivkUkAHQnWfn6WhL79Owj1qmUnoN/YPhktdIoucipkAQ==", - "dev": true - }, - "node_modules/@yarnpkg/esbuild-plugin-pnp": { - "version": "3.0.0-rc.15", - "resolved": "https://registry.npmjs.org/@yarnpkg/esbuild-plugin-pnp/-/esbuild-plugin-pnp-3.0.0-rc.15.tgz", - "integrity": "sha512-kYzDJO5CA9sy+on/s2aIW0411AklfCi8Ck/4QDivOqsMKpStZA2SsR+X27VTggGwpStWaLrjJcDcdDMowtG8MA==", + "node_modules/braces": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", + "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", "dev": true, "dependencies": { - "tslib": "^2.4.0" + "fill-range": "^7.0.1" }, "engines": { - "node": ">=14.15.0" - }, - "peerDependencies": { - "esbuild": ">=0.10.0" + "node": ">=8" } }, - "node_modules/abab": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", - "integrity": "sha512-j2afSsaIENvHZN2B8GOpF566vZ5WVk5opAiMTvWgaQT8DkbOqsTfvNAvHoRGU2zzP8cPoqys+xHTRDWW8L+/BA==", + "node_modules/browser-assert": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", + "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==", "dev": true }, - "node_modules/abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true, - "optional": true, - "peer": true + "node_modules/browser-process-hrtime": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", + "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "dev": true }, - "node_modules/accepts": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.8.tgz", - "integrity": "sha512-PYAthTa2m2VKxuvSD3DPC/Gy+U+sOA1LAuT8mkmRuvw+NACSaeXEQ+NHcVF7rONl6qcaxV3Uuemwawk+7+SJLw==", + "node_modules/browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", "dev": true, "dependencies": { - "mime-types": "~2.1.34", - "negotiator": "0.6.3" - }, - "engines": { - "node": ">= 0.6" + "pako": "~0.2.0" } }, - "node_modules/acorn": { - "version": "8.11.3", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-8.11.3.tgz", - "integrity": "sha512-Y9rRfJG5jcKOE0CLisYbojUjIrIEE7AGMzA/Sm4BslANhbS+cDMpgBdcPT91oJ7OuJ9hYJBx59RjbhxVnrF8Xg==", + "node_modules/browserslist": { + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ], + "dependencies": { + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" + }, "bin": { - "acorn": "bin/acorn" + "browserslist": "cli.js" }, "engines": { - "node": ">=0.4.0" + "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" } }, - "node_modules/acorn-globals": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/acorn-globals/-/acorn-globals-6.0.0.tgz", - "integrity": "sha512-ZQl7LOWaF5ePqqcX4hLuv/bLXYQNfNWw2c0/yX/TsPRKamzHcTGQnlCjHT3TsmkOUVEPS3crCxiPfdzE/Trlhg==", + "node_modules/bser": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", + "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", "dev": true, "dependencies": { - "acorn": "^7.1.1", - "acorn-walk": "^7.1.1" + "node-int64": "^0.4.0" } }, - "node_modules/acorn-globals/node_modules/acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", + "node_modules/buffer": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", + "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], + "dependencies": { + "base64-js": "^1.3.1", + "ieee754": "^1.1.13" + } + }, + "node_modules/buffer-crc32": { + "version": "0.2.13", + "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", + "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, "engines": { - "node": ">=0.4.0" + "node": "*" } }, - "node_modules/acorn-import-assertions": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/acorn-import-assertions/-/acorn-import-assertions-1.8.0.tgz", - "integrity": "sha512-m7VZ3jwz4eK6A4Vtt8Ew1/mNbP24u0FhdyfA7fSvnJR6LMdfOYnmuIrrJAgrYfYJ10F/otaHTtrtrtmHdMNzEw==", + "node_modules/buffer-from": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", + "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", + "dev": true + }, + "node_modules/bugsnag-build-reporter": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/bugsnag-build-reporter/-/bugsnag-build-reporter-2.0.0.tgz", + "integrity": "sha512-jeiGdjEWLjKOKWDroMbYf/5wVSqk03uRxtidTBlORK8swpwnX4sMARQsE4xx8D5IkdqMIQkSHHflZ8uIGYL0rA==", "dev": true, - "peerDependencies": { - "acorn": "^8" + "dependencies": { + "chalk": "^2.3.0", + "concat-stream": "^1.6.0", + "find-nearest-file": "^1.1.0", + "meow": "^6.1.1", + "once": "^1.4.0", + "pino": "^4.10.3", + "run-parallel": "^1.1.6" + }, + "bin": { + "bugsnag-build-reporter": "bin/cli.js" } }, - "node_modules/acorn-jsx": { - "version": "5.3.2", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-5.3.2.tgz", - "integrity": "sha512-rq9s+JNhf0IChjtDXxllJ7g41oZk5SlXtp0LHwyA5cejwn7vKmKp4pPri6YEePv2PU65sAsegbXtIinmDFDXgQ==", + "node_modules/bugsnag-build-reporter/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/bugsnag-build-reporter/node_modules/meow": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz", + "integrity": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==", "dev": true, - "peerDependencies": { - "acorn": "^6.0.0 || ^7.0.0 || ^8.0.0" + "dependencies": { + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "^4.0.2", + "normalize-package-data": "^2.5.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.13.1", + "yargs-parser": "^18.1.3" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/acorn-walk": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/acorn-walk/-/acorn-walk-7.2.0.tgz", - "integrity": "sha512-OPdCF6GsMIP+Az+aWfAAOEt2/+iVDKE7oy6lJ098aoe59oAmK76qV6Gw60SbZ8jHuG2wH058GF4pLFbYamYrVA==", + "node_modules/bugsnag-build-reporter/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", "dev": true, - "engines": { - "node": ">=0.4.0" + "dependencies": { + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "node_modules/address": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/address/-/address-1.2.2.tgz", - "integrity": "sha512-4B/qKCfeE/ODUaAUpSwfzazo5x29WD4r3vXiWsB7I2mSDAihwEqKO+g8GELZUQSSAo5e1XTYh3ZVfLyxBc12nA==", + "node_modules/bugsnag-build-reporter/node_modules/semver": { + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", + "dev": true, + "bin": { + "semver": "bin/semver" + } + }, + "node_modules/bugsnag-build-reporter/node_modules/type-fest": { + "version": "0.13.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", + "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", "dev": true, "engines": { - "node": ">= 10.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/agent-base": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-6.0.2.tgz", - "integrity": "sha512-RZNwNclF7+MS/8bDg70amg32dyeZGZxiDuQmZxKLAlQjr3jGyLx+4Kkk58UO7D2QdgFIQCovuSuZESne6RG6XQ==", + "node_modules/bugsnag-build-reporter/node_modules/yargs-parser": { + "version": "18.1.3", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", + "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", "dev": true, "dependencies": { - "debug": "4" + "camelcase": "^5.0.0", + "decamelize": "^1.2.0" }, "engines": { - "node": ">= 6.0.0" + "node": ">=6" } }, - "node_modules/agentkeepalive": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/agentkeepalive/-/agentkeepalive-4.2.1.tgz", - "integrity": "sha512-Zn4cw2NEqd+9fiSVWMscnjyQ1a8Yfoc5oBajLeo5w+YBHgDUcEBY2hS4YpTz6iN5f/2zQiktcuM6tS8x1p9dpA==", + "node_modules/bundle-name": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", + "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" + "run-applescript": "^7.0.0" }, "engines": { - "node": ">= 8.0.0" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/agentkeepalive/node_modules/depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha512-7emPTl6Dpo6JRXOXjLRxck+FlLRX5847cLKEn00PLAgc3g2hTZZgr+e4c2v6QpSmLeFP3n5yUo7ft6avBK/5jQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/byline": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz", + "integrity": "sha512-s6webAy+R4SR8XVuJWt2V2rGvhnrhxN+9S15GNuTK3wKPOXFF6RNc+8ug2XhH+2s4f+uudG4kUVYmYOQWL2g0Q==", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/aggregate-error": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/aggregate-error/-/aggregate-error-3.1.0.tgz", - "integrity": "sha512-4I7Td01quW/RpocfNayFdFVk1qSuoh0E7JrbRJ16nH01HhKFQ88INq9Sd+nd72zqRySlr9BmDA8xlEJ6vJMrYA==", + "node_modules/bytes": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", + "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true, - "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">= 0.8" } }, - "node_modules/aggregate-error/node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/cacache": { + "version": "15.3.0", + "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", + "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "@npmcli/fs": "^1.0.0", + "@npmcli/move-file": "^1.0.1", + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "glob": "^7.1.4", + "infer-owner": "^1.0.4", + "lru-cache": "^6.0.0", + "minipass": "^3.1.1", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.2", + "mkdirp": "^1.0.3", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^8.0.1", + "tar": "^6.0.2", + "unique-filename": "^1.1.1" + }, "engines": { - "node": ">=8" + "node": ">= 10" } }, - "node_modules/ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "node_modules/cacache/node_modules/mkdirp": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", + "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "dev": true, + "optional": true, + "peer": true, + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/cacheable-lookup": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", + "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "dev": true, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/cacheable-request": { + "version": "10.2.14", + "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", + "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", + "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" + "@types/http-cache-semantics": "^4.0.2", + "get-stream": "^6.0.1", + "http-cache-semantics": "^4.1.1", + "keyv": "^4.5.3", + "mimic-response": "^4.0.0", + "normalize-url": "^8.0.0", + "responselike": "^3.0.0" + }, + "engines": { + "node": ">=14.16" + } + }, + "node_modules/cacheable-request/node_modules/mimic-response": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", + "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ajv-formats": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ajv-formats/-/ajv-formats-2.1.1.tgz", - "integrity": "sha512-Wx0Kx52hxE7C18hkMEggYlEifqWZtYaRgouJor+WMdPnQyEK13vgEWyVNup7SoeeoLMsr4kf5h6dOW11I15MUA==", + "node_modules/call-bind": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", + "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", "dev": true, "dependencies": { - "ajv": "^8.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "get-intrinsic": "^1.2.4", + "set-function-length": "^1.2.1" }, - "peerDependencies": { - "ajv": "^8.0.0" + "engines": { + "node": ">= 0.4" }, - "peerDependenciesMeta": { - "ajv": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/ajv-formats/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", + "node_modules/caller-path": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", + "integrity": "sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g==", "dev": true, "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" + "callsites": "^0.2.0" }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/ajv-formats/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true + "node_modules/caller-path/node_modules/callsites": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", + "integrity": "sha512-Zv4Dns9IbXXmPkgRRUjAaJQgfN4xX5p6+RQFhWUqscdvvK2xK/ZL8b3IXIJsj+4sD+f24NwnWy2BY8AJ82JB0A==", + "dev": true, + "engines": { + "node": ">=0.10.0" + } }, - "node_modules/ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "node_modules/callsites": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", + "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", "dev": true, - "peerDependencies": { - "ajv": "^6.9.1" + "engines": { + "node": ">=6" } }, - "node_modules/ansi-align": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-align/-/ansi-align-3.0.1.tgz", - "integrity": "sha512-IOfwwBF5iczOjp/WeY4YxyjqAFMQoZufdQWDd19SEExbVLNXqvpzSJ/M7Za4/sCPmQ0+GRquoA7bGcINcxew6w==", + "node_modules/camel-case": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", + "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", "dev": true, "dependencies": { - "string-width": "^4.1.0" + "pascal-case": "^3.1.2", + "tslib": "^2.0.3" } }, - "node_modules/ansi-colors": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/ansi-colors/-/ansi-colors-4.1.3.tgz", - "integrity": "sha512-/6w/C21Pm1A7aZitlI5Ni/2J6FFQN8i1Cvz3kHABAAbw93v/NlvKdVOqz7CCWz/3iv/JplRSEEZ83XION15ovw==", + "node_modules/camelcase": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", + "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", "dev": true, "engines": { "node": ">=6" } }, - "node_modules/ansi-escapes": { - "version": "4.3.2", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-4.3.2.tgz", - "integrity": "sha512-gKXj5ALrKWQLsYG9jlTRmR/xKluxHV+Z9QEwNIgCfM1/uwPMCuzVVnh5mwTd+OuBZcwSIMbqssNWRm1lE51QaQ==", + "node_modules/camelcase-keys": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", + "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", "dev": true, "dependencies": { - "type-fest": "^0.21.3" + "camelcase": "^5.3.1", + "map-obj": "^4.0.0", + "quick-lru": "^4.0.1" }, "engines": { "node": ">=8" @@ -11188,1226 +11734,1291 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ansi-html-community": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/ansi-html-community/-/ansi-html-community-0.0.8.tgz", - "integrity": "sha512-1APHAyr3+PCamwNw3bXCPp4HFLONZt/yIH0sZp0/469KWNTEy+qN5jQ3GVX6DMZ1UXAi34yVwtTeaG/HpBuuzw==", + "node_modules/can-use-dom": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", + "integrity": "sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==" + }, + "node_modules/caniuse-lite": { + "version": "1.0.30001605", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001605.tgz", + "integrity": "sha512-nXwGlFWo34uliI9z3n6Qc0wZaf7zaZWA1CPZ169La5mV3I/gem7bst0vr5XQH5TJXZIMfDeZyOrZnSlVzKxxHQ==", "dev": true, - "engines": [ - "node >= 0.8.0" - ], - "bin": { - "ansi-html": "bin/ansi-html" - } + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/browserslist" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/caniuse-lite" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" + } + ] }, - "node_modules/ansi-regex": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-5.0.1.tgz", - "integrity": "sha512-quJQXlTSUGL2LH9SUXo8VwsY4soanhgo6LNSm84E1LBcE8s3O0wpdiRzyR9z/ZZJMlMWv37qOOb9pdJlMUEKFQ==", + "node_modules/case-sensitive-paths-webpack-plugin": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", + "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", + "node_modules/caseless": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", + "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + }, + "node_modules/chalk": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", + "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", "dev": true, "dependencies": { - "color-convert": "^1.9.0" + "ansi-styles": "^3.2.1", + "escape-string-regexp": "^1.0.5", + "supports-color": "^5.3.0" }, "engines": { "node": ">=4" } }, - "node_modules/ansi-styles/node_modules/color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", + "node_modules/change-case": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz", + "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==", "dev": true, "dependencies": { - "color-name": "1.1.3" + "camel-case": "^3.0.0", + "constant-case": "^2.0.0", + "dot-case": "^2.1.0", + "header-case": "^1.0.0", + "is-lower-case": "^1.1.0", + "is-upper-case": "^1.1.0", + "lower-case": "^1.1.1", + "lower-case-first": "^1.0.0", + "no-case": "^2.3.2", + "param-case": "^2.1.0", + "pascal-case": "^2.0.0", + "path-case": "^2.1.0", + "sentence-case": "^2.1.0", + "snake-case": "^2.1.0", + "swap-case": "^1.1.0", + "title-case": "^2.1.0", + "upper-case": "^1.1.1", + "upper-case-first": "^1.1.0" } }, - "node_modules/ansi-styles/node_modules/color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha512-72fSenhMw2HZMTVHeCA9KCmpEIbzWiQsjN+BHcBbS9vr1mtt+vJjPdksIBNUmKAW8TFUDPJK5SUU3QhE9NEXDw==", - "dev": true + "node_modules/change-case/node_modules/camel-case": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", + "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "dev": true, + "dependencies": { + "no-case": "^2.2.0", + "upper-case": "^1.1.1" + } }, - "node_modules/anymatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-3.1.2.tgz", - "integrity": "sha512-P43ePfOAIupkguHUycrc4qJ9kz8ZiuOUijaETwX7THt0Y/GNK7v0aa8rY816xWjZ7rJdA5XdMcpVFTKMq+RvWg==", + "node_modules/change-case/node_modules/param-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", + "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", "dev": true, "dependencies": { - "normalize-path": "^3.0.0", - "picomatch": "^2.0.4" - }, - "engines": { - "node": ">= 8" + "no-case": "^2.2.0" } }, - "node_modules/app-root-dir": { + "node_modules/change-case/node_modules/pascal-case": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", + "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", + "dev": true, + "dependencies": { + "camel-case": "^3.0.0", + "upper-case-first": "^1.1.0" + } + }, + "node_modules/char-regex": { "version": "1.0.2", - "resolved": "https://registry.npmjs.org/app-root-dir/-/app-root-dir-1.0.2.tgz", - "integrity": "sha512-jlpIfsOoNoafl92Sz//64uQHGSyMrD2vYG5d8o2a4qGvyNCvXur7bzIsWtAC/6flI2RYAp3kv8rsfBtaLm7w0g==", - "dev": true + "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", + "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "dev": true, + "engines": { + "node": ">=10" + } }, - "node_modules/aproba": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", - "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", + "node_modules/chardet": { + "version": "0.4.2", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", + "integrity": "sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==", "dev": true }, - "node_modules/are-we-there-yet": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", - "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", - "dev": true, + "node_modules/chart.js": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.2.1.tgz", + "integrity": "sha512-6YbpQ0nt3NovAgOzbkSSeeAQu/3za1319dPUQTXn9WcOpywM8rGKxJHrhS8V8xEkAlk8YhEfjbuAPfUyp6jIsw==", "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "@kurkle/color": "^0.3.0" }, "engines": { - "node": ">=10" + "pnpm": "^7.0.0" } }, - "node_modules/arg": { - "version": "4.1.3", - "resolved": "https://registry.npmjs.org/arg/-/arg-4.1.3.tgz", - "integrity": "sha512-58S9QDqG0Xx27YwPSt9fJxivjYl432YCwfDMfZ+71RAqUrZef7LrKQZ3LHLOwCS4FLNBplP533Zx895SeOCHvA==", - "dev": true - }, - "node_modules/argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "node_modules/chokidar": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, "dependencies": { - "sprintf-js": "~1.0.2" + "anymatch": "~3.1.2", + "braces": "~3.0.2", + "glob-parent": "~5.1.2", + "is-binary-path": "~2.1.0", + "is-glob": "~4.0.1", + "normalize-path": "~3.0.0", + "readdirp": "~3.6.0" + }, + "engines": { + "node": ">= 8.10.0" + }, + "funding": { + "url": "https://paulmillr.com/funding/" + }, + "optionalDependencies": { + "fsevents": "~2.3.2" } }, - "node_modules/aria-query": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/aria-query/-/aria-query-4.2.2.tgz", - "integrity": "sha512-o/HelwhuKpTj/frsOsbNLNgnNGVIFsVP/SW2BSF14gVl7kAfMOJ6/8wUAUvG1R1NHKrfG+2sHZTu0yauT1qBrA==", + "node_modules/chokidar/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, "dependencies": { - "@babel/runtime": "^7.10.2", - "@babel/runtime-corejs3": "^7.10.2" + "is-glob": "^4.0.1" }, "engines": { - "node": ">=6.0" + "node": ">= 6" } }, - "node_modules/array-back": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-3.1.0.tgz", - "integrity": "sha512-TkuxA4UCOvxuDK6NZYXCalszEzj+TLszyASooky+i742l9TqsOdYCMJJupxRic61hwquNtppB3hgcuq9SVSH1Q==", + "node_modules/chownr": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", + "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/array-buffer-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/array-buffer-byte-length/-/array-buffer-byte-length-1.0.1.tgz", - "integrity": "sha512-ahC5W1xgou+KTXix4sAO8Ki12Q+jf4i0+tmk3sC+zgcynshkHxzpXdImBehiUYKKKDwvfFiJl1tZt6ewscS1Mg==", + "node_modules/chrome-trace-event": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", + "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "dev": true, + "engines": { + "node": ">=6.0" + } + }, + "node_modules/ci-info": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.1.tgz", + "integrity": "sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==", + "dev": true + }, + "node_modules/circular-json": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", + "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", + "deprecated": "CircularJSON is in maintenance only, flatted is its successor.", + "dev": true + }, + "node_modules/citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.5", - "is-array-buffer": "^3.0.4" - }, + "consola": "^3.2.3" + } + }, + "node_modules/citty/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/array-flatten": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-2.1.2.tgz", - "integrity": "sha512-hNfzcOV8W4NdualtqBFPyVO+54DSJuZGY9qT4pRroB6S9e3iiido2ISIC5h9R2sPJ8H3FHCIiEnsv1lPXO3KtQ==", + "node_modules/cjs-module-lexer": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, - "node_modules/array-includes": { - "version": "3.1.6", - "resolved": "https://registry.npmjs.org/array-includes/-/array-includes-3.1.6.tgz", - "integrity": "sha512-sgTbLvL6cNnw24FnbaDyjmvddQ2ML8arZsgaJhoABMoplz/4QRhtrYS+alr1BUM1Bwp6dhx8vVCBSLG+StwOFw==", + "node_modules/class-transformer": { + "version": "0.5.1", + "resolved": "https://registry.npmjs.org/class-transformer/-/class-transformer-0.5.1.tgz", + "integrity": "sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==" + }, + "node_modules/clean-css": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", + "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "get-intrinsic": "^1.1.3", - "is-string": "^1.0.7" + "source-map": "~0.6.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 10.0" } }, - "node_modules/array-union": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/array-union/-/array-union-2.1.0.tgz", - "integrity": "sha512-HGyxoOTYUyCM6stUe6EJgnd4EoewAI7zMdfqO+kGjnlZmBDz/cR5pf8r/cR4Wq60sL/p0IkcjUEEPwS3GFrIyw==", + "node_modules/clean-stack": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", + "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/array.prototype.flat": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flat/-/array.prototype.flat-1.3.1.tgz", - "integrity": "sha512-roTU0KWIOmJ4DRLmwKd19Otg0/mT3qPNt0Qb3GWW8iObuZXxrjB/pzn0R3hqpRSWg4HCwqx+0vwOnWnvlOyeIA==", + "node_modules/cli-cursor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", + "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" + "restore-cursor": "^3.1.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/array.prototype.flatmap": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/array.prototype.flatmap/-/array.prototype.flatmap-1.3.1.tgz", - "integrity": "sha512-8UGn9O1FDVvMNB0UlLv4voxRMze7+FpHyF5mSMRjWHUMlpoDViniy05870VlxhfgTnLbpuwTzvD76MTtWxB/mQ==", + "node_modules/cli-spinners": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", + "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0" - }, "engines": { - "node": ">= 0.4" + "node": ">=6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/array.prototype.map": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/array.prototype.map/-/array.prototype.map-1.0.6.tgz", - "integrity": "sha512-nK1psgF2cXqP3wSyCSq0Hc7zwNq3sfljQqaG27r/7a7ooNUnn5nGq6yYWyks9jMO5EoFQ0ax80hSg6oXSRNXaw==", + "node_modules/cli-table3": { + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz", + "integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "es-array-method-boxes-properly": "^1.0.0", - "is-string": "^1.0.7" + "string-width": "^4.2.0" }, "engines": { - "node": ">= 0.4" + "node": "10.* || >= 12.*" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/array.prototype.tosorted": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array.prototype.tosorted/-/array.prototype.tosorted-1.1.1.tgz", - "integrity": "sha512-pZYPXPRl2PqWcsUs6LOMn+1f1532nEoPTYowBtqLwAW+W8vSVhkIGnmOX1t/UQjD6YGI0vcD2B1U7ZFGQH9jnQ==", - "dev": true, - "peer": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4", - "es-shim-unscopables": "^1.0.0", - "get-intrinsic": "^1.1.3" + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/arraybuffer.prototype.slice": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/arraybuffer.prototype.slice/-/arraybuffer.prototype.slice-1.0.3.tgz", - "integrity": "sha512-bMxMKAjg13EBSVscxTaYA4mRc5t1UAXa2kXiGTNfZ079HIWXEkKmkgFrh/nJqamaLSrXO5H4WFFkPEaLJWbs3A==", + "node_modules/cli-truncate": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", + "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "es-abstract": "^1.22.3", - "es-errors": "^1.2.1", - "get-intrinsic": "^1.2.3", - "is-array-buffer": "^3.0.4", - "is-shared-array-buffer": "^1.0.2" + "slice-ansi": "^5.0.0", + "string-width": "^5.0.0" }, "engines": { - "node": ">= 0.4" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/arrify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/arrify/-/arrify-1.0.1.tgz", - "integrity": "sha512-3CYzex9M9FGQjCGMGyi6/31c8GJbgb0qGyrx5HWxPd0aCwh4cB2YjMb2Xf9UuoogrMrlO9cTqnB5rI5GHZTcUA==", + "node_modules/cli-truncate/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/asn1": { - "version": "0.2.6", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.6.tgz", - "integrity": "sha512-ix/FxPn0MDjeyJ7i/yoHGFt/EX6LyNbxSEhPPXODPL+KB0VPk86UYfL0lMdy+KCnv+fmvIzySwaK5COwqVbWTQ==", - "dependencies": { - "safer-buffer": "~2.1.0" + "node_modules/cli-truncate/node_modules/ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha512-NfJ4UzBCcQGLDlQq7nHxH+tv3kyZ0hHQqF5BO6J7tNJeP5do1llPr8dZ8zHonfhAu0PHAdMkSo+8o0wxg9lZWw==", + "node_modules/cli-truncate/node_modules/is-fullwidth-code-point": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", + "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "dev": true, "engines": { - "node": ">=0.8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/ast-types": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.16.1.tgz", - "integrity": "sha512-6t10qk83GOG8p0vKmaCr8eiilZwO171AvbROMtvvNiwrTly62t+7XkA8RdIIVbpMhCASAsxgAzdRSwh6nw/5Dg==", + "node_modules/cli-truncate/node_modules/slice-ansi": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", + "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", "dev": true, "dependencies": { - "tslib": "^2.0.1" + "ansi-styles": "^6.0.0", + "is-fullwidth-code-point": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/ast-types-flow": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ast-types-flow/-/ast-types-flow-0.0.7.tgz", - "integrity": "sha512-eBvWn1lvIApYMhzQMsu9ciLfkBY499mFZlNqG+/9WR7PVlroQw0vG30cOQQbaKz3sCEc44TAOu2ykzqXSNnwag==", - "dev": true - }, - "node_modules/astral-regex": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/astral-regex/-/astral-regex-2.0.0.tgz", - "integrity": "sha512-Z7tMw1ytTXt5jqMcOP+OQteU1VuNK9Y02uuJtKQ1Sv69jXQKKg5cibLwGJow8yzZP+eAc18EmLGPal0bp36rvQ==", + "node_modules/cli-truncate/node_modules/string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", "dev": true, + "dependencies": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + }, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/async": { - "version": "3.2.4", - "resolved": "https://registry.npmjs.org/async/-/async-3.2.4.tgz", - "integrity": "sha512-iAB+JbDEGXhyIUavoDl9WP/Jj106Kz9DEn1DPgYw5ruDn0e3Wgi3sKFm55sASdGBNOQB8F59d9qQ7deqrHA8wQ==" - }, - "node_modules/async-foreach": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", - "integrity": "sha512-VUeSMD8nEGBWaZK4lizI1sf3yEC7pnAQ/mrI7pC2fBz2s/tq5jWWEngTwaf0Gruu/OoXRGLGg1XFqpYBiGTYJA==", + "node_modules/cli-truncate/node_modules/strip-ansi": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", + "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", "dev": true, - "optional": true, - "peer": true, + "dependencies": { + "ansi-regex": "^6.0.1" + }, "engines": { - "node": "*" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/async-limiter": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/async-limiter/-/async-limiter-1.0.1.tgz", - "integrity": "sha512-csOlWGAcRFJaI6m+F2WKdnMKr4HhdhFVBk0H/QbJFMCr+uO2kwohwXQPxw/9OCxp05r5ghVBFSyioixx3gfkNQ==", + "node_modules/cli-width": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", + "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", "dev": true }, - "node_modules/async-retry": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/async-retry/-/async-retry-1.3.3.tgz", - "integrity": "sha512-wfr/jstw9xNi/0teMHrRW7dsz3Lt5ARhYNZ2ewpadnhaIp5mbALhOAP+EAdsC7t4Z6wqsDVv9+W6gm1Dk9mEyw==", + "node_modules/cliui": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", + "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", "dev": true, "dependencies": { - "retry": "0.13.1" + "string-width": "^4.2.0", + "strip-ansi": "^6.0.0", + "wrap-ansi": "^7.0.0" } }, - "node_modules/asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha512-Oei9OH4tRh0YqU3GxhX79dM/mwVgvbZJaSNaRk+bshkj0S5cfHcgYakreBjrHwatXKbz+IoIdYLxrKim2MjW0Q==" + "node_modules/clone": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", + "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", + "engines": { + "node": ">=0.8" + } }, - "node_modules/available-typed-arrays": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/available-typed-arrays/-/available-typed-arrays-1.0.7.tgz", - "integrity": "sha512-wvUjBtSGN7+7SjNpq/9M2Tg350UZD3q62IFZLbRAR1bSMlCo1ZaeW+BJ+D090e4hIIZLBcTDWe4Mh4jvUDajzQ==", + "node_modules/clone-deep": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", + "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", "dev": true, "dependencies": { - "possible-typed-array-names": "^1.0.0" + "is-plain-object": "^2.0.4", + "kind-of": "^6.0.2", + "shallow-clone": "^3.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha512-08kcGqnYf/YmjoRhfxyu+CLxBjUtHLXLXX/vUfx9l2LYzG3c1m61nrpyFUZI6zeS+Li/wWMMidD9KgrqtGq3mA==", + "node_modules/clone-stats": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", + "integrity": "sha512-dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA==" + }, + "node_modules/clsx": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", + "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", "engines": { - "node": "*" + "node": ">=6" } }, - "node_modules/aws4": { - "version": "1.11.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.11.0.tgz", - "integrity": "sha512-xh1Rl34h6Fi1DC2WWKfxUTVqRsNnr6LsKz2+hfwDxQJWmrx8+c7ylaqBMcHfl1U1r2dsifOvKX3LQuLNZ+XSvA==" - }, - "node_modules/axe-core": { - "version": "4.4.2", - "resolved": "https://registry.npmjs.org/axe-core/-/axe-core-4.4.2.tgz", - "integrity": "sha512-LVAaGp/wkkgYJcjmHsoKx4juT1aQvJyPcW09MLCjVTh3V2cc6PnyempiLMNH5iMdfIX/zdbjUx2KDjMLCTdPeA==", + "node_modules/co": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", + "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", "dev": true, "engines": { - "node": ">=12" + "iojs": ">= 1.0.0", + "node": ">= 0.12.0" } }, - "node_modules/axobject-query": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/axobject-query/-/axobject-query-2.2.0.tgz", - "integrity": "sha512-Td525n+iPOOyUQIeBfcASuG6uJsDOITl7Mds5gFyerkWiX7qhUTdYUBlSgNMyVqtSJqwpt1kXGLdUt6SykLMRA==", + "node_modules/collect-v8-coverage": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", + "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", "dev": true }, - "node_modules/babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha512-XqYMR2dfdGMW+hd0IUZ2PwK+fGeFkOxZJ0wY+JaQAHzt1Zx8LcvpiZD2NiGkEG8qx0CfkAOr5xt76d1e8vG90g==", - "dev": true, + "node_modules/color": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", + "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", "dependencies": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" + "color-convert": "^2.0.1", + "color-string": "^1.9.0" + }, + "engines": { + "node": ">=12.5.0" } }, - "node_modules/babel-code-frame/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", - "dev": true, + "node_modules/color-convert": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", + "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "dependencies": { + "color-name": "~1.1.4" + }, "engines": { - "node": ">=0.10.0" + "node": ">=7.0.0" } }, - "node_modules/babel-code-frame/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node_modules/color-name": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", + "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" + }, + "node_modules/color-string": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", + "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "dependencies": { + "color-name": "^1.0.0", + "simple-swizzle": "^0.2.2" } }, - "node_modules/babel-code-frame/node_modules/chalk": { + "node_modules/color-support": { "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", + "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", "dev": true, + "optional": true, + "peer": true, + "bin": { + "color-support": "bin.js" + } + }, + "node_modules/colord": { + "version": "2.9.3", + "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", + "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" + }, + "node_modules/colorette": { + "version": "2.0.19", + "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", + "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", + "dev": true + }, + "node_modules/combined-stream": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", + "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "delayed-stream": "~1.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8" } }, - "node_modules/babel-code-frame/node_modules/js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha512-RjTcuD4xjtthQkaWH7dFlH85L+QaVtSoOyGdZ3g6HFhS9dFNDfLyqgm2NFe2X6cQpeFmt0452FJjFG5UameExg==", - "dev": true - }, - "node_modules/babel-code-frame/node_modules/strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "node_modules/command-line-args": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", + "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", "dev": true, "dependencies": { - "ansi-regex": "^2.0.0" + "array-back": "^3.1.0", + "find-replace": "^3.0.0", + "lodash.camelcase": "^4.3.0", + "typical": "^4.0.0" }, "engines": { - "node": ">=0.10.0" + "node": ">=4.0.0" } }, - "node_modules/babel-code-frame/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "node_modules/command-line-usage": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", + "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", "dev": true, + "dependencies": { + "array-back": "^4.0.2", + "chalk": "^2.4.2", + "table-layout": "^1.0.2", + "typical": "^5.2.0" + }, "engines": { - "node": ">=0.8.0" + "node": ">=8.0.0" } }, - "node_modules/babel-core": { - "version": "7.0.0-bridge.0", - "resolved": "https://registry.npmjs.org/babel-core/-/babel-core-7.0.0-bridge.0.tgz", - "integrity": "sha512-poPX9mZH/5CSanm50Q+1toVci6pv5KSRv/5TWCwtzQS5XEwn40BcCrgIeMFWP9CKKIniKXNxoIOnOq4VVlGXhg==", + "node_modules/command-line-usage/node_modules/array-back": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", + "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", "dev": true, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">=8" } }, - "node_modules/babel-loader": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-8.3.0.tgz", - "integrity": "sha512-H8SvsMF+m9t15HNLMipppzkC+Y2Yq+v3SonZyU70RBL/h1gxPkH08Ot8pEE9Z4Kd+czyWJClmFS8qzIP9OZ04Q==", + "node_modules/command-line-usage/node_modules/typical": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", + "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", "dev": true, - "dependencies": { - "find-cache-dir": "^3.3.1", - "loader-utils": "^2.0.0", - "make-dir": "^3.1.0", - "schema-utils": "^2.6.5" - }, "engines": { - "node": ">= 8.9" - }, - "peerDependencies": { - "@babel/core": "^7.0.0", - "webpack": ">=2" + "node": ">=8" } }, - "node_modules/babel-loader/node_modules/find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "node_modules/commander": { + "version": "8.3.0", + "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", + "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/avajs/find-cache-dir?sponsor=1" + "node": ">= 12" } }, - "node_modules/babel-plugin-add-react-displayname": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/babel-plugin-add-react-displayname/-/babel-plugin-add-react-displayname-0.0.5.tgz", - "integrity": "sha512-LY3+Y0XVDYcShHHorshrDbt4KFWL4bSeniCtl4SYZbask+Syngk1uMPCeN9+nSiZo6zX5s0RTq/J9Pnaaf/KHw==", + "node_modules/common-path-prefix": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", + "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", "dev": true }, - "node_modules/babel-plugin-istanbul": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/babel-plugin-istanbul/-/babel-plugin-istanbul-6.1.1.tgz", - "integrity": "sha512-Y1IQok9821cC9onCx5otgFfRm7Lm+I+wwxOx738M/WLPZ9Q42m4IG5W0FNX8WLL2gYMZo3JkuXIH2DOpWM+qwA==", + "node_modules/common-tags": { + "version": "1.8.2", + "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", + "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", "dev": true, - "dependencies": { - "@babel/helper-plugin-utils": "^7.0.0", - "@istanbuljs/load-nyc-config": "^1.0.0", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-instrument": "^5.0.4", - "test-exclude": "^6.0.0" - }, "engines": { - "node": ">=8" + "node": ">=4.0.0" } }, - "node_modules/babel-plugin-named-exports-order": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/babel-plugin-named-exports-order/-/babel-plugin-named-exports-order-0.0.2.tgz", - "integrity": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==", + "node_modules/commondir": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", + "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", "dev": true }, - "node_modules/babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", - "dev": true, - "dependencies": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" + "node_modules/complex.js": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/complex.js/-/complex.js-2.1.1.tgz", + "integrity": "sha512-8njCHOTtFFLtegk6zQo0kkVX1rngygb/KQI6z1qZxlFI3scluC+LVTCFbrkWjBv4vvLlbQ9t88IPMC6k95VTTg==", + "engines": { + "node": "*" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" - } - }, - "node_modules/babel-plugin-polyfill-corejs2/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "funding": { + "type": "patreon", + "url": "https://www.patreon.com/infusion" } }, - "node_modules/babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "node_modules/compressible": { + "version": "2.0.18", + "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", + "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" + "mime-db": ">= 1.43.0 < 2" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 0.6" } }, - "node_modules/babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "node_modules/compression": { + "version": "1.7.4", + "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", + "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", "dev": true, "dependencies": { - "@babel/helper-define-polyfill-provider": "^0.3.3" + "accepts": "~1.3.5", + "bytes": "3.0.0", + "compressible": "~2.0.16", + "debug": "2.6.9", + "on-headers": "~1.0.2", + "safe-buffer": "5.1.2", + "vary": "~1.1.2" }, - "peerDependencies": { - "@babel/core": "^7.0.0-0" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/babel-plugin-react-docgen": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz", - "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==", + "node_modules/compression/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "ast-types": "^0.14.2", - "lodash": "^4.17.15", - "react-docgen": "^5.0.0" + "ms": "2.0.0" } }, - "node_modules/babel-plugin-react-docgen/node_modules/ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", + "node_modules/compression/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/concat-map": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", + "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "dev": true + }, + "node_modules/concat-stream": { + "version": "1.6.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", + "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", "dev": true, + "engines": [ + "node >= 0.8" + ], "dependencies": { - "tslib": "^2.0.1" - }, - "engines": { - "node": ">=4" + "buffer-from": "^1.0.0", + "inherits": "^2.0.3", + "readable-stream": "^2.2.2", + "typedarray": "^0.0.6" } }, - "node_modules/babel-preset-current-node-syntax": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/babel-preset-current-node-syntax/-/babel-preset-current-node-syntax-1.0.1.tgz", - "integrity": "sha512-M7LQ0bxarkxQoN+vz5aJPsLBn77n8QgTFmo8WK0/44auK2xlCXrYcUxHFxgU7qW5Yzw/CjmLRK2uJzaCd7LvqQ==", + "node_modules/concat-stream/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "dependencies": { - "@babel/plugin-syntax-async-generators": "^7.8.4", - "@babel/plugin-syntax-bigint": "^7.8.3", - "@babel/plugin-syntax-class-properties": "^7.8.3", - "@babel/plugin-syntax-import-meta": "^7.8.3", - "@babel/plugin-syntax-json-strings": "^7.8.3", - "@babel/plugin-syntax-logical-assignment-operators": "^7.8.3", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", - "@babel/plugin-syntax-numeric-separator": "^7.8.3", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3", - "@babel/plugin-syntax-optional-chaining": "^7.8.3", - "@babel/plugin-syntax-top-level-await": "^7.8.3" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/babel-runtime": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-runtime/-/babel-runtime-6.26.0.tgz", - "integrity": "sha512-ITKNuq2wKlW1fJg9sSW52eepoYgZBggvOAHC0u/CYu/qxQ9EVzThCgR69BnSXLHjy2f7SY5zaQ4yt7H9ZVxY2g==", + "node_modules/concat-stream/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "dependencies": { - "core-js": "^2.4.0", - "regenerator-runtime": "^0.11.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/babel-runtime/node_modules/regenerator-runtime": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.11.1.tgz", - "integrity": "sha512-MguG95oij0fC3QV3URf4V2SDYGJhJnJGqvIIgdECeODCT98wSWDAJ94SSuVpYQUoTcGUIL6L4yNB7j1DFFHSBg==", - "dev": true - }, - "node_modules/balanced-match": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.2.tgz", - "integrity": "sha512-3oSeUO0TMV67hN1AmbXsK4yaqU7tjiHlbxRDZOpH0KW9+CeX4bRAaX0Anxt0tx2MrpRpWwQaPwIlISEJhYU5Pw==", - "dev": true - }, - "node_modules/base64-js": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.5.1.tgz", - "integrity": "sha512-AKpaYlHn8t4SVbOHCy+b5+KKgvR4vrsD8vbvrbiQJps7fKDTkjkDry6ji0rUJjC0kzbNePLwzxq8iypo41qeWA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/basic-ftp": { - "version": "5.0.5", - "resolved": "https://registry.npmjs.org/basic-ftp/-/basic-ftp-5.0.5.tgz", - "integrity": "sha512-4Bcg1P8xhUuqcii/S0Z9wiHIrQVPMermM1any+MX5GeGD7faD3/msQUDGLol9wOcz4/jbg/WJnGqoJF6LiBdtg==", + "node_modules/config-chain": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", + "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", "dev": true, - "engines": { - "node": ">=10.0.0" - } - }, - "node_modules/batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha512-x+VAiMRL6UPkx+kudNvxTl6hB2XNNCG2r+7wixVfIYwu/2HKRXimwQyaumLjMveWvT2Hkd/cAJw+QBMfJ/EKVw==", - "dev": true - }, - "node_modules/bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha512-qeFIXtP4MSoi6NLqO12WfqARWWuCKi2Rn/9hJLEmtB5yTNr9DqFWkJRCf2qShWzPeAMRnOgCrq0sg/KLv5ES9w==", "dependencies": { - "tweetnacl": "^0.14.3" + "ini": "^1.3.4", + "proto-list": "~1.2.1" } }, - "node_modules/before-after-hook": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/before-after-hook/-/before-after-hook-2.2.3.tgz", - "integrity": "sha512-NzUnlZexiaH/46WDhANlyR2bXRopNg4F/zuSA3OpZnllCUgRaOF2znDioDWrmbNVsuZk6l9pMquQB38cfBZwkQ==", - "dev": true - }, - "node_modules/better-opn": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz", - "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", + "node_modules/configstore": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", + "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", "dev": true, "dependencies": { - "open": "^7.0.3" + "dot-prop": "^6.0.1", + "graceful-fs": "^4.2.6", + "unique-string": "^3.0.0", + "write-file-atomic": "^3.0.3", + "xdg-basedir": "^5.0.1" }, "engines": { - "node": ">8.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/yeoman/configstore?sponsor=1" } }, - "node_modules/better-opn/node_modules/open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", + "node_modules/configstore/node_modules/crypto-random-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", + "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", "dev": true, "dependencies": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" + "type-fest": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">=12" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "node_modules/configstore/node_modules/type-fest": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", + "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", "dev": true, "engines": { - "node": ">=0.6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", + "node_modules/configstore/node_modules/unique-string": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", + "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", "dev": true, + "dependencies": { + "crypto-random-string": "^4.0.0" + }, "engines": { - "node": "*" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/bin-pack": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bin-pack/-/bin-pack-1.0.2.tgz", - "integrity": "sha512-aOk0SxEon5LF9cMxQFViSKb4qccG6rs7XKyMXIb1J8f8LA2acTIWnHdT0IOTe4gYBbqgjdbuTZ5f+UP+vlh4Mw==" + "node_modules/confusing-browser-globals": { + "version": "1.0.11", + "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", + "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", + "dev": true }, - "node_modules/binary-extensions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-2.2.0.tgz", - "integrity": "sha512-jDctJ/IVQbZoJykoeHbhXpOlNBqGNcwXJKJog42E5HDPUwQTSdjCHdihjj0DlnheQ7blbT6dHOafNAiS8ooQKA==", + "node_modules/connect-history-api-fallback": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", + "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.8" } }, - "node_modules/bl": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bl/-/bl-4.1.0.tgz", - "integrity": "sha512-1W07cM9gS6DcLperZfFSj+bWLtaPGSOHWhPiGzXmvVJbRLdG82sH/Kn8EtW1VqWVA54AKf2h5k5BbnIbwF3h6w==", + "node_modules/consola": { + "version": "2.15.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", + "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==", + "dev": true + }, + "node_modules/console-control-strings": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", + "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/constant-case": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz", + "integrity": "sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==", + "dev": true, "dependencies": { - "buffer": "^5.5.0", - "inherits": "^2.0.4", - "readable-stream": "^3.4.0" + "snake-case": "^2.1.0", + "upper-case": "^1.1.1" } }, - "node_modules/body-parser": { - "version": "1.20.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.20.0.tgz", - "integrity": "sha512-DfJ+q6EPcGKZD1QWUjSpqp+Q7bDQTsQIF4zfUAtZ6qk+H/3/QRhg9CEp39ss+/T2vw0+HaidC0ecJj/DRLIaKg==", + "node_modules/constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, + "node_modules/content-disposition": { + "version": "0.5.4", + "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", + "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", "dev": true, "dependencies": { - "bytes": "3.1.2", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "2.0.0", - "destroy": "1.2.0", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "on-finished": "2.4.1", - "qs": "6.10.3", - "raw-body": "2.5.1", - "type-is": "~1.6.18", - "unpipe": "1.0.0" + "safe-buffer": "5.2.1" }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">= 0.6" } }, - "node_modules/body-parser/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/content-disposition/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/content-type": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", + "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">= 0.6" } }, - "node_modules/body-parser/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, + "node_modules/contentstream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/contentstream/-/contentstream-1.0.0.tgz", + "integrity": "sha512-jqWbfFZFG9tZbdej7+TzXI4kanABh3BLtTWY6NxqTK5zo6iTIeo5aq4iRVfYsLQ0y8ccQqmJR/J4NeMmEdnR2w==", "dependencies": { - "ms": "2.0.0" + "readable-stream": "~1.0.33-1" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/body-parser/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true + "node_modules/contentstream/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" }, - "node_modules/bonjour-service": { - "version": "1.0.13", - "resolved": "https://registry.npmjs.org/bonjour-service/-/bonjour-service-1.0.13.tgz", - "integrity": "sha512-LWKRU/7EqDUC9CTAQtuZl5HzBALoCYwtLhffW3et7vZMwv3bWLpJf8bRYlMD5OCcDpTfnPgNCV4yo9ZIaJGMiA==", - "dev": true, + "node_modules/contentstream/node_modules/readable-stream": { + "version": "1.0.34", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", + "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", "dependencies": { - "array-flatten": "^2.1.2", - "dns-equal": "^1.0.0", - "fast-deep-equal": "^3.1.3", - "multicast-dns": "^7.2.5" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" } }, - "node_modules/boolbase": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/boolbase/-/boolbase-1.0.0.tgz", - "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", - "dev": true + "node_modules/contentstream/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" }, - "node_modules/boxen": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", + "node_modules/convert-source-map": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", + "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", "dev": true, "dependencies": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" - }, + "safe-buffer": "~5.1.1" + } + }, + "node_modules/cookie": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", + "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.6" } }, - "node_modules/boxen/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/cookie-signature": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", + "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", + "dev": true + }, + "node_modules/core-js": { + "version": "2.6.12", + "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", + "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", + "deprecated": "core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "dev": true, + "hasInstallScript": true + }, + "node_modules/core-js-compat": { + "version": "3.36.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.1.tgz", + "integrity": "sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" + "browserslist": "^4.23.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/boxen/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "node_modules/core-js-pure": { + "version": "3.27.2", + "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.2.tgz", + "integrity": "sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==", "dev": true, - "engines": { - "node": ">=10" - }, + "hasInstallScript": true, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/core-js" } }, - "node_modules/boxen/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/core-util-is": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", + "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" + }, + "node_modules/cosmiconfig": { + "version": "8.3.6", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", + "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0", + "path-type": "^4.0.0" }, "engines": { - "node": ">=10" + "node": ">=14" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/d-fischer" + }, + "peerDependencies": { + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/boxen/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/create-require": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", + "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", + "dev": true + }, + "node_modules/cross-spawn": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", + "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", "dev": true, + "dependencies": { + "path-key": "^3.1.0", + "shebang-command": "^2.0.0", + "which": "^2.0.1" + }, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/boxen/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/crypto-random-string": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", + "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { "node": ">=8" } }, - "node_modules/boxen/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/css-loader": { + "version": "6.7.1", + "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", + "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", "dev": true, + "dependencies": { + "icss-utils": "^5.1.0", + "postcss": "^8.4.7", + "postcss-modules-extract-imports": "^3.0.0", + "postcss-modules-local-by-default": "^4.0.0", + "postcss-modules-scope": "^3.0.0", + "postcss-modules-values": "^4.0.0", + "postcss-value-parser": "^4.2.0", + "semver": "^7.3.5" + }, "engines": { - "node": ">=10" + "node": ">= 12.13.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/webpack" + }, + "peerDependencies": { + "webpack": "^5.0.0" } }, - "node_modules/bplist-parser": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", - "integrity": "sha512-z0M+byMThzQmD9NILRniCUXYsYpjwnlO8N5uCFaCqIOpqRsJCrQL9NK3JsD67CN5a08nF5oIL2bD6loTdHOuKw==", + "node_modules/css-select": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", + "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", "dev": true, "dependencies": { - "big-integer": "^1.6.44" + "boolbase": "^1.0.0", + "css-what": "^6.0.1", + "domhandler": "^4.3.1", + "domutils": "^2.8.0", + "nth-check": "^2.0.1" }, - "engines": { - "node": ">= 5.10.0" + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", + "node_modules/css-what": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", + "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", "dev": true, - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "engines": { + "node": ">= 6" + }, + "funding": { + "url": "https://github.com/sponsors/fb55" } }, - "node_modules/braces": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-3.0.2.tgz", - "integrity": "sha512-b8um+L1RzM3WDSzvhm6gIz1yfTbBt6YTlcEKAvsmqCZZFw46z626lVj9j1yEPW33H5H+lBQpZMP1k8l+78Ha0A==", + "node_modules/cssesc": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", + "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", "dev": true, - "dependencies": { - "fill-range": "^7.0.1" + "bin": { + "cssesc": "bin/cssesc" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/browser-assert": { + "node_modules/cssfontparser": { "version": "1.2.1", - "resolved": "https://registry.npmjs.org/browser-assert/-/browser-assert-1.2.1.tgz", - "integrity": "sha512-nfulgvOR6S4gt9UKCeGJOuSGBPGiFT6oQ/2UBnvTY/5aQ1PnksW72fhZkM30DzoRRv2WpwZf1vHHEr3mtuXIWQ==", + "resolved": "https://registry.npmjs.org/cssfontparser/-/cssfontparser-1.2.1.tgz", + "integrity": "sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==", "dev": true }, - "node_modules/browser-process-hrtime": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/browser-process-hrtime/-/browser-process-hrtime-1.0.0.tgz", - "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", + "node_modules/cssom": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", + "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", "dev": true }, - "node_modules/browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "node_modules/cssstyle": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", + "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/browserslist" - } - ], "dependencies": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" - }, - "bin": { - "browserslist": "cli.js" + "cssom": "~0.3.6" }, "engines": { - "node": "^6 || ^7 || ^8 || ^9 || ^10 || ^11 || ^12 || >=13.7" + "node": ">=8" } }, - "node_modules/bser": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/bser/-/bser-2.1.1.tgz", - "integrity": "sha512-gQxTNE/GAfIIrmHLUE3oJyp5FO6HRBfhjnw4/wMmA63ZGDJnWBmgY/lyQBpnDUkGmAhbSe39tx2d/iTOAfglwQ==", - "dev": true, + "node_modules/cssstyle/node_modules/cssom": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", + "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", + "dev": true + }, + "node_modules/csstype": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", + "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==", + "dev": true + }, + "node_modules/cwise-compiler": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", + "integrity": "sha512-WXlK/m+Di8DMMcCjcWr4i+XzcQra9eCdXIJrgh4TUgh0pIS/yJduLxS9JgefsHJ/YVLdgPtXm9r62W92MvanEQ==", "dependencies": { - "node-int64": "^0.4.0" + "uniq": "^1.0.0" } }, - "node_modules/buffer": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-5.7.1.tgz", - "integrity": "sha512-EHcyIPBQ4BSGlvjB16k5KgAJ27CIsHY/2JBmCRReo48y9rQ3MaUzWX3KVlBa4U7MyX02HdVj0K7C3WaB3ju7FQ==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], + "node_modules/damerau-levenshtein": { + "version": "1.0.8", + "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", + "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "dev": true + }, + "node_modules/dart-sass": { + "version": "1.25.0", + "resolved": "https://registry.npmjs.org/dart-sass/-/dart-sass-1.25.0.tgz", + "integrity": "sha512-syNOAstJXAmvD3RifcDk3fiPMyYE2fY8so6w9gf2/wNlKpG0zyH+oiXubEYVOy1WAWkzOc72pbAxwx+3OU4JJA==", + "deprecated": "This package has been renamed to 'sass'.", + "dev": true, "dependencies": { - "base64-js": "^1.3.1", - "ieee754": "^1.1.13" + "chokidar": ">=2.0.0 <4.0.0" + }, + "bin": { + "dart-sass": "sass.js" + }, + "engines": { + "node": ">=8.9.0" } }, - "node_modules/buffer-crc32": { - "version": "0.2.13", - "resolved": "https://registry.npmjs.org/buffer-crc32/-/buffer-crc32-0.2.13.tgz", - "integrity": "sha512-VO9Ht/+p3SN7SKWqcrgEzjGbRSJYTx+Q1pTQC0wrWqHx0vpJraQ6GtHx8tvcg1rlK1byhU5gccxgOgj7B0TDkQ==", - "dev": true, + "node_modules/dashdash": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", + "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", + "dependencies": { + "assert-plus": "^1.0.0" + }, "engines": { - "node": "*" + "node": ">=0.10" } }, - "node_modules/buffer-from": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.2.tgz", - "integrity": "sha512-E+XQCRwSbaaiChtv6k6Dwgc+bx+Bs6vuKJHHl5kox/BaKbhiXzqQOwK4cO22yElGp2OCmjwVhT3HmxgyPGnJfQ==", - "dev": true + "node_modules/data-uri-to-buffer": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz", + "integrity": "sha512-Cp+jOa8QJef5nXS5hU7M1DWzXPEIoVR3kbV0dQuVGwROZg8bGf1DcCnkmajBTnvghTtSNMUdRrPjgaT6ZQucbw==" }, - "node_modules/bugsnag-build-reporter": { + "node_modules/data-urls": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/bugsnag-build-reporter/-/bugsnag-build-reporter-2.0.0.tgz", - "integrity": "sha512-jeiGdjEWLjKOKWDroMbYf/5wVSqk03uRxtidTBlORK8swpwnX4sMARQsE4xx8D5IkdqMIQkSHHflZ8uIGYL0rA==", + "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", + "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", "dev": true, "dependencies": { - "chalk": "^2.3.0", - "concat-stream": "^1.6.0", - "find-nearest-file": "^1.1.0", - "meow": "^6.1.1", - "once": "^1.4.0", - "pino": "^4.10.3", - "run-parallel": "^1.1.6" + "abab": "^2.0.3", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.0.0" }, - "bin": { - "bugsnag-build-reporter": "bin/cli.js" + "engines": { + "node": ">=10" } }, - "node_modules/bugsnag-build-reporter/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/bugsnag-build-reporter/node_modules/meow": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/meow/-/meow-6.1.1.tgz", - "integrity": "sha512-3YffViIt2QWgTy6Pale5QpopX/IvU3LPL03jOTqp6pGj3VjesdO/U8CuHMKpnQr4shCNCM5fd5XFFvIIl6JBHg==", + "node_modules/data-view-buffer": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", + "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", "dev": true, "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "^4.0.2", - "normalize-package-data": "^2.5.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.13.1", - "yargs-parser": "^18.1.3" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/bugsnag-build-reporter/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/data-view-byte-length": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", + "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", "dev": true, "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "node_modules/bugsnag-build-reporter/node_modules/semver": { - "version": "5.7.2", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", - "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", - "dev": true, - "bin": { - "semver": "bin/semver" - } - }, - "node_modules/bugsnag-build-reporter/node_modules/type-fest": { - "version": "0.13.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.13.1.tgz", - "integrity": "sha512-34R7HTnG0XIJcBSn5XhDd7nNFPRcXYRZrBB2O2jdKqYODldSzBAqzsWoZYYvduky73toYS/ESqxPvkDf/F0XMg==", - "dev": true, + "call-bind": "^1.0.7", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" + }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/bugsnag-build-reporter/node_modules/yargs-parser": { - "version": "18.1.3", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-18.1.3.tgz", - "integrity": "sha512-o50j0JeToy/4K6OZcaQmW6lyXXKhq7csREXcDwk2omFPJEwUNOVtJKvmDr9EI1fAJZUyZcRF7kxGBWmRXudrCQ==", + "node_modules/data-view-byte-offset": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", + "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", "dev": true, "dependencies": { - "camelcase": "^5.0.0", - "decamelize": "^1.2.0" + "call-bind": "^1.0.6", + "es-errors": "^1.3.0", + "is-data-view": "^1.0.1" }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/bundle-name": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/bundle-name/-/bundle-name-4.1.0.tgz", - "integrity": "sha512-tjwM5exMg6BGRI+kNmTntNsvdZS1X8BFYS6tnJ2hdH0kVxM6/eVZ2xy+FqStSWvYmtfFMDLIxurorHwDKfDz5Q==", + "node_modules/debug": { + "version": "4.3.4", + "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", + "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", "dev": true, "dependencies": { - "run-applescript": "^7.0.0" + "ms": "2.1.2" }, "engines": { - "node": ">=18" + "node": ">=6.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/byline": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/byline/-/byline-5.0.0.tgz", - "integrity": "sha512-s6webAy+R4SR8XVuJWt2V2rGvhnrhxN+9S15GNuTK3wKPOXFF6RNc+8ug2XhH+2s4f+uudG4kUVYmYOQWL2g0Q==", + "node_modules/decamelize": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", + "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", + "node_modules/decamelize-keys": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", + "integrity": "sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==", "dev": true, + "dependencies": { + "decamelize": "^1.1.0", + "map-obj": "^1.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=0.10.0" } }, - "node_modules/c8": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/c8/-/c8-7.13.0.tgz", - "integrity": "sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==", + "node_modules/decamelize-keys/node_modules/map-obj": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", + "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", "dev": true, - "dependencies": { - "@bcoe/v8-coverage": "^0.2.3", - "@istanbuljs/schema": "^0.1.3", - "find-up": "^5.0.0", - "foreground-child": "^2.0.0", - "istanbul-lib-coverage": "^3.2.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-reports": "^3.1.4", - "rimraf": "^3.0.2", - "test-exclude": "^6.0.0", - "v8-to-istanbul": "^9.0.0", - "yargs": "^16.2.0", - "yargs-parser": "^20.2.9" - }, - "bin": { - "c8": "bin/c8.js" - }, "engines": { - "node": ">=10.12.0" + "node": ">=0.10.0" } }, - "node_modules/c8/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, + "node_modules/decimal.js": { + "version": "10.3.1", + "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", + "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" + }, + "node_modules/decompress-response": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", + "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" + "mimic-response": "^3.1.0" }, "engines": { "node": ">=10" @@ -12416,169 +13027,178 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/c8/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/dedent": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", + "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", + "dev": true + }, + "node_modules/deep-equal": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", + "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", "dev": true, "dependencies": { - "p-locate": "^5.0.0" - }, - "engines": { - "node": ">=10" + "call-bind": "^1.0.2", + "es-get-iterator": "^1.1.2", + "get-intrinsic": "^1.1.3", + "is-arguments": "^1.1.1", + "is-array-buffer": "^3.0.1", + "is-date-object": "^1.0.5", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.2", + "isarray": "^2.0.5", + "object-is": "^1.1.5", + "object-keys": "^1.1.1", + "object.assign": "^4.1.4", + "regexp.prototype.flags": "^1.4.3", + "side-channel": "^1.0.4", + "which-boxed-primitive": "^1.0.2", + "which-collection": "^1.0.1", + "which-typed-array": "^1.1.9" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/c8/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/deep-equal/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", + "dev": true + }, + "node_modules/deep-extend": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", + "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "engines": { + "node": ">=4.0.0" + } + }, + "node_modules/deep-is": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", + "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", + "dev": true + }, + "node_modules/deepmerge": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", + "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", "dev": true, - "dependencies": { - "yocto-queue": "^0.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/c8/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/default-browser": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", + "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "bundle-name": "^4.1.0", + "default-browser-id": "^5.0.0" }, "engines": { - "node": ">=10" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/c8/node_modules/v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", + "node_modules/default-browser-id": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", + "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", "dev": true, "dependencies": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" + "bplist-parser": "^0.2.0", + "untildify": "^4.0.0" }, "engines": { - "node": ">=10.12.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/c8/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", + "node_modules/default-browser/node_modules/default-browser-id": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", + "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", "dev": true, "engines": { - "node": ">=10" + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cacache": { - "version": "15.3.0", - "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", - "integrity": "sha512-VVdYzXEn+cnbXpFgWs5hTT7OScegHVmLhJIR8Ufqk3iFD6A6j5iSX1KuBTfNEv4tdJWE2PzA6IVFtcLC7fN9wQ==", + "node_modules/default-gateway": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", + "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "@npmcli/fs": "^1.0.0", - "@npmcli/move-file": "^1.0.1", - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "glob": "^7.1.4", - "infer-owner": "^1.0.4", - "lru-cache": "^6.0.0", - "minipass": "^3.1.1", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.2", - "mkdirp": "^1.0.3", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^8.0.1", - "tar": "^6.0.2", - "unique-filename": "^1.1.1" + "execa": "^5.0.0" }, "engines": { "node": ">= 10" } }, - "node_modules/cacache/node_modules/mkdirp": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-1.0.4.tgz", - "integrity": "sha512-vVqVZQyf3WLx2Shd0qJ9xuvqgAyKPLAiqITEtqW0oIUjzo3PePDd6fW9iFz30ef7Ysp/oiWqbhszeGWW2T6Gzw==", + "node_modules/defaults": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", + "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", "dev": true, - "optional": true, - "peer": true, - "bin": { - "mkdirp": "bin/cmd.js" - }, - "engines": { - "node": ">=10" + "dependencies": { + "clone": "^1.0.2" } }, - "node_modules/cacheable-lookup": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/cacheable-lookup/-/cacheable-lookup-7.0.0.tgz", - "integrity": "sha512-+qJyx4xiKra8mZrcwhjMRMUhD5NR1R8esPkzIYxX96JiecFoxAXFuz/GpR3+ev4PE1WamHip78wV0vcmPQtp8w==", + "node_modules/defer-to-connect": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", + "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", "dev": true, "engines": { - "node": ">=14.16" + "node": ">=10" } }, - "node_modules/cacheable-request": { - "version": "10.2.14", - "resolved": "https://registry.npmjs.org/cacheable-request/-/cacheable-request-10.2.14.tgz", - "integrity": "sha512-zkDT5WAF4hSSoUgyfg5tFIxz8XQK+25W/TLVojJTMKBaxevLBBtLxgqguAuVQB8PVW79FVjHcU+GJ9tVbDZ9mQ==", + "node_modules/define-data-property": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", + "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", "dev": true, "dependencies": { - "@types/http-cache-semantics": "^4.0.2", - "get-stream": "^6.0.1", - "http-cache-semantics": "^4.1.1", - "keyv": "^4.5.3", - "mimic-response": "^4.0.0", - "normalize-url": "^8.0.0", - "responselike": "^3.0.0" + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "gopd": "^1.0.1" }, "engines": { - "node": ">=14.16" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/cacheable-request/node_modules/mimic-response": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-4.0.0.tgz", - "integrity": "sha512-e5ISH9xMYU0DzrT+jl8q2ze9D6eWBto+I8CNpe+VI+K2J/F/k3PdkdTdz4wvGVH4NTpo+NRYTVIuMQEMMcsLqg==", + "node_modules/define-lazy-prop": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", + "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", "dev": true, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/call-bind": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/call-bind/-/call-bind-1.0.7.tgz", - "integrity": "sha512-GHTSNSYICQ7scH7sZ+M2rFopRoLh8t2bLSW6BbgrtLsahOIB5iyAVJf9GjWK3cYTDaMj4XdBpM1cA6pIS0Kv2w==", + "node_modules/define-properties": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", + "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", "dev": true, "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "get-intrinsic": "^1.2.4", - "set-function-length": "^1.2.1" + "define-data-property": "^1.0.1", + "has-property-descriptors": "^1.0.0", + "object-keys": "^1.1.1" }, "engines": { "node": ">= 0.4" @@ -12587,4027 +13207,4020 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/caller-path": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/caller-path/-/caller-path-0.1.0.tgz", - "integrity": "sha512-UJiE1otjXPF5/x+T3zTnSFiTOEmJoGTD9HmBoxnCUwho61a2eSNn/VwtwuIBDAo2SEOv1AJ7ARI5gCmohFLu/g==", - "dev": true, - "dependencies": { - "callsites": "^0.2.0" - }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/caller-path/node_modules/callsites": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-0.2.0.tgz", - "integrity": "sha512-Zv4Dns9IbXXmPkgRRUjAaJQgfN4xX5p6+RQFhWUqscdvvK2xK/ZL8b3IXIJsj+4sD+f24NwnWy2BY8AJ82JB0A==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } + "node_modules/defu": { + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", + "dev": true }, - "node_modules/callsites": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/callsites/-/callsites-3.1.0.tgz", - "integrity": "sha512-P8BjAsXvZS+VIDUI11hHCQEv74YT67YUi5JJFNWIqL235sBmjX4+qx9Muvls5ivyNENctx46xQLQ3aTuE7ssaQ==", + "node_modules/degenerator": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", + "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", "dev": true, + "dependencies": { + "ast-types": "^0.13.4", + "escodegen": "^2.1.0", + "esprima": "^4.0.1" + }, "engines": { - "node": ">=6" + "node": ">= 14" } }, - "node_modules/camel-case": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-4.1.2.tgz", - "integrity": "sha512-gxGWBrTT1JuMx6R+o5PTXMmUnhnVzLQ9SNutD4YqKtI6ap897t3tKECYla6gCWEkplXnlNybEkZg9GEGxKFCgw==", + "node_modules/degenerator/node_modules/ast-types": { + "version": "0.13.4", + "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", + "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", "dev": true, "dependencies": { - "pascal-case": "^3.1.2", - "tslib": "^2.0.3" + "tslib": "^2.0.1" + }, + "engines": { + "node": ">=4" } }, - "node_modules/camelcase": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-5.3.1.tgz", - "integrity": "sha512-L28STB170nwWS63UjtlEOE3dldQApaJXZkOI1uMFfzf3rRuPegHaHesyee+YxQ+W6SvRDQV6UrdOdRiR153wJg==", + "node_modules/degit": { + "version": "2.8.4", + "resolved": "https://registry.npmjs.org/degit/-/degit-2.8.4.tgz", + "integrity": "sha512-vqYuzmSA5I50J882jd+AbAhQtgK6bdKUJIex1JNfEUPENCgYsxugzKVZlFyMwV4i06MmnV47/Iqi5Io86zf3Ng==", "dev": true, + "bin": { + "degit": "degit" + }, "engines": { - "node": ">=6" + "node": ">=8.0.0" } }, - "node_modules/camelcase-keys": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-6.2.2.tgz", - "integrity": "sha512-YrwaA0vEKazPBkn0ipTiMpSajYDSe+KjQfrjhcBMxJt/znbvlHd8Pw/Vamaz5EB4Wfhs3SUR3Z9mwRu/P3s3Yg==", + "node_modules/del": { + "version": "6.1.1", + "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", + "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", "dev": true, "dependencies": { - "camelcase": "^5.3.1", - "map-obj": "^4.0.0", - "quick-lru": "^4.0.1" + "globby": "^11.0.1", + "graceful-fs": "^4.2.4", + "is-glob": "^4.0.1", + "is-path-cwd": "^2.2.0", + "is-path-inside": "^3.0.2", + "p-map": "^4.0.0", + "rimraf": "^3.0.2", + "slash": "^3.0.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/caniuse-lite": { - "version": "1.0.30001451", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz", - "integrity": "sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w==", - "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/browserslist" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/caniuse-lite" - } - ] - }, - "node_modules/case-sensitive-paths-webpack-plugin": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/case-sensitive-paths-webpack-plugin/-/case-sensitive-paths-webpack-plugin-2.4.0.tgz", - "integrity": "sha512-roIFONhcxog0JSSWbvVAh3OocukmSgpqOH6YpMkCvav/ySIV3JKg4Dc8vYtQjYi/UxpNE36r/9v+VqTQqgkYmw==", - "dev": true, + "node_modules/delayed-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", + "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", "engines": { - "node": ">=4" + "node": ">=0.4.0" } }, - "node_modules/caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha512-4tYFyifaFfGacoiObjJegolkwSU4xQNGbVgUiNYVUxbQ2x2lUsFvY4hVgVzGiIe6WLOPqycWXA40l+PWsxthUw==" + "node_modules/delegates": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", + "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", + "dev": true, + "optional": true, + "peer": true }, - "node_modules/chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", + "node_modules/depd": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", + "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", "dev": true, - "dependencies": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - }, "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/change-case": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/change-case/-/change-case-3.1.0.tgz", - "integrity": "sha512-2AZp7uJZbYEzRPsFoa+ijKdvp9zsrnnt6+yFokfwEpeJm0xuJDVoxiRCAaTzyJND8GJkofo2IcKWaUZ/OECVzw==", + "node_modules/deprecation": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", + "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", + "dev": true + }, + "node_modules/dequal": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", + "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", "dev": true, - "dependencies": { - "camel-case": "^3.0.0", - "constant-case": "^2.0.0", - "dot-case": "^2.1.0", - "header-case": "^1.0.0", - "is-lower-case": "^1.1.0", - "is-upper-case": "^1.1.0", - "lower-case": "^1.1.1", - "lower-case-first": "^1.0.0", - "no-case": "^2.3.2", - "param-case": "^2.1.0", - "pascal-case": "^2.0.0", - "path-case": "^2.1.0", - "sentence-case": "^2.1.0", - "snake-case": "^2.1.0", - "swap-case": "^1.1.0", - "title-case": "^2.1.0", - "upper-case": "^1.1.1", - "upper-case-first": "^1.1.0" + "engines": { + "node": ">=6" } }, - "node_modules/change-case/node_modules/camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha512-+MbKztAYHXPr1jNTSKQF52VpcFjwY5RkR7fxksV8Doo4KAYc5Fl4UJRgthBbTmEx8C54DqahhbLJkDwjI3PI/w==", + "node_modules/destroy": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", + "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", "dev": true, - "dependencies": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" + "engines": { + "node": ">= 0.8", + "npm": "1.2.8000 || >= 1.4.16" } }, - "node_modules/change-case/node_modules/param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha512-eQE845L6ot89sk2N8liD8HAuH4ca6Vvr7VWAWwt7+kvvG5aBcPmmphQ68JsEG2qa9n1TykS2DLeMt363AAH8/w==", + "node_modules/detect-indent": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", + "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", "dev": true, - "dependencies": { - "no-case": "^2.2.0" + "engines": { + "node": ">=8" } }, - "node_modules/change-case/node_modules/pascal-case": { + "node_modules/detect-libc": { "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-2.0.1.tgz", - "integrity": "sha512-qjS4s8rBOJa2Xm0jmxXiyh1+OFf6ekCWOvUaRgAQSktzlTbMotS0nmG9gyYAybCWBcuP4fsBeRCKNwGBnMe2OQ==", - "dev": true, - "dependencies": { - "camel-case": "^3.0.0", - "upper-case-first": "^1.1.0" + "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", + "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "engines": { + "node": ">=8" } }, - "node_modules/char-regex": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/char-regex/-/char-regex-1.0.2.tgz", - "integrity": "sha512-kWWXztvZ5SBQV+eRgKFeh8q5sLuZY2+8WUIzlxWVTg+oGwY14qylx1KbKzHd8P6ZYkAg0xyIDU9JMHhyJMZ1jw==", + "node_modules/detect-newline": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", + "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", "dev": true, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/chardet": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.4.2.tgz", - "integrity": "sha512-j/Toj7f1z98Hh2cYo2BVr85EpIRWqUi7rtRSGxh/cqUjqrnJe9l9UE7IUGd2vQ2p+kSHLkSzObQPZPLUC6TQwg==", + "node_modules/detect-node": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", + "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, - "node_modules/chart.js": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/chart.js/-/chart.js-4.2.1.tgz", - "integrity": "sha512-6YbpQ0nt3NovAgOzbkSSeeAQu/3za1319dPUQTXn9WcOpywM8rGKxJHrhS8V8xEkAlk8YhEfjbuAPfUyp6jIsw==", + "node_modules/detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", + "dev": true + }, + "node_modules/detect-package-manager": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", + "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==", + "dev": true, "dependencies": { - "@kurkle/color": "^0.3.0" + "execa": "^5.1.1" }, "engines": { - "pnpm": "^7.0.0" + "node": ">=12" } }, - "node_modules/chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "node_modules/detect-port": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", + "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://paulmillr.com/funding/" - } - ], "dependencies": { - "anymatch": "~3.1.2", - "braces": "~3.0.2", - "glob-parent": "~5.1.2", - "is-binary-path": "~2.1.0", - "is-glob": "~4.0.1", - "normalize-path": "~3.0.0", - "readdirp": "~3.6.0" - }, - "engines": { - "node": ">= 8.10.0" + "address": "^1.0.1", + "debug": "4" }, - "optionalDependencies": { - "fsevents": "~2.3.2" + "bin": { + "detect": "bin/detect-port.js", + "detect-port": "bin/detect-port.js" } }, - "node_modules/chokidar/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/diff": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", + "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", "dev": true, - "dependencies": { - "is-glob": "^4.0.1" - }, "engines": { - "node": ">= 6" + "node": ">=0.3.1" } }, - "node_modules/chownr": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/chownr/-/chownr-2.0.0.tgz", - "integrity": "sha512-bIomtDF5KGpdogkLd9VspvFzk9KfpyyGlS8YFVZl7TGPBHL5snIOnxeshwVgPteQ9b4Eydl+pVbIyE1DcvCWgQ==", + "node_modules/diff-sequences": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", + "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", "dev": true, "engines": { - "node": ">=10" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/chrome-trace-event": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/chrome-trace-event/-/chrome-trace-event-1.0.3.tgz", - "integrity": "sha512-p3KULyQg4S7NIHixdwbGX+nFHkoBiA4YQmyWtjb8XngSKV124nJmRysgAeujbUVb15vh+RvFUfCPqU7rXk+hZg==", + "node_modules/dir-glob": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", + "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", "dev": true, + "dependencies": { + "path-type": "^4.0.0" + }, "engines": { - "node": ">=6.0" + "node": ">=8" } }, - "node_modules/ci-info": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/ci-info/-/ci-info-3.3.1.tgz", - "integrity": "sha512-SXgeMX9VwDe7iFFaEWkA5AstuER9YKqy4EhHqr4DVqkwmD9rpVimkMKWHdjn30Ja45txyjhSn63lVX69eVCckg==", - "dev": true - }, - "node_modules/circular-json": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/circular-json/-/circular-json-0.3.3.tgz", - "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", - "deprecated": "CircularJSON is in maintenance only, flatted is its successor.", + "node_modules/dlv": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", + "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", "dev": true }, - "node_modules/cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "node_modules/dns-equal": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", + "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", "dev": true }, - "node_modules/class-transformer": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/class-transformer/-/class-transformer-0.5.1.tgz", - "integrity": "sha512-SQa1Ws6hUbfC98vKGxZH3KFY0Y1lm5Zm0SY8XX9zbK7FJCyVEac3ATW0RIpwzW+oOfmHE5PMPufDG9hCfoEOMw==" - }, - "node_modules/clean-css": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-5.3.0.tgz", - "integrity": "sha512-YYuuxv4H/iNb1Z/5IbMRoxgrzjWGhOEFfd+groZ5dMCVkpENiMZmwspdrzBo9286JjM1gZJPAyL7ZIdzuvu2AQ==", + "node_modules/dns-packet": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz", + "integrity": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==", "dev": true, "dependencies": { - "source-map": "~0.6.0" + "@leichtgewicht/ip-codec": "^2.0.1" }, "engines": { - "node": ">= 10.0" + "node": ">=6" } }, - "node_modules/clean-stack": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/clean-stack/-/clean-stack-2.2.0.tgz", - "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", + "node_modules/doctrine": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", + "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", "dev": true, + "dependencies": { + "esutils": "^2.0.2" + }, "engines": { - "node": ">=6" + "node": ">=6.0.0" } }, - "node_modules/cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", + "node_modules/dom-accessibility-api": { + "version": "0.5.16", + "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", + "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", + "dev": true + }, + "node_modules/dom-converter": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", + "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "utila": "~0.4" + } + }, + "node_modules/dom-serializer": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", + "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "dev": true, + "dependencies": { + "domelementtype": "^2.0.1", + "domhandler": "^4.2.0", + "entities": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" } }, - "node_modules/cli-cursor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", - "integrity": "sha512-I/zHAwsKf9FqGoXM4WWRACob9+SNukZTd94DWF57E4toouRulbCxcUh6RKUEOQlYTHJnzkPMySvPNaaSLNfLZw==", + "node_modules/domelementtype": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", + "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", + "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/fb55" + } + ] + }, + "node_modules/domexception": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", + "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", "dev": true, "dependencies": { - "restore-cursor": "^3.1.0" + "webidl-conversions": "^5.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/cli-spinners": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/cli-spinners/-/cli-spinners-2.9.2.tgz", - "integrity": "sha512-ywqV+5MmyL4E7ybXgKys4DugZbX0FC6LnwrhjuykIjnK9k8OQacQ7axGKnjDXWNhns0xot3bZI5h55H8yo9cJg==", + "node_modules/domexception/node_modules/webidl-conversions": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", + "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", "dev": true, "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "node_modules/domhandler": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", + "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", "dev": true, "dependencies": { - "string-width": "^4.2.0" + "domelementtype": "^2.2.0" }, "engines": { - "node": "10.* || >= 12.*" + "node": ">= 4" }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "funding": { + "url": "https://github.com/fb55/domhandler?sponsor=1" } }, - "node_modules/cli-truncate": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-3.1.0.tgz", - "integrity": "sha512-wfOBkjXteqSnI59oPcJkcPl/ZmwvMMOj340qUIY1SKZCv0B9Cf4D4fAucRkIKQmsIuYK3x1rrgU7MeGRruiuiA==", + "node_modules/domutils": { + "version": "2.8.0", + "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", + "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", "dev": true, "dependencies": { - "slice-ansi": "^5.0.0", - "string-width": "^5.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "dom-serializer": "^1.0.1", + "domelementtype": "^2.2.0", + "domhandler": "^4.2.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/fb55/domutils?sponsor=1" } }, - "node_modules/cli-truncate/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "node_modules/dot-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz", + "integrity": "sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==", "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "dependencies": { + "no-case": "^2.2.0" } }, - "node_modules/cli-truncate/node_modules/ansi-styles": { - "version": "6.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", - "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "node_modules/dot-prop": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", + "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", "dev": true, + "dependencies": { + "is-obj": "^2.0.0" + }, "engines": { - "node": ">=12" + "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-truncate/node_modules/is-fullwidth-code-point": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-4.0.0.tgz", - "integrity": "sha512-O4L094N2/dZ7xqVdrXhh9r1KODPJpFms8B5sGdJLPy664AgvXsreZUyCQQNItZRDlYug4xStLjNp/sz3HvBowQ==", + "node_modules/dotenv": { + "version": "16.0.3", + "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", + "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", "dev": true, "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/cli-truncate/node_modules/slice-ansi": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-5.0.0.tgz", - "integrity": "sha512-FC+lgizVPfie0kkhqUScwRu1O/lF6NOgJmlCgK+/LYxDCTk8sGelYaHDhFcDN+Sn3Cv+3VSa4Byeo+IMCzpMgQ==", + "node_modules/dotenv-expand": { + "version": "10.0.0", + "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", + "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", "dev": true, - "dependencies": { - "ansi-styles": "^6.0.0", - "is-fullwidth-code-point": "^4.0.0" - }, "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/cli-truncate/node_modules/string-width": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", - "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "node_modules/dts-css-modules-loader": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/dts-css-modules-loader/-/dts-css-modules-loader-2.0.1.tgz", + "integrity": "sha512-blro23xBe6+gPZCW9AIwG2aL8ot2hyNHDeIUWVoyIYRGfv/5TWEMQNTnKGcuOf5iADyChU6Xbi5nzaj4YCChFQ==", "dev": true, - "dependencies": { - "eastasianwidth": "^0.2.0", - "emoji-regex": "^9.2.2", - "strip-ansi": "^7.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "css-loader": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" } }, - "node_modules/cli-truncate/node_modules/strip-ansi": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.0.1.tgz", - "integrity": "sha512-cXNxvT8dFNRVfhVME3JAe98mkXDYN2O1l7jmcwMnOslDeESg1rF/OZMtK0nRAhiari1unG5cD4jG3rapUAkLbw==", + "node_modules/duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", "dev": true, "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" } }, - "node_modules/cli-width": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-2.2.1.tgz", - "integrity": "sha512-GRMWDxpOB6Dgk2E5Uo+3eEBvtOOlimMmpbFiKuLFnQzYDavtLFY3K5ona41jgN/WdRZtG7utuVSVTL4HbZHGkw==", - "dev": true + "node_modules/duplexify/node_modules/readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } }, - "node_modules/cliui": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-7.0.4.tgz", - "integrity": "sha512-OcRE68cOsVMXp1Yvonl/fzkQOyjLSu/8bhPDfQt0e0/Eb283TKP20Fs2MqoPsr9SwA595rRCA+QMzYc9nBP+JQ==", + "node_modules/duplexify/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "dependencies": { - "string-width": "^4.2.0", - "strip-ansi": "^6.0.0", - "wrap-ansi": "^7.0.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha512-JQHZ2QMW6l3aH/j6xCqQThY/9OH4D/9ls34cgkUBiEeocRTU04tHfKPBsUK1PqZCUQM7GiA0IIXJSuXHI64Kbg==", - "engines": { - "node": ">=0.8" + "node_modules/earcut": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", + "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" + }, + "node_modules/eastasianwidth": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", + "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", + "dev": true + }, + "node_modules/ecc-jsbn": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", + "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", + "dependencies": { + "jsbn": "~0.1.0", + "safer-buffer": "^2.1.0" } }, - "node_modules/clone-deep": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-4.0.1.tgz", - "integrity": "sha512-neHB9xuzh/wk0dIHweyAXv2aPGZIVk3pLMe+/RNzINf17fe0OG96QroktYAUm7SM1PBnzTabaLboqqxDyMU+SQ==", + "node_modules/ee-first": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", + "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", + "dev": true + }, + "node_modules/ejs": { + "version": "3.1.8", + "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", + "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", "dev": true, "dependencies": { - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.2", - "shallow-clone": "^3.0.0" + "jake": "^10.8.5" + }, + "bin": { + "ejs": "bin/cli.js" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/clone-stats": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/clone-stats/-/clone-stats-0.0.1.tgz", - "integrity": "sha512-dhUqc57gSMCo6TX85FLfe51eC/s+Im2MLkAgJwfaRRexR2tA4dd3eLEW4L6efzHc2iNorrRRXITifnDLlRrhaA==" + "node_modules/electron-to-chromium": { + "version": "1.4.726", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.726.tgz", + "integrity": "sha512-xtjfBXn53RORwkbyKvDfTajtnTp0OJoPOIBzXvkNbb7+YYvCHJflba3L7Txyx/6Fov3ov2bGPr/n5MTixmPhdQ==", + "dev": true }, - "node_modules/clsx": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/clsx/-/clsx-1.1.1.tgz", - "integrity": "sha512-6/bPho624p3S2pMyvP5kKBPXnI3ufHLObBFCfgx+LkeR5lg2XYy2hqZqUf45ypD8COn2bhgGJSUE+l5dhNBieA==", + "node_modules/emittery": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", + "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "dev": true, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/emittery?sponsor=1" } }, - "node_modules/co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha512-QVb0dM5HvG+uaxitm8wONl7jltx8dqhfU33DcqtOZcLSVIKSDDLDi7+0LbAKiyI8hD9u42m2YxXSkMGWThaecQ==", + "node_modules/emoji-regex": { + "version": "9.2.2", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", + "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", + "dev": true + }, + "node_modules/emojis-list": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", + "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", "dev": true, "engines": { - "iojs": ">= 1.0.0", - "node": ">= 0.12.0" + "node": ">= 4" } }, - "node_modules/collect-v8-coverage": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/collect-v8-coverage/-/collect-v8-coverage-1.0.1.tgz", - "integrity": "sha512-iBPtljfCNcTKNAto0KEtDfZ3qzjJvqE3aTGZsbhjSBlorqpXJlaWWtPO35D+ZImoC3KWejX64o+yPGxhWSTzfg==", - "dev": true + "node_modules/encodeurl": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", + "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "dev": true, + "engines": { + "node": ">= 0.8" + } }, - "node_modules/color": { - "version": "4.2.3", - "resolved": "https://registry.npmjs.org/color/-/color-4.2.3.tgz", - "integrity": "sha512-1rXeuUUiGGrykh+CeBdu5Ie7OJwinCgQY0bc7GCRxy5xVHy+moaqkpL/jqQq0MtQOeYcrqEz4abc5f0KtU7W4A==", + "node_modules/encoding": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", + "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { - "color-convert": "^2.0.1", - "color-string": "^1.9.0" - }, - "engines": { - "node": ">=12.5.0" + "iconv-lite": "^0.6.2" } }, - "node_modules/color-convert": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-2.0.1.tgz", - "integrity": "sha512-RRECPsj7iu/xb5oKYcsFHSppFNnsj/52OVTRKb4zP5onXwVF3zVmmToNcOfGC+CRDpfK/U584fMg38ZHCaElKQ==", + "node_modules/encoding/node_modules/iconv-lite": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", + "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { - "color-name": "~1.1.4" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=7.0.0" + "node": ">=0.10.0" } }, - "node_modules/color-name": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.4.tgz", - "integrity": "sha512-dOy+3AuW3a2wNbZHIuMZpTcgjGuLU/uBL/ubcZF9OXbDo8ff4O8yVp5Bf0efS8uEoYo5q4Fx7dY9OgQGXgAsQA==" - }, - "node_modules/color-string": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-1.9.1.tgz", - "integrity": "sha512-shrVawQFojnZv6xM40anx4CkoDP+fZsw/ZerEMsW/pyzsRbElpsL/DBVW7q3ExxwusdNXI3lXpuhEZkzs8p5Eg==", + "node_modules/end-of-stream": { + "version": "1.4.4", + "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", + "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", "dependencies": { - "color-name": "^1.0.0", - "simple-swizzle": "^0.2.2" + "once": "^1.4.0" } }, - "node_modules/color-support": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", - "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", + "node_modules/endent": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz", + "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==", "dev": true, - "bin": { - "color-support": "bin.js" - } - }, - "node_modules/colord": { - "version": "2.9.3", - "resolved": "https://registry.npmjs.org/colord/-/colord-2.9.3.tgz", - "integrity": "sha512-jeC1axXpnb0/2nn/Y1LPuLdgXBLH7aDcHu4KEKfqw3CUhX7ZpfBSlPKyqXE6btIgEzfWtrX3/tyBCaCvXvMkOw==" - }, - "node_modules/colorette": { - "version": "2.0.19", - "resolved": "https://registry.npmjs.org/colorette/-/colorette-2.0.19.tgz", - "integrity": "sha512-3tlv/dIP7FWvj3BsbHrGLJ6l/oKh1O3TcgBqMn+yyCagOxc23fyzDS6HypQbgxWbkpDnf52p1LuR4eWDQ/K9WQ==", - "dev": true - }, - "node_modules/combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", "dependencies": { - "delayed-stream": "~1.0.0" - }, - "engines": { - "node": ">= 0.8" + "dedent": "^0.7.0", + "fast-json-parse": "^1.0.3", + "objectorarray": "^1.0.5" } }, - "node_modules/command-line-args": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/command-line-args/-/command-line-args-5.2.1.tgz", - "integrity": "sha512-H4UfQhZyakIjC74I9d34fGYDwk3XpSr17QhEd0Q3I9Xq1CETHo4Hcuo87WyWHpAF1aSLjLRf5lD9ZGX2qStUvg==", + "node_modules/enhanced-resolve": { + "version": "5.9.3", + "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.9.3.tgz", + "integrity": "sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==", "dev": true, "dependencies": { - "array-back": "^3.1.0", - "find-replace": "^3.0.0", - "lodash.camelcase": "^4.3.0", - "typical": "^4.0.0" + "graceful-fs": "^4.2.4", + "tapable": "^2.2.0" }, "engines": { - "node": ">=4.0.0" + "node": ">=10.13.0" } }, - "node_modules/command-line-usage": { - "version": "6.1.3", - "resolved": "https://registry.npmjs.org/command-line-usage/-/command-line-usage-6.1.3.tgz", - "integrity": "sha512-sH5ZSPr+7UStsloltmDh7Ce5fb8XPlHyoPzTpyyMuYCtervL65+ubVZ6Q61cFtFl62UyJlc8/JwERRbAFPUqgw==", + "node_modules/enquirer": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", + "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", "dev": true, "dependencies": { - "array-back": "^4.0.2", - "chalk": "^2.4.2", - "table-layout": "^1.0.2", - "typical": "^5.2.0" + "ansi-colors": "^4.1.1" }, "engines": { - "node": ">=8.0.0" + "node": ">=8.6" } }, - "node_modules/command-line-usage/node_modules/array-back": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/array-back/-/array-back-4.0.2.tgz", - "integrity": "sha512-NbdMezxqf94cnNfWLL7V/im0Ub+Anbb0IoZhvzie8+4HJ4nMQuzHuy49FkGYCJK2yAloZ3meiB6AVMClbrI1vg==", + "node_modules/entities": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", + "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", "dev": true, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/fb55/entities?sponsor=1" } }, - "node_modules/command-line-usage/node_modules/typical": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/typical/-/typical-5.2.0.tgz", - "integrity": "sha512-dvdQgNDNJo+8B2uBQoqdb11eUCE1JQXhvjC/CZtgvZseVd5TYMXnq0+vuUemXbd/Se29cTaUuPX3YIc2xgbvIg==", + "node_modules/env-paths": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", + "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", "dev": true, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/commander": { - "version": "8.3.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-8.3.0.tgz", - "integrity": "sha512-OkTL9umf+He2DZkUq8f8J9of7yL6RJKI24dVITBmNfZBmri9zYZQrKkuXiKhyfPSu8tUhnVBB1iKXevvnlR4Ww==", + "node_modules/envinfo": { + "version": "7.8.1", + "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", + "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", "dev": true, + "bin": { + "envinfo": "dist/cli.js" + }, "engines": { - "node": ">= 12" + "node": ">=4" } }, - "node_modules/common-path-prefix": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/common-path-prefix/-/common-path-prefix-3.0.0.tgz", - "integrity": "sha512-QE33hToZseCH3jS0qN96O/bSh3kaw/h+Tq7ngyY9eWDUnTlTNUyqfqvCXioLe5Na5jFsL78ra/wuBU4iuEgd4w==", - "dev": true + "node_modules/err-code": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", + "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "dev": true, + "optional": true, + "peer": true }, - "node_modules/common-tags": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/common-tags/-/common-tags-1.8.2.tgz", - "integrity": "sha512-gk/Z852D2Wtb//0I+kRFNKKE9dIIVirjoqPoA1wJU+XePVXZfGeBpk45+A1rKO4Q43prqWBNY/MiIeRLbPWUaA==", + "node_modules/error-ex": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", + "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", "dev": true, - "engines": { - "node": ">=4.0.0" + "dependencies": { + "is-arrayish": "^0.2.1" } }, - "node_modules/commondir": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/commondir/-/commondir-1.0.1.tgz", - "integrity": "sha512-W9pAhw0ja1Edb5GVdIF1mjZw/ASI0AlShXM83UUGe2DVr5TdAPEA1OA8m/g8zWp9x6On7gqufY+FatDbC3MDQg==", - "dev": true + "node_modules/error-stack-parser": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", + "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "dependencies": { + "stackframe": "^1.3.4" + } }, - "node_modules/complex.js": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/complex.js/-/complex.js-2.1.1.tgz", - "integrity": "sha512-8njCHOTtFFLtegk6zQo0kkVX1rngygb/KQI6z1qZxlFI3scluC+LVTCFbrkWjBv4vvLlbQ9t88IPMC6k95VTTg==", + "node_modules/es-abstract": { + "version": "1.23.1", + "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.1.tgz", + "integrity": "sha512-r+YVn6hTqQb+P5kK0u3KeDqrmhHKm+OhU/Mw4jSL4eQtOxXmp75fXIUUb3sUqFZOlb/YtW5JRaIfEC3UyjYUZQ==", + "dev": true, + "dependencies": { + "array-buffer-byte-length": "^1.0.1", + "arraybuffer.prototype.slice": "^1.0.3", + "available-typed-arrays": "^1.0.7", + "call-bind": "^1.0.7", + "data-view-buffer": "^1.0.1", + "data-view-byte-length": "^1.0.1", + "data-view-byte-offset": "^1.0.0", + "es-define-property": "^1.0.0", + "es-errors": "^1.3.0", + "es-object-atoms": "^1.0.0", + "es-set-tostringtag": "^2.0.3", + "es-to-primitive": "^1.2.1", + "function.prototype.name": "^1.1.6", + "get-intrinsic": "^1.2.4", + "get-symbol-description": "^1.0.2", + "globalthis": "^1.0.3", + "gopd": "^1.0.1", + "has-property-descriptors": "^1.0.2", + "has-proto": "^1.0.3", + "has-symbols": "^1.0.3", + "hasown": "^2.0.2", + "internal-slot": "^1.0.7", + "is-array-buffer": "^3.0.4", + "is-callable": "^1.2.7", + "is-data-view": "^1.0.1", + "is-negative-zero": "^2.0.3", + "is-regex": "^1.1.4", + "is-shared-array-buffer": "^1.0.3", + "is-string": "^1.0.7", + "is-typed-array": "^1.1.13", + "is-weakref": "^1.0.2", + "object-inspect": "^1.13.1", + "object-keys": "^1.1.1", + "object.assign": "^4.1.5", + "regexp.prototype.flags": "^1.5.2", + "safe-array-concat": "^1.1.2", + "safe-regex-test": "^1.0.3", + "string.prototype.trim": "^1.2.8", + "string.prototype.trimend": "^1.0.7", + "string.prototype.trimstart": "^1.0.7", + "typed-array-buffer": "^1.0.2", + "typed-array-byte-length": "^1.0.1", + "typed-array-byte-offset": "^1.0.2", + "typed-array-length": "^1.0.5", + "unbox-primitive": "^1.0.2", + "which-typed-array": "^1.1.15" + }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/compressible": { - "version": "2.0.18", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.18.tgz", - "integrity": "sha512-AF3r7P5dWxL8MxyITRMlORQNaOA2IkAFaTr4k7BUumjPtRpGDTZpl0Pb1XCO6JeDCBdp126Cgs9sMxqSjgYyRg==", + "node_modules/es-array-method-boxes-properly": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", + "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", + "dev": true + }, + "node_modules/es-define-property": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", + "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", "dev": true, "dependencies": { - "mime-db": ">= 1.43.0 < 2" + "get-intrinsic": "^1.2.4" }, "engines": { - "node": ">= 0.6" + "node": ">= 0.4" } }, - "node_modules/compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", + "node_modules/es-errors": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", + "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", "dev": true, - "dependencies": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, "engines": { - "node": ">= 0.8.0" + "node": ">= 0.4" } }, - "node_modules/compression/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/es-get-iterator": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", + "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", "dev": true, "dependencies": { - "ms": "2.0.0" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.3", + "has-symbols": "^1.0.3", + "is-arguments": "^1.1.1", + "is-map": "^2.0.2", + "is-set": "^2.0.2", + "is-string": "^1.0.7", + "isarray": "^2.0.5", + "stop-iteration-iterator": "^1.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/compression/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "node_modules/es-get-iterator/node_modules/isarray": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", + "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", "dev": true }, - "node_modules/concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha512-/Srv4dswyQNBfohGpz9o6Yb3Gz3SrUDqBH5rTuhGR7ahtlbYKnVxw2bCFMRljaA7EXHaXZ8wsHdodFvbkhKmqg==", + "node_modules/es-module-lexer": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", + "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", "dev": true }, - "node_modules/concat-stream": { - "version": "1.6.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.6.2.tgz", - "integrity": "sha512-27HBghJxjiZtIk3Ycvn/4kbJk/1uZuJFfuPEns6LaEvpvG1f0hTea8lilrouyo9mVc2GWdcEZ8OLoGmSADlrCw==", + "node_modules/es-object-atoms": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", + "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", "dev": true, - "engines": [ - "node >= 0.8" - ], "dependencies": { - "buffer-from": "^1.0.0", - "inherits": "^2.0.3", - "readable-stream": "^2.2.2", - "typedarray": "^0.0.6" + "es-errors": "^1.3.0" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/concat-stream/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "node_modules/es-set-tostringtag": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", + "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", "dev": true, "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "get-intrinsic": "^1.2.4", + "has-tostringtag": "^1.0.2", + "hasown": "^2.0.1" + }, + "engines": { + "node": ">= 0.4" } }, - "node_modules/concat-stream/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" - } - }, - "node_modules/config-chain": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/config-chain/-/config-chain-1.1.13.tgz", - "integrity": "sha512-qj+f8APARXHrM0hraqXYb2/bOVSV4PvJQlNZ/DVj0QrmNM2q2euizkeuVckQ57J+W0mRH6Hvi+k50M4Jul2VRQ==", + "node_modules/es-shim-unscopables": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", + "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", "dev": true, "dependencies": { - "ini": "^1.3.4", - "proto-list": "~1.2.1" + "has": "^1.0.3" } }, - "node_modules/configstore": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/configstore/-/configstore-6.0.0.tgz", - "integrity": "sha512-cD31W1v3GqUlQvbBCGcXmd2Nj9SvLDOP1oQ0YFuLETufzSPaKp11rYBsSOm7rCsW3OnIRAFM3OxRhceaXNYHkA==", + "node_modules/es-to-primitive": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", + "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", "dev": true, "dependencies": { - "dot-prop": "^6.0.1", - "graceful-fs": "^4.2.6", - "unique-string": "^3.0.0", - "write-file-atomic": "^3.0.3", - "xdg-basedir": "^5.0.1" + "is-callable": "^1.1.4", + "is-date-object": "^1.0.1", + "is-symbol": "^1.0.2" }, "engines": { - "node": ">=12" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/yeoman/configstore?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/configstore/node_modules/crypto-random-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-4.0.0.tgz", - "integrity": "sha512-x8dy3RnvYdlUcPOjkEHqozhiwzKNSq7GcPuXFbnyMOCHxX8V3OgIg/pYuabl2sbUPfIJaeAQB7PMOK8DFIdoRA==", + "node_modules/esbuild": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", + "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", "dev": true, - "dependencies": { - "type-fest": "^1.0.1" + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { "node": ">=12" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "optionalDependencies": { + "@esbuild/aix-ppc64": "0.20.2", + "@esbuild/android-arm": "0.20.2", + "@esbuild/android-arm64": "0.20.2", + "@esbuild/android-x64": "0.20.2", + "@esbuild/darwin-arm64": "0.20.2", + "@esbuild/darwin-x64": "0.20.2", + "@esbuild/freebsd-arm64": "0.20.2", + "@esbuild/freebsd-x64": "0.20.2", + "@esbuild/linux-arm": "0.20.2", + "@esbuild/linux-arm64": "0.20.2", + "@esbuild/linux-ia32": "0.20.2", + "@esbuild/linux-loong64": "0.20.2", + "@esbuild/linux-mips64el": "0.20.2", + "@esbuild/linux-ppc64": "0.20.2", + "@esbuild/linux-riscv64": "0.20.2", + "@esbuild/linux-s390x": "0.20.2", + "@esbuild/linux-x64": "0.20.2", + "@esbuild/netbsd-x64": "0.20.2", + "@esbuild/openbsd-x64": "0.20.2", + "@esbuild/sunos-x64": "0.20.2", + "@esbuild/win32-arm64": "0.20.2", + "@esbuild/win32-ia32": "0.20.2", + "@esbuild/win32-x64": "0.20.2" } }, - "node_modules/configstore/node_modules/type-fest": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-1.4.0.tgz", - "integrity": "sha512-yGSza74xk0UG8k+pLh5oeoYirvIiWo5t0/o3zHHAO2tRDiZcxWP7fywNlXhqb6/r6sWvwi+RsyQMWhVLe4BVuA==", + "node_modules/esbuild-android-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.43.tgz", + "integrity": "sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/configstore/node_modules/unique-string": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/unique-string/-/unique-string-3.0.0.tgz", - "integrity": "sha512-VGXBUVwxKMBUznyffQweQABPRRW1vHZAbadFZud4pLFAqRGvv/96vafgjWFqzourzr8YonlQiPgH0YCJfawoGQ==", + "node_modules/esbuild-linux-riscv64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.43.tgz", + "integrity": "sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==", + "cpu": [ + "riscv64" + ], "dev": true, - "dependencies": { - "crypto-random-string": "^4.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/confusing-browser-globals": { - "version": "1.0.11", - "resolved": "https://registry.npmjs.org/confusing-browser-globals/-/confusing-browser-globals-1.0.11.tgz", - "integrity": "sha512-JsPKdmh8ZkmnHxDk55FZ1TqVLvEQTvoByJZRN9jzI0UjxK/QgAmsphz7PGtqgPieQZ/CQcHWXCR7ATDNhGe+YA==", - "dev": true - }, - "node_modules/connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", + "node_modules/esbuild-linux-s390x": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.43.tgz", + "integrity": "sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==", + "cpu": [ + "s390x" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.8" + "node": ">=12" } }, - "node_modules/consola": { - "version": "2.15.3", - "resolved": "https://registry.npmjs.org/consola/-/consola-2.15.3.tgz", - "integrity": "sha512-9vAdYbHj6x2fLKC4+oPH0kFzY/orMZyG2Aj+kNylHxKGJ/Ed4dpNyAQYwJOdqO4zdM7XpVHmyejQDcQHrnuXbw==", - "dev": true - }, - "node_modules/console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true - }, - "node_modules/constant-case": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/constant-case/-/constant-case-2.0.0.tgz", - "integrity": "sha512-eS0N9WwmjTqrOmR3o83F5vW8Z+9R1HnVz3xmzT2PMFug9ly+Au/fxRWlEBSb6LcZwspSsEn9Xs1uw9YgzAg1EQ==", + "node_modules/esbuild-loader": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/esbuild-loader/-/esbuild-loader-2.19.0.tgz", + "integrity": "sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q==", "dev": true, "dependencies": { - "snake-case": "^2.1.0", - "upper-case": "^1.1.1" + "esbuild": "^0.14.39", + "joycon": "^3.0.1", + "json5": "^2.2.0", + "loader-utils": "^2.0.0", + "tapable": "^2.2.0", + "webpack-sources": "^2.2.0" + }, + "funding": { + "url": "https://github.com/privatenumber/esbuild-loader?sponsor=1" + }, + "peerDependencies": { + "webpack": "^4.40.0 || ^5.0.0" } }, - "node_modules/content-disposition": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", - "integrity": "sha512-FveZTNuGw04cxlAiWbzi6zTAL/lhehaWbTtgluJh4/E95DqMwTmha3KZN1aAWA8cFIhHzMZUvLevkw5Rqk+tSQ==", + "node_modules/esbuild-loader/node_modules/esbuild": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.43.tgz", + "integrity": "sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA==", "dev": true, - "dependencies": { - "safe-buffer": "5.2.1" + "hasInstallScript": true, + "bin": { + "esbuild": "bin/esbuild" }, "engines": { - "node": ">= 0.6" + "node": ">=12" + }, + "optionalDependencies": { + "esbuild-android-64": "0.14.43", + "esbuild-android-arm64": "0.14.43", + "esbuild-darwin-64": "0.14.43", + "esbuild-darwin-arm64": "0.14.43", + "esbuild-freebsd-64": "0.14.43", + "esbuild-freebsd-arm64": "0.14.43", + "esbuild-linux-32": "0.14.43", + "esbuild-linux-64": "0.14.43", + "esbuild-linux-arm": "0.14.43", + "esbuild-linux-arm64": "0.14.43", + "esbuild-linux-mips64le": "0.14.43", + "esbuild-linux-ppc64le": "0.14.43", + "esbuild-linux-riscv64": "0.14.43", + "esbuild-linux-s390x": "0.14.43", + "esbuild-netbsd-64": "0.14.43", + "esbuild-openbsd-64": "0.14.43", + "esbuild-sunos-64": "0.14.43", + "esbuild-windows-32": "0.14.43", + "esbuild-windows-64": "0.14.43", + "esbuild-windows-arm64": "0.14.43" } }, - "node_modules/content-disposition/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", + "node_modules/esbuild-loader/node_modules/esbuild-android-arm64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.43.tgz", + "integrity": "sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 0.6" + "node": ">=12" } }, - "node_modules/contentstream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/contentstream/-/contentstream-1.0.0.tgz", - "integrity": "sha512-jqWbfFZFG9tZbdej7+TzXI4kanABh3BLtTWY6NxqTK5zo6iTIeo5aq4iRVfYsLQ0y8ccQqmJR/J4NeMmEdnR2w==", - "dependencies": { - "readable-stream": "~1.0.33-1" - }, + "node_modules/esbuild-loader/node_modules/esbuild-darwin-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.43.tgz", + "integrity": "sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/contentstream/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - }, - "node_modules/contentstream/node_modules/readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha512-ok1qVCJuRkNmvebYikljxJA/UEsKwLl2nI1OmaqAu4/UE+h0wKCHok4XkL/gvi39OacXvw59RJUOFUkDib2rHg==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "node": ">=12" } }, - "node_modules/contentstream/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - }, - "node_modules/convert-source-map": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-1.8.0.tgz", - "integrity": "sha512-+OQdjP49zViI/6i7nIJpA8rAl4sV/JdPfU9nZs3VqOwGIgizICvuN2ru6fMd+4llL0tar18UYJXfZ/TWtmhUjA==", + "node_modules/esbuild-loader/node_modules/esbuild-darwin-arm64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.43.tgz", + "integrity": "sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "safe-buffer": "~5.1.1" + "optional": true, + "os": [ + "darwin" + ], + "engines": { + "node": ">=12" } }, - "node_modules/cookie": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.5.0.tgz", - "integrity": "sha512-YZ3GUyn/o8gfKJlnlX7g7xq4gyO6OSuhGPKaaGssGB2qgDUS0gPgtTvoyZLTt9Ab6dC4hfc9dV5arkvc/OCmrw==", + "node_modules/esbuild-loader/node_modules/esbuild-freebsd-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.43.tgz", + "integrity": "sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">= 0.6" + "node": ">=12" } }, - "node_modules/cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha512-QADzlaHc8icV8I7vbaJXJwod9HWYp8uCqf1xa4OfNu1T7JVxQIrUgOWtHdNDtPiywmFbiS12VjotIXLrKM3orQ==", - "dev": true - }, - "node_modules/core-js": { - "version": "2.6.12", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.12.tgz", - "integrity": "sha512-Kb2wC0fvsWfQrgk8HU5lW6U/Lcs8+9aaYcy4ZFc6DDlo4nZ7n70dEgE5rtR0oG6ufKDUnrwfWL1mXR5ljDatrQ==", - "deprecated": "core-js@<3.4 is no longer maintained and not recommended for usage due to the number of issues. Because of the V8 engine whims, feature detection in old core-js versions could cause a slowdown up to 100x even if nothing is polyfilled. Please, upgrade your dependencies to the actual version of core-js.", + "node_modules/esbuild-loader/node_modules/esbuild-freebsd-arm64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.43.tgz", + "integrity": "sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==", + "cpu": [ + "arm64" + ], "dev": true, - "hasInstallScript": true + "optional": true, + "os": [ + "freebsd" + ], + "engines": { + "node": ">=12" + } }, - "node_modules/core-js-compat": { - "version": "3.27.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.27.2.tgz", - "integrity": "sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==", + "node_modules/esbuild-loader/node_modules/esbuild-linux-32": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.43.tgz", + "integrity": "sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "browserslist": "^4.21.4" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/core-js-pure": { - "version": "3.27.2", - "resolved": "https://registry.npmjs.org/core-js-pure/-/core-js-pure-3.27.2.tgz", - "integrity": "sha512-Cf2jqAbXgWH3VVzjyaaFkY1EBazxugUepGymDoeteyYr9ByX51kD2jdHZlsEF/xnJMyN3Prua7mQuzwMg6Zc9A==", + "node_modules/esbuild-loader/node_modules/esbuild-linux-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.43.tgz", + "integrity": "sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==", + "cpu": [ + "x64" + ], "dev": true, - "hasInstallScript": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/core-js" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/core-util-is": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.3.tgz", - "integrity": "sha512-ZQBvi1DcpJ4GDqanjucZ2Hj3wEO5pZDS89BWbkcrvdxksJorwUDDZamX9ldFkp9aw2lmBDLgkObEA4DWNJ9FYQ==" - }, - "node_modules/cosmiconfig": { - "version": "8.3.6", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-8.3.6.tgz", - "integrity": "sha512-kcZ6+W5QzcJ3P1Mt+83OUv/oHFqZHIx8DuxG6eZ5RGMERoLqp4BuGjhHLYGK+Kf5XVkQvqBSmAy/nGWN3qDgEA==", + "node_modules/esbuild-loader/node_modules/esbuild-linux-arm": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.43.tgz", + "integrity": "sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0", - "path-type": "^4.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "node": ">=12" } }, - "node_modules/cosmiconfig/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/cosmiconfig/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/esbuild-loader/node_modules/esbuild-linux-arm64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.43.tgz", + "integrity": "sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" + "optional": true, + "os": [ + "linux" + ], + "engines": { + "node": ">=12" } }, - "node_modules/create-require": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/create-require/-/create-require-1.1.1.tgz", - "integrity": "sha512-dcKFX3jn0MpIaXjisoRvexIJVEKzaq7z2rZKxf+MSr9TkdmHmsU4m2lcLojrj/FHl8mk5VxMmYA+ftRkP/3oKQ==", - "dev": true - }, - "node_modules/cross-spawn": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-7.0.3.tgz", - "integrity": "sha512-iRDPJKUPVEND7dHPO8rkbOnPpyDygcDFtWjpeWNCgy8WP2rXcxXL8TskReQl6OrB2G7+UJrags1q15Fudc7G6w==", + "node_modules/esbuild-loader/node_modules/esbuild-linux-mips64le": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.43.tgz", + "integrity": "sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==", + "cpu": [ + "mips64el" + ], "dev": true, - "dependencies": { - "path-key": "^3.1.0", - "shebang-command": "^2.0.0", - "which": "^2.0.1" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 8" + "node": ">=12" } }, - "node_modules/crypto-random-string": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/crypto-random-string/-/crypto-random-string-2.0.0.tgz", - "integrity": "sha512-v1plID3y9r/lPhviJ1wrXpLeyUIGAZ2SHNYTEapm7/8A9nLPoyvVp3RK/EPFqn5kEznyWgYZNsRtYYIWbuG8KA==", + "node_modules/esbuild-loader/node_modules/esbuild-linux-ppc64le": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.43.tgz", + "integrity": "sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==", + "cpu": [ + "ppc64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/css-loader": { - "version": "6.7.1", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-6.7.1.tgz", - "integrity": "sha512-yB5CNFa14MbPJcomwNh3wLThtkZgcNyI2bNMRt8iE5Z8Vwl7f8vQXFAzn2HDOJvtDq2NTZBUGMSUNNyrv3/+cw==", - "dev": true, - "dependencies": { - "icss-utils": "^5.1.0", - "postcss": "^8.4.7", - "postcss-modules-extract-imports": "^3.0.0", - "postcss-modules-local-by-default": "^4.0.0", - "postcss-modules-scope": "^3.0.0", - "postcss-modules-values": "^4.0.0", - "postcss-value-parser": "^4.2.0", - "semver": "^7.3.5" - }, + "node_modules/esbuild-loader/node_modules/esbuild-netbsd-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.43.tgz", + "integrity": "sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "netbsd" + ], "engines": { - "node": ">= 12.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" - }, - "peerDependencies": { - "webpack": "^5.0.0" + "node": ">=12" } }, - "node_modules/css-select": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/css-select/-/css-select-4.3.0.tgz", - "integrity": "sha512-wPpOYtnsVontu2mODhA19JrqWxNsfdatRKd64kmpRbQgh1KtItko5sTnEpPdpSaJszTOhEMlF/RPz28qj4HqhQ==", + "node_modules/esbuild-loader/node_modules/esbuild-openbsd-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.43.tgz", + "integrity": "sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "boolbase": "^1.0.0", - "css-what": "^6.0.1", - "domhandler": "^4.3.1", - "domutils": "^2.8.0", - "nth-check": "^2.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "optional": true, + "os": [ + "openbsd" + ], + "engines": { + "node": ">=12" } }, - "node_modules/css-what": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/css-what/-/css-what-6.1.0.tgz", - "integrity": "sha512-HTUrgRJ7r4dsZKU6GjmpfRK1O76h97Z8MfS1G0FozR+oF2kG6Vfe8JE6zwrkbxigziPHinCJ+gCPjA9EaBDtRw==", + "node_modules/esbuild-loader/node_modules/esbuild-sunos-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.43.tgz", + "integrity": "sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": ">= 6" - }, - "funding": { - "url": "https://github.com/sponsors/fb55" + "node": ">=12" } }, - "node_modules/cssesc": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-3.0.0.tgz", - "integrity": "sha512-/Tb/JcjK111nNScGob5MNtsntNM1aCNUDipB/TkwZFhyDrrE47SOx/18wF2bbjgc3ZzCSKW1T5nt5EbFoAz/Vg==", + "node_modules/esbuild-loader/node_modules/esbuild-windows-32": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.43.tgz", + "integrity": "sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==", + "cpu": [ + "ia32" + ], "dev": true, - "bin": { - "cssesc": "bin/cssesc" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=4" + "node": ">=12" } }, - "node_modules/cssfontparser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/cssfontparser/-/cssfontparser-1.2.1.tgz", - "integrity": "sha512-6tun4LoZnj7VN6YeegOVb67KBX/7JJsqvj+pv3ZA7F878/eN33AbGa5b/S/wXxS/tcp8nc40xRUrsPlxIyNUPg==", - "dev": true - }, - "node_modules/cssom": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.4.4.tgz", - "integrity": "sha512-p3pvU7r1MyyqbTk+WbNJIgJjG2VmTIaB10rI93LzVPrmDJKkzKYMtxxyAvQXR/NS6otuzveI7+7BBq3SjBS2mw==", - "dev": true - }, - "node_modules/cssstyle": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/cssstyle/-/cssstyle-2.3.0.tgz", - "integrity": "sha512-AZL67abkUzIuvcHqk7c09cezpGNcxUxU4Ioi/05xHk4DQeTkWmGYftIE6ctU6AEt+Gn4n1lDStOtj7FKycP71A==", + "node_modules/esbuild-loader/node_modules/esbuild-windows-64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.43.tgz", + "integrity": "sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "cssom": "~0.3.6" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/cssstyle/node_modules/cssom": { - "version": "0.3.8", - "resolved": "https://registry.npmjs.org/cssom/-/cssom-0.3.8.tgz", - "integrity": "sha512-b0tGHbfegbhPJpxpiBPU2sCkigAqtM9O121le6bbOlgyV+NyGyCmVfJ6QW9eRjz8CpNfWEOYBIMIGRYkLwsIYg==", - "dev": true - }, - "node_modules/csstype": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/csstype/-/csstype-3.1.0.tgz", - "integrity": "sha512-uX1KG+x9h5hIJsaKR9xHUeUraxf8IODOwq9JLNPq6BwB04a/xgpq3rcx47l5BZu5zBPlgD342tdke3Hom/nJRA==", - "dev": true - }, - "node_modules/cwise-compiler": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/cwise-compiler/-/cwise-compiler-1.1.3.tgz", - "integrity": "sha512-WXlK/m+Di8DMMcCjcWr4i+XzcQra9eCdXIJrgh4TUgh0pIS/yJduLxS9JgefsHJ/YVLdgPtXm9r62W92MvanEQ==", - "dependencies": { - "uniq": "^1.0.0" + "node_modules/esbuild-loader/node_modules/esbuild-windows-arm64": { + "version": "0.14.43", + "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.43.tgz", + "integrity": "sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==", + "cpu": [ + "arm64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" } }, - "node_modules/damerau-levenshtein": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/damerau-levenshtein/-/damerau-levenshtein-1.0.8.tgz", - "integrity": "sha512-sdQSFB7+llfUcQHUQO3+B8ERRj0Oa4w9POWMI/puGtuf7gFywGmkaLCElnudfTiKZV+NvHqL0ifzdrI8Ro7ESA==", + "node_modules/esbuild-plugin-alias": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", + "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==", "dev": true }, - "node_modules/dart-sass": { - "version": "1.25.0", - "resolved": "https://registry.npmjs.org/dart-sass/-/dart-sass-1.25.0.tgz", - "integrity": "sha512-syNOAstJXAmvD3RifcDk3fiPMyYE2fY8so6w9gf2/wNlKpG0zyH+oiXubEYVOy1WAWkzOc72pbAxwx+3OU4JJA==", - "deprecated": "This package has been renamed to 'sass'.", + "node_modules/esbuild-register": { + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.5.0.tgz", + "integrity": "sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==", "dev": true, "dependencies": { - "chokidar": ">=2.0.0 <4.0.0" - }, - "bin": { - "dart-sass": "sass.js" + "debug": "^4.3.4" }, - "engines": { - "node": ">=8.9.0" + "peerDependencies": { + "esbuild": ">=0.12 <1" } }, - "node_modules/dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha512-jRFi8UDGo6j+odZiEpjazZaWqEal3w/basFjQHQEwVtZJGDpxbH1MeYluwCS8Xq5wmLJooDlMgvVarmWfGM44g==", - "dependencies": { - "assert-plus": "^1.0.0" - }, + "node_modules/esbuild/node_modules/@esbuild/android-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", + "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", + "cpu": [ + "arm" + ], + "dev": true, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=0.10" + "node": ">=12" } }, - "node_modules/data-uri-to-buffer": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-0.0.3.tgz", - "integrity": "sha512-Cp+jOa8QJef5nXS5hU7M1DWzXPEIoVR3kbV0dQuVGwROZg8bGf1DcCnkmajBTnvghTtSNMUdRrPjgaT6ZQucbw==" - }, - "node_modules/data-urls": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/data-urls/-/data-urls-2.0.0.tgz", - "integrity": "sha512-X5eWTSXO/BJmpdIKCRuKUgSCgAN0OwliVK3yPKbwIWU1Tdw5BRajxlzMidvh+gwko9AfQ9zIj52pzF91Q3YAvQ==", + "node_modules/esbuild/node_modules/@esbuild/android-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", + "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "abab": "^2.0.3", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.0.0" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/data-view-buffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-buffer/-/data-view-buffer-1.0.1.tgz", - "integrity": "sha512-0lht7OugA5x3iJLOWFhWK/5ehONdprk0ISXqVFn/NFrDu+cuc8iADFrGQz5BnRK7LLU3JmkbXSxaqX+/mXYtUA==", + "node_modules/esbuild/node_modules/@esbuild/android-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", + "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, + "optional": true, + "os": [ + "android" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/data-view-byte-length": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/data-view-byte-length/-/data-view-byte-length-1.0.1.tgz", - "integrity": "sha512-4J7wRJD3ABAzr8wP+OcIcqq2dlUKp4DVflx++hs5h5ZKydWMI6/D/fAot+yh6g2tHh8fLFTvNOaVN357NvSrOQ==", + "node_modules/esbuild/node_modules/@esbuild/darwin-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", + "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.7", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/data-view-byte-offset": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/data-view-byte-offset/-/data-view-byte-offset-1.0.0.tgz", - "integrity": "sha512-t/Ygsytq+R995EJ5PZlD4Cu56sWa8InXySaViRzw9apusqsOO2bQP+SbYzAhR0pFKoB+43lYy8rWban9JSuXnA==", + "node_modules/esbuild/node_modules/@esbuild/darwin-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", + "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.6", - "es-errors": "^1.3.0", - "is-data-view": "^1.0.1" - }, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/debug": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/debug/-/debug-4.3.4.tgz", - "integrity": "sha512-PRWFHuSU3eDtQJPvnNY7Jcket1j0t5OuOsFzPPzsekD52Zl8qUfFIPEiswXqIvHWGVHOgX+7G/vCNNhehwxfkQ==", + "node_modules/esbuild/node_modules/@esbuild/freebsd-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", + "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", + "cpu": [ + "arm64" + ], "dev": true, - "dependencies": { - "ms": "2.1.2" - }, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=6.0" - }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "node": ">=12" } }, - "node_modules/decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha512-z2S+W9X73hAUUki+N+9Za2lBlun89zigOyGrsax+KUQ6wKW4ZoWpEYBkGhQjwAjjDCkWxhY0VKEhk8wzY7F5cA==", + "node_modules/esbuild/node_modules/@esbuild/freebsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", + "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "freebsd" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/decamelize-keys": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/decamelize-keys/-/decamelize-keys-1.1.0.tgz", - "integrity": "sha512-ocLWuYzRPoS9bfiSdDd3cxvrzovVMZnRDVEzAs+hWIVXGDbHxWMECij2OBuyB/An0FFW/nLuq6Kv1i/YC5Qfzg==", + "node_modules/esbuild/node_modules/@esbuild/linux-arm": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", + "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", + "cpu": [ + "arm" + ], "dev": true, - "dependencies": { - "decamelize": "^1.1.0", - "map-obj": "^1.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/decamelize-keys/node_modules/map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha512-7N/q3lyZ+LVCp7PzuxrJr4KMbBE2hW7BT7YNia330OFxIf4d3r5zVpicP2650l7CPN6RM9zOJRl3NGpqSiw3Eg==", + "node_modules/esbuild/node_modules/@esbuild/linux-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", + "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/decimal.js": { - "version": "10.3.1", - "resolved": "https://registry.npmjs.org/decimal.js/-/decimal.js-10.3.1.tgz", - "integrity": "sha512-V0pfhfr8suzyPGOx3nmq4aHqabehUZn6Ch9kyFpV79TGDTWFmHqUqXdabR7QHqxzrYolF4+tVmJhUG4OURg5dQ==" - }, - "node_modules/decompress-response": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/decompress-response/-/decompress-response-6.0.0.tgz", - "integrity": "sha512-aW35yZM6Bb/4oJlZncMH2LCoZtJXTRxES17vE3hoRiowU2kWHaJKFkSBDnDR+cm9J+9QhXmREyIfv0pji9ejCQ==", - "dependencies": { - "mimic-response": "^3.1.0" - }, + "node_modules/esbuild/node_modules/@esbuild/linux-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", + "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", + "cpu": [ + "ia32" + ], + "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/dedent": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/dedent/-/dedent-0.7.0.tgz", - "integrity": "sha512-Q6fKUPqnAHAyhiUgFU7BUzLiv0kd8saH9al7tnu5Q/okj6dnupxyTgFIBjVzJATdfIAm9NAsvXNzjaKa+bxVyA==", - "dev": true - }, - "node_modules/deep-equal": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/deep-equal/-/deep-equal-2.2.0.tgz", - "integrity": "sha512-RdpzE0Hv4lhowpIUKKMJfeH6C1pXdtT1/it80ubgWqwI3qpuxUBpC1S4hnHg+zjnuOoDkzUtUCEEkG+XG5l3Mw==", + "node_modules/esbuild/node_modules/@esbuild/linux-loong64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", + "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", + "cpu": [ + "loong64" + ], "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "es-get-iterator": "^1.1.2", - "get-intrinsic": "^1.1.3", - "is-arguments": "^1.1.1", - "is-array-buffer": "^3.0.1", - "is-date-object": "^1.0.5", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.2", - "isarray": "^2.0.5", - "object-is": "^1.1.5", - "object-keys": "^1.1.1", - "object.assign": "^4.1.4", - "regexp.prototype.flags": "^1.4.3", - "side-channel": "^1.0.4", - "which-boxed-primitive": "^1.0.2", - "which-collection": "^1.0.1", - "which-typed-array": "^1.1.9" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/deep-equal/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/deep-extend": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/deep-extend/-/deep-extend-0.6.0.tgz", - "integrity": "sha512-LOHxIOaPYdHlJRtCQfDIVZtfw/ufM8+rVj649RIHzcm/vGwQRXFt6OPqIFWsm2XEMrNIEtWR64sY1LEKD2vAOA==", + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=4.0.0" + "node": ">=12" } }, - "node_modules/deep-is": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/deep-is/-/deep-is-0.1.4.tgz", - "integrity": "sha512-oIPzksmTg4/MriiaYGO+okXDT7ztn/w3Eptv/+gSIdMdKsJo0u4CfYNFJPy+4SKMuCqGw2wxnA+URMg3t8a/bQ==", - "dev": true - }, - "node_modules/deepmerge": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/deepmerge/-/deepmerge-4.2.2.tgz", - "integrity": "sha512-FJ3UgI4gIl+PHZm53knsuSFpE+nESMr7M4v9QcgB7S63Kj/6WqMiFQJpBBYz1Pt+66bZpP3Q7Lye0Oo9MPKEdg==", + "node_modules/esbuild/node_modules/@esbuild/linux-mips64el": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", + "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", + "cpu": [ + "mips64el" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=0.10.0" + "node": ">=12" } }, - "node_modules/default-browser": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/default-browser/-/default-browser-5.2.1.tgz", - "integrity": "sha512-WY/3TUME0x3KPYdRRxEJJvXRHV4PyPoUsxtZa78lwItwRQRHhd2U9xOscaT/YTf8uCXIAjeJOFBVEh/7FtD8Xg==", + "node_modules/esbuild/node_modules/@esbuild/linux-ppc64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", + "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", + "cpu": [ + "ppc64" + ], "dev": true, - "dependencies": { - "bundle-name": "^4.1.0", - "default-browser-id": "^5.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/default-browser-id": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-3.0.0.tgz", - "integrity": "sha512-OZ1y3y0SqSICtE8DE4S8YOE9UZOJ8wO16fKWVP5J1Qz42kV9jcnMVFrEE/noXb/ss3Q4pZIH79kxofzyNNtUNA==", + "node_modules/esbuild/node_modules/@esbuild/linux-riscv64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", + "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", + "cpu": [ + "riscv64" + ], "dev": true, - "dependencies": { - "bplist-parser": "^0.2.0", - "untildify": "^4.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/default-browser/node_modules/default-browser-id": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/default-browser-id/-/default-browser-id-5.0.0.tgz", - "integrity": "sha512-A6p/pu/6fyBcA1TRz/GqWYPViplrftcW2gZC9q79ngNCKAeR/X3gcEdXQHl4KNXV+3wgIJ1CPkJQ3IHM6lcsyA==", + "node_modules/esbuild/node_modules/@esbuild/linux-s390x": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", + "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", + "cpu": [ + "s390x" + ], "dev": true, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=12" } }, - "node_modules/default-gateway": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/default-gateway/-/default-gateway-6.0.3.tgz", - "integrity": "sha512-fwSOJsbbNzZ/CUFpqFBqYfYNLj1NbMPm8MMCIzHjC83iSJRBEGmDUxU+WP661BaBQImeC2yHwXtz+P/O9o+XEg==", + "node_modules/esbuild/node_modules/@esbuild/linux-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", + "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "execa": "^5.0.0" - }, + "optional": true, + "os": [ + "linux" + ], "engines": { - "node": ">= 10" + "node": ">=12" } }, - "node_modules/defaults": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/defaults/-/defaults-1.0.3.tgz", - "integrity": "sha512-s82itHOnYrN0Ib8r+z7laQz3sdE+4FP3d9Q7VLO7U+KRT+CR0GsWuyHxzdAY82I7cXv0G/twrqomTJLOssO5HA==", + "node_modules/esbuild/node_modules/@esbuild/netbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", + "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "clone": "^1.0.2" + "optional": true, + "os": [ + "netbsd" + ], + "engines": { + "node": ">=12" } }, - "node_modules/defer-to-connect": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/defer-to-connect/-/defer-to-connect-2.0.1.tgz", - "integrity": "sha512-4tvttepXG1VaYGrRibk5EwJd1t4udunSOVMdLSAL6mId1ix438oPwPZMALY41FCijukO1L0twNcGsdzS7dHgDg==", + "node_modules/esbuild/node_modules/@esbuild/openbsd-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", + "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", + "cpu": [ + "x64" + ], "dev": true, + "optional": true, + "os": [ + "openbsd" + ], "engines": { - "node": ">=10" + "node": ">=12" } }, - "node_modules/define-data-property": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/define-data-property/-/define-data-property-1.1.4.tgz", - "integrity": "sha512-rBMvIzlpA8v6E+SJZoo++HAYqsLrkg7MSfIinMPFhmkorw7X+dOXVJQs+QT69zGkzMyfDnIMN2Wid1+NbL3T+A==", + "node_modules/esbuild/node_modules/@esbuild/sunos-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", + "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", + "cpu": [ + "x64" + ], "dev": true, - "dependencies": { - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "gopd": "^1.0.1" - }, + "optional": true, + "os": [ + "sunos" + ], "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=12" } }, - "node_modules/define-lazy-prop": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-2.0.0.tgz", - "integrity": "sha512-Ds09qNh8yw3khSjiJjiUInaGX9xlqZDY7JVryGxdxV7NPeuqQfplOpQ66yJFZut3jLa5zOwkXw1g9EI2uKh4Og==", + "node_modules/esbuild/node_modules/@esbuild/win32-arm64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", + "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", + "cpu": [ + "arm64" + ], "dev": true, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">=8" + "node": ">=12" } }, - "node_modules/define-properties": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/define-properties/-/define-properties-1.2.1.tgz", - "integrity": "sha512-8QmQKqEASLd5nx0U1B1okLElbUuuttJ/AnYmRXbbbGDWh6uS208EjD4Xqq/I9wK7u0v6O08XhTWnt5XtEbR6Dg==", + "node_modules/esbuild/node_modules/@esbuild/win32-ia32": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", + "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", + "cpu": [ + "ia32" + ], "dev": true, - "dependencies": { - "define-data-property": "^1.0.1", - "has-property-descriptors": "^1.0.0", - "object-keys": "^1.1.1" - }, + "optional": true, + "os": [ + "win32" + ], "engines": { - "node": ">= 0.4" + "node": ">=12" + } + }, + "node_modules/esbuild/node_modules/@esbuild/win32-x64": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", + "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", + "cpu": [ + "x64" + ], + "dev": true, + "optional": true, + "os": [ + "win32" + ], + "engines": { + "node": ">=12" + } + }, + "node_modules/escalade": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", + "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/escape-goat": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", + "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", + "dev": true, + "engines": { + "node": ">=12" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/defu": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz", - "integrity": "sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==", + "node_modules/escape-html": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", + "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", "dev": true }, - "node_modules/degenerator": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/degenerator/-/degenerator-5.0.1.tgz", - "integrity": "sha512-TllpMR/t0M5sqCXfj85i4XaAzxmS5tVA16dqvdkMwGmzI+dXLXnw3J+3Vdv7VKw+ThlTMboK6i9rnZ6Nntj5CQ==", + "node_modules/escape-latex": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/escape-latex/-/escape-latex-1.2.0.tgz", + "integrity": "sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==" + }, + "node_modules/escape-string-regexp": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", + "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", "dev": true, - "dependencies": { - "ast-types": "^0.13.4", - "escodegen": "^2.1.0", - "esprima": "^4.0.1" - }, "engines": { - "node": ">= 14" + "node": ">=0.8.0" } }, - "node_modules/degenerator/node_modules/ast-types": { - "version": "0.13.4", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.13.4.tgz", - "integrity": "sha512-x1FCFnFifvYDDzTaLII71vG5uvDwgtmDTEVWAxrgeiR8VjMONcCXJx7E+USjDtHlwFmt9MysbqgF9b9Vjr6w+w==", + "node_modules/escodegen": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", + "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", "dev": true, "dependencies": { - "tslib": "^2.0.1" + "esprima": "^4.0.1", + "estraverse": "^5.2.0", + "esutils": "^2.0.2" + }, + "bin": { + "escodegen": "bin/escodegen.js", + "esgenerate": "bin/esgenerate.js" }, "engines": { - "node": ">=4" + "node": ">=6.0" + }, + "optionalDependencies": { + "source-map": "~0.6.1" } }, - "node_modules/degit": { - "version": "2.8.4", - "resolved": "https://registry.npmjs.org/degit/-/degit-2.8.4.tgz", - "integrity": "sha512-vqYuzmSA5I50J882jd+AbAhQtgK6bdKUJIex1JNfEUPENCgYsxugzKVZlFyMwV4i06MmnV47/Iqi5Io86zf3Ng==", + "node_modules/eslint": { + "version": "8.57.0", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", + "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", "dev": true, + "dependencies": { + "@eslint-community/eslint-utils": "^4.2.0", + "@eslint-community/regexpp": "^4.6.1", + "@eslint/eslintrc": "^2.1.4", + "@eslint/js": "8.57.0", + "@humanwhocodes/config-array": "^0.11.14", + "@humanwhocodes/module-importer": "^1.0.1", + "@nodelib/fs.walk": "^1.2.8", + "@ungap/structured-clone": "^1.2.0", + "ajv": "^6.12.4", + "chalk": "^4.0.0", + "cross-spawn": "^7.0.2", + "debug": "^4.3.2", + "doctrine": "^3.0.0", + "escape-string-regexp": "^4.0.0", + "eslint-scope": "^7.2.2", + "eslint-visitor-keys": "^3.4.3", + "espree": "^9.6.1", + "esquery": "^1.4.2", + "esutils": "^2.0.2", + "fast-deep-equal": "^3.1.3", + "file-entry-cache": "^6.0.1", + "find-up": "^5.0.0", + "glob-parent": "^6.0.2", + "globals": "^13.19.0", + "graphemer": "^1.4.0", + "ignore": "^5.2.0", + "imurmurhash": "^0.1.4", + "is-glob": "^4.0.0", + "is-path-inside": "^3.0.3", + "js-yaml": "^4.1.0", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.4.1", + "lodash.merge": "^4.6.2", + "minimatch": "^3.1.2", + "natural-compare": "^1.4.0", + "optionator": "^0.9.3", + "strip-ansi": "^6.0.1", + "text-table": "^0.2.0" + }, "bin": { - "degit": "degit" + "eslint": "bin/eslint.js" }, "engines": { - "node": ">=8.0.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/del": { - "version": "6.1.1", - "resolved": "https://registry.npmjs.org/del/-/del-6.1.1.tgz", - "integrity": "sha512-ua8BhapfP0JUJKC/zV9yHHDW/rDoDxP4Zhn3AkA6/xT6gY7jYXJiaeyBZznYVujhZZET+UgcbZiQ7sN3WqcImg==", + "node_modules/eslint-config-airbnb": { + "version": "19.0.4", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz", + "integrity": "sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==", "dev": true, "dependencies": { - "globby": "^11.0.1", - "graceful-fs": "^4.2.4", - "is-glob": "^4.0.1", - "is-path-cwd": "^2.2.0", - "is-path-inside": "^3.0.2", - "p-map": "^4.0.0", - "rimraf": "^3.0.2", - "slash": "^3.0.0" + "eslint-config-airbnb-base": "^15.0.0", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5" }, "engines": { - "node": ">=10" + "node": "^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.3", + "eslint-plugin-jsx-a11y": "^6.5.1", + "eslint-plugin-react": "^7.28.0", + "eslint-plugin-react-hooks": "^4.3.0" } }, - "node_modules/delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha512-ZySD7Nf91aLB0RxL4KGrKHBXl7Eds1DAmEdcoVawXnLD7SDhpNgtuII2aAkg7a7QS41jxPSZ17p4VdGnMHk3MQ==", + "node_modules/eslint-config-airbnb-base": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", + "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "dev": true, + "dependencies": { + "confusing-browser-globals": "^1.0.10", + "object.assign": "^4.1.2", + "object.entries": "^1.1.5", + "semver": "^6.3.0" + }, "engines": { - "node": ">=0.4.0" + "node": "^10.12.0 || >=12.0.0" + }, + "peerDependencies": { + "eslint": "^7.32.0 || ^8.2.0", + "eslint-plugin-import": "^2.25.2" } }, - "node_modules/delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true + "node_modules/eslint-config-airbnb-base/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/depd": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/depd/-/depd-2.0.0.tgz", - "integrity": "sha512-g7nH6P6dyDioJogAAGprGpCtVImJhpPk/roCzdb3fIh61/s/nPsfR6onyMwkCAR/OlC3yBC0lESvUoQEAssIrw==", + "node_modules/eslint-config-prettier": { + "version": "8.5.0", + "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", + "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", "dev": true, - "engines": { - "node": ">= 0.8" + "bin": { + "eslint-config-prettier": "bin/cli.js" + }, + "peerDependencies": { + "eslint": ">=7.0.0" } }, - "node_modules/deprecation": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/deprecation/-/deprecation-2.3.1.tgz", - "integrity": "sha512-xmHIy4F3scKVwMsQ4WnVaS8bHOx0DmVwRywosKhaILI0ywMDWPtBSku2HNxRvF7jtwDRsoEwYQSfbxj8b7RlJQ==", - "dev": true + "node_modules/eslint-import-resolver-node": { + "version": "0.3.7", + "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", + "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "dev": true, + "dependencies": { + "debug": "^3.2.7", + "is-core-module": "^2.11.0", + "resolve": "^1.22.1" + } }, - "node_modules/dequal": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/dequal/-/dequal-2.0.3.tgz", - "integrity": "sha512-0je+qPKHEMohvfRTCEo3CrPG6cAzAYgmzKyxRiYSSDkS6eGJdyVJm7WaYA5ECaAD9wLB2T4EEeymA5aFVcYXCA==", + "node_modules/eslint-import-resolver-node/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/destroy": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.2.0.tgz", - "integrity": "sha512-2sJGJTaXIIaR1w4iJSNoN0hnMY7Gpc/n8D4qSCJw8QqFWXf7cuAgnEHxBpweaVcPevC2l3KpjYCx3NypQQgaJg==", + "node_modules/eslint-module-utils": { + "version": "2.7.4", + "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", + "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", "dev": true, + "dependencies": { + "debug": "^3.2.7" + }, "engines": { - "node": ">= 0.8", - "npm": "1.2.8000 || >= 1.4.16" + "node": ">=4" + }, + "peerDependenciesMeta": { + "eslint": { + "optional": true + } } }, - "node_modules/detect-indent": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/detect-indent/-/detect-indent-6.1.0.tgz", - "integrity": "sha512-reYkTUJAZb9gUuZ2RvVCNhVHdg62RHnJ7WJl8ftMi4diZ6NWlciOzQN88pUhSELEwflJht4oQDv0F0BMlwaYtA==", + "node_modules/eslint-module-utils/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/detect-libc": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-libc/-/detect-libc-2.0.1.tgz", - "integrity": "sha512-463v3ZeIrcWtdgIg6vI6XUncguvr2TnGl4SzDXinkt9mSLpBJKXT3mW6xT3VQdDN11+WVs29pgvivTc4Lp8v+w==", + "node_modules/eslint-plugin-import": { + "version": "2.27.5", + "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", + "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "dev": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flat": "^1.3.1", + "array.prototype.flatmap": "^1.3.1", + "debug": "^3.2.7", + "doctrine": "^2.1.0", + "eslint-import-resolver-node": "^0.3.7", + "eslint-module-utils": "^2.7.4", + "has": "^1.0.3", + "is-core-module": "^2.11.0", + "is-glob": "^4.0.3", + "minimatch": "^3.1.2", + "object.values": "^1.1.6", + "resolve": "^1.22.1", + "semver": "^6.3.0", + "tsconfig-paths": "^3.14.1" + }, "engines": { - "node": ">=8" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" } }, - "node_modules/detect-newline": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/detect-newline/-/detect-newline-3.1.0.tgz", - "integrity": "sha512-TLz+x/vEXm/Y7P7wn1EJFNLxYpUD4TgMosxY6fAVJUnJMbupHBOncxyWUG9OpTaH9EBD7uFI5LfEgmMOc54DsA==", + "node_modules/eslint-plugin-import/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "ms": "^2.1.1" } }, - "node_modules/detect-node": { + "node_modules/eslint-plugin-import/node_modules/doctrine": { "version": "2.1.0", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.1.0.tgz", - "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", - "dev": true - }, - "node_modules/detect-package-manager": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", - "integrity": "sha512-j/lJHyoLlWi6G1LDdLgvUtz60Zo5GEj+sVYtTVXnYLDPuzgC3llMxonXym9zIwhhUII8vjdw0LXxavpLqTbl1A==", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "dependencies": { - "execa": "^5.1.1" + "esutils": "^2.0.2" }, "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/detect-port": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/detect-port/-/detect-port-1.5.1.tgz", - "integrity": "sha512-aBzdj76lueB6uUst5iAs7+0H/oOjqI5D16XUWxlWMIMROhcM0rfsNVk93zTngq1dDNpoXRr++Sus7ETAExppAQ==", + "node_modules/eslint-plugin-import/node_modules/json5": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", + "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", "dev": true, "dependencies": { - "address": "^1.0.1", - "debug": "4" + "minimist": "^1.2.0" }, "bin": { - "detect": "bin/detect-port.js", - "detect-port": "bin/detect-port.js" + "json5": "lib/cli.js" } }, - "node_modules/diff": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/diff/-/diff-4.0.2.tgz", - "integrity": "sha512-58lmxKSA4BNyLz+HHMUzlOEpg09FV+ev6ZMe3vJihgdxzgcwZ8VoEEPmALCZG9LmqfVoNMMKpttIYTVG6uDY7A==", + "node_modules/eslint-plugin-import/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": ">=0.3.1" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/diff-sequences": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/diff-sequences/-/diff-sequences-27.5.1.tgz", - "integrity": "sha512-k1gCAXAsNgLwEL+Y8Wvl+M6oEFj5bgazfZULpS5CneoPPXRaCCW7dm+q21Ky2VEE5X+VeRDBVg1Pcvvsr4TtNQ==", + "node_modules/eslint-plugin-import/node_modules/strip-bom": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", + "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=4" } }, - "node_modules/dir-glob": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/dir-glob/-/dir-glob-3.0.1.tgz", - "integrity": "sha512-WkrWp9GR4KXfKGYzOLmTuGVi1UWFfws377n9cc55/tb6DuqyF6pcQ5AbiHEshaDpY9v6oaSr2XCDidGmMwdzIA==", + "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { + "version": "3.15.0", + "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", + "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", "dev": true, "dependencies": { - "path-type": "^4.0.0" - }, - "engines": { - "node": ">=8" + "@types/json5": "^0.0.29", + "json5": "^1.0.2", + "minimist": "^1.2.6", + "strip-bom": "^3.0.0" } }, - "node_modules/dlv": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/dlv/-/dlv-1.1.3.tgz", - "integrity": "sha512-+HlytyjlPKnIG8XuRG8WvmBP8xs8P71y+SKKS6ZXWoEgLuePxtDoUEiH7WkdePWrQ5JBpE6aoVqfZfJUQkjXwA==", - "dev": true - }, - "node_modules/dns-equal": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/dns-equal/-/dns-equal-1.0.0.tgz", - "integrity": "sha512-z+paD6YUQsk+AbGCEM4PrOXSss5gd66QfcVBFTKR/HpFL9jCqikS94HYwKww6fQyO7IxrIIyUu+g0Ka9tUS2Cg==", - "dev": true - }, - "node_modules/dns-packet": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/dns-packet/-/dns-packet-5.3.1.tgz", - "integrity": "sha512-spBwIj0TK0Ey3666GwIdWVfUpLyubpU53BTCu8iPn4r4oXd9O14Hjg3EHw3ts2oed77/SeckunUYCyRlSngqHw==", + "node_modules/eslint-plugin-jest": { + "version": "27.9.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.9.0.tgz", + "integrity": "sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==", "dev": true, "dependencies": { - "@leichtgewicht/ip-codec": "^2.0.1" + "@typescript-eslint/utils": "^5.10.0" }, "engines": { - "node": ">=6" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "peerDependencies": { + "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0 || ^7.0.0", + "eslint": "^7.0.0 || ^8.0.0", + "jest": "*" + }, + "peerDependenciesMeta": { + "@typescript-eslint/eslint-plugin": { + "optional": true + }, + "jest": { + "optional": true + } } }, - "node_modules/doctrine": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-3.0.0.tgz", - "integrity": "sha512-yS+Q5i3hBf7GBkd4KG8a7eBNNWNGLTaEwwYWUijIYM7zrlYDM0BFXHjjPWlWZ1Rg7UaddZeIDmi9jF3HmqiQ2w==", + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/scope-manager": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", + "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0" }, "engines": { - "node": ">=6.0.0" - } - }, - "node_modules/dom-accessibility-api": { - "version": "0.5.16", - "resolved": "https://registry.npmjs.org/dom-accessibility-api/-/dom-accessibility-api-0.5.16.tgz", - "integrity": "sha512-X7BJ2yElsnOJ30pZF4uIIDfBEVgF4XEBxL9Bxhy6dnrm5hkzqmsWHGTiHqRiITNhMyFLyAiWndIJP7Z1NTteDg==", - "dev": true - }, - "node_modules/dom-converter": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/dom-converter/-/dom-converter-0.2.0.tgz", - "integrity": "sha512-gd3ypIPfOMr9h5jIKq8E3sHOTCjeirnl0WK5ZdS1AW0Odt0b1PaWaHdJ4Qk4klv+YB9aJBS7mESXjFoDQPu6DA==", - "dev": true, - "dependencies": { - "utila": "~0.4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/dom-serializer": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/dom-serializer/-/dom-serializer-1.4.1.tgz", - "integrity": "sha512-VHwB3KfrcOOkelEG2ZOfxqLZdfkil8PtJi4P8N2MMXucZq2yLp75ClViUlOVwyoHEDjYU433Aq+5zWP61+RGag==", + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/types": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", + "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", "dev": true, - "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.2.0", - "entities": "^2.0.0" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/cheeriojs/dom-serializer?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/domelementtype": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/domelementtype/-/domelementtype-2.3.0.tgz", - "integrity": "sha512-OLETBj6w0OsagBwdXnPdN0cnMfF9opN69co+7ZrbfPGrdpPVNBUj02spi6B1N7wChLQiPn4CSH/zJvXw56gmHw==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ] - }, - "node_modules/domexception": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/domexception/-/domexception-2.0.1.tgz", - "integrity": "sha512-yxJ2mFy/sibVQlu5qHjOkf9J3K6zgmCxgJ94u2EdvDOV09H+32LtRswEcUsmUWN72pVLOEnTSRaIVVzVQgS0dg==", + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", + "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", "dev": true, "dependencies": { - "webidl-conversions": "^5.0.0" + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/visitor-keys": "5.62.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/domexception/node_modules/webidl-conversions": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-5.0.0.tgz", - "integrity": "sha512-VlZwKPCkYKxQgeSbH5EyngOmRp7Ww7I9rQLERETtf5ofd9pGeswWiOtogpEO850jziPRarreGxn5QIiTqpb2wA==", - "dev": true, - "engines": { - "node": ">=8" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/domhandler": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/domhandler/-/domhandler-4.3.1.tgz", - "integrity": "sha512-GrwoxYN+uWlzO8uhUXRl0P+kHE4GtVPfYzVLcUxPL7KNdHKj66vvlhiweIHqYYXWlw+T8iLMp42Lm67ghw4WMQ==", + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/utils": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", + "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", "dev": true, "dependencies": { - "domelementtype": "^2.2.0" + "@eslint-community/eslint-utils": "^4.2.0", + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.62.0", + "@typescript-eslint/types": "5.62.0", + "@typescript-eslint/typescript-estree": "5.62.0", + "eslint-scope": "^5.1.1", + "semver": "^7.3.7" }, "engines": { - "node": ">= 4" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/fb55/domhandler?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/domutils": { - "version": "2.8.0", - "resolved": "https://registry.npmjs.org/domutils/-/domutils-2.8.0.tgz", - "integrity": "sha512-w96Cjofp72M5IIhpjgobBimYEfoPjx1Vx0BSX9P30WBdZW2WIKU0T1Bd0kz2eNZ9ikjKgHbEyKx8BB6H1L3h3A==", + "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.62.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", + "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", "dev": true, "dependencies": { - "dom-serializer": "^1.0.1", - "domelementtype": "^2.2.0", - "domhandler": "^4.2.0" + "@typescript-eslint/types": "5.62.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/fb55/domutils?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/dot-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-2.1.1.tgz", - "integrity": "sha512-HnM6ZlFqcajLsyudHq7LeeLDr2rFAVYtDv/hV5qchQEidSck8j9OPUsXY9KwJv/lHMtYlX4DjRQqwFYa+0r8Ug==", + "node_modules/eslint-plugin-jsx-a11y": { + "version": "6.5.1", + "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", + "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", "dev": true, "dependencies": { - "no-case": "^2.2.0" + "@babel/runtime": "^7.16.3", + "aria-query": "^4.2.2", + "array-includes": "^3.1.4", + "ast-types-flow": "^0.0.7", + "axe-core": "^4.3.5", + "axobject-query": "^2.2.0", + "damerau-levenshtein": "^1.0.7", + "emoji-regex": "^9.2.2", + "has": "^1.0.3", + "jsx-ast-utils": "^3.2.1", + "language-tags": "^1.0.5", + "minimatch": "^3.0.4" + }, + "engines": { + "node": ">=4.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/dot-prop": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/dot-prop/-/dot-prop-6.0.1.tgz", - "integrity": "sha512-tE7ztYzXHIeyvc7N+hR3oi7FIbf/NIjVP9hmAt3yMXzrQ072/fpjGLx2GxNxGxUl5V73MEqYzioOMoVhGMJ5cA==", + "node_modules/eslint-plugin-prettier": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz", + "integrity": "sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==", "dev": true, "dependencies": { - "is-obj": "^2.0.0" + "prettier-linter-helpers": "^1.0.0" }, "engines": { - "node": ">=10" + "node": ">=6.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "eslint": ">=7.28.0", + "prettier": ">=2.0.0" + }, + "peerDependenciesMeta": { + "eslint-config-prettier": { + "optional": true + } } }, - "node_modules/dotenv": { - "version": "16.0.3", - "resolved": "https://registry.npmjs.org/dotenv/-/dotenv-16.0.3.tgz", - "integrity": "sha512-7GO6HghkA5fYG9TYnNxi14/7K9f5occMlp3zXAuSxn7CKCxt9xbNWG7yF8hTCSUchlfWSe3uLmlPfigevRItzQ==", + "node_modules/eslint-plugin-react": { + "version": "7.32.2", + "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", + "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", "dev": true, + "peer": true, + "dependencies": { + "array-includes": "^3.1.6", + "array.prototype.flatmap": "^1.3.1", + "array.prototype.tosorted": "^1.1.1", + "doctrine": "^2.1.0", + "estraverse": "^5.3.0", + "jsx-ast-utils": "^2.4.1 || ^3.0.0", + "minimatch": "^3.1.2", + "object.entries": "^1.1.6", + "object.fromentries": "^2.0.6", + "object.hasown": "^1.1.2", + "object.values": "^1.1.6", + "prop-types": "^15.8.1", + "resolve": "^2.0.0-next.4", + "semver": "^6.3.0", + "string.prototype.matchall": "^4.0.8" + }, "engines": { - "node": ">=12" + "node": ">=4" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" } }, - "node_modules/dotenv-expand": { - "version": "10.0.0", - "resolved": "https://registry.npmjs.org/dotenv-expand/-/dotenv-expand-10.0.0.tgz", - "integrity": "sha512-GopVGCpVS1UKH75VKHGuQFqS1Gusej0z4FyQkPdwjil2gNIv+LNsqBlboOzpJFZKVT95GkCyWJbBSdFEFUWI2A==", + "node_modules/eslint-plugin-react-hooks": { + "version": "4.6.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", + "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", "dev": true, + "peer": true, "engines": { - "node": ">=12" - } - }, - "node_modules/dts-css-modules-loader": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/dts-css-modules-loader/-/dts-css-modules-loader-2.0.1.tgz", - "integrity": "sha512-blro23xBe6+gPZCW9AIwG2aL8ot2hyNHDeIUWVoyIYRGfv/5TWEMQNTnKGcuOf5iADyChU6Xbi5nzaj4YCChFQ==", - "dev": true, + "node": ">=10" + }, "peerDependencies": { - "css-loader": "^2.0.0 || ^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0" - } - }, - "node_modules/earcut": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", - "integrity": "sha512-/pjZsA1b4RPHbeWZQn66SWS8nZZWLQQ23oE3Eam7aroEFGEvwKAsJfZ9ytiEMycfzXWpca4FA9QIOehf7PocBQ==" - }, - "node_modules/eastasianwidth": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/eastasianwidth/-/eastasianwidth-0.2.0.tgz", - "integrity": "sha512-I88TYZWc9XiYHRQ4/3c5rjjfgkjhLyW2luGIheGERbNQ6OY7yTybanSpDXZa8y7VUP9YmDcYa+eyq4ca7iLqWA==", - "dev": true - }, - "node_modules/ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha512-eh9O+hwRHNbG4BLTjEl3nw044CkGm5X6LoaCf7LPp7UU8Qrt47JYNi6nPX8xjW97TKGKm1ouctg0QSpZe9qrnw==", - "dependencies": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" + "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" } }, - "node_modules/ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha512-WMwm9LhRUo+WUaRN+vRuETqG89IgZphVSNkdFgeb6sS/E4OrDIN7t48CAewSHXc6C8lefD8KKfr5vY61brQlow==", - "dev": true - }, - "node_modules/ejs": { - "version": "3.1.8", - "resolved": "https://registry.npmjs.org/ejs/-/ejs-3.1.8.tgz", - "integrity": "sha512-/sXZeMlhS0ArkfX2Aw780gJzXSMPnKjtspYZv+f3NiKLlubezAHDU5+9xz6gd3/NhG3txQCo6xlglmTS+oTGEQ==", + "node_modules/eslint-plugin-react/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, + "peer": true, "dependencies": { - "jake": "^10.8.5" - }, - "bin": { - "ejs": "bin/cli.js" + "esutils": "^2.0.2" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/electron-to-chromium": { - "version": "1.4.293", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.293.tgz", - "integrity": "sha512-h7vBlhC83NsgC9UO3LOZx91xgstIrHk5iqMbZgnEArL5rHTM6HfsUZhnwb3oRnNetXM1741kB9SO7x9jLshz5A==", - "dev": true - }, - "node_modules/emittery": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/emittery/-/emittery-0.8.1.tgz", - "integrity": "sha512-uDfvUjVrfGJJhymx/kz6prltenw1u7WrCg1oa94zYY8xxVpLLUu045LAT0dhDZdXG58/EpPL/5kA180fQ/qudg==", + "node_modules/eslint-plugin-react/node_modules/resolve": { + "version": "2.0.0-next.4", + "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", + "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", "dev": true, - "engines": { - "node": ">=10" + "peer": true, + "dependencies": { + "is-core-module": "^2.9.0", + "path-parse": "^1.0.7", + "supports-preserve-symlinks-flag": "^1.0.0" + }, + "bin": { + "resolve": "bin/resolve" }, "funding": { - "url": "https://github.com/sindresorhus/emittery?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/emoji-regex": { - "version": "9.2.2", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-9.2.2.tgz", - "integrity": "sha512-L18DaJsXSUk2+42pv8mLs5jJT2hqFkFE4j21wOmgbUqsZ2hL72NsUU785g9RXgo3s0ZNgVl42TiHp3ZtOv/Vyg==", - "dev": true - }, - "node_modules/emojis-list": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-3.0.0.tgz", - "integrity": "sha512-/kyM18EfinwXZbno9FyUGeFh87KC8HRQBQGildHZbEuRyWFOmv1U10o9BBp8XVZDVNNuQKyIGIu5ZYAAXJ0V2Q==", + "node_modules/eslint-plugin-react/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "engines": { - "node": ">= 4" + "peer": true, + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha512-TPJXq8JqFaVYm2CWmPvnP2Iyo4ZSM7/QKcSmuMLDObfpH5fi7RUGmd/rTDf+rut/saiDiQEeVTNgAmJEdAOx0w==", + "node_modules/eslint-plugin-storybook": { + "version": "0.6.10", + "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.10.tgz", + "integrity": "sha512-3DKXRey06EhwnTKaG6fgMqGTy4C3z6Ikyv6VVixO5BvaExWQe3yGWIAufrC2Et0OaAMIaMwx9KWjqb/Wq+JxPg==", "dev": true, + "dependencies": { + "@storybook/csf": "^0.0.1", + "@typescript-eslint/utils": "^5.45.0", + "requireindex": "^1.1.0", + "ts-dedent": "^2.2.0" + }, "engines": { - "node": ">= 0.8" + "node": "12.x || 14.x || >= 16" + }, + "peerDependencies": { + "eslint": ">=6" } }, - "node_modules/encoding": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/encoding/-/encoding-0.1.13.tgz", - "integrity": "sha512-ETBauow1T35Y/WZMkio9jiM0Z5xjHHmJ4XmjZOq1l/dXz3lr2sRn87nJy20RupqSh1F2m3HHPSp8ShIPQJrJ3A==", + "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", + "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "iconv-lite": "^0.6.2" + "lodash": "^4.17.15" } }, - "node_modules/encoding/node_modules/iconv-lite": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.6.3.tgz", - "integrity": "sha512-4fCk79wshMdzMp2rH06qWrJE4iolqLhCUH+OiuIgU++RB0+94NlDL81atO7GX55uUKueo0txHNtvEyI6D7WdMw==", + "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/scope-manager": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz", + "integrity": "sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/visitor-keys": "5.51.0" }, "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/end-of-stream": { - "version": "1.4.4", - "resolved": "https://registry.npmjs.org/end-of-stream/-/end-of-stream-1.4.4.tgz", - "integrity": "sha512-+uw1inIHVPQoaVuHzRyXd21icM+cnt4CzD5rW+NC1wjOUSTOs+Te7FOv7AhN7vS9x/oIyhLP5PR1H+phQAHu5Q==", - "dependencies": { - "once": "^1.4.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/endent": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/endent/-/endent-2.1.0.tgz", - "integrity": "sha512-r8VyPX7XL8U01Xgnb1CjZ3XV+z90cXIJ9JPE/R9SEC9vpw2P6CfsRPJmp20DppC5N7ZAMCmjYkJIa744Iyg96w==", + "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/types": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz", + "integrity": "sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==", "dev": true, - "dependencies": { - "dedent": "^0.7.0", - "fast-json-parse": "^1.0.3", - "objectorarray": "^1.0.5" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/enhanced-resolve": { - "version": "5.9.3", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-5.9.3.tgz", - "integrity": "sha512-Bq9VSor+kjvW3f9/MiiR4eE3XYgOl7/rS8lnSxbRbF3kS0B2r+Y9w5krBWxZgDxASVZbdYrn5wT4j/Wb0J9qow==", + "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/typescript-estree": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz", + "integrity": "sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.4", - "tapable": "^2.2.0" + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/visitor-keys": "5.51.0", + "debug": "^4.3.4", + "globby": "^11.1.0", + "is-glob": "^4.0.3", + "semver": "^7.3.7", + "tsutils": "^3.21.0" }, "engines": { - "node": ">=10.13.0" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/enquirer": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/enquirer/-/enquirer-2.3.6.tgz", - "integrity": "sha512-yjNnPr315/FjS4zIsUxYguYUPP2e1NK4d7E7ZOLiyYCcbFBiTMyID+2wvm2w6+pZ/odMA7cRkjhsPbltwBOrLg==", + "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/utils": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.51.0.tgz", + "integrity": "sha512-76qs+5KWcaatmwtwsDJvBk4H76RJQBFe+Gext0EfJdC3Vd2kpY2Pf//OHHzHp84Ciw0/rYoGTDnIAr3uWhhJYw==", "dev": true, "dependencies": { - "ansi-colors": "^4.1.1" - }, + "@types/json-schema": "^7.0.9", + "@types/semver": "^7.3.12", + "@typescript-eslint/scope-manager": "5.51.0", + "@typescript-eslint/types": "5.51.0", + "@typescript-eslint/typescript-estree": "5.51.0", + "eslint-scope": "^5.1.1", + "eslint-utils": "^3.0.0", + "semver": "^7.3.7" + }, "engines": { - "node": ">=8.6" + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" + }, + "peerDependencies": { + "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" } }, - "node_modules/entities": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/entities/-/entities-2.2.0.tgz", - "integrity": "sha512-p92if5Nz619I0w+akJrLZH0MX0Pb5DX39XOwQTtXSdQQOaYH03S1uIQp4mhOZtAXrxq4ViO67YTiLBo2638o9A==", + "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/visitor-keys": { + "version": "5.51.0", + "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz", + "integrity": "sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==", "dev": true, + "dependencies": { + "@typescript-eslint/types": "5.51.0", + "eslint-visitor-keys": "^3.3.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, "funding": { - "url": "https://github.com/fb55/entities?sponsor=1" + "type": "opencollective", + "url": "https://opencollective.com/typescript-eslint" } }, - "node_modules/env-paths": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/env-paths/-/env-paths-2.2.1.tgz", - "integrity": "sha512-+h1lkLKhZMTYjog1VEpJNG7NZJWcuc2DDk/qsqSTRRCOXiLjeQ1d1/udrUGhqMxUgAlwKNZ0cf2uqan5GLuS2A==", + "node_modules/eslint-scope": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", + "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", "dev": true, + "dependencies": { + "esrecurse": "^4.3.0", + "estraverse": "^4.1.1" + }, "engines": { - "node": ">=6" + "node": ">=8.0.0" } }, - "node_modules/envinfo": { - "version": "7.8.1", - "resolved": "https://registry.npmjs.org/envinfo/-/envinfo-7.8.1.tgz", - "integrity": "sha512-/o+BXHmB7ocbHEAs6F2EnG0ogybVVUdkRunTT2glZU9XAaGmhqskrvKwqXuDfNjEO0LZKWdejEEpnq8aM0tOaw==", + "node_modules/eslint-scope/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, - "bin": { - "envinfo": "dist/cli.js" + "engines": { + "node": ">=4.0" + } + }, + "node_modules/eslint-utils": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", + "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "dev": true, + "dependencies": { + "eslint-visitor-keys": "^2.0.0" }, "engines": { - "node": ">=4" + "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/mysticatea" + }, + "peerDependencies": { + "eslint": ">=5" } }, - "node_modules/err-code": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/err-code/-/err-code-2.0.3.tgz", - "integrity": "sha512-2bmlRpNKBxT/CRmPOlyISQpNj+qSeYvcym/uT0Jx2bMOlKLtSy1ZmLuVxSEKKyor/N5yhvp/ZiG1oE3DEYMSFA==", + "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", + "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", "dev": true, - "optional": true, - "peer": true + "engines": { + "node": ">=10" + } }, - "node_modules/error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", + "node_modules/eslint-visitor-keys": { + "version": "3.4.3", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", + "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", "dev": true, - "dependencies": { - "is-arrayish": "^0.2.1" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + }, + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/error-stack-parser": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/error-stack-parser/-/error-stack-parser-2.1.4.tgz", - "integrity": "sha512-Sk5V6wVazPhq5MhpO+AUxJn5x7XSXGl1R93Vn7i+zS15KDVxQijejNCrz8340/2bgLBjR9GtEG8ZVKONDjcqGQ==", + "node_modules/eslint/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, "dependencies": { - "stackframe": "^1.3.4" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/es-abstract": { - "version": "1.23.1", - "resolved": "https://registry.npmjs.org/es-abstract/-/es-abstract-1.23.1.tgz", - "integrity": "sha512-r+YVn6hTqQb+P5kK0u3KeDqrmhHKm+OhU/Mw4jSL4eQtOxXmp75fXIUUb3sUqFZOlb/YtW5JRaIfEC3UyjYUZQ==", + "node_modules/eslint/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "array-buffer-byte-length": "^1.0.1", - "arraybuffer.prototype.slice": "^1.0.3", - "available-typed-arrays": "^1.0.7", - "call-bind": "^1.0.7", - "data-view-buffer": "^1.0.1", - "data-view-byte-length": "^1.0.1", - "data-view-byte-offset": "^1.0.0", - "es-define-property": "^1.0.0", - "es-errors": "^1.3.0", - "es-object-atoms": "^1.0.0", - "es-set-tostringtag": "^2.0.3", - "es-to-primitive": "^1.2.1", - "function.prototype.name": "^1.1.6", - "get-intrinsic": "^1.2.4", - "get-symbol-description": "^1.0.2", - "globalthis": "^1.0.3", - "gopd": "^1.0.1", - "has-property-descriptors": "^1.0.2", - "has-proto": "^1.0.3", - "has-symbols": "^1.0.3", - "hasown": "^2.0.2", - "internal-slot": "^1.0.7", - "is-array-buffer": "^3.0.4", - "is-callable": "^1.2.7", - "is-data-view": "^1.0.1", - "is-negative-zero": "^2.0.3", - "is-regex": "^1.1.4", - "is-shared-array-buffer": "^1.0.3", - "is-string": "^1.0.7", - "is-typed-array": "^1.1.13", - "is-weakref": "^1.0.2", - "object-inspect": "^1.13.1", - "object-keys": "^1.1.1", - "object.assign": "^4.1.5", - "regexp.prototype.flags": "^1.5.2", - "safe-array-concat": "^1.1.2", - "safe-regex-test": "^1.0.3", - "string.prototype.trim": "^1.2.8", - "string.prototype.trimend": "^1.0.7", - "string.prototype.trimstart": "^1.0.7", - "typed-array-buffer": "^1.0.2", - "typed-array-byte-length": "^1.0.1", - "typed-array-byte-offset": "^1.0.2", - "typed-array-length": "^1.0.5", - "unbox-primitive": "^1.0.2", - "which-typed-array": "^1.1.15" + "color-convert": "^2.0.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/es-array-method-boxes-properly": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-array-method-boxes-properly/-/es-array-method-boxes-properly-1.0.0.tgz", - "integrity": "sha512-wd6JXUmyHmt8T5a2xreUwKcGPq6f1f+WwIJkijUqiGcJz1qqnZgP6XIK+QyIWU5lT7imeNxUll48bziG+TSYcA==", - "dev": true - }, - "node_modules/es-define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-define-property/-/es-define-property-1.0.0.tgz", - "integrity": "sha512-jxayLKShrEqqzJ0eumQbVhTYQM27CfT1T35+gCgDFoL82JLsXqTJ76zv6A0YLOgEnLUMvLzsDsGIrl8NFpT2gQ==", + "node_modules/eslint/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.4" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/es-errors": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/es-errors/-/es-errors-1.3.0.tgz", - "integrity": "sha512-Zf5H2Kxt2xjTvbJvP2ZWLEICxA6j+hAmMzIlypy4xcBg1vKVnx89Wy0GbS+kf5cwCVFFzdCFh2XSCFNULS6csw==", + "node_modules/eslint/node_modules/escape-string-regexp": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", + "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", "dev": true, "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-get-iterator": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/es-get-iterator/-/es-get-iterator-1.1.3.tgz", - "integrity": "sha512-sPZmqHBe6JIiTfN5q2pEi//TwxmAFHwj/XEuYjTuse78i8KxaqMTTzxPoFKuzRpDpTJ+0NAbpfenkmH2rePtuw==", + "node_modules/eslint/node_modules/eslint-scope": { + "version": "7.2.2", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", + "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.3", - "has-symbols": "^1.0.3", - "is-arguments": "^1.1.1", - "is-map": "^2.0.2", - "is-set": "^2.0.2", - "is-string": "^1.0.7", - "isarray": "^2.0.5", - "stop-iteration-iterator": "^1.0.0" + "esrecurse": "^4.3.0", + "estraverse": "^5.2.0" + }, + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://opencollective.com/eslint" } }, - "node_modules/es-get-iterator/node_modules/isarray": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-2.0.5.tgz", - "integrity": "sha512-xHjhDr3cNBK0BzdUJSPXZntQUx/mwMS5Rw4A7lPJ90XGAO6ISP/ePDNuo0vhqOZU+UD5JoodwCAAoZQd3FeAKw==", - "dev": true - }, - "node_modules/es-module-lexer": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-0.9.3.tgz", - "integrity": "sha512-1HQ2M2sPtxwnvOvT1ZClHyQDiggdNjURWpY2we6aMKCQiUVxTmVs2UYPLIrD84sS+kMdUwfBSylbJPwNnBrnHQ==", - "dev": true - }, - "node_modules/es-object-atoms": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-object-atoms/-/es-object-atoms-1.0.0.tgz", - "integrity": "sha512-MZ4iQ6JwHOBQjahnjwaC1ZtIBH+2ohjamzAO3oaHcXYup7qxjF2fixyH+Q71voWHeOkI2q/TnJao/KfXYIZWbw==", + "node_modules/eslint/node_modules/find-up": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", + "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", "dev": true, "dependencies": { - "es-errors": "^1.3.0" + "locate-path": "^6.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-set-tostringtag": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/es-set-tostringtag/-/es-set-tostringtag-2.0.3.tgz", - "integrity": "sha512-3T8uNMC3OQTHkFUsFq8r/BwAXLHvU/9O9mE0fBc/MY5iq/8H7ncvO947LmYA6ldWw9Uh8Yhf25zu6n7nML5QWQ==", + "node_modules/eslint/node_modules/globals": { + "version": "13.24.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", + "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", "dev": true, "dependencies": { - "get-intrinsic": "^1.2.4", - "has-tostringtag": "^1.0.2", - "hasown": "^2.0.1" + "type-fest": "^0.20.2" }, "engines": { - "node": ">= 0.4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es-shim-unscopables": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/es-shim-unscopables/-/es-shim-unscopables-1.0.0.tgz", - "integrity": "sha512-Jm6GPcCdC30eMLbZ2x8z2WuRwAws3zTBBKuusffYVUrNj/GVSUAZ+xKMaUpfNDR5IbyNA5LJbaecoUVbmUcB1w==", + "node_modules/eslint/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "has": "^1.0.3" + "engines": { + "node": ">=8" } }, - "node_modules/es-to-primitive": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/es-to-primitive/-/es-to-primitive-1.2.1.tgz", - "integrity": "sha512-QCOllgZJtaUo9miYBcLChTUaHNjJF3PYs1VidD7AwiEj1kYxKeQTctLAezAOH5ZKRH0g2IgPn6KwB4IT8iRpvA==", + "node_modules/eslint/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/eslint/node_modules/locate-path": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", + "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", "dev": true, "dependencies": { - "is-callable": "^1.1.4", - "is-date-object": "^1.0.1", - "is-symbol": "^1.0.2" + "p-locate": "^5.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/es6-object-assign": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", - "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==", - "dev": true - }, - "node_modules/esbuild": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", - "integrity": "sha512-WdOOppmUNU+IbZ0PaDiTst80zjnrOkyJNHoKupIcVyU8Lvla3Ugx94VzkQ32Ijqd7UhHJy75gNWDMUekcrSJ6g==", + "node_modules/eslint/node_modules/p-limit": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", + "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", "dev": true, - "hasInstallScript": true, - "bin": { - "esbuild": "bin/esbuild" + "dependencies": { + "yocto-queue": "^0.1.0" }, "engines": { - "node": ">=12" + "node": ">=10" }, - "optionalDependencies": { - "@esbuild/aix-ppc64": "0.20.2", - "@esbuild/android-arm": "0.20.2", - "@esbuild/android-arm64": "0.20.2", - "@esbuild/android-x64": "0.20.2", - "@esbuild/darwin-arm64": "0.20.2", - "@esbuild/darwin-x64": "0.20.2", - "@esbuild/freebsd-arm64": "0.20.2", - "@esbuild/freebsd-x64": "0.20.2", - "@esbuild/linux-arm": "0.20.2", - "@esbuild/linux-arm64": "0.20.2", - "@esbuild/linux-ia32": "0.20.2", - "@esbuild/linux-loong64": "0.20.2", - "@esbuild/linux-mips64el": "0.20.2", - "@esbuild/linux-ppc64": "0.20.2", - "@esbuild/linux-riscv64": "0.20.2", - "@esbuild/linux-s390x": "0.20.2", - "@esbuild/linux-x64": "0.20.2", - "@esbuild/netbsd-x64": "0.20.2", - "@esbuild/openbsd-x64": "0.20.2", - "@esbuild/sunos-x64": "0.20.2", - "@esbuild/win32-arm64": "0.20.2", - "@esbuild/win32-ia32": "0.20.2", - "@esbuild/win32-x64": "0.20.2" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esbuild-android-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-android-64/-/esbuild-android-64-0.14.43.tgz", - "integrity": "sha512-kqFXAS72K6cNrB6RiM7YJ5lNvmWRDSlpi7ZuRZ1hu1S3w0zlwcoCxWAyM23LQUyZSs1PbjHgdbbfYAN8IGh6xg==", - "cpu": [ - "x64" - ], + "node_modules/eslint/node_modules/p-locate": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", + "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "dependencies": { + "p-limit": "^3.0.2" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esbuild-linux-riscv64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-riscv64/-/esbuild-linux-riscv64-0.14.43.tgz", - "integrity": "sha512-lYcAOUxp85hC7lSjycJUVSmj4/9oEfSyXjb/ua9bNl8afonaduuqtw7hvKMoKuYnVwOCDw4RSfKpcnIRDWq+Bw==", - "cpu": [ - "riscv64" - ], + "node_modules/eslint/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild-linux-s390x": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-s390x/-/esbuild-linux-s390x-0.14.43.tgz", - "integrity": "sha512-27e43ZhHvhFE4nM7HqtUbMRu37I/4eNSUbb8FGZWszV+uLzMIsHDwLoBiJmw7G9N+hrehNPeQ4F5Ujad0DrUKQ==", - "cpu": [ - "s390x" - ], + "node_modules/eslint/node_modules/type-fest": { + "version": "0.20.2", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", + "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esbuild-loader": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/esbuild-loader/-/esbuild-loader-2.19.0.tgz", - "integrity": "sha512-urGNVE6Tl2rqx92ElKi/LiExXjGvcH6HfDBFzJ9Ppwqh4n6Jmx8x7RKAyMzSM78b6CAaJLhDncG5sPrL0ROh5Q==", + "node_modules/espree": { + "version": "9.6.1", + "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", + "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", "dev": true, "dependencies": { - "esbuild": "^0.14.39", - "joycon": "^3.0.1", - "json5": "^2.2.0", - "loader-utils": "^2.0.0", - "tapable": "^2.2.0", - "webpack-sources": "^2.2.0" + "acorn": "^8.9.0", + "acorn-jsx": "^5.3.2", + "eslint-visitor-keys": "^3.4.1" }, - "funding": { - "url": "https://github.com/privatenumber/esbuild-loader?sponsor=1" + "engines": { + "node": "^12.22.0 || ^14.17.0 || >=16.0.0" }, - "peerDependencies": { - "webpack": "^4.40.0 || ^5.0.0" + "funding": { + "url": "https://opencollective.com/eslint" } }, - "node_modules/esbuild-loader/node_modules/esbuild": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.14.43.tgz", - "integrity": "sha512-Uf94+kQmy/5jsFwKWiQB4hfo/RkM9Dh7b79p8yqd1tshULdr25G2szLz631NoH3s2ujnKEKVD16RmOxvCNKRFA==", + "node_modules/esprima": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", + "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", "dev": true, - "hasInstallScript": true, "bin": { - "esbuild": "bin/esbuild" + "esparse": "bin/esparse.js", + "esvalidate": "bin/esvalidate.js" }, "engines": { - "node": ">=12" - }, - "optionalDependencies": { - "esbuild-android-64": "0.14.43", - "esbuild-android-arm64": "0.14.43", - "esbuild-darwin-64": "0.14.43", - "esbuild-darwin-arm64": "0.14.43", - "esbuild-freebsd-64": "0.14.43", - "esbuild-freebsd-arm64": "0.14.43", - "esbuild-linux-32": "0.14.43", - "esbuild-linux-64": "0.14.43", - "esbuild-linux-arm": "0.14.43", - "esbuild-linux-arm64": "0.14.43", - "esbuild-linux-mips64le": "0.14.43", - "esbuild-linux-ppc64le": "0.14.43", - "esbuild-linux-riscv64": "0.14.43", - "esbuild-linux-s390x": "0.14.43", - "esbuild-netbsd-64": "0.14.43", - "esbuild-openbsd-64": "0.14.43", - "esbuild-sunos-64": "0.14.43", - "esbuild-windows-32": "0.14.43", - "esbuild-windows-64": "0.14.43", - "esbuild-windows-arm64": "0.14.43" + "node": ">=4" } }, - "node_modules/esbuild-loader/node_modules/esbuild-android-arm64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-android-arm64/-/esbuild-android-arm64-0.14.43.tgz", - "integrity": "sha512-bKS2BBFh+7XZY9rpjiHGRNA7LvWYbZWP87pLehggTG7tTaCDvj8qQGOU/OZSjCSKDYbgY7Q+oDw8RlYQ2Jt2BA==", - "cpu": [ - "arm64" - ], + "node_modules/esquery": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", + "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "dependencies": { + "estraverse": "^5.1.0" + }, "engines": { - "node": ">=12" + "node": ">=0.10" } }, - "node_modules/esbuild-loader/node_modules/esbuild-darwin-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-darwin-64/-/esbuild-darwin-64-0.14.43.tgz", - "integrity": "sha512-/3PSilx011ttoieRGkSZ0XV8zjBf2C9enV4ScMMbCT4dpx0mFhMOpFnCHkOK0pWGB8LklykFyHrWk2z6DENVUg==", - "cpu": [ - "x64" - ], + "node_modules/esrecurse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", + "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], + "dependencies": { + "estraverse": "^5.2.0" + }, "engines": { - "node": ">=12" + "node": ">=4.0" } }, - "node_modules/esbuild-loader/node_modules/esbuild-darwin-arm64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-darwin-arm64/-/esbuild-darwin-arm64-0.14.43.tgz", - "integrity": "sha512-1HyFUKs8DMCBOvw1Qxpr5Vv/ThNcVIFb5xgXWK3pyT40WPvgYIiRTwJCvNs4l8i5qWF8/CK5bQxJVDjQvtv0Yw==", - "cpu": [ - "arm64" - ], + "node_modules/estraverse": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", + "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": ">=12" + "node": ">=4.0" } }, - "node_modules/esbuild-loader/node_modules/esbuild-freebsd-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-64/-/esbuild-freebsd-64-0.14.43.tgz", - "integrity": "sha512-FNWc05TPHYgaXjbPZO5/rJKSBslfG6BeMSs8GhwnqAKP56eEhvmzwnIz1QcC9cRVyO+IKqWNfmHFkCa1WJTULA==", - "cpu": [ - "x64" - ], + "node_modules/esutils": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", + "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], "engines": { - "node": ">=12" + "node": ">=0.10.0" } }, - "node_modules/esbuild-loader/node_modules/esbuild-freebsd-arm64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-freebsd-arm64/-/esbuild-freebsd-arm64-0.14.43.tgz", - "integrity": "sha512-amrYopclz3VohqisOPR6hA3GOWA3LZC1WDLnp21RhNmoERmJ/vLnOpnrG2P/Zao+/erKTCUqmrCIPVtj58DRoA==", - "cpu": [ - "arm64" - ], + "node_modules/etag": { + "version": "1.8.1", + "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", + "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], "engines": { - "node": ">=12" + "node": ">= 0.6" } }, - "node_modules/esbuild-loader/node_modules/esbuild-linux-32": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-32/-/esbuild-linux-32-0.14.43.tgz", - "integrity": "sha512-KoxoEra+9O3AKVvgDFvDkiuddCds6q71owSQEYwjtqRV7RwbPzKxJa6+uyzUulHcyGVq0g15K0oKG5CFBcvYDw==", - "cpu": [ - "ia32" - ], + "node_modules/eventemitter3": { + "version": "4.0.7", + "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", + "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + }, + "node_modules/events": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", + "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=12" + "node": ">=0.8.x" } }, - "node_modules/esbuild-loader/node_modules/esbuild-linux-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-64/-/esbuild-linux-64-0.14.43.tgz", - "integrity": "sha512-EwINwGMyiJMgBby5/SbMqKcUhS5AYAZ2CpEBzSowsJPNBJEdhkCTtEjk757TN/wxgbu3QklqDM6KghY660QCUw==", - "cpu": [ - "x64" - ], + "node_modules/execa": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", + "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.0", + "human-signals": "^2.1.0", + "is-stream": "^2.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^4.0.1", + "onetime": "^5.1.2", + "signal-exit": "^3.0.3", + "strip-final-newline": "^2.0.0" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/esbuild-loader/node_modules/esbuild-linux-arm": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm/-/esbuild-linux-arm-0.14.43.tgz", - "integrity": "sha512-e6YzQUoDxxtyamuF12eVzzRC7bbEFSZohJ6igQB9tBqnNmIQY3fI6Cns3z2wxtbZ3f2o6idkD2fQnlvs2902Dg==", - "cpu": [ - "arm" - ], + "node_modules/exenv": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", + "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + }, + "node_modules/exit": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", + "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], "engines": { - "node": ">=12" + "node": ">= 0.8.0" } }, - "node_modules/esbuild-loader/node_modules/esbuild-linux-arm64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-arm64/-/esbuild-linux-arm64-0.14.43.tgz", - "integrity": "sha512-UlSpjMWllAc70zYbHxWuDS3FJytyuR/gHJYBr8BICcTNb/TSOYVBg6U7b3jZ3mILTrgzwJUHwhEwK18FZDouUQ==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "linux" - ], + "node_modules/expand-template": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", + "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", "engines": { - "node": ">=12" + "node": ">=6" } }, - "node_modules/esbuild-loader/node_modules/esbuild-linux-mips64le": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-mips64le/-/esbuild-linux-mips64le-0.14.43.tgz", - "integrity": "sha512-f+v8cInPEL1/SDP//CfSYzcDNgE4CY3xgDV81DWm3KAPWzhvxARrKxB1Pstf5mB56yAslJDxu7ryBUPX207EZA==", - "cpu": [ - "mips64el" - ], + "node_modules/expect": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", + "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@jest/types": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1" + }, "engines": { - "node": ">=12" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/esbuild-loader/node_modules/esbuild-linux-ppc64le": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-linux-ppc64le/-/esbuild-linux-ppc64le-0.14.43.tgz", - "integrity": "sha512-5wZYMDGAL/K2pqkdIsW+I4IR41kyfHr/QshJcNpUfK3RjB3VQcPWOaZmc+74rm4ZjVirYrtz+jWw0SgxtxRanA==", - "cpu": [ - "ppc64" - ], + "node_modules/expect/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, "engines": { - "node": ">=12" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/esbuild-loader/node_modules/esbuild-netbsd-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-netbsd-64/-/esbuild-netbsd-64-0.14.43.tgz", - "integrity": "sha512-2mH4QF6hHBn5zzAfxEI/2eBC0mspVsZ6UVo821LpAJKMvLJPBk3XJO5xwg7paDqSqpl7p6IRrAenW999AEfJhQ==", - "cpu": [ - "x64" - ], + "node_modules/expect/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, - "optional": true, - "os": [ - "netbsd" - ], - "engines": { - "node": ">=12" + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/esbuild-loader/node_modules/esbuild-openbsd-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-openbsd-64/-/esbuild-openbsd-64-0.14.43.tgz", - "integrity": "sha512-ZhQpiZjvqCqO8jKdGp9+8k9E/EHSA+zIWOg+grwZasI9RoblqJ1QiZqqi7jfd6ZrrG1UFBNGe4m0NFxCFbMVbg==", - "cpu": [ - "x64" - ], + "node_modules/expect/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "optional": true, - "os": [ - "openbsd" - ], + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/esbuild-loader/node_modules/esbuild-sunos-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-sunos-64/-/esbuild-sunos-64-0.14.43.tgz", - "integrity": "sha512-DgxSi9DaHReL9gYuul2rrQCAapgnCJkh3LSHPKsY26zytYppG0HgkgVF80zjIlvEsUbGBP/GHQzBtrezj/Zq1Q==", - "cpu": [ - "x64" - ], + "node_modules/expect/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=12" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/esbuild-loader/node_modules/esbuild-windows-32": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-windows-32/-/esbuild-windows-32-0.14.43.tgz", - "integrity": "sha512-Ih3+2O5oExiqm0mY6YYE5dR0o8+AspccQ3vIAtRodwFvhuyGLjb0Hbmzun/F3Lw19nuhPMu3sW2fqIJ5xBxByw==", - "cpu": [ - "ia32" - ], + "node_modules/expect/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "optional": true, - "os": [ - "win32" - ], "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild-loader/node_modules/esbuild-windows-64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-windows-64/-/esbuild-windows-64-0.14.43.tgz", - "integrity": "sha512-8NsuNfI8xwFuJbrCuI+aBqNTYkrWErejFO5aYM+yHqyHuL8mmepLS9EPzAzk8rvfaJrhN0+RvKWAcymViHOKEw==", - "cpu": [ - "x64" - ], + "node_modules/expect/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild-loader/node_modules/esbuild-windows-arm64": { - "version": "0.14.43", - "resolved": "https://registry.npmjs.org/esbuild-windows-arm64/-/esbuild-windows-arm64-0.14.43.tgz", - "integrity": "sha512-7ZlD7bo++kVRblJEoG+cepljkfP8bfuTPz5fIXzptwnPaFwGS6ahvfoYzY7WCf5v/1nX2X02HDraVItTgbHnKw==", - "cpu": [ - "arm64" - ], + "node_modules/express": { + "version": "4.18.1", + "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", + "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "accepts": "~1.3.8", + "array-flatten": "1.1.1", + "body-parser": "1.20.0", + "content-disposition": "0.5.4", + "content-type": "~1.0.4", + "cookie": "0.5.0", + "cookie-signature": "1.0.6", + "debug": "2.6.9", + "depd": "2.0.0", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "etag": "~1.8.1", + "finalhandler": "1.2.0", + "fresh": "0.5.2", + "http-errors": "2.0.0", + "merge-descriptors": "1.0.1", + "methods": "~1.1.2", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "path-to-regexp": "0.1.7", + "proxy-addr": "~2.0.7", + "qs": "6.10.3", + "range-parser": "~1.2.1", + "safe-buffer": "5.2.1", + "send": "0.18.0", + "serve-static": "1.15.0", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "type-is": "~1.6.18", + "utils-merge": "1.0.1", + "vary": "~1.1.2" + }, "engines": { - "node": ">=12" + "node": ">= 0.10.0" } }, - "node_modules/esbuild-plugin-alias": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/esbuild-plugin-alias/-/esbuild-plugin-alias-0.2.1.tgz", - "integrity": "sha512-jyfL/pwPqaFXyKnj8lP8iLk6Z0m099uXR45aSN8Av1XD4vhvQutxxPzgA2bTcAwQpa1zCXDcWOlhFgyP3GKqhQ==", + "node_modules/express/node_modules/array-flatten": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", + "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", "dev": true }, - "node_modules/esbuild-register": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz", - "integrity": "sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==", + "node_modules/express/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, "dependencies": { - "debug": "^4.3.4" - }, - "peerDependencies": { - "esbuild": ">=0.12 <1" + "ms": "2.0.0" } }, - "node_modules/esbuild/node_modules/@esbuild/android-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.20.2.tgz", - "integrity": "sha512-t98Ra6pw2VaDhqNWO2Oph2LXbz/EJcnLmKLGBJwEwXX/JAN83Fym1rU8l0JUWK6HkIbWONCSSatf4sf2NBRx/w==", - "cpu": [ - "arm" - ], - "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } + "node_modules/express/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "node_modules/esbuild/node_modules/@esbuild/android-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.20.2.tgz", - "integrity": "sha512-mRzjLacRtl/tWU0SvD8lUEwb61yP9cqQo6noDZP/O8VkwafSYwZ4yWy24kan8jE/IMERpYncRt2dw438LP3Xmg==", - "cpu": [ - "arm64" - ], + "node_modules/express/node_modules/safe-buffer": { + "version": "5.2.1", + "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", + "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", "dev": true, - "optional": true, - "os": [ - "android" - ], - "engines": { - "node": ">=12" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/esbuild/node_modules/@esbuild/android-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.20.2.tgz", - "integrity": "sha512-btzExgV+/lMGDDa194CcUQm53ncxzeBrWJcncOBxuC6ndBkKxnHdFJn86mCIgTELsooUmwUm9FkhSp5HYu00Rg==", - "cpu": [ - "x64" - ], + "node_modules/extend": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", + "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" + }, + "node_modules/external-editor": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", + "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", "dev": true, - "optional": true, - "os": [ - "android" - ], + "dependencies": { + "chardet": "^0.4.0", + "iconv-lite": "^0.4.17", + "tmp": "^0.0.33" + }, "engines": { - "node": ">=12" + "node": ">=0.12" } }, - "node_modules/esbuild/node_modules/@esbuild/darwin-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.20.2.tgz", - "integrity": "sha512-4J6IRT+10J3aJH3l1yzEg9y3wkTDgDk7TSDFX+wKFiWjqWp/iCfLIYzGyasx9l0SAFPT1HwSCR+0w/h1ES/MjA==", - "cpu": [ - "arm64" - ], + "node_modules/extract-zip": { + "version": "1.7.0", + "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", + "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" + "dependencies": { + "concat-stream": "^1.6.2", + "debug": "^2.6.9", + "mkdirp": "^0.5.4", + "yauzl": "^2.10.0" + }, + "bin": { + "extract-zip": "cli.js" } }, - "node_modules/esbuild/node_modules/@esbuild/darwin-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.20.2.tgz", - "integrity": "sha512-tBcXp9KNphnNH0dfhv8KYkZhjc+H3XBkF5DKtswJblV7KlT9EI2+jeA8DgBjp908WEuYll6pF+UStUCfEpdysA==", - "cpu": [ - "x64" - ], + "node_modules/extract-zip/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "optional": true, - "os": [ - "darwin" - ], - "engines": { - "node": ">=12" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/esbuild/node_modules/@esbuild/freebsd-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.20.2.tgz", - "integrity": "sha512-d3qI41G4SuLiCGCFGUrKsSeTXyWG6yem1KcGZVS+3FYlYhtNoNgYrWcvkOoaqMhwXSMrZRl69ArHsGJ9mYdbbw==", - "cpu": [ - "arm64" - ], - "dev": true, - "optional": true, - "os": [ - "freebsd" - ], - "engines": { - "node": ">=12" - } + "node_modules/extract-zip/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true }, - "node_modules/esbuild/node_modules/@esbuild/freebsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.20.2.tgz", - "integrity": "sha512-d+DipyvHRuqEeM5zDivKV1KuXn9WeRX6vqSqIDgwIfPQtwMP4jaDsQsDncjTDDsExT4lR/91OLjRo8bmC1e+Cw==", - "cpu": [ - "x64" - ], + "node_modules/extsprintf": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", + "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", + "engines": [ + "node >=0.6.0" + ] + }, + "node_modules/fancy-canvas": { + "version": "0.2.2", + "resolved": "https://registry.npmjs.org/fancy-canvas/-/fancy-canvas-0.2.2.tgz", + "integrity": "sha512-50qi8xA0QkHbjmb8h7XQ6k2fvD7y/yMfiUw9YTarJ7rWrq6o5/3CCXPouYk+XSLASvvxtjyiQLRBFt3qkE3oyA==" + }, + "node_modules/fast-deep-equal": { + "version": "3.1.3", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", + "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" + }, + "node_modules/fast-diff": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", + "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", + "dev": true + }, + "node_modules/fast-glob": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", + "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", "dev": true, - "optional": true, - "os": [ - "freebsd" - ], + "dependencies": { + "@nodelib/fs.stat": "^2.0.2", + "@nodelib/fs.walk": "^1.2.3", + "glob-parent": "^5.1.2", + "merge2": "^1.3.0", + "micromatch": "^4.0.4" + }, "engines": { - "node": ">=12" + "node": ">=8.6.0" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-arm": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.20.2.tgz", - "integrity": "sha512-VhLPeR8HTMPccbuWWcEUD1Az68TqaTYyj6nfE4QByZIQEQVWBB8vup8PpR7y1QHL3CpcF6xd5WVBU/+SBEvGTg==", - "cpu": [ - "arm" - ], + "node_modules/fast-glob/node_modules/glob-parent": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", + "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "is-glob": "^4.0.1" + }, "engines": { - "node": ">=12" + "node": ">= 6" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.20.2.tgz", - "integrity": "sha512-9pb6rBjGvTFNira2FLIWqDk/uaf42sSyLE8j1rnUpuzsODBq7FvpwHYZxQ/It/8b+QOS1RYfqgGFNLRI+qlq2A==", - "cpu": [ - "arm64" - ], + "node_modules/fast-json-parse": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", + "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", + "dev": true + }, + "node_modules/fast-json-stable-stringify": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", + "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" + }, + "node_modules/fast-levenshtein": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", + "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", + "dev": true + }, + "node_modules/fast-safe-stringify": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz", + "integrity": "sha512-QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw==", + "dev": true + }, + "node_modules/fastest-levenshtein": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", + "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "dev": true + }, + "node_modules/fastq": { + "version": "1.13.0", + "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", + "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "reusify": "^1.0.4" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.20.2.tgz", - "integrity": "sha512-o10utieEkNPFDZFQm9CoP7Tvb33UutoJqg3qKf1PWVeeJhJw0Q347PxMvBgVVFgouYLGIhFYG0UGdBumROyiig==", - "cpu": [ - "ia32" - ], + "node_modules/faye-websocket": { + "version": "0.11.4", + "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", + "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "websocket-driver": ">=0.5.1" + }, "engines": { - "node": ">=12" + "node": ">=0.8.0" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-loong64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.20.2.tgz", - "integrity": "sha512-PR7sp6R/UC4CFVomVINKJ80pMFlfDfMQMYynX7t1tNTeivQ6XdX5r2XovMmha/VjR1YN/HgHWsVcTRIMkymrgQ==", - "cpu": [ - "loong64" - ], + "node_modules/fb-watchman": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", + "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "bser": "2.1.1" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-mips64el": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.20.2.tgz", - "integrity": "sha512-4BlTqeutE/KnOiTG5Y6Sb/Hw6hsBOZapOVF6njAESHInhlQAghVVZL1ZpIctBOoTFbQyGW+LsVYZ8lSSB3wkjA==", - "cpu": [ - "mips64el" - ], + "node_modules/fd-slicer": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", + "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "pend": "~1.2.0" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-ppc64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.20.2.tgz", - "integrity": "sha512-rD3KsaDprDcfajSKdn25ooz5J5/fWBylaaXkuotBDGnMnDP1Uv5DLAN/45qfnf3JDYyJv/ytGHQaziHUdyzaAg==", - "cpu": [ - "ppc64" - ], + "node_modules/fetch-blob": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", + "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", "dev": true, - "optional": true, - "os": [ - "linux" + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "paypal", + "url": "https://paypal.me/jimmywarting" + } ], + "dependencies": { + "node-domexception": "^1.0.0", + "web-streams-polyfill": "^3.0.3" + }, "engines": { - "node": ">=12" + "node": "^12.20 || >= 14.13" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-riscv64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.20.2.tgz", - "integrity": "sha512-snwmBKacKmwTMmhLlz/3aH1Q9T8v45bKYGE3j26TsaOVtjIag4wLfWSiZykXzXuE1kbCE+zJRmwp+ZbIHinnVg==", - "cpu": [ - "riscv64" - ], + "node_modules/fetch-retry": { + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", + "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==", + "dev": true + }, + "node_modules/figures": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", + "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, "engines": { - "node": ">=12" + "node": ">=4" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-s390x": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.20.2.tgz", - "integrity": "sha512-wcWISOobRWNm3cezm5HOZcYz1sKoHLd8VL1dl309DiixxVFoFe/o8HnwuIwn6sXre88Nwj+VwZUvJf4AFxkyrQ==", - "cpu": [ - "s390x" - ], + "node_modules/file-entry-cache": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", + "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", "dev": true, - "optional": true, - "os": [ - "linux" - ], + "dependencies": { + "flat-cache": "^3.0.4" + }, "engines": { - "node": ">=12" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/esbuild/node_modules/@esbuild/linux-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.20.2.tgz", - "integrity": "sha512-1MdwI6OOTsfQfek8sLwgyjOXAu+wKhLEoaOLTjbijk6E2WONYpH9ZU2mNtR+lZ2B4uwr+usqGuVfFT9tMtGvGw==", - "cpu": [ - "x64" - ], + "node_modules/file-system-cache": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", + "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", "dev": true, - "optional": true, - "os": [ - "linux" - ], - "engines": { - "node": ">=12" + "dependencies": { + "fs-extra": "11.1.1", + "ramda": "0.29.0" } }, - "node_modules/esbuild/node_modules/@esbuild/netbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.20.2.tgz", - "integrity": "sha512-K8/DhBxcVQkzYc43yJXDSyjlFeHQJBiowJ0uVL6Tor3jGQfSGHNNJcWxNbOI8v5k82prYqzPuwkzHt3J1T1iZQ==", - "cpu": [ - "x64" - ], + "node_modules/file-system-cache/node_modules/fs-extra": { + "version": "11.1.1", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", + "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", "dev": true, - "optional": true, - "os": [ - "netbsd" - ], + "dependencies": { + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" + }, "engines": { - "node": ">=12" + "node": ">=14.14" } }, - "node_modules/esbuild/node_modules/@esbuild/openbsd-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.20.2.tgz", - "integrity": "sha512-eMpKlV0SThJmmJgiVyN9jTPJ2VBPquf6Kt/nAoo6DgHAoN57K15ZghiHaMvqjCye/uU4X5u3YSMgVBI1h3vKrQ==", - "cpu": [ - "x64" - ], + "node_modules/filelist": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", + "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", "dev": true, - "optional": true, - "os": [ - "openbsd" - ], - "engines": { - "node": ">=12" + "dependencies": { + "minimatch": "^5.0.1" } }, - "node_modules/esbuild/node_modules/@esbuild/sunos-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.20.2.tgz", - "integrity": "sha512-2UyFtRC6cXLyejf/YEld4Hajo7UHILetzE1vsRcGL3earZEW77JxrFjH4Ez2qaTiEfMgAXxfAZCm1fvM/G/o8w==", - "cpu": [ - "x64" - ], + "node_modules/filelist/node_modules/brace-expansion": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", + "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", "dev": true, - "optional": true, - "os": [ - "sunos" - ], - "engines": { - "node": ">=12" + "dependencies": { + "balanced-match": "^1.0.0" } }, - "node_modules/esbuild/node_modules/@esbuild/win32-arm64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.20.2.tgz", - "integrity": "sha512-GRibxoawM9ZCnDxnP3usoUDO9vUkpAxIIZ6GQI+IlVmr5kP3zUq+l17xELTHMWTWzjxa2guPNyrpq1GWmPvcGQ==", - "cpu": [ - "arm64" - ], + "node_modules/filelist/node_modules/minimatch": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", + "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "brace-expansion": "^2.0.1" + }, "engines": { - "node": ">=12" + "node": ">=10" } }, - "node_modules/esbuild/node_modules/@esbuild/win32-ia32": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.20.2.tgz", - "integrity": "sha512-HfLOfn9YWmkSKRQqovpnITazdtquEW8/SoHW7pWpuEeguaZI4QnCRW6b+oZTztdBnZOS2hqJ6im/D5cPzBTTlQ==", - "cpu": [ - "ia32" - ], + "node_modules/fill-range": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", + "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "to-regex-range": "^5.0.1" + }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/esbuild/node_modules/@esbuild/win32-x64": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.20.2.tgz", - "integrity": "sha512-N49X4lJX27+l9jbLKSqZ6bKNjzQvHaT8IIFUy+YIqmXQdjYCToGWwOItDrfby14c78aDd5NHQl29xingXfCdLQ==", - "cpu": [ - "x64" - ], + "node_modules/finalhandler": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", + "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", "dev": true, - "optional": true, - "os": [ - "win32" - ], + "dependencies": { + "debug": "2.6.9", + "encodeurl": "~1.0.2", + "escape-html": "~1.0.3", + "on-finished": "2.4.1", + "parseurl": "~1.3.3", + "statuses": "2.0.1", + "unpipe": "~1.0.0" + }, "engines": { - "node": ">=12" + "node": ">= 0.8" } }, - "node_modules/escalade": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/escalade/-/escalade-3.1.1.tgz", - "integrity": "sha512-k0er2gUkLf8O0zKJiAhmkTnJlTvINGv7ygDNPbeIsX/TJjGJZHuh9B2UxbsaEkmlEo9MfhrSzmhIlhRlI2GXnw==", + "node_modules/finalhandler/node_modules/debug": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", + "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", "dev": true, - "engines": { - "node": ">=6" + "dependencies": { + "ms": "2.0.0" } }, - "node_modules/escape-goat": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-goat/-/escape-goat-4.0.0.tgz", - "integrity": "sha512-2Sd4ShcWxbx6OY1IHyla/CVNwvg7XwZVoXZHcSu9w9SReNP1EzzD5T8NWKIR38fIqEns9kDWKUQTXXAmlDrdPg==", + "node_modules/finalhandler/node_modules/ms": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", + "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", + "dev": true + }, + "node_modules/find-cache-dir": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, + "dependencies": { + "commondir": "^1.0.1", + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" + }, "engines": { - "node": ">=12" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/avajs/find-cache-dir?sponsor=1" } }, - "node_modules/escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha512-NiSupZ4OeuGwr68lGIeym/ksIZMJodUGOSCZ/FSnTxcrekbvqrgdUxlJOMpijaKZVjAJrWrGs/6Jy8OMuyj9ow==", + "node_modules/find-nearest-file": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/find-nearest-file/-/find-nearest-file-1.1.0.tgz", + "integrity": "sha512-NMsS0ITOwpBPrHOyO7YUtDhaVEGUKS0kBJDVaWZPuCzO7JMW+uzFQQVts/gPyIV9ioyNWDb5LjhHWXVf1OnBDA==", "dev": true }, - "node_modules/escape-latex": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/escape-latex/-/escape-latex-1.2.0.tgz", - "integrity": "sha512-nV5aVWW1K0wEiUIEdZ4erkGGH8mDxGyxSeqPzRNtWP7ataw+/olFObw7hujFWlVjNsaDFw5VZ5NzVSIqRgfTiw==" - }, - "node_modules/escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha512-vbRorB5FUQWvla16U8R/qgaFIya2qGzwDrNmCZuYKrbdSUMG6I1ZCGQRefkRVhuOkIGVne7BQ35DSfo1qvJqFg==", + "node_modules/find-replace": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", + "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", "dev": true, + "dependencies": { + "array-back": "^3.0.1" + }, "engines": { - "node": ">=0.8.0" + "node": ">=4.0.0" } }, - "node_modules/escodegen": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/escodegen/-/escodegen-2.1.0.tgz", - "integrity": "sha512-2NlIDTwUWJN0mRPQOdtQBzbUHvdGY2P1VXSyU83Q3xKxM7WHX2Ql8dKq782Q9TgQUNOLEzEYu9bzLNj1q88I5w==", + "node_modules/find-up": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", + "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", "dev": true, "dependencies": { - "esprima": "^4.0.1", - "estraverse": "^5.2.0", - "esutils": "^2.0.2" - }, - "bin": { - "escodegen": "bin/escodegen.js", - "esgenerate": "bin/esgenerate.js" + "locate-path": "^5.0.0", + "path-exists": "^4.0.0" }, "engines": { - "node": ">=6.0" - }, - "optionalDependencies": { - "source-map": "~0.6.1" + "node": ">=8" } }, - "node_modules/eslint": { - "version": "8.57.0", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-8.57.0.tgz", - "integrity": "sha512-dZ6+mexnaTIbSBZWgou51U6OmzIhYM2VcNdtiTtI7qPNZm35Akpr0f6vtw3w1Kmn5PYo+tZVfh13WrhpS6oLqQ==", + "node_modules/first-chunk-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", + "integrity": "sha512-ArRi5axuv66gEsyl3UuK80CzW7t56hem73YGNYxNWTGNKFJUadSb9Gu9SHijYEUi8ulQMf1bJomYNwSCPHhtTQ==", + "engines": { + "node": ">=0.10.0" + } + }, + "node_modules/flat-cache": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", + "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@eslint-community/regexpp": "^4.6.1", - "@eslint/eslintrc": "^2.1.4", - "@eslint/js": "8.57.0", - "@humanwhocodes/config-array": "^0.11.14", - "@humanwhocodes/module-importer": "^1.0.1", - "@nodelib/fs.walk": "^1.2.8", - "@ungap/structured-clone": "^1.2.0", - "ajv": "^6.12.4", - "chalk": "^4.0.0", - "cross-spawn": "^7.0.2", - "debug": "^4.3.2", - "doctrine": "^3.0.0", - "escape-string-regexp": "^4.0.0", - "eslint-scope": "^7.2.2", - "eslint-visitor-keys": "^3.4.3", - "espree": "^9.6.1", - "esquery": "^1.4.2", - "esutils": "^2.0.2", - "fast-deep-equal": "^3.1.3", - "file-entry-cache": "^6.0.1", - "find-up": "^5.0.0", - "glob-parent": "^6.0.2", - "globals": "^13.19.0", - "graphemer": "^1.4.0", - "ignore": "^5.2.0", - "imurmurhash": "^0.1.4", - "is-glob": "^4.0.0", - "is-path-inside": "^3.0.3", - "js-yaml": "^4.1.0", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.4.1", - "lodash.merge": "^4.6.2", - "minimatch": "^3.1.2", - "natural-compare": "^1.4.0", - "optionator": "^0.9.3", - "strip-ansi": "^6.0.1", - "text-table": "^0.2.0" - }, - "bin": { - "eslint": "bin/eslint.js" + "flatted": "^3.1.0", + "rimraf": "^3.0.2" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": "^10.12.0 || >=12.0.0" } }, - "node_modules/eslint-config-airbnb": { - "version": "19.0.4", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb/-/eslint-config-airbnb-19.0.4.tgz", - "integrity": "sha512-T75QYQVQX57jiNgpF9r1KegMICE94VYwoFQyMGhrvc+lB8YF2E/M/PYDaQe1AJcWaEgqLE+ErXV1Og/+6Vyzew==", + "node_modules/flatstr": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz", + "integrity": "sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==", + "dev": true + }, + "node_modules/flatted": { + "version": "3.2.5", + "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", + "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", + "dev": true + }, + "node_modules/flow-parser": { + "version": "0.233.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.233.0.tgz", + "integrity": "sha512-E/mv51GYJfLuRX6fZnw4M52gBxYa8pkHUOgNEZOcQK2RTXS8YXeU5rlalkTcY99UpwbeNVCSUFKaavpOksi/pQ==", "dev": true, - "dependencies": { - "eslint-config-airbnb-base": "^15.0.0", - "object.assign": "^4.1.2", - "object.entries": "^1.1.5" - }, "engines": { - "node": "^10.12.0 || ^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=0.4.0" + } + }, + "node_modules/follow-redirects": { + "version": "1.15.1", + "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", + "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "dev": true, + "funding": [ + { + "type": "individual", + "url": "https://github.com/sponsors/RubenVerborgh" + } + ], + "engines": { + "node": ">=4.0" }, - "peerDependencies": { - "eslint": "^7.32.0 || ^8.2.0", - "eslint-plugin-import": "^2.25.3", - "eslint-plugin-jsx-a11y": "^6.5.1", - "eslint-plugin-react": "^7.28.0", - "eslint-plugin-react-hooks": "^4.3.0" + "peerDependenciesMeta": { + "debug": { + "optional": true + } } }, - "node_modules/eslint-config-airbnb-base": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/eslint-config-airbnb-base/-/eslint-config-airbnb-base-15.0.0.tgz", - "integrity": "sha512-xaX3z4ZZIcFLvh2oUNvcX5oEofXda7giYmuplVxoOg5A7EXJMrUyqRgR+mhDhPK8LZ4PttFOBvCYDbX3sUoUig==", + "node_modules/for-each": { + "version": "0.3.3", + "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", + "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", "dev": true, "dependencies": { - "confusing-browser-globals": "^1.0.10", - "object.assign": "^4.1.2", - "object.entries": "^1.1.5", - "semver": "^6.3.0" + "is-callable": "^1.1.3" + } + }, + "node_modules/foreground-child": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", + "dev": true, + "dependencies": { + "cross-spawn": "^7.0.0", + "signal-exit": "^4.0.1" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=14" }, - "peerDependencies": { - "eslint": "^7.32.0 || ^8.2.0", - "eslint-plugin-import": "^2.25.2" + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/eslint-config-airbnb-base/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/foreground-child/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "engines": { + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/eslint-config-prettier": { - "version": "8.5.0", - "resolved": "https://registry.npmjs.org/eslint-config-prettier/-/eslint-config-prettier-8.5.0.tgz", - "integrity": "sha512-obmWKLUNCnhtQRKc+tmnYuQl0pFU1ibYJQ5BGhTVB08bHe9wC8qUeG7c08dj9XX+AuPj1YSGSQIHl1pnDHZR0Q==", + "node_modules/forever-agent": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", + "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "engines": { + "node": "*" + } + }, + "node_modules/fork-ts-checker-webpack-plugin": { + "version": "9.0.2", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-9.0.2.tgz", + "integrity": "sha512-Uochze2R8peoN1XqlSi/rGUkDQpRogtLFocP9+PGu68zk1BDAKXfdeCdyVZpgTk8V8WFVQXdEz426VKjXLO1Gg==", "dev": true, - "bin": { - "eslint-config-prettier": "bin/cli.js" + "dependencies": { + "@babel/code-frame": "^7.16.7", + "chalk": "^4.1.2", + "chokidar": "^3.5.3", + "cosmiconfig": "^8.2.0", + "deepmerge": "^4.2.2", + "fs-extra": "^10.0.0", + "memfs": "^3.4.1", + "minimatch": "^3.0.4", + "node-abort-controller": "^3.0.1", + "schema-utils": "^3.1.1", + "semver": "^7.3.5", + "tapable": "^2.2.1" + }, + "engines": { + "node": ">=12.13.0", + "yarn": ">=1.0.0" }, "peerDependencies": { - "eslint": ">=7.0.0" + "typescript": ">3.6.0", + "webpack": "^5.11.0" } }, - "node_modules/eslint-import-resolver-node": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/eslint-import-resolver-node/-/eslint-import-resolver-node-0.3.7.tgz", - "integrity": "sha512-gozW2blMLJCeFpBwugLTGyvVjNoeo1knonXAcatC6bjPBZitotxdWf7Gimr25N4c0AAOo4eOUfaG82IJPDpqCA==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, "dependencies": { - "debug": "^3.2.7", - "is-core-module": "^2.11.0", - "resolve": "^1.22.1" + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/eslint-import-resolver-node/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "peerDependencies": { + "ajv": "^6.9.1" } }, - "node_modules/eslint-module-utils": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/eslint-module-utils/-/eslint-module-utils-2.7.4.tgz", - "integrity": "sha512-j4GT+rqzCoRKHwURX7pddtIPGySnX9Si/cgMI5ztrcqOPtk5dDEeZ34CQVPphnqkJytlc97Vuk05Um2mJ3gEQA==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "debug": "^3.2.7" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" }, - "peerDependenciesMeta": { - "eslint": { - "optional": true - } - } - }, - "node_modules/eslint-module-utils/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", - "dev": true, - "dependencies": { - "ms": "^2.1.1" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/eslint-plugin-import": { - "version": "2.27.5", - "resolved": "https://registry.npmjs.org/eslint-plugin-import/-/eslint-plugin-import-2.27.5.tgz", - "integrity": "sha512-LmEt3GVofgiGuiE+ORpnvP+kAm3h6MLZJ4Q5HCyHADofsb4VzXFsRiWj3c0OFiV+3DWFh0qg3v9gcPlfc3zRow==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flat": "^1.3.1", - "array.prototype.flatmap": "^1.3.1", - "debug": "^3.2.7", - "doctrine": "^2.1.0", - "eslint-import-resolver-node": "^0.3.7", - "eslint-module-utils": "^2.7.4", - "has": "^1.0.3", - "is-core-module": "^2.11.0", - "is-glob": "^4.0.3", - "minimatch": "^3.1.2", - "object.values": "^1.1.6", - "resolve": "^1.22.1", - "semver": "^6.3.0", - "tsconfig-paths": "^3.14.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=4" + "node": ">=10" }, - "peerDependencies": { - "eslint": "^2 || ^3 || ^4 || ^5 || ^6 || ^7.2.0 || ^8" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/eslint-plugin-import/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "engines": { + "node": ">=8" } }, - "node_modules/eslint-plugin-import/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "@types/json-schema": "^7.0.8", + "ajv": "^6.12.5", + "ajv-keywords": "^3.5.2" }, "engines": { - "node": ">=0.10.0" + "node": ">= 10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/webpack" } }, - "node_modules/eslint-plugin-import/node_modules/json5": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.2.tgz", - "integrity": "sha512-g1MWMLBiz8FKi1e4w0UyVL3w+iJceWAFBAaBnnGKOpNa5f8TLktkbre1+s6oICydWAm+HRUGTmI+//xv2hvXYA==", + "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "minimist": "^1.2.0" + "has-flag": "^4.0.0" }, - "bin": { - "json5": "lib/cli.js" + "engines": { + "node": ">=8" } }, - "node_modules/eslint-plugin-import/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/form-data": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", + "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/eslint-plugin-import/node_modules/strip-bom": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-3.0.0.tgz", - "integrity": "sha512-vavAMRXOgBVNF6nyEEmL3DBK19iRpDcoIwW+swQ+CbGiu7lju6t+JklA1MHweoWtadgt4ISVUsXLyDq34ddcwA==", + "node_modules/form-data-encoder": { + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", + "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", "dev": true, "engines": { - "node": ">=4" + "node": ">= 14.17" } }, - "node_modules/eslint-plugin-import/node_modules/tsconfig-paths": { - "version": "3.15.0", - "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", - "integrity": "sha512-2Ac2RgzDe/cn48GvOe3M+o82pEFewD3UPbyoUHHdKasHwJKjds4fLXWf/Ux5kATBKN20oaFGu+jbElp1pos0mg==", + "node_modules/formdata-polyfill": { + "version": "4.0.10", + "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", + "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", "dev": true, "dependencies": { - "@types/json5": "^0.0.29", - "json5": "^1.0.2", - "minimist": "^1.2.6", - "strip-bom": "^3.0.0" + "fetch-blob": "^3.1.2" + }, + "engines": { + "node": ">=12.20.0" } }, - "node_modules/eslint-plugin-jest": { - "version": "27.9.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-jest/-/eslint-plugin-jest-27.9.0.tgz", - "integrity": "sha512-QIT7FH7fNmd9n4se7FFKHbsLKGQiw885Ds6Y/sxKgCZ6natwCsXdgPOADnYVxN2QrRweF0FZWbJ6S7Rsn7llug==", + "node_modules/forwarded": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", + "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", "dev": true, - "dependencies": { - "@typescript-eslint/utils": "^5.10.0" - }, "engines": { - "node": "^14.15.0 || ^16.10.0 || >=18.0.0" - }, - "peerDependencies": { - "@typescript-eslint/eslint-plugin": "^5.0.0 || ^6.0.0 || ^7.0.0", - "eslint": "^7.0.0 || ^8.0.0", - "jest": "*" - }, - "peerDependenciesMeta": { - "@typescript-eslint/eslint-plugin": { - "optional": true - }, - "jest": { - "optional": true - } + "node": ">= 0.6" } }, - "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/scope-manager": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.62.0.tgz", - "integrity": "sha512-VXuvVvZeQCQb5Zgf4HAxc04q5j+WrNAtNh9OwCsCgpKqESMTu3tF/jhZ3xG6T4NZwWl65Bg8KuS2uEvhSfLl0w==", - "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0" - }, + "node_modules/fraction.js": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", + "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": "*" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "type": "patreon", + "url": "https://www.patreon.com/infusion" } }, - "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/types": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.62.0.tgz", - "integrity": "sha512-87NVngcbVXUahrRTqIK27gD2t5Cu1yuCXxbLcFtCzZGlfyVWWh8mLHkoxzjsB6DDNnvdL+fW8MiwPEJyGJQDgQ==", + "node_modules/fresh": { + "version": "0.5.2", + "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", + "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">= 0.6" } }, - "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.62.0.tgz", - "integrity": "sha512-CmcQ6uY7b9y694lKdRB8FEel7JbU/40iSAPomu++SjLMntB+2Leay2LO6i8VnJk58MtE9/nQSFIH6jpyRWyYzA==", + "node_modules/front-matter": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz", + "integrity": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/visitor-keys": "5.62.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "js-yaml": "^3.13.1" } }, - "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/utils": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.62.0.tgz", - "integrity": "sha512-n8oxjeb5aIbPFEtmQxQYOLI0i9n5ySBEY/ZEHHZqKQSFnxio1rv6dthascc9dLuwrL0RC5mPCxB7vnAVGAYWAQ==", + "node_modules/front-matter/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "dependencies": { - "@eslint-community/eslint-utils": "^4.2.0", - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.62.0", - "@typescript-eslint/types": "5.62.0", - "@typescript-eslint/typescript-estree": "5.62.0", - "eslint-scope": "^5.1.1", - "semver": "^7.3.7" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "sprintf-js": "~1.0.2" } }, - "node_modules/eslint-plugin-jest/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.62.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.62.0.tgz", - "integrity": "sha512-07ny+LHRzQXepkGg6w0mFY41fVUNBrL2Roj/++7V1txKugfjm/Ci/qSND03r2RhlJhJYMcTn9AhhSSqQp0Ysyw==", + "node_modules/front-matter/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.62.0", - "eslint-visitor-keys": "^3.3.0" - }, - "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "argparse": "^1.0.7", + "esprima": "^4.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/eslint-plugin-jsx-a11y": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/eslint-plugin-jsx-a11y/-/eslint-plugin-jsx-a11y-6.5.1.tgz", - "integrity": "sha512-sVCFKX9fllURnXT2JwLN5Qgo24Ug5NF6dxhkmxsMEUZhXRcGg+X3e1JbJ84YePQKBl5E0ZjAH5Q4rkdcGY99+g==", + "node_modules/fs-constants": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", + "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + }, + "node_modules/fs-extra": { + "version": "10.1.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", + "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", "dev": true, "dependencies": { - "@babel/runtime": "^7.16.3", - "aria-query": "^4.2.2", - "array-includes": "^3.1.4", - "ast-types-flow": "^0.0.7", - "axe-core": "^4.3.5", - "axobject-query": "^2.2.0", - "damerau-levenshtein": "^1.0.7", - "emoji-regex": "^9.2.2", - "has": "^1.0.3", - "jsx-ast-utils": "^3.2.1", - "language-tags": "^1.0.5", - "minimatch": "^3.0.4" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": ">=4.0" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node": ">=12" } }, - "node_modules/eslint-plugin-prettier": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-prettier/-/eslint-plugin-prettier-4.0.0.tgz", - "integrity": "sha512-98MqmCJ7vJodoQK359bqQWaxOE0CS8paAz/GgjaZLyex4TTk3g9HugoO89EqWCrFiOqn9EVvcoo7gZzONCWVwQ==", + "node_modules/fs-minipass": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", + "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", "dev": true, "dependencies": { - "prettier-linter-helpers": "^1.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">=6.0.0" - }, - "peerDependencies": { - "eslint": ">=7.28.0", - "prettier": ">=2.0.0" - }, - "peerDependenciesMeta": { - "eslint-config-prettier": { - "optional": true - } + "node": ">= 8" } }, - "node_modules/eslint-plugin-react": { - "version": "7.32.2", - "resolved": "https://registry.npmjs.org/eslint-plugin-react/-/eslint-plugin-react-7.32.2.tgz", - "integrity": "sha512-t2fBMa+XzonrrNkyVirzKlvn5RXzzPwRHtMvLAtVZrt8oxgnTQaYbU6SXTOO1mwQgp1y5+toMSKInnzGr0Knqg==", + "node_modules/fs-monkey": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", + "dev": true + }, + "node_modules/fs.realpath": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", + "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", + "dev": true + }, + "node_modules/fsevents": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", + "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", "dev": true, - "peer": true, - "dependencies": { - "array-includes": "^3.1.6", - "array.prototype.flatmap": "^1.3.1", - "array.prototype.tosorted": "^1.1.1", - "doctrine": "^2.1.0", - "estraverse": "^5.3.0", - "jsx-ast-utils": "^2.4.1 || ^3.0.0", - "minimatch": "^3.1.2", - "object.entries": "^1.1.6", - "object.fromentries": "^2.0.6", - "object.hasown": "^1.1.2", - "object.values": "^1.1.6", - "prop-types": "^15.8.1", - "resolve": "^2.0.0-next.4", - "semver": "^6.3.0", - "string.prototype.matchall": "^4.0.8" - }, + "hasInstallScript": true, + "optional": true, + "os": [ + "darwin" + ], "engines": { - "node": ">=4" - }, - "peerDependencies": { - "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + "node": "^8.16.0 || ^10.6.0 || >=11.0.0" } }, - "node_modules/eslint-plugin-react-hooks": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/eslint-plugin-react-hooks/-/eslint-plugin-react-hooks-4.6.0.tgz", - "integrity": "sha512-oFc7Itz9Qxh2x4gNHStv3BqJq54ExXmfC+a1NjAta66IAN87Wu0R/QArgIS9qKzX3dXKPI9H5crl9QchNMY9+g==", + "node_modules/function-bind": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", + "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", "dev": true, - "peer": true, - "engines": { - "node": ">=10" - }, - "peerDependencies": { - "eslint": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0 || ^7.0.0 || ^8.0.0-0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/function.prototype.name": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", + "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", "dev": true, - "peer": true, "dependencies": { - "esutils": "^2.0.2" + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "functions-have-names": "^1.2.3" }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/resolve": { - "version": "2.0.0-next.4", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-2.0.0-next.4.tgz", - "integrity": "sha512-iMDbmAWtfU+MHpxt/I5iWI7cY6YVEZUQ3MBgPQ++XD1PELuJHIl82xBmObyP2KyQmkNB2dsqF7seoQQiAn5yDQ==", + "node_modules/functional-red-black-tree": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", + "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "dev": true + }, + "node_modules/functions-have-names": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", + "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", "dev": true, - "peer": true, - "dependencies": { - "is-core-module": "^2.9.0", - "path-parse": "^1.0.7", - "supports-preserve-symlinks-flag": "^1.0.0" - }, - "bin": { - "resolve": "bin/resolve" - }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-react/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/gauge": { + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", + "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", "dev": true, + "optional": true, "peer": true, - "bin": { - "semver": "bin/semver.js" + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.2", + "console-control-strings": "^1.0.0", + "has-unicode": "^2.0.1", + "object-assign": "^4.1.1", + "signal-exit": "^3.0.0", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.2" + }, + "engines": { + "node": ">=10" } }, - "node_modules/eslint-plugin-storybook": { - "version": "0.6.10", - "resolved": "https://registry.npmjs.org/eslint-plugin-storybook/-/eslint-plugin-storybook-0.6.10.tgz", - "integrity": "sha512-3DKXRey06EhwnTKaG6fgMqGTy4C3z6Ikyv6VVixO5BvaExWQe3yGWIAufrC2Et0OaAMIaMwx9KWjqb/Wq+JxPg==", + "node_modules/gaze": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", + "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "@storybook/csf": "^0.0.1", - "@typescript-eslint/utils": "^5.45.0", - "requireindex": "^1.1.0", - "ts-dedent": "^2.2.0" + "globule": "^1.0.0" }, "engines": { - "node": "12.x || 14.x || >= 16" - }, - "peerDependencies": { - "eslint": ">=6" + "node": ">= 4.0.0" } }, - "node_modules/eslint-plugin-storybook/node_modules/@storybook/csf": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.0.1.tgz", - "integrity": "sha512-USTLkZze5gkel8MYCujSRBVIrUQ3YPBrLOx7GNk/0wttvVtlzWXAq9eLbQ4p/NicGxP+3T7KPEMVV//g+yubpw==", + "node_modules/gensync": { + "version": "1.0.0-beta.2", + "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", + "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", "dev": true, - "dependencies": { - "lodash": "^4.17.15" + "engines": { + "node": ">=6.9.0" } }, - "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/scope-manager": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/scope-manager/-/scope-manager-5.51.0.tgz", - "integrity": "sha512-gNpxRdlx5qw3yaHA0SFuTjW4rxeYhpHxt491PEcKF8Z6zpq0kMhe0Tolxt0qjlojS+/wArSDlj/LtE69xUJphQ==", + "node_modules/get-caller-file": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", + "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": "6.* || 8.* || >= 10.*" } }, - "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/types": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/types/-/types-5.51.0.tgz", - "integrity": "sha512-SqOn0ANn/v6hFn0kjvLwiDi4AzR++CBZz0NV5AnusT2/3y32jdc0G4woXPWHCumWtUXZKPAS27/9vziSsC9jnw==", + "node_modules/get-east-asian-width": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", + "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=18" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/typescript-estree": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/typescript-estree/-/typescript-estree-5.51.0.tgz", - "integrity": "sha512-TSkNupHvNRkoH9FMA3w7TazVFcBPveAAmb7Sz+kArY6sLT86PA5Vx80cKlYmd8m3Ha2SwofM1KwraF24lM9FvA==", + "node_modules/get-intrinsic": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", + "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", "dev": true, "dependencies": { - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/visitor-keys": "5.51.0", - "debug": "^4.3.4", - "globby": "^11.1.0", - "is-glob": "^4.0.3", - "semver": "^7.3.7", - "tsutils": "^3.21.0" + "es-errors": "^1.3.0", + "function-bind": "^1.1.2", + "has-proto": "^1.0.1", + "has-symbols": "^1.0.3", + "hasown": "^2.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/utils": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/utils/-/utils-5.51.0.tgz", - "integrity": "sha512-76qs+5KWcaatmwtwsDJvBk4H76RJQBFe+Gext0EfJdC3Vd2kpY2Pf//OHHzHp84Ciw0/rYoGTDnIAr3uWhhJYw==", + "node_modules/get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", "dev": true, - "dependencies": { - "@types/json-schema": "^7.0.9", - "@types/semver": "^7.3.12", - "@typescript-eslint/scope-manager": "5.51.0", - "@typescript-eslint/types": "5.51.0", - "@typescript-eslint/typescript-estree": "5.51.0", - "eslint-scope": "^5.1.1", - "eslint-utils": "^3.0.0", - "semver": "^7.3.7" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" - }, - "peerDependencies": { - "eslint": "^6.0.0 || ^7.0.0 || ^8.0.0" + "node": ">=6" } }, - "node_modules/eslint-plugin-storybook/node_modules/@typescript-eslint/visitor-keys": { - "version": "5.51.0", - "resolved": "https://registry.npmjs.org/@typescript-eslint/visitor-keys/-/visitor-keys-5.51.0.tgz", - "integrity": "sha512-Oh2+eTdjHjOFjKA27sxESlA87YPSOJafGCR0md5oeMdh1ZcCfAGCIOL216uTBAkAIptvLIfKQhl7lHxMJet4GQ==", + "node_modules/get-npm-tarball-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.1.0.tgz", + "integrity": "sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==", "dev": true, - "dependencies": { - "@typescript-eslint/types": "5.51.0", - "eslint-visitor-keys": "^3.3.0" - }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/typescript-eslint" + "node": ">=12.17" } }, - "node_modules/eslint-scope": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-5.1.1.tgz", - "integrity": "sha512-2NxwbF/hZ0KpepYN0cNbo+FN6XoK7GaHlQhgx/hIZl6Va0bF45RQOOwhLIy8lQDbuCiadSLCBnH2CFYquit5bw==", + "node_modules/get-package-type": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", + "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", "dev": true, - "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^4.1.1" - }, "engines": { "node": ">=8.0.0" } }, - "node_modules/eslint-scope/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, - "engines": { - "node": ">=4.0" + "node_modules/get-pixels": { + "version": "3.3.3", + "resolved": "https://registry.npmjs.org/get-pixels/-/get-pixels-3.3.3.tgz", + "integrity": "sha512-5kyGBn90i9tSMUVHTqkgCHsoWoR+/lGbl4yC83Gefyr0HLIhgSWEx/2F/3YgsZ7UpYNuM6pDhDK7zebrUJ5nXg==", + "dependencies": { + "data-uri-to-buffer": "0.0.3", + "jpeg-js": "^0.4.1", + "mime-types": "^2.0.1", + "ndarray": "^1.0.13", + "ndarray-pack": "^1.1.1", + "node-bitmap": "0.0.1", + "omggif": "^1.0.5", + "parse-data-uri": "^0.2.0", + "pngjs": "^3.3.3", + "request": "^2.44.0", + "through": "^2.3.4" } }, - "node_modules/eslint-utils": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/eslint-utils/-/eslint-utils-3.0.0.tgz", - "integrity": "sha512-uuQC43IGctw68pJA1RgbQS8/NP7rch6Cwd4j3ZBtgo4/8Flj4eGE7ZYSZRN3iq5pVUv6GPdW5Z1RFleo84uLDA==", + "node_modules/get-port": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", + "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", "dev": true, - "dependencies": { - "eslint-visitor-keys": "^2.0.0" - }, "engines": { - "node": "^10.0.0 || ^12.0.0 || >= 14.0.0" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/mysticatea" - }, - "peerDependencies": { - "eslint": ">=5" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint-utils/node_modules/eslint-visitor-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-2.1.0.tgz", - "integrity": "sha512-0rSmRBzXgDzIsD6mGdJgevzgezI534Cer5L/vyMX0kHzT/jiB43jRhd9YUlMGYLQy2zprNmoT8qasCGtY+QaKw==", + "node_modules/get-stdin": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", + "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/eslint-visitor-keys": { - "version": "3.4.3", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-3.4.3.tgz", - "integrity": "sha512-wpc+LXeiyiisxPlEkUzU6svyS1frIO3Mgxj1fdy7Pm8Ygzguax2N3Fa/D/ag1WqbOprdI+uY6wMUl8/a2G+iag==", + "node_modules/get-stream": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", + "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", "dev": true, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/eslint/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/get-symbol-description": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", + "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "call-bind": "^1.0.5", + "es-errors": "^1.3.0", + "get-intrinsic": "^1.2.4" }, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/eslint/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "node_modules/eslint/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/get-uri": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", + "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "basic-ftp": "^5.0.2", + "data-uri-to-buffer": "^6.0.2", + "debug": "^4.3.4", + "fs-extra": "^11.2.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">= 14" } }, - "node_modules/eslint/node_modules/escape-string-regexp": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-4.0.0.tgz", - "integrity": "sha512-TtpcNJ3XAzx3Gq8sWRzJaVajRs0uVxA2YAkdb1jm2YkPz4G6egUFAyA3n5vtEIZefPk5Wa4UXbKuS5fKkJWdgA==", + "node_modules/get-uri/node_modules/data-uri-to-buffer": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", + "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 14" } }, - "node_modules/eslint/node_modules/eslint-scope": { - "version": "7.2.2", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-7.2.2.tgz", - "integrity": "sha512-dOt21O7lTMhDM+X9mB4GX+DZrZtCUJPL/wlcTqxyrx5IvO0IYtILdtrQGQp+8n5S0gwSVmOf9NQrjMOgfQZlIg==", + "node_modules/get-uri/node_modules/fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "dependencies": { - "esrecurse": "^4.3.0", - "estraverse": "^5.2.0" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/eslint" + "node": ">=14.14" } }, - "node_modules/eslint/node_modules/find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, + "node_modules/getpass": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", + "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", "dependencies": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "assert-plus": "^1.0.0" } }, - "node_modules/eslint/node_modules/globals": { - "version": "13.24.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-13.24.0.tgz", - "integrity": "sha512-AhO5QUcj8llrbG09iWhPU2B204J1xnPeL8kQmVorSsy+Sjj1sk8gIyh6cUocGmH4L0UuhAJy+hJMRA4mgA4mFQ==", - "dev": true, + "node_modules/gif-encoder": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/gif-encoder/-/gif-encoder-0.4.3.tgz", + "integrity": "sha512-HMfSa+EIng62NbDhM63QGYoc49/m8DcZ9hhBtw+CXX9mKboSpeFVxjZ2WEWaMFZ14MUjfACK7jsrxrJffIVrCg==", "dependencies": { - "type-fest": "^0.20.2" + "readable-stream": "~1.1.9" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.8.0" } }, - "node_modules/eslint/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" + "node_modules/gif-encoder/node_modules/isarray": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", + "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" + }, + "node_modules/gif-encoder/node_modules/readable-stream": { + "version": "1.1.14", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", + "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", + "dependencies": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "0.0.1", + "string_decoder": "~0.10.x" } }, - "node_modules/eslint/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", + "node_modules/gif-encoder/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" + }, + "node_modules/giget": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", "dev": true, "dependencies": { - "argparse": "^2.0.1" + "citty": "^0.1.6", + "consola": "^3.2.3", + "defu": "^6.1.4", + "node-fetch-native": "^1.6.3", + "nypm": "^0.3.8", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "tar": "^6.2.0" }, "bin": { - "js-yaml": "bin/js-yaml.js" + "giget": "dist/cli.mjs" } }, - "node_modules/eslint/node_modules/locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", + "node_modules/giget/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", "dev": true, - "dependencies": { - "p-locate": "^5.0.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/eslint/node_modules/p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", + "node_modules/git-up": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", + "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", "dev": true, "dependencies": { - "yocto-queue": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "is-ssh": "^1.4.0", + "parse-url": "^8.1.0" } }, - "node_modules/eslint/node_modules/p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", + "node_modules/git-url-parse": { + "version": "14.0.0", + "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.0.0.tgz", + "integrity": "sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==", "dev": true, "dependencies": { - "p-limit": "^3.0.2" + "git-up": "^7.0.0" + } + }, + "node_modules/github-from-package": { + "version": "0.0.0", + "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", + "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" + }, + "node_modules/github-slugger": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", + "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", + "dev": true + }, + "node_modules/glob": { + "version": "7.2.3", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", + "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", + "dev": true, + "dependencies": { + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=10" + "node": "*" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/eslint/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/glob-parent": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", + "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "is-glob": "^4.0.3" }, "engines": { - "node": ">=8" + "node": ">=10.13.0" } }, - "node_modules/eslint/node_modules/type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", + "node_modules/glob-to-regexp": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", + "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", + "dev": true + }, + "node_modules/global-dirs": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", + "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", "dev": true, + "dependencies": { + "ini": "2.0.0" + }, "engines": { "node": ">=10" }, @@ -16615,1121 +17228,1202 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/espree": { - "version": "9.6.1", - "resolved": "https://registry.npmjs.org/espree/-/espree-9.6.1.tgz", - "integrity": "sha512-oruZaFkjorTpF32kDSI5/75ViwGeZginGGy2NoOSg3Q9bnwlnmDm4HLnkl0RE3n+njDXR037aY1+x58Z/zFdwQ==", + "node_modules/global-dirs/node_modules/ini": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", + "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "dev": true, + "engines": { + "node": ">=10" + } + }, + "node_modules/globals": { + "version": "11.12.0", + "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", + "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/globalthis": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", + "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", "dev": true, "dependencies": { - "acorn": "^8.9.0", - "acorn-jsx": "^5.3.2", - "eslint-visitor-keys": "^3.4.1" + "define-properties": "^1.1.3" }, "engines": { - "node": "^12.22.0 || ^14.17.0 || >=16.0.0" + "node": ">= 0.4" }, "funding": { - "url": "https://opencollective.com/eslint" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esprima": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-4.0.1.tgz", - "integrity": "sha512-eGuFFw7Upda+g4p+QHvnW0RyTX/SVeJBDM/gCtMARO0cLuT2HcEKnTPvhjV6aGeqrCB/sbNop0Kszm0jsaWU4A==", + "node_modules/globby": { + "version": "11.1.0", + "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", + "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", "dev": true, - "bin": { - "esparse": "bin/esparse.js", - "esvalidate": "bin/esvalidate.js" + "dependencies": { + "array-union": "^2.1.0", + "dir-glob": "^3.0.1", + "fast-glob": "^3.2.9", + "ignore": "^5.2.0", + "merge2": "^1.4.1", + "slash": "^3.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/esquery": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/esquery/-/esquery-1.5.0.tgz", - "integrity": "sha512-YQLXUplAwJgCydQ78IMJywZCceoqk1oH01OERdSAJc/7U2AylwjhSCLDEtqwg811idIS/9fIU5GjG73IgjKMVg==", + "node_modules/globule": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", + "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "estraverse": "^5.1.0" + "glob": "~7.1.1", + "lodash": "^4.17.21", + "minimatch": "~3.0.2" }, "engines": { - "node": ">=0.10" + "node": ">= 0.10" } }, - "node_modules/esrecurse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/esrecurse/-/esrecurse-4.3.0.tgz", - "integrity": "sha512-KmfKL3b6G+RXvP8N1vr3Tq1kL/oCFgn2NYXEtqP8/L3pKapUA4G8cFVaoF3SU323CD4XypR/ffioHmkti6/Tag==", + "node_modules/globule/node_modules/glob": { + "version": "7.1.7", + "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", + "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "estraverse": "^5.2.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.0.4", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">=4.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/estraverse": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-5.3.0.tgz", - "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", + "node_modules/globule/node_modules/minimatch": { + "version": "3.0.8", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", + "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "brace-expansion": "^1.1.7" + }, "engines": { - "node": ">=4.0" + "node": "*" } }, - "node_modules/estree-to-babel": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz", - "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==", + "node_modules/gopd": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", + "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", "dev": true, "dependencies": { - "@babel/traverse": "^7.1.6", - "@babel/types": "^7.2.0", - "c8": "^7.6.0" + "get-intrinsic": "^1.1.3" }, - "engines": { - "node": ">=8.3.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", + "node_modules/got": { + "version": "13.0.0", + "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", + "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", "dev": true, + "dependencies": { + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha512-aIL5Fx7mawVa300al2BnEE4iNvo1qETxLrPI/o05L7z6go7fCw1J6EQmbK4FmJ2AS7kgVF/KEZWufBfdClMcPg==", + "node_modules/graceful-fs": { + "version": "4.2.10", + "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", + "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" + }, + "node_modules/graphemer": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", + "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", + "dev": true + }, + "node_modules/graphlib": { + "version": "2.1.8", + "resolved": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz", + "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==", + "dependencies": { + "lodash": "^4.17.15" + } + }, + "node_modules/gunzip-maybe": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", + "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", "dev": true, - "engines": { - "node": ">= 0.6" + "dependencies": { + "browserify-zlib": "^0.1.4", + "is-deflate": "^1.0.0", + "is-gzip": "^1.0.0", + "peek-stream": "^1.1.0", + "pumpify": "^1.3.3", + "through2": "^2.0.3" + }, + "bin": { + "gunzip-maybe": "bin.js" } }, - "node_modules/eventemitter3": { - "version": "4.0.7", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.7.tgz", - "integrity": "sha512-8guHBZCwKnFhYdHr2ysuRWErTwhoN2X8XELRlrRwpmfeY2jjuUN4taQMsULKUVo1K4DvZl+0pgfyoysHxvmvEw==" + "node_modules/hamt_plus": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", + "integrity": "sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==" }, - "node_modules/events": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.3.0.tgz", - "integrity": "sha512-mQw+2fkQbALzQ7V0MY0IqdnXNOeTtP4r0lN9z7AAawCXgqea7bDii20AYrIBrFd/Hx0M2Ocz6S111CaFkUcb0Q==", + "node_modules/handle-thing": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", + "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", + "dev": true + }, + "node_modules/handlebars": { + "version": "4.7.7", + "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", + "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", "dev": true, + "dependencies": { + "minimist": "^1.2.5", + "neo-async": "^2.6.0", + "source-map": "^0.6.1", + "wordwrap": "^1.0.0" + }, + "bin": { + "handlebars": "bin/handlebars" + }, "engines": { - "node": ">=0.8.x" + "node": ">=0.4.7" + }, + "optionalDependencies": { + "uglify-js": "^3.1.4" } }, - "node_modules/execa": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-5.1.1.tgz", - "integrity": "sha512-8uSpZZocAZRBAPIEINJj3Lo9HyGitllczc27Eh5YYojjMFMn8yHMDMaUHE2Jqfq05D/wucwI4JGURyXt1vchyg==", - "dev": true, + "node_modules/har-schema": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", + "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "engines": { + "node": ">=4" + } + }, + "node_modules/har-validator": { + "version": "5.1.5", + "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", + "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", + "deprecated": "this library is no longer supported", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.0", - "human-signals": "^2.1.0", - "is-stream": "^2.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^4.0.1", - "onetime": "^5.1.2", - "signal-exit": "^3.0.3", - "strip-final-newline": "^2.0.0" + "ajv": "^6.12.3", + "har-schema": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=6" + } + }, + "node_modules/har-validator/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" } }, - "node_modules/exenv": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/exenv/-/exenv-1.2.2.tgz", - "integrity": "sha512-Z+ktTxTwv9ILfgKCk32OX3n/doe+OcLTRtqK9pcL+JsP3J1/VW8Uvl4ZjLlKqeW4rzK4oesDOGMEMRIZqtP4Iw==" + "node_modules/har-validator/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" }, - "node_modules/exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha512-Zk/eNKV2zbjpKzrsQ+n1G6poVbErQxJ0LBOJXaKZ1EViLzH+hrLu9cdXI4zw9dBQJslwBEpbQ2P1oS7nDxs6jQ==", + "node_modules/hard-rejection": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", + "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", "dev": true, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/expand-template": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/expand-template/-/expand-template-2.0.3.tgz", - "integrity": "sha512-XYfuKMvj4O35f/pOXLObndIRvyQ+/+6AhODh+OKWj9S9498pHHn/IMszH+gt0fBCRWMNfk1ZSp5x3AifmnI2vg==", "engines": { "node": ">=6" } }, - "node_modules/expect": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/expect/-/expect-27.5.1.tgz", - "integrity": "sha512-E1q5hSUG2AmYQwQJ041nvgpkODHQvB+RKlB4IYdru6uJsyFTRyZAP463M+1lINorwbqAmUggi6+WwkD8lCS/Dw==", + "node_modules/has": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", + "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1" + "function-bind": "^1.1.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.4.0" } }, - "node_modules/expect/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "node_modules/has-ansi": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", + "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "ansi-regex": "^2.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/has-ansi/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/expect/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/has-bigints": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", + "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-flag": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", + "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "dev": true, + "engines": { + "node": ">=4" + } + }, + "node_modules/has-property-descriptors": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", + "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "es-define-property": "^1.0.0" }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/has-proto": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", + "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expect/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/has-symbols": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", + "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expect/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/has-tostringtag": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", + "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", "dev": true, + "dependencies": { + "has-symbols": "^1.0.3" + }, "engines": { - "node": ">=8" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/expect/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/has-unicode": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", + "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/hasown": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", + "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "function-bind": "^1.1.2" }, "engines": { - "node": ">=8" + "node": ">= 0.4" } }, - "node_modules/express": { - "version": "4.18.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.18.1.tgz", - "integrity": "sha512-zZBcOX9TfehHQhtupq57OF8lFZ3UZi08Y97dwFCkD8p9d/d2Y3M+ykKcwaMDEL+4qyUolgBDX6AblpR3fL212Q==", + "node_modules/he": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", + "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "dev": true, + "bin": { + "he": "bin/he" + } + }, + "node_modules/header-case": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", + "integrity": "sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==", "dev": true, "dependencies": { - "accepts": "~1.3.8", - "array-flatten": "1.1.1", - "body-parser": "1.20.0", - "content-disposition": "0.5.4", - "content-type": "~1.0.4", - "cookie": "0.5.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "2.0.0", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "1.2.0", - "fresh": "0.5.2", - "http-errors": "2.0.0", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.7", - "qs": "6.10.3", - "range-parser": "~1.2.1", - "safe-buffer": "5.2.1", - "send": "0.18.0", - "serve-static": "1.15.0", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "engines": { - "node": ">= 0.10.0" + "no-case": "^2.2.0", + "upper-case": "^1.1.3" } }, - "node_modules/express/node_modules/array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha512-PCVAQswWemu6UdxsDFFX/+gVeYqKAod3D3UVm91jHwynguOwAvYPhx8nNlM++NqRcK6CxxpUafjmhIdKiHibqg==", - "dev": true - }, - "node_modules/express/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, + "node_modules/history": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/history/-/history-5.3.0.tgz", + "integrity": "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==", "dependencies": { - "ms": "2.0.0" + "@babel/runtime": "^7.7.6" } }, - "node_modules/express/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/express/node_modules/safe-buffer": { - "version": "5.2.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.2.1.tgz", - "integrity": "sha512-rp3So07KcdmmKbGvgaNxQSJr7bGVSVk5S9Eq1F+ppbRo70+YeaDxkw5Dd8NPN+GD6bjnYm2VuPuCXmpuYvmCXQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==" - }, - "node_modules/external-editor": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-2.2.0.tgz", - "integrity": "sha512-bSn6gvGxKt+b7+6TKEv1ZycHleA7aHhRHyAqJyp5pbUFuYYNIzpZnQDk7AsYckyWdEnTeAnay0aCy2aV6iTk9A==", + "node_modules/hosted-git-info": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", + "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "chardet": "^0.4.0", - "iconv-lite": "^0.4.17", - "tmp": "^0.0.33" + "lru-cache": "^6.0.0" }, "engines": { - "node": ">=0.12" + "node": ">=10" } }, - "node_modules/extract-zip": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/extract-zip/-/extract-zip-1.7.0.tgz", - "integrity": "sha512-xoh5G1W/PB0/27lXgMQyIhP5DSY/LhoCsOyZgb+6iMmRtCwVBo55uKaMoEYrDCKQhWvqEip5ZPKAc6eFNyf/MA==", + "node_modules/hpack.js": { + "version": "2.1.6", + "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", + "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", "dev": true, "dependencies": { - "concat-stream": "^1.6.2", - "debug": "^2.6.9", - "mkdirp": "^0.5.4", - "yauzl": "^2.10.0" - }, - "bin": { - "extract-zip": "cli.js" + "inherits": "^2.0.1", + "obuf": "^1.0.0", + "readable-stream": "^2.0.1", + "wbuf": "^1.1.0" } }, - "node_modules/extract-zip/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/hpack.js/node_modules/readable-stream": { + "version": "2.3.7", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", + "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", "dev": true, "dependencies": { - "ms": "2.0.0" + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" } }, - "node_modules/extract-zip/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha512-11Ndz7Nv+mvAC1j0ktTa7fAb0vLyGGX+rMHNBYQviQDGU0Hw7lhctJANqbPhu9nV9/izT/IntTgZ7Im/9LJs9g==", - "engines": [ - "node >=0.6.0" - ] - }, - "node_modules/fancy-canvas": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/fancy-canvas/-/fancy-canvas-0.2.2.tgz", - "integrity": "sha512-50qi8xA0QkHbjmb8h7XQ6k2fvD7y/yMfiUw9YTarJ7rWrq6o5/3CCXPouYk+XSLASvvxtjyiQLRBFt3qkE3oyA==" - }, - "node_modules/fast-deep-equal": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-3.1.3.tgz", - "integrity": "sha512-f3qQ9oQy9j2AhBe/H9VC91wLmKBCCU/gDOnKNAYG5hswO7BLKj09Hc5HYNz9cGI++xlpDCIgDaitVs03ATR84Q==" - }, - "node_modules/fast-diff": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/fast-diff/-/fast-diff-1.2.0.tgz", - "integrity": "sha512-xJuoT5+L99XlZ8twedaRf6Ax2TgQVxvgZOYoPKqZufmJib0tL2tegPBOZb1pVNgIhlqDlA0eO0c3wBvQcmzx4w==", - "dev": true - }, - "node_modules/fast-glob": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/fast-glob/-/fast-glob-3.3.2.tgz", - "integrity": "sha512-oX2ruAFQwf/Orj8m737Y5adxDQO0LAB7/S5MnxCdTNDd4p6BsyIVsv9JQsATbTSq8KHRpLwIHbVlUNatxd+1Ow==", + "node_modules/hpack.js/node_modules/string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", "dev": true, "dependencies": { - "@nodelib/fs.stat": "^2.0.2", - "@nodelib/fs.walk": "^1.2.3", - "glob-parent": "^5.1.2", - "merge2": "^1.3.0", - "micromatch": "^4.0.4" - }, - "engines": { - "node": ">=8.6.0" + "safe-buffer": "~5.1.0" } }, - "node_modules/fast-glob/node_modules/glob-parent": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-5.1.2.tgz", - "integrity": "sha512-AOIgSQCepiJYwP3ARnGx+5VnTu2HBYdzbGP45eLw1vr3zB3vZLeyed1sC9hnbcOc9/SrMyM5RPQrkGz4aS9Zow==", + "node_modules/html-encoding-sniffer": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", + "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", "dev": true, "dependencies": { - "is-glob": "^4.0.1" + "whatwg-encoding": "^1.0.5" }, "engines": { - "node": ">= 6" + "node": ">=10" } }, - "node_modules/fast-json-parse": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fast-json-parse/-/fast-json-parse-1.0.3.tgz", - "integrity": "sha512-FRWsaZRWEJ1ESVNbDWmsAlqDk96gPQezzLghafp5J4GUKjbCz3OkAHuZs5TuPEtkbVQERysLp9xv6c24fBm8Aw==", - "dev": true - }, - "node_modules/fast-json-stable-stringify": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.1.0.tgz", - "integrity": "sha512-lhd/wF+Lk98HZoTCtlVraHtfh5XYijIjalXck7saUtuanSDyLMxnHhSXEDJqHxD7msR8D0uCmqlkwjCV8xvwHw==" - }, - "node_modules/fast-levenshtein": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/fast-levenshtein/-/fast-levenshtein-2.0.6.tgz", - "integrity": "sha512-DCXu6Ifhqcks7TZKY3Hxp3y6qphY5SJZmrWMDrKcERSOXWQdMhU9Ig/PYrzyw/ul9jOIyh0N4M0tbC5hodg8dw==", - "dev": true - }, - "node_modules/fast-safe-stringify": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/fast-safe-stringify/-/fast-safe-stringify-1.2.3.tgz", - "integrity": "sha512-QJYT/i0QYoiZBQ71ivxdyTqkwKkQ0oxACXHYxH2zYHJEgzi2LsbjgvtzTbLi1SZcF190Db2YP7I7eTsU2egOlw==", + "node_modules/html-entities": { + "version": "2.3.3", + "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", + "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", "dev": true }, - "node_modules/fastest-levenshtein": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fastest-levenshtein/-/fastest-levenshtein-1.0.12.tgz", - "integrity": "sha512-On2N+BpYJ15xIC974QNVuYGMOlEVt4s0EOI3wwMqOmK1fdDY+FN/zltPV8vosq4ad4c/gJ1KHScUn/6AWIgiow==", + "node_modules/html-escaper": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", + "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", "dev": true }, - "node_modules/fastq": { - "version": "1.13.0", - "resolved": "https://registry.npmjs.org/fastq/-/fastq-1.13.0.tgz", - "integrity": "sha512-YpkpUnK8od0o1hmeSc7UUs/eB/vIPWJYjKck2QKIzAf71Vm1AAQ3EbuZB3g2JIy+pg+ERD0vqI79KyZiB2e2Nw==", - "dev": true, - "dependencies": { - "reusify": "^1.0.4" - } - }, - "node_modules/faye-websocket": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.4.tgz", - "integrity": "sha512-CzbClwlXAuiRQAlUyfqPgvPoNKTckTPGfwZV4ZdAhVcP2lh9KUxJg2b5GkE7XbjKQ3YJnQ9z6D9ntLAlB+tP8g==", + "node_modules/html-minifier-terser": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", + "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", "dev": true, "dependencies": { - "websocket-driver": ">=0.5.1" + "camel-case": "^4.1.2", + "clean-css": "^5.2.2", + "commander": "^8.3.0", + "he": "^1.2.0", + "param-case": "^3.0.4", + "relateurl": "^0.2.7", + "terser": "^5.10.0" + }, + "bin": { + "html-minifier-terser": "cli.js" }, "engines": { - "node": ">=0.8.0" + "node": ">=12" } }, - "node_modules/fb-watchman": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fb-watchman/-/fb-watchman-2.0.1.tgz", - "integrity": "sha512-DkPJKQeY6kKwmuMretBhr7G6Vodr7bFwDYTXIkfG1gjvNpaxBTQV3PbXg6bR1c1UP4jPOX0jHUbbHANL9vRjVg==", + "node_modules/html-tags": { + "version": "3.3.1", + "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", + "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", "dev": true, - "dependencies": { - "bser": "2.1.1" + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fd-slicer": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fd-slicer/-/fd-slicer-1.1.0.tgz", - "integrity": "sha512-cE1qsB/VwyQozZ+q1dGxR8LBYNZeofhEdUNGSMbQD3Gw2lAzX9Zb3uIU6Ebc/Fmyjo9AWWfnn0AUCHqtevs/8g==", + "node_modules/html-webpack-plugin": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", + "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", "dev": true, "dependencies": { - "pend": "~1.2.0" + "@types/html-minifier-terser": "^6.0.0", + "html-minifier-terser": "^6.0.2", + "lodash": "^4.17.21", + "pretty-error": "^4.0.0", + "tapable": "^2.0.0" + }, + "engines": { + "node": ">=10.13.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/html-webpack-plugin" + }, + "peerDependencies": { + "webpack": "^5.20.0" } }, - "node_modules/fetch-blob": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/fetch-blob/-/fetch-blob-3.2.0.tgz", - "integrity": "sha512-7yAQpD2UMJzLi1Dqv7qFYnPbaPx7ZfFK6PiIxQ4PfkGPyNyl2Ugx+a/umUonmKqjhM4DnfbMvdX6otXq83soQQ==", + "node_modules/htmlparser2": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", + "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", "dev": true, "funding": [ + "https://github.com/fb55/htmlparser2?sponsor=1", { "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "paypal", - "url": "https://paypal.me/jimmywarting" + "url": "https://github.com/sponsors/fb55" } ], "dependencies": { - "node-domexception": "^1.0.0", - "web-streams-polyfill": "^3.0.3" - }, - "engines": { - "node": "^12.20 || >= 14.13" + "domelementtype": "^2.0.1", + "domhandler": "^4.0.0", + "domutils": "^2.5.2", + "entities": "^2.0.0" } }, - "node_modules/fetch-retry": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.3.tgz", - "integrity": "sha512-uJQyMrX5IJZkhoEUBQ3EjxkeiZkppBd5jS/fMTJmfZxLSiaQjv2zD0kTvuvkSH89uFvgSlB6ueGpjD3HWN7Bxw==", + "node_modules/http-cache-semantics": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", + "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", "dev": true }, - "node_modules/figures": { + "node_modules/http-deceiver": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", + "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", + "dev": true + }, + "node_modules/http-errors": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-2.0.0.tgz", - "integrity": "sha512-Oa2M9atig69ZkfwiApY8F2Yy+tzMbazyvqv21R0NsSC8floSOC09BbT1ITWAdoMGQvJ/aZnR1KMwdx9tvHnTNA==", + "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", + "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", "dev": true, "dependencies": { - "escape-string-regexp": "^1.0.5" + "depd": "2.0.0", + "inherits": "2.0.4", + "setprototypeof": "1.2.0", + "statuses": "2.0.1", + "toidentifier": "1.0.1" }, "engines": { - "node": ">=4" + "node": ">= 0.8" } }, - "node_modules/file-entry-cache": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-6.0.1.tgz", - "integrity": "sha512-7Gps/XWymbLk2QLYK4NzpMOrYjMhdIxXuIvy2QBsLE6ljuodKvdkWs/cpyJJ3CVIVpH0Oi1Hvg1ovbMzLdFBBg==", + "node_modules/http-parser-js": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.6.tgz", + "integrity": "sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==", + "dev": true + }, + "node_modules/http-proxy": { + "version": "1.18.1", + "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", + "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", "dev": true, "dependencies": { - "flat-cache": "^3.0.4" + "eventemitter3": "^4.0.0", + "follow-redirects": "^1.0.0", + "requires-port": "^1.0.0" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=8.0.0" } }, - "node_modules/file-system-cache": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.1.1.tgz", - "integrity": "sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg==", + "node_modules/http-proxy-agent": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", + "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", "dev": true, "dependencies": { - "fs-extra": "^11.1.0", - "ramda": "^0.28.0" + "@tootallnate/once": "1", + "agent-base": "6", + "debug": "4" + }, + "engines": { + "node": ">= 6" } }, - "node_modules/file-system-cache/node_modules/fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "node_modules/http-proxy-middleware": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", + "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", "dev": true, "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "@types/http-proxy": "^1.17.8", + "http-proxy": "^1.18.1", + "is-glob": "^4.0.1", + "is-plain-obj": "^3.0.0", + "micromatch": "^4.0.2" }, "engines": { - "node": ">=14.14" + "node": ">=12.0.0" + }, + "peerDependencies": { + "@types/express": "^4.17.13" + }, + "peerDependenciesMeta": { + "@types/express": { + "optional": true + } } }, - "node_modules/filelist": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/filelist/-/filelist-1.0.4.tgz", - "integrity": "sha512-w1cEuf3S+DrLCQL7ET6kz+gmlJdbq9J7yXCSjK/OZCPA+qEN1WyF4ZAf0YYJa4/shHJra2t/d/r8SV4Ji+x+8Q==", - "dev": true, + "node_modules/http-signature": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", + "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", "dependencies": { - "minimatch": "^5.0.1" + "assert-plus": "^1.0.0", + "jsprim": "^1.2.2", + "sshpk": "^1.7.0" + }, + "engines": { + "node": ">=0.8", + "npm": ">=1.3.7" } }, - "node_modules/filelist/node_modules/brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", + "node_modules/http2-wrapper": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", + "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", "dev": true, "dependencies": { - "balanced-match": "^1.0.0" + "quick-lru": "^5.1.1", + "resolve-alpn": "^1.2.0" + }, + "engines": { + "node": ">=10.19.0" } }, - "node_modules/filelist/node_modules/minimatch": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.0.tgz", - "integrity": "sha512-9TPBGGak4nHfGZsPBohm9AWg6NoT7QTCehS3BIJABslyZbzxfV78QM2Y6+i741OPZIafFAaiiEMh5OyIrJPgtg==", + "node_modules/http2-wrapper/node_modules/quick-lru": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", + "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", "dev": true, - "dependencies": { - "brace-expansion": "^2.0.1" - }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/fill-range": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-7.0.1.tgz", - "integrity": "sha512-qOo9F+dMUmC2Lcb4BbVvnKJxTPjCm+RRpe4gDuGrzkL7mEVl/djYSu2OdQ2Pa302N4oqkSg9ir6jaLWJ2USVpQ==", + "node_modules/https-proxy-agent": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", + "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", "dev": true, "dependencies": { - "to-regex-range": "^5.0.1" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/finalhandler": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.2.0.tgz", - "integrity": "sha512-5uXcUVftlQMFnWC9qu/svkWv3GTd2PfUhK/3PLkYNAe7FbqJMt3515HaxE6eRL74GdsriiwujiawdaB1BpEISg==", + "node_modules/human-signals": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", + "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", "dev": true, - "dependencies": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "2.4.1", - "parseurl": "~1.3.3", - "statuses": "2.0.1", - "unpipe": "~1.0.0" - }, "engines": { - "node": ">= 0.8" + "node": ">=10.17.0" } }, - "node_modules/finalhandler/node_modules/debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", + "node_modules/humanize-ms": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", + "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "ms": "2.0.0" + "ms": "^2.0.0" } }, - "node_modules/finalhandler/node_modules/ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha512-Tpp60P6IUJDTuOq/5Z8cdskzJujfwqfOTkrwIwj7IRISpnkJnT6SyJ4PCPnGMoFjC9ddhal5KVIYtAt97ix05A==", - "dev": true - }, - "node_modules/find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", - "dev": true, - "dependencies": { - "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" + "node_modules/husky": { + "version": "8.0.3", + "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", + "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", + "bin": { + "husky": "lib/bin.js" }, "engines": { - "node": ">=6" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/typicode" } }, - "node_modules/find-cache-dir/node_modules/find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "node_modules/hygen": { + "version": "6.2.7", + "resolved": "https://registry.npmjs.org/hygen/-/hygen-6.2.7.tgz", + "integrity": "sha512-JKVS3cnOgKb+iY2/qP+6tq07P4U/gCmE2gmkSLDCoCGJONt2YCXimNT/2mzi2NuSzvisjjkVxwBY7kNvUufrAQ==", "dev": true, "dependencies": { - "locate-path": "^3.0.0" + "@types/node": "^17.0.19", + "chalk": "^4.1.2", + "change-case": "^3.1.0", + "debug": "^4.3.3", + "degit": "^2.8.4", + "ejs": "^3.1.6", + "enquirer": "^2.3.6", + "eslint-plugin-prettier": "^4.0.0", + "execa": "^5.0.0", + "front-matter": "^4.0.2", + "fs-extra": "^10.0.0", + "ignore-walk": "^4.0.1", + "inflection": "^1.12.0", + "ora": "^5.0.0", + "yargs-parser": "^21.0.0" }, - "engines": { - "node": ">=6" + "bin": { + "hygen": "dist/bin.js" } }, - "node_modules/find-cache-dir/node_modules/locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "node_modules/hygen/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/find-cache-dir/node_modules/make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", + "node_modules/hygen/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "pify": "^4.0.1", - "semver": "^5.6.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/find-cache-dir/node_modules/p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "node_modules/hygen/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "p-limit": "^2.0.0" - }, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/find-cache-dir/node_modules/path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "node_modules/hygen/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/find-cache-dir/node_modules/pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "node_modules/iconv-lite": { + "version": "0.4.24", + "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", + "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", "dev": true, "dependencies": { - "find-up": "^3.0.0" + "safer-buffer": ">= 2.1.2 < 3" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/find-cache-dir/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/icss-utils": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", + "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", "dev": true, - "bin": { - "semver": "bin/semver" + "engines": { + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/find-nearest-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/find-nearest-file/-/find-nearest-file-1.1.0.tgz", - "integrity": "sha512-NMsS0ITOwpBPrHOyO7YUtDhaVEGUKS0kBJDVaWZPuCzO7JMW+uzFQQVts/gPyIV9ioyNWDb5LjhHWXVf1OnBDA==", - "dev": true + "node_modules/idb": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/idb/-/idb-7.0.1.tgz", + "integrity": "sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==" }, - "node_modules/find-replace": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-replace/-/find-replace-3.0.0.tgz", - "integrity": "sha512-6Tb2myMioCAgv5kfvP5/PkZZ/ntTpVK39fHY7WkWBgvbeE+VHd/tZuZ4mrC+bxh4cfOZeYKVPaJIZtZXV7GNCQ==", + "node_modules/ieee754": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", + "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] + }, + "node_modules/ignore": { + "version": "5.3.1", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", + "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "dev": true, + "engines": { + "node": ">= 4" + } + }, + "node_modules/ignore-walk": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz", + "integrity": "sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==", "dev": true, "dependencies": { - "array-back": "^3.0.1" + "minimatch": "^3.0.4" }, "engines": { - "node": ">=4.0.0" + "node": ">=10" } }, - "node_modules/find-up": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-4.1.0.tgz", - "integrity": "sha512-PpOwAdQ/YlXQ2vj8a3h8IipDuYRi3wceVQQGYWxNINccq40Anw7BlsEXCMbt1Zt+OLA6Fq9suIpIWD0OsnISlw==", + "node_modules/immutable": { + "version": "4.3.5", + "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", + "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", + "dev": true + }, + "node_modules/import-fresh": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", + "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", "dev": true, "dependencies": { - "locate-path": "^5.0.0", - "path-exists": "^4.0.0" + "parent-module": "^1.0.0", + "resolve-from": "^4.0.0" }, "engines": { - "node": ">=8" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/first-chunk-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/first-chunk-stream/-/first-chunk-stream-1.0.0.tgz", - "integrity": "sha512-ArRi5axuv66gEsyl3UuK80CzW7t56hem73YGNYxNWTGNKFJUadSb9Gu9SHijYEUi8ulQMf1bJomYNwSCPHhtTQ==", + "node_modules/import-fresh/node_modules/resolve-from": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", + "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/flat-cache": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-3.0.4.tgz", - "integrity": "sha512-dm9s5Pw7Jc0GvMYbshN6zchCA9RgQlzzEZX3vylR9IqFfS8XciblUXOKfW6SiuJ0e13eDYZoZV5wdrev7P3Nwg==", + "node_modules/import-lazy": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", + "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/import-local": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", + "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", "dev": true, "dependencies": { - "flatted": "^3.1.0", - "rimraf": "^3.0.2" + "pkg-dir": "^4.2.0", + "resolve-cwd": "^3.0.0" + }, + "bin": { + "import-local-fixture": "fixtures/cli.js" }, "engines": { - "node": "^10.12.0 || >=12.0.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/flatstr": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/flatstr/-/flatstr-1.0.12.tgz", - "integrity": "sha512-4zPxDyhCyiN2wIAtSLI6gc82/EjqZc1onI4Mz/l0pWrAlsSfYH/2ZIcU+e3oA2wDwbzIWNKwa23F8rh6+DRWkw==", - "dev": true - }, - "node_modules/flatted": { - "version": "3.2.5", - "resolved": "https://registry.npmjs.org/flatted/-/flatted-3.2.5.tgz", - "integrity": "sha512-WIWGi2L3DyTUvUrwRKgGi9TwxQMUEqPOPQBVi71R96jZXJdFskXEmf54BoZaS1kknGODoIGASGEzBUYdyMCBJg==", - "dev": true - }, - "node_modules/flow-parser": { - "version": "0.199.1", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.199.1.tgz", - "integrity": "sha512-Mt+GFUQYij3miM7Z6o8E3aHTGXZKSOhvlCFgdQRoi6fkWfhyijnoX51zpOxM5PmZuiV6gallWhDZzwOsWxRutg==", + "node_modules/imurmurhash": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", + "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", "dev": true, "engines": { - "node": ">=0.4.0" + "node": ">=0.8.19" } }, - "node_modules/follow-redirects": { - "version": "1.15.1", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.15.1.tgz", - "integrity": "sha512-yLAMQs+k0b2m7cVxpS1VKJVvoz7SS9Td1zss3XRwXj+ZDH00RJgnuLx7E44wx02kQLrdM3aOOy+FpzS7+8OizA==", + "node_modules/indent-string": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", + "integrity": "sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==", "dev": true, - "funding": [ - { - "type": "individual", - "url": "https://github.com/sponsors/RubenVerborgh" - } - ], "engines": { - "node": ">=4.0" - }, - "peerDependenciesMeta": { - "debug": { - "optional": true - } + "node": ">=4" } }, - "node_modules/for-each": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/for-each/-/for-each-0.3.3.tgz", - "integrity": "sha512-jqYfLp7mo9vIyQf8ykW2v7A+2N4QjeCeI5+Dz9XraiO1ign81wjiH7Fb9vSOWvQfNtmSa4H2RoQTrrXivdUZmw==", + "node_modules/infer-owner": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", + "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", + "dev": true, + "optional": true, + "peer": true + }, + "node_modules/inflection": { + "version": "1.13.2", + "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.2.tgz", + "integrity": "sha512-cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw==", + "dev": true, + "engines": [ + "node >= 0.4.0" + ] + }, + "node_modules/inflight": { + "version": "1.0.6", + "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", + "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", "dev": true, "dependencies": { - "is-callable": "^1.1.3" + "once": "^1.3.0", + "wrappy": "1" } }, - "node_modules/foreground-child": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", - "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", + "node_modules/inherits": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", + "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" + }, + "node_modules/ini": { + "version": "1.3.8", + "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", + "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" + }, + "node_modules/inquirer": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", + "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", "dev": true, "dependencies": { - "cross-spawn": "^7.0.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": ">=8.0.0" + "ansi-escapes": "^3.0.0", + "chalk": "^2.0.0", + "cli-cursor": "^2.1.0", + "cli-width": "^2.0.0", + "external-editor": "^2.0.4", + "figures": "^2.0.0", + "lodash": "^4.3.0", + "mute-stream": "0.0.7", + "run-async": "^2.2.0", + "rx-lite": "^4.0.8", + "rx-lite-aggregates": "^4.0.8", + "string-width": "^2.1.0", + "strip-ansi": "^4.0.0", + "through": "^2.3.6" } }, - "node_modules/forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha512-j0KLYPhm6zeac4lz3oJ3o65qvgQCcPubiyotZrXqEaG4hNagNYO8qdlUrX5vwqv9ohqeT/Z3j6+yW067yWWdUw==", + "node_modules/inquirer/node_modules/ansi-escapes": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", + "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "dev": true, "engines": { - "node": "*" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin": { - "version": "9.0.2", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-9.0.2.tgz", - "integrity": "sha512-Uochze2R8peoN1XqlSi/rGUkDQpRogtLFocP9+PGu68zk1BDAKXfdeCdyVZpgTk8V8WFVQXdEz426VKjXLO1Gg==", + "node_modules/inquirer/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "dev": true, - "dependencies": { - "@babel/code-frame": "^7.16.7", - "chalk": "^4.1.2", - "chokidar": "^3.5.3", - "cosmiconfig": "^8.2.0", - "deepmerge": "^4.2.2", - "fs-extra": "^10.0.0", - "memfs": "^3.4.1", - "minimatch": "^3.0.4", - "node-abort-controller": "^3.0.1", - "schema-utils": "^3.1.1", - "semver": "^7.3.5", - "tapable": "^2.2.1" - }, "engines": { - "node": ">=12.13.0", - "yarn": ">=1.0.0" - }, - "peerDependencies": { - "typescript": ">3.6.0", - "webpack": "^5.11.0" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/inquirer/node_modules/cli-cursor": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", + "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "restore-cursor": "^2.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/inquirer/node_modules/is-fullwidth-code-point": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", + "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/inquirer/node_modules/mimic-fn": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", + "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/schema-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", - "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", + "node_modules/inquirer/node_modules/onetime": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", + "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", "dev": true, "dependencies": { - "@types/json-schema": "^7.0.8", - "ajv": "^6.12.5", - "ajv-keywords": "^3.5.2" + "mimic-fn": "^1.0.0" }, "engines": { - "node": ">= 10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/webpack" + "node": ">=4" } }, - "node_modules/fork-ts-checker-webpack-plugin/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/inquirer/node_modules/restore-cursor": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", + "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "onetime": "^2.0.0", + "signal-exit": "^3.0.2" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/form-data": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-3.0.1.tgz", - "integrity": "sha512-RHkBKtLWUVwd7SqRIvCZMEvAMoGUp0XU+seQiZejj0COz3RI3hWP4sCv3gZWWLjJTd7rGwcsF5eKZGii0r/hbg==", + "node_modules/inquirer/node_modules/string-width": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", + "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", "dev": true, "dependencies": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.8", - "mime-types": "^2.1.12" + "is-fullwidth-code-point": "^2.0.0", + "strip-ansi": "^4.0.0" }, "engines": { - "node": ">= 6" + "node": ">=4" } }, - "node_modules/form-data-encoder": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/form-data-encoder/-/form-data-encoder-2.1.4.tgz", - "integrity": "sha512-yDYSgNMraqvnxiEXO4hi88+YZxaHC6QKzb5N84iRCTDeRO7ZALpir/lVmf/uXUhnwUr2O4HU8s/n6x+yNjQkHw==", + "node_modules/inquirer/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0" + }, "engines": { - "node": ">= 14.17" + "node": ">=4" } }, - "node_modules/formdata-polyfill": { - "version": "4.0.10", - "resolved": "https://registry.npmjs.org/formdata-polyfill/-/formdata-polyfill-4.0.10.tgz", - "integrity": "sha512-buewHzMvYL29jdeQTVILecSaZKnt/RJWjoZCF5OW60Z67/GmSLBkOFM7qh1PI3zFNtJbaZL5eQu1vLfazOwj4g==", + "node_modules/internal-slot": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", + "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", "dev": true, "dependencies": { - "fetch-blob": "^3.1.2" + "es-errors": "^1.3.0", + "hasown": "^2.0.0", + "side-channel": "^1.0.4" }, "engines": { - "node": ">=12.20.0" + "node": ">= 0.4" } }, - "node_modules/forwarded": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.2.0.tgz", - "integrity": "sha512-buRG0fpBtRHSTCOASe6hD258tEubFoRLb4ZNA6NxMVHNw2gOcwHo9wyablzMzOA5z9xA9L1KNjk/Nt6MT9aYow==", + "node_modules/interpret": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", + "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", "dev": true, "engines": { - "node": ">= 0.6" - } - }, - "node_modules/fraction.js": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/fraction.js/-/fraction.js-4.2.0.tgz", - "integrity": "sha512-MhLuK+2gUcnZe8ZHlaaINnQLl0xRIGRfcGk2yl8xoQAfHrSsL3rYu6FCmBdkdbhc9EPlwyGHewaRsvwRMJtAlA==", - "engines": { - "node": "*" - }, - "funding": { - "type": "patreon", - "url": "https://www.patreon.com/infusion" + "node": ">= 0.10" } }, - "node_modules/fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha512-zJ2mQYM18rEFOudeV4GShTGIQ7RbzA7ozbU9I/XBpm7kqgMywgmylMwXHxZJmkVoYkna9d2pVXVXPdYTP9ej8Q==", + "node_modules/invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", "dev": true, - "engines": { - "node": ">= 0.6" + "dependencies": { + "loose-envify": "^1.0.0" } }, - "node_modules/front-matter": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/front-matter/-/front-matter-4.0.2.tgz", - "integrity": "sha512-I8ZuJ/qG92NWX8i5x1Y8qyj3vizhXS31OxjKDu3LKP+7/qBgfIKValiZIEwoVoJKUHlhWtYrktkxV1XsX+pPlg==", - "dev": true, - "dependencies": { - "js-yaml": "^3.13.1" - } - }, - "node_modules/fs-constants": { + "node_modules/iota-array": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs-constants/-/fs-constants-1.0.0.tgz", - "integrity": "sha512-y6OAwoSIf7FyjMIv94u+b5rdheZEjzR63GTyZJm5qh4Bi+2YgwLCcI/fPFZkL5PSixOt6ZNKm+w+Hfp/Bciwow==" + "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", + "integrity": "sha512-pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA==" }, - "node_modules/fs-extra": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", - "integrity": "sha512-oRXApq54ETRj4eMiFzGnHWGy+zo5raudjuxN0b8H7s/RU2oW0Wvsx9O0ACRN/kRq9E8Vu/ReskGB5o3ji+FzHQ==", - "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - }, - "engines": { - "node": ">=12" - } + "node_modules/ip": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz", + "integrity": "sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==", + "dev": true }, - "node_modules/fs-minipass": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/fs-minipass/-/fs-minipass-2.1.0.tgz", - "integrity": "sha512-V/JgOLFCS+R6Vcq0slCuaeWEdNC3ouDlJMNIsacH2VtALiu9mV4LPrHc5cDl8k5aw6J8jwgWWpiTo5RYhmIzvg==", + "node_modules/ipaddr.js": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", + "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", "dev": true, - "dependencies": { - "minipass": "^3.0.0" - }, "engines": { - "node": ">= 8" + "node": ">= 10" } }, - "node_modules/fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", - "dev": true - }, - "node_modules/fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha512-OO0pH2lK6a0hZnAdau5ItzHPI6pUlvI7jMVnxUQRtw4owF2wk8lOSabtGDCTP4Ggrg2MbGnWO9X8K1t4+fGMDw==", - "dev": true - }, - "node_modules/fsevents": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-2.3.2.tgz", - "integrity": "sha512-xiqMQR4xAeHTuB9uWm+fFRcIOgKBMiOBP+eXiyT7jsgVCq1bkVygt00oASowB7EdtpOHaaPgKt812P9ab+DDKA==", + "node_modules/is-absolute-url": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", + "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", "dev": true, - "hasInstallScript": true, - "optional": true, - "os": [ - "darwin" - ], "engines": { - "node": "^8.16.0 || ^10.6.0 || >=11.0.0" + "node": ">=8" } }, - "node_modules/function-bind": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.2.tgz", - "integrity": "sha512-7XHNxH7qX9xG5mIwxkhumTox/MIRNcOgDrxWsMt2pAr23WHp6MrRlN7FBSFpCpr+oVO0F744iUgR82nJMfG2SA==", + "node_modules/is-arguments": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", + "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, + "engines": { + "node": ">= 0.4" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/function.prototype.name": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/function.prototype.name/-/function.prototype.name-1.1.6.tgz", - "integrity": "sha512-Z5kx79swU5P27WEayXM1tBi5Ze/lbIyiNgU3qyXUOf9b2rgXYyF9Dy9Cx+IQv/Lc8WCG6L82zwUPpSS9hGehIg==", + "node_modules/is-array-buffer": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", + "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", "dev": true, "dependencies": { "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "functions-have-names": "^1.2.3" + "get-intrinsic": "^1.2.1" }, "engines": { "node": ">= 0.4" @@ -17738,96 +18432,100 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/functional-red-black-tree": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/functional-red-black-tree/-/functional-red-black-tree-1.0.1.tgz", - "integrity": "sha512-dsKNQNdj6xA3T+QlADDA7mOSlX0qiMINjn0cgr+eGHGsbSHzTabcIogz2+p/iqP1Xs6EP/sS2SbqH+brGTbq0g==", + "node_modules/is-arrayish": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", + "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", "dev": true }, - "node_modules/functions-have-names": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/functions-have-names/-/functions-have-names-1.2.3.tgz", - "integrity": "sha512-xckBUXyTIqT97tq2x2AMb+g163b5JFysYk0x4qxNFwbfQkmNZoiRHb6sPzI9/QV33WeuvVYBUIiD4NzNIyqaRQ==", + "node_modules/is-bigint": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", + "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", "dev": true, + "dependencies": { + "has-bigints": "^1.0.1" + }, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gauge": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", - "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", + "node_modules/is-binary-path": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", + "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", "dev": true, "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.2", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.1", - "object-assign": "^4.1.1", - "signal-exit": "^3.0.0", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.2" + "binary-extensions": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/gaze": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", + "node_modules/is-boolean-object": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", + "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "globule": "^1.0.0" + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">= 4.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/gensync": { - "version": "1.0.0-beta.2", - "resolved": "https://registry.npmjs.org/gensync/-/gensync-1.0.0-beta.2.tgz", - "integrity": "sha512-3hN7NaskYvMDLQY55gnW3NQ+mesEAepTqlg+VEbj7zzqEMBVNhzcGYYeqFo/TlYz6eQiFcp1HcsCZO+nGgS8zg==", + "node_modules/is-buffer": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", + "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + }, + "node_modules/is-callable": { + "version": "1.2.7", + "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", + "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", "dev": true, "engines": { - "node": ">=6.9.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-caller-file": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-2.0.5.tgz", - "integrity": "sha512-DyFP3BM/3YHTQOCUL/w0OZHR0lpKeGrxotcHWcqNEdnltqFwXVfhEBQ94eIo34AfQpo0rGki4cyIiftY06h2Fg==", + "node_modules/is-ci": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", + "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", "dev": true, - "engines": { - "node": "6.* || 8.* || >= 10.*" + "dependencies": { + "ci-info": "^3.2.0" + }, + "bin": { + "is-ci": "bin.js" } }, - "node_modules/get-east-asian-width": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/get-east-asian-width/-/get-east-asian-width-1.2.0.tgz", - "integrity": "sha512-2nk+7SIVb14QrgXFHcm84tD4bKQz0RxPuMT8Ag5KPOq7J5fEmAg0UbXdTOSHqNuHSU28k55qnceesxXRZGzKWA==", + "node_modules/is-core-module": { + "version": "2.11.0", + "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", + "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", "dev": true, - "engines": { - "node": ">=18" + "dependencies": { + "has": "^1.0.3" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-intrinsic": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/get-intrinsic/-/get-intrinsic-1.2.4.tgz", - "integrity": "sha512-5uYhsJH8VJBTv7oslg4BznJYhDoRI6waYCxMmCdnTrcCrHA/fCFKoTFz2JKKE0HdDFUF7/oQuhzumXJK7paBRQ==", + "node_modules/is-data-view": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", + "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", "dev": true, "dependencies": { - "es-errors": "^1.3.0", - "function-bind": "^1.1.2", - "has-proto": "^1.0.1", - "has-symbols": "^1.0.3", - "hasown": "^2.0.0" + "is-typed-array": "^1.1.13" }, "engines": { "node": ">= 0.4" @@ -17836,38 +18534,35 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-package-type": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", - "integrity": "sha512-pjzuKtY64GYfWizNAJ0fr9VqttZkNiK2iS430LtIHzjBEr6bX8Am2zm4sW4Ro5wjWW5cAlRL1qAMTcXbjNAO2Q==", + "node_modules/is-date-object": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", + "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=8.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-pixels": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/get-pixels/-/get-pixels-3.3.3.tgz", - "integrity": "sha512-5kyGBn90i9tSMUVHTqkgCHsoWoR+/lGbl4yC83Gefyr0HLIhgSWEx/2F/3YgsZ7UpYNuM6pDhDK7zebrUJ5nXg==", - "dependencies": { - "data-uri-to-buffer": "0.0.3", - "jpeg-js": "^0.4.1", - "mime-types": "^2.0.1", - "ndarray": "^1.0.13", - "ndarray-pack": "^1.1.1", - "node-bitmap": "0.0.1", - "omggif": "^1.0.5", - "parse-data-uri": "^0.2.0", - "pngjs": "^3.3.3", - "request": "^2.44.0", - "through": "^2.3.4" - } + "node_modules/is-deflate": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", + "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", + "dev": true }, - "node_modules/get-port": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/get-port/-/get-port-5.1.1.tgz", - "integrity": "sha512-g/Q1aTSDOxFpchXC4i8ZWvxA1lnPqx/JHqcpIw0/LX9T8x/GBbi6YnlN5nhaKIFkT8oFsscUKgDJYxfwfS6QsQ==", + "node_modules/is-docker": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", + "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", "dev": true, + "bin": { + "is-docker": "cli.js" + }, "engines": { "node": ">=8" }, @@ -17875,38 +18570,40 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha512-F5aQMywwJ2n85s4hJPTT9RPxGmubonuB10MNYo17/xph174n2MIR33HRguhzVag10O/npM7SPk73LMZNP+FaWw==", + "node_modules/is-extglob": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", + "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", "dev": true, - "optional": true, - "peer": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/get-stream": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-6.0.1.tgz", - "integrity": "sha512-ts6Wi+2j3jQjqi70w5AlN8DFnkSwC+MqmxEzdEALB2qXZYV3X/b1CTfgPLGJNMeAWxdPfU8FO1ms3NUfaHCPYg==", + "node_modules/is-fullwidth-code-point": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", + "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/get-symbol-description": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/get-symbol-description/-/get-symbol-description-1.0.2.tgz", - "integrity": "sha512-g0QYk1dZBxGwk+Ngc+ltRH2IBp2f7zBkBMBJZCDerh6EhlhSR6+9irMCuT/09zD6qkarHUSn529sK/yL4S27mg==", + "node_modules/is-generator-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", + "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "dev": true, + "engines": { + "node": ">=6" + } + }, + "node_modules/is-generator-function": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", + "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", "dev": true, "dependencies": { - "call-bind": "^1.0.5", - "es-errors": "^1.3.0", - "get-intrinsic": "^1.2.4" + "has-tostringtag": "^1.0.0" }, "engines": { "node": ">= 0.4" @@ -17915,177 +18612,83 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/get-uri": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/get-uri/-/get-uri-6.0.3.tgz", - "integrity": "sha512-BzUrJBS9EcUb4cFol8r4W3v1cPsSyajLSthNkz5BxbpDcHN5tIrM10E2eNvfnvBn3DaT3DUgx0OpsBKkaOpanw==", + "node_modules/is-glob": { + "version": "4.0.3", + "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", + "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", "dev": true, "dependencies": { - "basic-ftp": "^5.0.2", - "data-uri-to-buffer": "^6.0.2", - "debug": "^4.3.4", - "fs-extra": "^11.2.0" + "is-extglob": "^2.1.1" }, "engines": { - "node": ">= 14" + "node": ">=0.10.0" } }, - "node_modules/get-uri/node_modules/data-uri-to-buffer": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-6.0.2.tgz", - "integrity": "sha512-7hvf7/GW8e86rW0ptuwS3OcBGDjIi6SZva7hCyWC0yYry2cOPmLIjXAUHI6DK2HsnwJd9ifmt57i8eV2n4YNpw==", + "node_modules/is-gzip": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", + "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", "dev": true, "engines": { - "node": ">= 14" + "node": ">=0.10.0" } }, - "node_modules/get-uri/node_modules/fs-extra": { - "version": "11.2.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", - "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", + "node_modules/is-in-ci": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-in-ci/-/is-in-ci-0.1.0.tgz", + "integrity": "sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==", "dev": true, - "dependencies": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" + "bin": { + "is-in-ci": "cli.js" }, "engines": { - "node": ">=14.14" - } - }, - "node_modules/getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha512-0fzj9JxOLfJ+XGLhR8ze3unN0KZCgZwiSSDz168VERjK8Wl8kVSdcu2kspd4s4wtAa1y/qrVRiAA0WclVsu0ng==", - "dependencies": { - "assert-plus": "^1.0.0" - } - }, - "node_modules/gif-encoder": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/gif-encoder/-/gif-encoder-0.4.3.tgz", - "integrity": "sha512-HMfSa+EIng62NbDhM63QGYoc49/m8DcZ9hhBtw+CXX9mKboSpeFVxjZ2WEWaMFZ14MUjfACK7jsrxrJffIVrCg==", - "dependencies": { - "readable-stream": "~1.1.9" + "node": ">=18" }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/gif-encoder/node_modules/isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha512-D2S+3GLxWH+uhrNEcoh/fnmYeP8E8/zHl644d/jdA0g2uyXvy3sb0qxotE+ne0LtccHknQzWwZEzhak7oJ0COQ==" - }, - "node_modules/gif-encoder/node_modules/readable-stream": { - "version": "1.1.14", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.1.14.tgz", - "integrity": "sha512-+MeVjFf4L44XUkhM1eYbD8fyEsxcV81pqMSR5gblfcLCHfZvbrqy4/qYHE+/R5HoBUT11WV5O08Cr1n3YXkWVQ==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/gif-encoder/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - }, - "node_modules/giget": { + "node_modules/is-inside-container": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/giget/-/giget-1.0.0.tgz", - "integrity": "sha512-KWELZn3Nxq5+0So485poHrFriK9Bn3V/x9y+wgqrHkbmnGbjfLmZ685/SVA/ovW+ewoqW0gVI47pI4yW/VNobQ==", + "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", + "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", "dev": true, "dependencies": { - "colorette": "^2.0.19", - "defu": "^6.1.1", - "https-proxy-agent": "^5.0.1", - "mri": "^1.2.0", - "node-fetch-native": "^1.0.1", - "pathe": "^1.0.0", - "tar": "^6.1.12" + "is-docker": "^3.0.0" }, "bin": { - "giget": "dist/cli.mjs" - } - }, - "node_modules/git-up": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/git-up/-/git-up-7.0.0.tgz", - "integrity": "sha512-ONdIrbBCFusq1Oy0sC71F5azx8bVkvtZtMJAsv+a6lz5YAmbNnLD6HAB4gptHZVLPR8S2/kVN6Gab7lryq5+lQ==", - "dev": true, - "dependencies": { - "is-ssh": "^1.4.0", - "parse-url": "^8.1.0" - } - }, - "node_modules/git-url-parse": { - "version": "14.0.0", - "resolved": "https://registry.npmjs.org/git-url-parse/-/git-url-parse-14.0.0.tgz", - "integrity": "sha512-NnLweV+2A4nCvn4U/m2AoYu0pPKlsmhK9cknG7IMwsjFY1S2jxM+mAhsDxyxfCIGfGaD+dozsyX4b6vkYc83yQ==", - "dev": true, - "dependencies": { - "git-up": "^7.0.0" - } - }, - "node_modules/github-from-package": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/github-from-package/-/github-from-package-0.0.0.tgz", - "integrity": "sha512-SyHy3T1v2NUXn29OsWdxmK6RwHD+vkj3v8en8AOBZ1wBQ/hCAQ5bAQTD02kW4W9tUp/3Qh6J8r9EvntiyCmOOw==" - }, - "node_modules/github-slugger": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/github-slugger/-/github-slugger-1.5.0.tgz", - "integrity": "sha512-wIh+gKBI9Nshz2o46B0B3f5k/W+WI9ZAv6y5Dn5WJ5SK1t0TnDimB4WE5rmTD05ZAIn8HALCZVmCsvj0w0v0lw==", - "dev": true - }, - "node_modules/glob": { - "version": "7.2.3", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.2.3.tgz", - "integrity": "sha512-nFR0zLpU2YCaRxwoCJvL6UvCH2JFyFVIvwTLsIf21AuHlMskA1hhTdk+LlYJtOlYt9v6dvszD2BGRqBL+iQK9Q==", - "dev": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "is-inside-container": "cli.js" }, "engines": { - "node": "*" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/glob-parent": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-6.0.2.tgz", - "integrity": "sha512-XxwI8EOhVQgWp6iDL+3b0r86f4d6AX6zSU55HfB4ydCEuXLXc5FcYeOu+nnGftS4TEju/11rt4KJPTMgbfmv4A==", + "node_modules/is-inside-container/node_modules/is-docker": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", + "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", "dev": true, - "dependencies": { - "is-glob": "^4.0.3" + "bin": { + "is-docker": "cli.js" }, "engines": { - "node": ">=10.13.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/glob-to-regexp": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/glob-to-regexp/-/glob-to-regexp-0.4.1.tgz", - "integrity": "sha512-lkX1HJXwyMcprw/5YUZc2s7DrpAiHB21/V+E1rHUrVNokkvB6bqMzT0VfV6/86ZNabt1k14YOIaT7nDvOX3Iiw==", - "dev": true - }, - "node_modules/global-dirs": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/global-dirs/-/global-dirs-3.0.1.tgz", - "integrity": "sha512-NBcGGFbBA9s1VzD41QXDG+3++t9Mn5t1FpLdhESY6oKY4gYTFpX4wO3sqGUa0Srjtbfj3szX0RnemmrVRUdULA==", + "node_modules/is-installed-globally": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", + "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", "dev": true, "dependencies": { - "ini": "2.0.0" + "global-dirs": "^3.0.0", + "is-path-inside": "^3.0.2" }, "engines": { "node": ">=10" @@ -18094,297 +18697,237 @@ "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/global-dirs/node_modules/ini": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ini/-/ini-2.0.0.tgz", - "integrity": "sha512-7PnF4oN3CvZF23ADhA5wRaYEQpJ8qygSkbtTXWBeXWXmEVRXK+1ITciHWwHhsjv1TmW0MgacIv6hEi5pX5NQdA==", + "node_modules/is-interactive": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", + "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", "dev": true, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/globals": { - "version": "11.12.0", - "resolved": "https://registry.npmjs.org/globals/-/globals-11.12.0.tgz", - "integrity": "sha512-WOBp/EEGUiIsJSp7wcv/y6MO+lV9UoncWqxuFfm8eBwzWNgyfBd6Gz+IeKQ9jCmyhoH99g15M3T+QaVHFjizVA==", + "node_modules/is-lambda": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", + "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", "dev": true, - "engines": { - "node": ">=4" - } + "optional": true, + "peer": true }, - "node_modules/globalthis": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/globalthis/-/globalthis-1.0.3.tgz", - "integrity": "sha512-sFdI5LyBiNTHjRd7cGPWapiHWMOXKyuBNX/cWJ3NfzrZQVa8GI/8cofCl74AOVqq9W5kNmguTIzJ/1s2gyI9wA==", + "node_modules/is-lower-case": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", + "integrity": "sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==", "dev": true, "dependencies": { - "define-properties": "^1.1.3" - }, - "engines": { - "node": ">= 0.4" - }, + "lower-case": "^1.1.0" + } + }, + "node_modules/is-map": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", + "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globby": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/globby/-/globby-11.1.0.tgz", - "integrity": "sha512-jhIXaOzy1sb8IyocaruWSn1TjmnBVs8Ayhcy83rmxNJ8q2uWKCAj3CnJY+KpGSXCueAPc0i05kVvVKtP1t9S3g==", + "node_modules/is-nan": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", + "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", "dev": true, "dependencies": { - "array-union": "^2.1.0", - "dir-glob": "^3.0.1", - "fast-glob": "^3.2.9", - "ignore": "^5.2.0", - "merge2": "^1.4.1", - "slash": "^3.0.0" + "call-bind": "^1.0.0", + "define-properties": "^1.1.3" }, "engines": { - "node": ">=10" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/globule": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.3.4.tgz", - "integrity": "sha512-OPTIfhMBh7JbBYDpa5b+Q5ptmMWKwcNcFSR/0c6t8V4f3ZAVBEsKNY37QdVqmLRYSMhOUGYrY0QhSoEpzGr/Eg==", - "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "glob": "~7.1.1", - "lodash": "^4.17.21", - "minimatch": "~3.0.2" - }, - "engines": { - "node": ">= 0.10" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globule/node_modules/glob": { - "version": "7.1.7", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.7.tgz", - "integrity": "sha512-OvD9ENzPLbegENnYP5UUfJIirTg4+XwMWGaQfQTY0JenxNvvIKP3U3/tAQSPIu/lHxXYSZmpXlUHeqAIdKzBLQ==", + "node_modules/is-negative-zero": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", + "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/globule/node_modules/minimatch": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.8.tgz", - "integrity": "sha512-6FsRAQsxQ61mw+qP1ZzbL9Bc78x2p5OqNgNpnoAFLTrX8n5Kxph0CsnhmKKNXTWjXqU5L0pGPR7hYk+XWZr60Q==", + "node_modules/is-npm": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", + "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "brace-expansion": "^1.1.7" - }, "engines": { - "node": "*" - } - }, - "node_modules/gopd": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/gopd/-/gopd-1.0.1.tgz", - "integrity": "sha512-d65bNlIadxvpb/A2abVdlqKqV563juRnZ1Wtk6s1sIR8uNsXR70xqIzVqxVf1eTqDunwT2MkczEeaezCKTZhwA==", - "dev": true, - "dependencies": { - "get-intrinsic": "^1.1.3" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/got": { - "version": "13.0.0", - "resolved": "https://registry.npmjs.org/got/-/got-13.0.0.tgz", - "integrity": "sha512-XfBk1CxOOScDcMr9O1yKkNaQyy865NbYs+F7dr4H0LZMVgCj2Le59k6PqbNHoL5ToeaEQUYh6c6yMfVcc6SJxA==", + "node_modules/is-number": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", + "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", "dev": true, - "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - }, "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" - } - }, - "node_modules/graceful-fs": { - "version": "4.2.10", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.10.tgz", - "integrity": "sha512-9ByhssR2fPVsNZj478qUUbKfmL0+t5BDVyjShtyZZLiK7ZDAArFFfopyOTj0M05wE2tJPisA4iTnnXl2YoPvOA==" - }, - "node_modules/graphemer": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/graphemer/-/graphemer-1.4.0.tgz", - "integrity": "sha512-EtKwoO6kxCL9WO5xipiHTZlSzBm7WLT627TqC/uVRd0HKmq8NXyebnNYxDoBi7wt8eTWrUrKXCOVaFq9x1kgag==", - "dev": true - }, - "node_modules/graphlib": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/graphlib/-/graphlib-2.1.8.tgz", - "integrity": "sha512-jcLLfkpoVGmH7/InMC/1hIvOPSUh38oJtGhvrOFGzioE1DZ+0YW16RgmOJhHiuWTvGiJQ9Z1Ik43JvkRPRvE+A==", - "dependencies": { - "lodash": "^4.17.15" + "node": ">=0.12.0" } }, - "node_modules/hamt_plus": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", - "integrity": "sha512-t2JXKaehnMb9paaYA7J0BX8QQAY8lwfQ9Gjf4pg/mk4krt+cmwmU652HOoWonf+7+EQV97ARPMhhVgU1ra2GhA==" - }, - "node_modules/handle-thing": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-2.0.1.tgz", - "integrity": "sha512-9Qn4yBxelxoh2Ow62nP+Ka/kMnOXRi8BXnRaUwezLNhqelnN49xKz4F/dPP8OYLxLxq6JDtZb2i9XznUQbNPTg==", - "dev": true - }, - "node_modules/handlebars": { - "version": "4.7.7", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.7.7.tgz", - "integrity": "sha512-aAcXm5OAfE/8IXkcZvCepKU3VzW1/39Fb5ZuqMtgI/hT8X2YgoMvBY5dLhq/cpOvw7Lk1nK/UF71aLG/ZnVYRA==", + "node_modules/is-number-object": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", + "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", "dev": true, "dependencies": { - "minimist": "^1.2.5", - "neo-async": "^2.6.0", - "source-map": "^0.6.1", - "wordwrap": "^1.0.0" - }, - "bin": { - "handlebars": "bin/handlebars" + "has-tostringtag": "^1.0.0" }, "engines": { - "node": ">=0.4.7" + "node": ">= 0.4" }, - "optionalDependencies": { - "uglify-js": "^3.1.4" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/har-schema": { + "node_modules/is-obj": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha512-Oqluz6zhGX8cyRaTQlFMPw80bSJVG2x/cFb8ZPhUILGgHka9SsokCCOQgpveePerqidZOrT14ipqfJb7ILcW5Q==", + "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", + "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/har-validator": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.5.tgz", - "integrity": "sha512-nmT2T0lljbxdQZfspsno9hgrG3Uir6Ks5afism62poxqBM6sDnMEuPmzTq8XN0OEwqKLLdh1jQI3qyE66Nzb3w==", - "deprecated": "this library is no longer supported", - "dependencies": { - "ajv": "^6.12.3", - "har-schema": "^2.0.0" - }, + "node_modules/is-path-cwd": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", + "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "dev": true, "engines": { "node": ">=6" } }, - "node_modules/hard-rejection": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/hard-rejection/-/hard-rejection-2.1.0.tgz", - "integrity": "sha512-VIZB+ibDhx7ObhAe7OVtoEbuP4h/MuOTHJ+J8h/eBXotJYl0fBgR72xDFCKgIh22OJZIOVNxBMWuhAr10r8HdA==", + "node_modules/is-path-inside": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", + "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">=8" } }, - "node_modules/has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", + "node_modules/is-plain-obj": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", + "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", "dev": true, - "dependencies": { - "function-bind": "^1.1.1" - }, "engines": { - "node": ">= 0.4.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha512-C8vBJ8DwUCx19vhm7urhTuUsr4/IyP6l4VzNQDv+ryHQObW3TTTp9yB68WpYgRe2bbaGuZ/se74IqFeVnMnLZg==", + "node_modules/is-plain-object": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", + "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", "dev": true, "dependencies": { - "ansi-regex": "^2.0.0" + "isobject": "^3.0.1" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/has-ansi/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "node_modules/is-potential-custom-element-name": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", + "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", + "dev": true + }, + "node_modules/is-regex": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", + "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", "dev": true, + "dependencies": { + "call-bind": "^1.0.2", + "has-tostringtag": "^1.0.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-bigints": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-bigints/-/has-bigints-1.0.2.tgz", - "integrity": "sha512-tSvCKtBr9lkF0Ex0aQiP9N+OpV4zi2r/Nee5VkRDbaqv35RLYMzbwQfFSZZH0kR+Rd6302UJZ2p/bJCEoR3VoQ==", + "node_modules/is-resolvable": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", + "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", + "dev": true + }, + "node_modules/is-set": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", + "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", "dev": true, "funding": { "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha512-sKJf1+ceQBr4SMkvQnBDNDtf4TXpVhVGateu0t918bl30FnbE2m4vNLX+VWe/dpjlb+HugGYzW7uQXH98HPEYw==", + "node_modules/is-shared-array-buffer": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", + "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", "dev": true, + "dependencies": { + "call-bind": "^1.0.7" + }, "engines": { - "node": ">=4" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-property-descriptors": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-property-descriptors/-/has-property-descriptors-1.0.2.tgz", - "integrity": "sha512-55JNKuIW+vq4Ke1BjOTjM2YctQIvCT7GFzHwmfZPGo5wnrgkid0YQtnAleFSqumZm4az3n2BS+erby5ipJdgrg==", + "node_modules/is-ssh": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", + "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", "dev": true, "dependencies": { - "es-define-property": "^1.0.0" + "protocols": "^2.0.1" + } + }, + "node_modules/is-stream": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", + "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", + "dev": true, + "engines": { + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/has-proto": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-proto/-/has-proto-1.0.3.tgz", - "integrity": "sha512-SJ1amZAJUiZS+PhsVLf5tGydlaVB8EdFpaSO4gmiUKUOxk8qzn5AIy4ZeJUmh22znIdk/uMAUT2pl3FxzVUH+Q==", + "node_modules/is-string": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", + "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", "dev": true, + "dependencies": { + "has-tostringtag": "^1.0.0" + }, "engines": { "node": ">= 0.4" }, @@ -18392,11 +18935,14 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-symbols": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has-symbols/-/has-symbols-1.0.3.tgz", - "integrity": "sha512-l3LCuF6MgDNwTDKkdYGEihYjt5pRPbEg46rtlmnSPlUbgmB8LOIrKJbYYFBSbnPaJexMKtiPO8hmeRjRz2Td+A==", + "node_modules/is-symbol": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", + "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", "dev": true, + "dependencies": { + "has-symbols": "^1.0.2" + }, "engines": { "node": ">= 0.4" }, @@ -18404,13 +18950,13 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-tostringtag": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/has-tostringtag/-/has-tostringtag-1.0.2.tgz", - "integrity": "sha512-NqADB8VjPFLM2V0VvHUewwwsw0ZWBaIdgo+ieHtK3hasLz4qeCRjYcqfB6AQrBggRKppKF8L52/VqdVsO47Dlw==", + "node_modules/is-typed-array": { + "version": "1.1.13", + "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", + "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", "dev": true, "dependencies": { - "has-symbols": "^1.0.3" + "which-typed-array": "^1.1.14" }, "engines": { "node": ">= 0.4" @@ -18419,399 +18965,420 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true + "node_modules/is-typedarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", + "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" }, - "node_modules/hasown": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/hasown/-/hasown-2.0.2.tgz", - "integrity": "sha512-0hJU9SCPvmMzIBdZFqNPXWa6dqh7WdH0cII9y+CyS8rG3nL48Bclra9HmKhVVUHyPWNH5Y7xDwAB7bfgSjkUMQ==", + "node_modules/is-unicode-supported": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", + "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", "dev": true, - "dependencies": { - "function-bind": "^1.1.2" - }, "engines": { - "node": ">= 0.4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", + "node_modules/is-upper-case": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", + "integrity": "sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==", "dev": true, - "bin": { - "he": "bin/he" + "dependencies": { + "upper-case": "^1.1.0" } }, - "node_modules/header-case": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/header-case/-/header-case-1.0.1.tgz", - "integrity": "sha512-i0q9mkOeSuhXw6bGgiQCCBgY/jlZuV/7dZXyZ9c6LcBrqwvT8eT719E9uxE5LiZftdl+z81Ugbg/VvXV4OJOeQ==", + "node_modules/is-utf8": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", + "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" + }, + "node_modules/is-weakmap": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", + "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/is-weakref": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", + "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", "dev": true, "dependencies": { - "no-case": "^2.2.0", - "upper-case": "^1.1.3" + "call-bind": "^1.0.2" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/history": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/history/-/history-5.3.0.tgz", - "integrity": "sha512-ZqaKwjjrAYUYfLG+htGaIIZ4nioX2L70ZUMIFysS3xvBsSG4x/n1V6TXV3N8ZYNuFGlDirFg32T7B6WOUPDYcQ==", + "node_modules/is-weakset": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", + "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", + "dev": true, "dependencies": { - "@babel/runtime": "^7.7.6" + "call-bind": "^1.0.2", + "get-intrinsic": "^1.1.1" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/hosted-git-info": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-4.1.0.tgz", - "integrity": "sha512-kyCuEOWjJqZuDbRHzL8V93NzQhwIB71oFWSyzVo+KPZI+pnQPPxucdkrOZvkLRnrf5URsQM+IJ09Dw29cRALIA==", + "node_modules/is-wsl": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", + "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "lru-cache": "^6.0.0" + "is-docker": "^2.0.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha512-zJxVehUdMGIKsRaNt7apO2Gqp0BdqW5yaiGHXXmbpvxgBYVZnAql+BJb4RO5ad2MgpbZKn5G6nMnegrH1FcNYQ==", + "node_modules/isarray": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", + "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" + }, + "node_modules/iserror": { + "version": "0.0.2", + "resolved": "https://registry.npmjs.org/iserror/-/iserror-0.0.2.tgz", + "integrity": "sha512-oKGGrFVaWwETimP3SiWwjDeY27ovZoyZPHtxblC4hCq9fXxed/jasx+ATWFFjCVSRZng8VTMsN1nDnGo6zMBSw==" + }, + "node_modules/isexe": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", + "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", + "dev": true + }, + "node_modules/ismobilejs": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-1.1.1.tgz", + "integrity": "sha512-VaFW53yt8QO61k2WJui0dHf4SlL8lxBofUuUmwBo0ljPk0Drz2TiuDW4jo3wDcv41qy/SxrJ+VAzJ/qYqsmzRw==" + }, + "node_modules/isobject": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", + "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true, - "dependencies": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/hpack.js/node_modules/readable-stream": { - "version": "2.3.7", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.7.tgz", - "integrity": "sha512-Ebho8K4jIbHAxnuxi7o42OrZgF/ZTNcsZj6nRKyUmkhLFq8CHItp/fy6hQZuZmP/n3yZ9VBUbp4zz/mX8hmYPw==", + "node_modules/isstream": { + "version": "0.1.2", + "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", + "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" + }, + "node_modules/issue-parser": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", + "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", "dev": true, "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" + "lodash.capitalize": "^4.2.1", + "lodash.escaperegexp": "^4.1.2", + "lodash.isplainobject": "^4.0.6", + "lodash.isstring": "^4.0.1", + "lodash.uniqby": "^4.7.0" + }, + "engines": { + "node": ">=10.13" } }, - "node_modules/hpack.js/node_modules/string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "node_modules/istanbul-lib-coverage": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", + "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", "dev": true, - "dependencies": { - "safe-buffer": "~5.1.0" + "engines": { + "node": ">=8" } }, - "node_modules/html-encoding-sniffer": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/html-encoding-sniffer/-/html-encoding-sniffer-2.0.1.tgz", - "integrity": "sha512-D5JbOMBIR/TVZkubHT+OyT2705QvogUW4IBn6nHd756OwieSF9aDYFj4dv6HHEVGYbHaLETa3WggZYWWMyy3ZQ==", + "node_modules/istanbul-lib-instrument": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", + "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", "dev": true, "dependencies": { - "whatwg-encoding": "^1.0.5" + "@babel/core": "^7.12.3", + "@babel/parser": "^7.14.7", + "@istanbuljs/schema": "^0.1.2", + "istanbul-lib-coverage": "^3.2.0", + "semver": "^6.3.0" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/html-entities": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-2.3.3.tgz", - "integrity": "sha512-DV5Ln36z34NNTDgnz0EWGBLZENelNAtkiFA4kyNOG2tDI6Mz1uSWiq1wAKdyjnJwyDiDO7Fa2SO1CTxPXL8VxA==", - "dev": true - }, - "node_modules/html-escaper": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/html-escaper/-/html-escaper-2.0.2.tgz", - "integrity": "sha512-H2iMtd0I4Mt5eYiapRdIDjp+XzelXQ0tFE4JS7YFwFevXXMmOp9myNrUvCg0D6ws8iqkRPBfKHgbwig1SmlLfg==", - "dev": true + "node_modules/istanbul-lib-instrument/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "dev": true, + "bin": { + "semver": "bin/semver.js" + } }, - "node_modules/html-minifier-terser": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/html-minifier-terser/-/html-minifier-terser-6.1.0.tgz", - "integrity": "sha512-YXxSlJBZTP7RS3tWnQw74ooKa6L9b9i9QYXY21eUEvhZ3u9XLfv6OnFsQq6RxkhHygsaUMvYsZRV5rU/OVNZxw==", + "node_modules/istanbul-lib-report": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", + "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", "dev": true, "dependencies": { - "camel-case": "^4.1.2", - "clean-css": "^5.2.2", - "commander": "^8.3.0", - "he": "^1.2.0", - "param-case": "^3.0.4", - "relateurl": "^0.2.7", - "terser": "^5.10.0" - }, - "bin": { - "html-minifier-terser": "cli.js" + "istanbul-lib-coverage": "^3.0.0", + "make-dir": "^3.0.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/html-tags": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/html-tags/-/html-tags-3.3.1.tgz", - "integrity": "sha512-ztqyC3kLto0e9WbNp0aeP+M3kTt+nbaIveGmUxAtZa+8iFgKLUOD4YKM5j+f3QD89bra7UeumolZHKuOXnTmeQ==", + "node_modules/istanbul-lib-report/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/html-webpack-plugin": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/html-webpack-plugin/-/html-webpack-plugin-5.5.0.tgz", - "integrity": "sha512-sy88PC2cRTVxvETRgUHFrL4No3UxvcH8G1NepGhqaTT+GXN2kTamqasot0inS5hXeg1cMbFDt27zzo9p35lZVw==", + "node_modules/istanbul-lib-report/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "@types/html-minifier-terser": "^6.0.0", - "html-minifier-terser": "^6.0.2", - "lodash": "^4.17.21", - "pretty-error": "^4.0.0", - "tapable": "^2.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=10.13.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/html-webpack-plugin" - }, - "peerDependencies": { - "webpack": "^5.20.0" + "node": ">=8" } }, - "node_modules/htmlparser2": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/htmlparser2/-/htmlparser2-6.1.0.tgz", - "integrity": "sha512-gyyPk6rgonLFEDGoeRgQNaEUvdJ4ktTmmUh/h2t7s+M8oPpIPxgNACWa+6ESR57kXstwqPiCut0V8NRpcwgU7A==", + "node_modules/istanbul-lib-source-maps": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", + "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", "dev": true, - "funding": [ - "https://github.com/fb55/htmlparser2?sponsor=1", - { - "type": "github", - "url": "https://github.com/sponsors/fb55" - } - ], "dependencies": { - "domelementtype": "^2.0.1", - "domhandler": "^4.0.0", - "domutils": "^2.5.2", - "entities": "^2.0.0" + "debug": "^4.1.1", + "istanbul-lib-coverage": "^3.0.0", + "source-map": "^0.6.1" + }, + "engines": { + "node": ">=10" } }, - "node_modules/http-cache-semantics": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/http-cache-semantics/-/http-cache-semantics-4.1.1.tgz", - "integrity": "sha512-er295DKPVsV82j5kw1Gjt+ADA/XYHsajl82cGNQG2eyoPkvgUhX+nDIyelzhIWbbsXP39EHcI6l5tYs2FYqYXQ==", - "dev": true - }, - "node_modules/http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha512-LmpOGxTfbpgtGVxJrj5k7asXHCgNZp5nLfp+hWc8QQRqtb7fUy6kRY3BO1h9ddF6yIPYUARgxGOwB42DnxIaNw==", - "dev": true - }, - "node_modules/http-errors": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-2.0.0.tgz", - "integrity": "sha512-FtwrG/euBzaEjYeRqOgly7G0qviiXoJWnvEH2Z1plBdXgbyjv34pHTSb9zoeHMyDy33+DWy5Wt9Wo+TURtOYSQ==", + "node_modules/istanbul-reports": { + "version": "3.1.4", + "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", + "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", "dev": true, "dependencies": { - "depd": "2.0.0", - "inherits": "2.0.4", - "setprototypeof": "1.2.0", - "statuses": "2.0.1", - "toidentifier": "1.0.1" + "html-escaper": "^2.0.0", + "istanbul-lib-report": "^3.0.0" }, "engines": { - "node": ">= 0.8" + "node": ">=8" } }, - "node_modules/http-parser-js": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.5.6.tgz", - "integrity": "sha512-vDlkRPDJn93swjcjqMSaGSPABbIarsr1TLAui/gLDXzV5VsJNdXNzMYDyNBLQkjWQCJ1uizu8T2oDMhmGt0PRA==", - "dev": true - }, - "node_modules/http-proxy": { - "version": "1.18.1", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.1.tgz", - "integrity": "sha512-7mz/721AbnJwIVbnaSv1Cz3Am0ZLT/UBwkC92VlxhXv/k/BBQfM2fXElQNC27BVGr0uwUpplYPQM9LnaBMR5NQ==", + "node_modules/iterate-iterator": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.2.tgz", + "integrity": "sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==", "dev": true, - "dependencies": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - }, - "engines": { - "node": ">=8.0.0" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-proxy-agent": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-4.0.1.tgz", - "integrity": "sha512-k0zdNgqWTGA6aeIRVpvfVob4fL52dTfaehylg0Y4UvSySvOq/Y+BOyPrgpUrA7HylqvU8vIZGsRuXmspskV0Tg==", + "node_modules/iterate-value": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz", + "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==", "dev": true, "dependencies": { - "@tootallnate/once": "1", - "agent-base": "6", - "debug": "4" + "es-get-iterator": "^1.0.2", + "iterate-iterator": "^1.0.1" }, - "engines": { - "node": ">= 6" + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/http-proxy-middleware": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-2.0.6.tgz", - "integrity": "sha512-ya/UeJ6HVBYxrgYotAZo1KvPWlgB48kUJLDePFeneHsVujFaW5WNj2NgWCAE//B1Dl02BIfYlpNgBy8Kf8Rjmw==", + "node_modules/jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", "dev": true, "dependencies": { - "@types/http-proxy": "^1.17.8", - "http-proxy": "^1.18.1", - "is-glob": "^4.0.1", - "is-plain-obj": "^3.0.0", - "micromatch": "^4.0.2" + "@isaacs/cliui": "^8.0.2" }, "engines": { - "node": ">=12.0.0" + "node": ">=14" }, - "peerDependencies": { - "@types/express": "^4.17.13" + "funding": { + "url": "https://github.com/sponsors/isaacs" }, - "peerDependenciesMeta": { - "@types/express": { - "optional": true - } + "optionalDependencies": { + "@pkgjs/parseargs": "^0.11.0" } }, - "node_modules/http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha512-CAbnr6Rz4CYQkLYUtSNXxQPUH2gK8f3iWexVlsnMeD+GjlsQ0Xsy1cOX+mN3dtxYomRy21CiOzU8Uhw6OwncEQ==", + "node_modules/jake": { + "version": "10.8.5", + "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", + "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "dev": true, "dependencies": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" + "async": "^3.2.3", + "chalk": "^4.0.2", + "filelist": "^1.0.1", + "minimatch": "^3.0.4" + }, + "bin": { + "jake": "bin/cli.js" }, "engines": { - "node": ">=0.8", - "npm": ">=1.3.7" + "node": ">=10" } }, - "node_modules/http2-wrapper": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/http2-wrapper/-/http2-wrapper-2.2.1.tgz", - "integrity": "sha512-V5nVw1PAOgfI3Lmeaj2Exmeg7fenjhRUgz1lPSezy1CuhPYbgQtbQj4jZfEAEMlaL+vupsvhjqCyjzob0yxsmQ==", + "node_modules/jake/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "quick-lru": "^5.1.1", - "resolve-alpn": "^1.2.0" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10.19.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/http2-wrapper/node_modules/quick-lru": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-5.1.1.tgz", - "integrity": "sha512-WuyALRjWPDGtt/wzJiadO5AXY+8hZ80hVpe6MyivgraREW751X3SbhRvG3eLKOYN+8VEvqLcf3wdnt44Z4S4SA==", + "node_modules/jake/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/https-proxy-agent": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-5.0.1.tgz", - "integrity": "sha512-dFcAjpTQFgoLMzC2VwU+C/CbS7uRL0lWmxDITmqm7C+7F0Odmj6s9l6alZc6AELXhrnggM2CeWSXHGOdX2YtwA==", + "node_modules/jake/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jake/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "agent-base": "6", - "debug": "4" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 6" + "node": ">=8" } }, - "node_modules/human-signals": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-2.1.0.tgz", - "integrity": "sha512-B4FFZ6q/T2jhhksgkbEW3HBvWIfDW85snkQgawt07S7J5QXTk6BkNV+0yAeZrM5QpMAdYlocGoljn0sJ/WQkFw==", + "node_modules/javascript-natural-sort": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", + "integrity": "sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==" + }, + "node_modules/jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", + "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "import-local": "^3.0.2", + "jest-cli": "^27.5.1" + }, + "bin": { + "jest": "bin/jest.js" + }, "engines": { - "node": ">=10.17.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/humanize-ms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/humanize-ms/-/humanize-ms-1.2.1.tgz", - "integrity": "sha512-Fl70vYtsAFb/C06PTS9dZBo7ihau+Tu/DNCk/OyHhea07S+aeMWpFFkUaXRa8fI+ScZbEI8dfSxwY7gxZ9SAVQ==", + "node_modules/jest-canvas-mock": { + "version": "2.4.0", + "resolved": "https://registry.npmjs.org/jest-canvas-mock/-/jest-canvas-mock-2.4.0.tgz", + "integrity": "sha512-mmMpZzpmLzn5vepIaHk5HoH3Ka4WykbSoLuG/EKoJd0x0ID/t+INo1l8ByfcUJuDM+RIsL4QDg/gDnBbrj2/IQ==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "ms": "^2.0.0" + "cssfontparser": "^1.2.1", + "moo-color": "^1.0.2" } }, - "node_modules/husky": { - "version": "8.0.3", - "resolved": "https://registry.npmjs.org/husky/-/husky-8.0.3.tgz", - "integrity": "sha512-+dQSyqPh4x1hlO1swXBiNb2HzTDN1I2IGLQx1GrBuiqFJfoMrnZWwVmatvSiO+Iz8fBUnf+lekwNo4c2LlXItg==", - "bin": { - "husky": "lib/bin.js" + "node_modules/jest-changed-files": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", + "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "execa": "^5.0.0", + "throat": "^6.0.1" }, "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/typicode" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/hygen": { - "version": "6.2.7", - "resolved": "https://registry.npmjs.org/hygen/-/hygen-6.2.7.tgz", - "integrity": "sha512-JKVS3cnOgKb+iY2/qP+6tq07P4U/gCmE2gmkSLDCoCGJONt2YCXimNT/2mzi2NuSzvisjjkVxwBY7kNvUufrAQ==", + "node_modules/jest-changed-files/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "@types/node": "^17.0.19", - "chalk": "^4.1.2", - "change-case": "^3.1.0", - "debug": "^4.3.3", - "degit": "^2.8.4", - "ejs": "^3.1.6", - "enquirer": "^2.3.6", - "eslint-plugin-prettier": "^4.0.0", - "execa": "^5.0.0", - "front-matter": "^4.0.2", - "fs-extra": "^10.0.0", - "ignore-walk": "^4.0.1", - "inflection": "^1.12.0", - "ora": "^5.0.0", - "yargs-parser": "^21.0.0" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, - "bin": { - "hygen": "dist/bin.js" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/hygen/node_modules/ansi-styles": { + "node_modules/jest-changed-files/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-changed-files/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -18826,7 +19393,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/hygen/node_modules/chalk": { + "node_modules/jest-changed-files/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -18842,7 +19409,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/hygen/node_modules/has-flag": { + "node_modules/jest-changed-files/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -18851,7 +19418,7 @@ "node": ">=8" } }, - "node_modules/hygen/node_modules/supports-color": { + "node_modules/jest-changed-files/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -18863,1107 +19430,1118 @@ "node": ">=8" } }, - "node_modules/iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", + "node_modules/jest-circus": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", + "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", "dev": true, "dependencies": { - "safer-buffer": ">= 2.1.2 < 3" + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "dedent": "^0.7.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3", + "throat": "^6.0.1" }, "engines": { - "node": ">=0.10.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/icss-utils": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/icss-utils/-/icss-utils-5.1.0.tgz", - "integrity": "sha512-soFhflCVWLfRNOPU3iv5Z9VUdT44xFRbzjLsEzSr5AQmgqPMTHdU3PMT1Cf1ssx8fLNJDA1juftYl+PUcv3MqA==", + "node_modules/jest-circus/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, - "engines": { - "node": "^10 || ^12 || >= 14" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, - "peerDependencies": { - "postcss": "^8.1.0" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/idb": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/idb/-/idb-7.0.1.tgz", - "integrity": "sha512-UUxlE7vGWK5RfB/fDwEGgRf84DY/ieqNha6msMV99UsEMQhJ1RwbCd8AYBj3QMgnE3VZnfQvm4oKVCJTYlqIgg==" - }, - "node_modules/ieee754": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.2.1.tgz", - "integrity": "sha512-dcyqhDvX1C46lXZcVqCpK+FtMRQVdIMN6/Df5js2zouUsqG7I6sFxitIC+7KYK29KdXOLHdu9zL4sFnoVQnqaA==", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ] - }, - "node_modules/ignore": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-5.3.1.tgz", - "integrity": "sha512-5Fytz/IraMjqpwfd34ke28PTVMjZjJG2MPn5t7OE4eUCUNf8BAa7b5WUS9/Qvr6mwOQS7Mk6vdsMno5he+T8Xw==", + "node_modules/jest-circus/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, - "engines": { - "node": ">= 4" + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/ignore-walk": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/ignore-walk/-/ignore-walk-4.0.1.tgz", - "integrity": "sha512-rzDQLaW4jQbh2YrOFlJdCtX8qgJTehFRYiUB2r1osqTeDzV/3+Jh8fz1oAPzUThf3iku8Ds4IDqawI5d8mUiQw==", + "node_modules/jest-circus/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "minimatch": "^3.0.4" + "color-convert": "^2.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/immutable": { - "version": "4.3.5", - "resolved": "https://registry.npmjs.org/immutable/-/immutable-4.3.5.tgz", - "integrity": "sha512-8eabxkth9gZatlwl5TBuJnCsoTADlL6ftEr7A4qgdaTsPyreilDSnUk57SO+jfKcNtxPa22U5KK6DSeAYhpBJw==", - "dev": true - }, - "node_modules/import-fresh": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/import-fresh/-/import-fresh-3.3.0.tgz", - "integrity": "sha512-veYYhQa+D1QBKznvhUHxb8faxlrwUnxseDAbAp457E0wLNio2bOSKnjYDhMj+YiAq61xrMGhQk9iXVk5FzgQMw==", + "node_modules/jest-circus/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "parent-module": "^1.0.0", - "resolve-from": "^4.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=6" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/import-fresh/node_modules/resolve-from": { + "node_modules/jest-circus/node_modules/has-flag": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/resolve-from/-/resolve-from-4.0.0.tgz", - "integrity": "sha512-pb/MYmXstAkysRFx8piNI1tGFNQIFA3vkE3Gq4EuA1dF6gHp/+vgZqsCGJapvy8N3Q+4o7FwvquPJcnZ7RYy4g==", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/import-lazy": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/import-lazy/-/import-lazy-4.0.0.tgz", - "integrity": "sha512-rKtvo6a868b5Hu3heneU+L4yEQ4jYKLtjpnPeUdK7h0yzXGmyBTypknlkCvHFBqfX9YlorEiMM6Dnq/5atfHkw==", + "node_modules/jest-circus/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/import-local": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/import-local/-/import-local-3.1.0.tgz", - "integrity": "sha512-ASB07uLtnDs1o6EHjKpX34BKYDSqnFerfTOJL2HvMqF70LnxpjkzDB8J44oT9pu4AMPkQwf8jl6szgvNd2tRIg==", + "node_modules/jest-circus/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "pkg-dir": "^4.2.0", - "resolve-cwd": "^3.0.0" - }, - "bin": { - "import-local-fixture": "fixtures/cli.js" + "has-flag": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/imurmurhash": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/imurmurhash/-/imurmurhash-0.1.4.tgz", - "integrity": "sha512-JmXMZ6wuvDmLiHEml9ykzqO6lwFbof0GG4IkcGaENdCRDDmMVnny7s5HsIgHCbaq0w2MyPhDqkhTUgS2LU2PHA==", + "node_modules/jest-cli": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", + "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", "dev": true, + "dependencies": { + "@jest/core": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "exit": "^0.1.2", + "graceful-fs": "^4.2.9", + "import-local": "^3.0.2", + "jest-config": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "prompts": "^2.0.1", + "yargs": "^16.2.0" + }, + "bin": { + "jest": "bin/jest.js" + }, "engines": { - "node": ">=0.8.19" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" + }, + "peerDependenciesMeta": { + "node-notifier": { + "optional": true + } } }, - "node_modules/indent-string": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-3.2.0.tgz", - "integrity": "sha512-BYqTHXTGUIvg7t1r4sJNKcbDZkL92nkXA8YtRpbjFHRHGDL/NtUeiBJMeE60kIFN/Mg8ESaWQvftaYMGJzQZCQ==", + "node_modules/jest-cli/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + }, "engines": { - "node": ">=4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/infer-owner": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/infer-owner/-/infer-owner-1.0.4.tgz", - "integrity": "sha512-IClj+Xz94+d7irH5qRyfJonOdfTzuDaifE6ZPWfx0N0+/ATZCbuTPq2prFl526urkQd90WyUKIh1DfBQ2hMz9A==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/inflection": { - "version": "1.13.2", - "resolved": "https://registry.npmjs.org/inflection/-/inflection-1.13.2.tgz", - "integrity": "sha512-cmZlljCRTBFouT8UzMzrGcVEvkv6D/wBdcdKG7J1QH5cXjtU75Dm+P27v9EKu/Y43UYyCJd1WC4zLebRrC8NBw==", - "dev": true, - "engines": [ - "node >= 0.4.0" - ] - }, - "node_modules/inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha512-k92I/b08q4wvFscXCLvqfsHCrjrF7yiXsQuIVvVE7N82W3+aqpzuUdBbfhWcy/FZR3/4IgflMgKLOsvPDrGCJA==", + "node_modules/jest-cli/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "@types/yargs-parser": "*" } }, - "node_modules/inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==" - }, - "node_modules/ini": { - "version": "1.3.8", - "resolved": "https://registry.npmjs.org/ini/-/ini-1.3.8.tgz", - "integrity": "sha512-JV/yugV2uzW5iMRSiZAyDtQd+nxtUnjeLt0acNdw98kKLrvuRVyB80tsREOE7yvGVgalhZ6RNXCmEHkUKBKxew==" - }, - "node_modules/inquirer": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-3.3.0.tgz", - "integrity": "sha512-h+xtnyk4EwKvFWHrUYsWErEVR+igKtLdchu+o0Z1RL7VU/jVMFbYir2bp6bAj8efFNxWqHX0dIss6fJQ+/+qeQ==", + "node_modules/jest-cli/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "ansi-escapes": "^3.0.0", - "chalk": "^2.0.0", - "cli-cursor": "^2.1.0", - "cli-width": "^2.0.0", - "external-editor": "^2.0.4", - "figures": "^2.0.0", - "lodash": "^4.3.0", - "mute-stream": "0.0.7", - "run-async": "^2.2.0", - "rx-lite": "^4.0.8", - "rx-lite-aggregates": "^4.0.8", - "string-width": "^2.1.0", - "strip-ansi": "^4.0.0", - "through": "^2.3.6" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/inquirer/node_modules/ansi-escapes": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/ansi-escapes/-/ansi-escapes-3.2.0.tgz", - "integrity": "sha512-cBhpre4ma+U0T1oM5fXg7Dy1Jw7zzwv7lt/GoCpr+hDQJoYnKVPLL4dCvSEFMmQurOQvSrwT7SL/DAlhBI97RQ==", + "node_modules/jest-cli/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=4" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/inquirer/node_modules/ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", + "node_modules/jest-cli/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/inquirer/node_modules/cli-cursor": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-2.1.0.tgz", - "integrity": "sha512-8lgKz8LmCRYZZQDpRyT2m5rKJ08TnU4tR9FFFW2rxpxR1FzWi4PQ/NfyODchAatHaUgnSPVcx/R5w6NuTBzFiw==", + "node_modules/jest-cli/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { - "restore-cursor": "^2.0.0" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/inquirer/node_modules/is-fullwidth-code-point": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-2.0.0.tgz", - "integrity": "sha512-VHskAKYM8RfSFXwee5t5cbN5PZeq1Wrh6qd5bkyiXIf6UQcN6w/A0eXM9r6t8d+GYOh+o6ZhiEnb88LN/Y8m2w==", + "node_modules/jest-cli/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/inquirer/node_modules/mimic-fn": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-1.2.0.tgz", - "integrity": "sha512-jf84uxzwiuiIVKiOLpfYk7N46TSy8ubTonmneY9vrpHNAnp0QBt2BxWV9dO3/j+BoVAb+a5G6YDPW3M5HOdMWQ==", + "node_modules/jest-config": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", + "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", "dev": true, + "dependencies": { + "@babel/core": "^7.8.0", + "@jest/test-sequencer": "^27.5.1", + "@jest/types": "^27.5.1", + "babel-jest": "^27.5.1", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "deepmerge": "^4.2.2", + "glob": "^7.1.1", + "graceful-fs": "^4.2.9", + "jest-circus": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-jasmine2": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runner": "^27.5.1", + "jest-util": "^27.5.1", + "jest-validate": "^27.5.1", + "micromatch": "^4.0.4", + "parse-json": "^5.2.0", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "strip-json-comments": "^3.1.1" + }, "engines": { - "node": ">=4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "ts-node": ">=9.0.0" + }, + "peerDependenciesMeta": { + "ts-node": { + "optional": true + } } }, - "node_modules/inquirer/node_modules/onetime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-2.0.1.tgz", - "integrity": "sha512-oyyPpiMaKARvvcgip+JV+7zci5L8D1W9RZIz2l1o08AM3pfspitVWnPt3mzHcBPp12oYMTy0pqrFs/C+m3EwsQ==", + "node_modules/jest-config/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "dependencies": { - "mimic-fn": "^1.0.0" + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" }, "engines": { - "node": ">=4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/inquirer/node_modules/restore-cursor": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-2.0.0.tgz", - "integrity": "sha512-6IzJLuGi4+R14vwagDHX+JrXmPVtPpn4mffDJ1UdR7/Edm87fl6yi8mMBIVvFtJaNTUvjughmW4hwLhRG7gC1Q==", + "node_modules/jest-config/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "onetime": "^2.0.0", - "signal-exit": "^3.0.2" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/inquirer/node_modules/string-width": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-2.1.1.tgz", - "integrity": "sha512-nOqH59deCq9SRHlxq1Aw85Jnt4w6KvLKqWVik6oA9ZklXLNIOlqg4F2yrT1MVaTjAqvVwdfeZ7w7aCvJD7ugkw==", + "node_modules/jest-config/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "dependencies": { - "is-fullwidth-code-point": "^2.0.0", - "strip-ansi": "^4.0.0" + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-config/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" }, "engines": { - "node": ">=4" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/inquirer/node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "node_modules/jest-config/node_modules/babel-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", + "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", "dev": true, "dependencies": { - "ansi-regex": "^3.0.0" + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__core": "^7.1.14", + "babel-plugin-istanbul": "^6.1.1", + "babel-preset-jest": "^27.5.1", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "slash": "^3.0.0" }, "engines": { - "node": ">=4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.8.0" } }, - "node_modules/internal-slot": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/internal-slot/-/internal-slot-1.0.7.tgz", - "integrity": "sha512-NGnrKwXzSms2qUUih/ILZ5JBqNTSa1+ZmP6flaIp6KmSElgE9qdndzS3cqjrDovwFdmwsGsLdeFgB6suw+1e9g==", + "node_modules/jest-config/node_modules/babel-plugin-jest-hoist": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", + "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", "dev": true, "dependencies": { - "es-errors": "^1.3.0", - "hasown": "^2.0.0", - "side-channel": "^1.0.4" + "@babel/template": "^7.3.3", + "@babel/types": "^7.3.3", + "@types/babel__core": "^7.0.0", + "@types/babel__traverse": "^7.0.6" }, "engines": { - "node": ">= 0.4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/interpret": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-2.2.0.tgz", - "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", + "node_modules/jest-config/node_modules/babel-preset-jest": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", + "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", "dev": true, + "dependencies": { + "babel-plugin-jest-hoist": "^27.5.1", + "babel-preset-current-node-syntax": "^1.0.0" + }, "engines": { - "node": ">= 0.10" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "peerDependencies": { + "@babel/core": "^7.0.0" } }, - "node_modules/iota-array": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", - "integrity": "sha512-pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA==" - }, - "node_modules/ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", - "dev": true - }, - "node_modules/ipaddr.js": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-2.0.1.tgz", - "integrity": "sha512-1qTgH9NG+IIJ4yfKs2e6Pp1bZg8wbDbKHT21HrLIeYBTRLgMYKnMTPAuI3Lcs61nfx5h1xlXnbJtH1kX5/d/ng==", + "node_modules/jest-config/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">= 10" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-absolute-url": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-3.0.3.tgz", - "integrity": "sha512-opmNIX7uFnS96NtPmhWQgQx6/NYFgsUXYMllcfzwWKUMwfo8kku1TvE6hkNcH+Q1ts5cMVrsY7j0bxXQDciu9Q==", + "node_modules/jest-config/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/is-arguments": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/is-arguments/-/is-arguments-1.1.1.tgz", - "integrity": "sha512-8Q7EARjzEnKpt/PCD7e1cgUS0a6X8u5tdSiMqXhojOdoV9TsMsiO+9VLC5vAmO8N7/GmXn7yjR8qnA6bVAEzfA==", + "node_modules/jest-config/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" }, "engines": { - "node": ">= 0.4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/is-array-buffer": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/is-array-buffer/-/is-array-buffer-3.0.4.tgz", - "integrity": "sha512-wcjaerHw0ydZwfhiKbXJWLDY8A7yV7KhjQOpb83hGgGfId/aQa4TOvwyzn2PuswW2gPCYEL/nEAiSVpdOj1lXw==", + "node_modules/jest-config/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.2.1" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha512-zz06S8t0ozoDXMG+ube26zeCTNXcKIPJZJi8hBrF4idCLms4CG9QtK7qBl1boi5ODzFpjswb5JPmHCbMpjaYzg==", - "dev": true - }, - "node_modules/is-bigint": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-bigint/-/is-bigint-1.0.4.tgz", - "integrity": "sha512-zB9CruMamjym81i2JZ3UMn54PKGsQzsJeo6xvN3HJJ4CAsQNB6iRutp2To77OfCNuoxspsIhzaPoO1zyCEhFOg==", + "node_modules/jest-config/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dev": true, "dependencies": { - "has-bigints": "^1.0.1" + "@types/node": "*", + "graceful-fs": "^4.2.9" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-binary-path": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-2.1.0.tgz", - "integrity": "sha512-ZMERYes6pDydyuGidse7OsHxtbI7WVeUEozgR/g7rd0xUimYNlvZRE/K2MgZTjWy725IfelLeVcEM97mmtRGXw==", + "node_modules/jest-config/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { - "binary-extensions": "^2.0.0" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-boolean-object": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-boolean-object/-/is-boolean-object-1.1.2.tgz", - "integrity": "sha512-gDYaKHJmnj4aWxyj6YHyXVpdQawtVLHU5cb+eztPGczf6cjuTdwve5ZIEfgXqH4e57An1D1AKf8CZ3kYrQRqYA==", + "node_modules/jest-config/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==" + "node_modules/jest-diff": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", + "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "dev": true, + "dependencies": { + "chalk": "^4.0.0", + "diff-sequences": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } }, - "node_modules/is-callable": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/is-callable/-/is-callable-1.2.7.tgz", - "integrity": "sha512-1BC0BVFhS/p0qtw6enp8e+8OD0UrK0oFLztSjNzhcKA3WDuJxxAPXzPuPtKkjEY9UUoEWlX/8fgKeu2S8i9JTA==", + "node_modules/jest-diff/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-ci": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/is-ci/-/is-ci-3.0.1.tgz", - "integrity": "sha512-ZYvCgrefwqoQ6yTyYUbQu64HsITZ3NfKX1lzaEYdkTDcfKzzCI/wthRRYKkdjHKFVgNiXKAKm65Zo1pk2as/QQ==", + "node_modules/jest-diff/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "ci-info": "^3.2.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "bin": { - "is-ci": "bin.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-core-module": { - "version": "2.11.0", - "resolved": "https://registry.npmjs.org/is-core-module/-/is-core-module-2.11.0.tgz", - "integrity": "sha512-RRjxlvLDkD1YJwDbroBHMb+cukurkDWNyHx7D3oNB5x9rb5ogcksMC5wHCadcXoo67gVr/+3GFySh3134zi6rw==", + "node_modules/jest-diff/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/jest-diff/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "has": "^1.0.3" + "has-flag": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/is-data-view": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-data-view/-/is-data-view-1.0.1.tgz", - "integrity": "sha512-AHkaJrsUVW6wq6JS8y3JnM/GJF/9cf+k20+iDzlSaJrinEo5+7vRiteOSwBhHRiAyQATN1AmY4hwzxJKPmYf+w==", + "node_modules/jest-docblock": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", + "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", "dev": true, "dependencies": { - "is-typed-array": "^1.1.13" + "detect-newline": "^3.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-date-object": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/is-date-object/-/is-date-object-1.0.5.tgz", - "integrity": "sha512-9YQaSxsAiSwcvS33MBk3wTCVnWK+HhF8VZR2jRxehM16QcVOdHqPn4VPHmRK4lSr38n9JriurInLcP90xsYNfQ==", + "node_modules/jest-each": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", + "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "@jest/types": "^27.5.1", + "chalk": "^4.0.0", + "jest-get-type": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">= 0.4" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-each/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-docker": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", - "integrity": "sha512-F+i2BKsFrH66iaUFc0woD8sLy8getkwTwtOBjvs56Cx4CgJDeKQeqfz8wAYiSb8JOprWhHH5p77PbmYCvvUuXQ==", + "node_modules/jest-each/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, - "bin": { - "is-docker": "cli.js" + "dependencies": { + "@types/yargs-parser": "*" + } + }, + "node_modules/jest-each/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha512-SbKbANkN603Vi4jEZv49LeVJMn4yGwsbzZworEoyEiutsN3nJYdbO36zfhGJ6QEDpOZIFkDtnq5JRxmvl3jsoQ==", + "node_modules/jest-each/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": ">=0.10.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-fullwidth-code-point": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-3.0.0.tgz", - "integrity": "sha512-zymm5+u+sCsSWyD9qNaejV3DFvhCKclKdizYaJUuHA83RLjb7nSuGnddCHGv0hk+KY7BMAlsWeK4Ueg6EV6XQg==", + "node_modules/jest-each/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/is-generator-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-generator-fn/-/is-generator-fn-2.1.0.tgz", - "integrity": "sha512-cTIB4yPYL/Grw0EaSzASzg6bBy9gqCofvWN8okThAYIxKJZC+udlRAmGbM0XLeniEJSs8uEgHPGuHSe1XsOLSQ==", + "node_modules/jest-each/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, "engines": { - "node": ">=6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-generator-function": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/is-generator-function/-/is-generator-function-1.0.10.tgz", - "integrity": "sha512-jsEjy9l3yiXEQ+PsXdmBwEPcOxaXWLspKdplFUVI9vq1iZgIekeC0L167qeu86czQaxed3q/Uzuw0swL0irL8A==", + "node_modules/jest-each/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=8" } }, - "node_modules/is-glob": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.3.tgz", - "integrity": "sha512-xelSayHH36ZgE7ZWhli7pW34hNbNl8Ojv5KVmkJD4hBdD3th8Tfk9vYasLM+mXWOZhFkgZfxhLSnrwRr4elSSg==", + "node_modules/jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", "dev": true, "dependencies": { - "is-extglob": "^2.1.1" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" }, "engines": { - "node": ">=0.10.0" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-in-ci": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-in-ci/-/is-in-ci-0.1.0.tgz", - "integrity": "sha512-d9PXLEY0v1iJ64xLiQMJ51J128EYHAaOR4yZqQi8aHGfw6KgifM3/Viw1oZZ1GCVmb3gBuyhLyHj0HgR2DhSXQ==", + "node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, - "bin": { - "is-in-ci": "cli.js" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-inside-container": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-inside-container/-/is-inside-container-1.0.0.tgz", - "integrity": "sha512-KIYLCCJghfHZxqjYBE7rEy0OBuTd5xCHS7tHVgvCLkx7StIoaxwNW3hCALgEUjFfeRk+MG/Qxmp/vtETEF3tRA==", + "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "dependencies": { - "is-docker": "^3.0.0" - }, - "bin": { - "is-inside-container": "cli.js" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "@types/yargs-parser": "*" } }, - "node_modules/is-inside-container/node_modules/is-docker": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-3.0.0.tgz", - "integrity": "sha512-eljcgEDlEns/7AXFosB5K/2nCM4P7FQPkGc/DWLy5rmFEWvZayGrik1d9/QIY5nJ4f9YsVvBkA6kJpHn9rISdQ==", + "node_modules/jest-environment-jsdom/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, - "bin": { - "is-docker": "cli.js" + "dependencies": { + "color-convert": "^2.0.1" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-installed-globally": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/is-installed-globally/-/is-installed-globally-0.4.0.tgz", - "integrity": "sha512-iwGqO3J21aaSkC7jWnHP/difazwS7SFeIqxv6wEtLU8Y5KlzFTjyqcSIT0d8s4+dDhKytsk9PJZ2BkS5eZwQRQ==", + "node_modules/jest-environment-jsdom/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "global-dirs": "^3.0.0", - "is-path-inside": "^3.0.2" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-interactive": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-1.0.0.tgz", - "integrity": "sha512-2HvIEKRoqS62guEC+qBjpvRubdX910WCMuJTZ+I9yvqKU2/12eSL549HMwtabb4oupdj2sMP50k+XJfB/8JE6w==", + "node_modules/jest-environment-jsdom/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/is-lambda": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-lambda/-/is-lambda-1.0.1.tgz", - "integrity": "sha512-z7CMFGNrENq5iFB9Bqo64Xk6Y9sg+epq1myIcdHaGnbMTYOxvzsEtdYqQUylB7LxfkvgrrjP32T6Ywciio9UIQ==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/is-lower-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/is-lower-case/-/is-lower-case-1.1.3.tgz", - "integrity": "sha512-+5A1e/WJpLLXZEDlgz4G//WYSHyQBD32qa4Jd3Lw06qQlv3fJHnp3YIHjTQSGzHMgzmVKz2ZP3rBxTHkPw/lxA==", + "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { - "lower-case": "^1.1.0" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-map": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-map/-/is-map-2.0.2.tgz", - "integrity": "sha512-cOZFQQozTha1f4MxLFzlgKYPTyj26picdZTx82hbc/Xf4K/tZOOXSCkMvU4pKioRXGDLJRn0GM7Upe7kR721yg==", + "node_modules/jest-environment-jsdom/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/is-nan": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/is-nan/-/is-nan-1.3.2.tgz", - "integrity": "sha512-E+zBKpQ2t6MEo1VsonYmluk9NxGrbzpeeLC2xIViuO2EjU2xsXsBPwTr3Ykv9l08UYEVEdWeRZNouaZqF6RN0w==", + "node_modules/jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", "dev": true, "dependencies": { - "call-bind": "^1.0.0", - "define-properties": "^1.1.3" + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-negative-zero": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/is-negative-zero/-/is-negative-zero-2.0.3.tgz", - "integrity": "sha512-5KoIu2Ngpyek75jXodFvnafB6DJgr3u8uuK0LEZJjrU19DrMD3EVERaR8sjz8CCGgpZvxPl9SuE1GMVPFHx1mw==", + "node_modules/jest-environment-node/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, - "engines": { - "node": ">= 0.4" + "dependencies": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-npm": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/is-npm/-/is-npm-6.0.0.tgz", - "integrity": "sha512-JEjxbSmtPSt1c8XTkVrlujcXdKV1/tvuQ7GwKcAlyiVLeYFQ2VHat8xfrDJsIkhCdF/tZ7CiIR3sy141c6+gPQ==", + "node_modules/jest-environment-node/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "dependencies": { + "@types/yargs-parser": "*" } }, - "node_modules/is-number": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-7.0.0.tgz", - "integrity": "sha512-41Cifkg6e8TylSpdtTpeLVMqvSBEVzTttHvERD741+pnZ8ANv0004MRL43QKPDlK9cGvNp6NZWZUBlbGXYxxng==", + "node_modules/jest-environment-node/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": ">=0.12.0" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-number-object": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-number-object/-/is-number-object-1.0.7.tgz", - "integrity": "sha512-k1U0IRzLMo7ZlYIfzRu23Oh6MiIFasgpb9X76eqfFZAqwH44UI4KTBvBYIZ1dSL9ZzChTB9ShHfLkR4pdW5krQ==", + "node_modules/jest-environment-node/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/is-obj": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-obj/-/is-obj-2.0.0.tgz", - "integrity": "sha512-drqDG3cbczxxEJRoOXcOjtdp1J/lyp1mNn0xaznRs8+muBhgQcrnbspox5X5fOw0HnMnbfDzvnEMEtqDEJEo8w==", + "node_modules/jest-environment-node/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { "node": ">=8" } }, - "node_modules/is-path-cwd": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-path-cwd/-/is-path-cwd-2.2.0.tgz", - "integrity": "sha512-w942bTcih8fdJPJmQHFzkS76NEP8Kzzvmw92cXsazb8intwLqPibPPdXf4ANdKV3rYMuuQYGIWtvz9JilB3NFQ==", + "node_modules/jest-environment-node/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, "engines": { - "node": ">=6" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-path-inside": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/is-path-inside/-/is-path-inside-3.0.3.tgz", - "integrity": "sha512-Fd4gABb+ycGAmKou8eMftCupSir5lRxqf4aD/vd0cD2qc4HL07OjCeuHMr8Ro4CoMaeCKDB0/ECBOVWjTwUvPQ==", + "node_modules/jest-environment-node/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/is-plain-obj": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-3.0.0.tgz", - "integrity": "sha512-gwsOE28k+23GP1B6vFl1oVh/WOzmawBrKwo5Ev6wMKzPkaXaCDIQKzLnvsA42DRlbVTWorkgTKIviAKCWkfUwA==", + "node_modules/jest-get-type": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", + "node_modules/jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "dependencies": { - "isobject": "^3.0.1" + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "engines": { - "node": ">=0.10.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/is-potential-custom-element-name": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-potential-custom-element-name/-/is-potential-custom-element-name-1.0.1.tgz", - "integrity": "sha512-bCYeRA2rVibKZd+s2625gGnGF/t7DSqDs4dP7CrLA1m7jKWz6pps0LpYLJN8Q64HtmPKJ1hrN3nzPNKFEKOUiQ==", - "dev": true + "node_modules/jest-haste-map/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } }, - "node_modules/is-regex": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/is-regex/-/is-regex-1.1.4.tgz", - "integrity": "sha512-kvRdxDsxZjhzUX07ZnLydzS1TU/TJlTUHHY4YLL87e37oUA49DfkLqgy+VjFocowy29cKvcSiu+kIv728jTTVg==", + "node_modules/jest-haste-map/node_modules/jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "has-tostringtag": "^1.0.0" + "@types/node": "*", + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-resolvable": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-resolvable/-/is-resolvable-1.1.0.tgz", - "integrity": "sha512-qgDYXFSR5WvEfuS5dMj6oTMEbrrSaM0CrFk2Yiq/gXnBvD9pMa2jGXxyhGLfvhZpuMZe18CJpFxAt3CRs42NMg==", - "dev": true - }, - "node_modules/is-set": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-set/-/is-set-2.0.2.tgz", - "integrity": "sha512-+2cnTEZeY5z/iXGbLhPrOAaK/Mau5k5eXq9j14CpRTftq0pAJu2MwVRSZhyZWBzx3o6X795Lz6Bpb6R0GKf37g==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-shared-array-buffer": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-shared-array-buffer/-/is-shared-array-buffer-1.0.3.tgz", - "integrity": "sha512-nA2hv5XIhLR3uVzDDfCIknerhx8XUKnstuOERPNNIinXG7v9u+ohXF67vxm4TPTEPU6lm61ZkwP3c9PCB97rhg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.7" - }, - "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-ssh": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/is-ssh/-/is-ssh-1.4.0.tgz", - "integrity": "sha512-x7+VxdxOdlV3CYpjvRLBv5Lo9OJerlYanjwFrPR9fuGPjCiNiCzFgAWpiLAohSbsnH4ZAys3SBh+hq5rJosxUQ==", - "dev": true, - "dependencies": { - "protocols": "^2.0.1" - } - }, - "node_modules/is-stream": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-2.0.1.tgz", - "integrity": "sha512-hFoiJiTl63nn+kstHGBtewWSKnQLpyb155KHheA1l39uvtO9nWIop1p3udqPcUd/xbF1VLMO4n7OI6p7RbngDg==", - "dev": true, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/is-string": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/is-string/-/is-string-1.0.7.tgz", - "integrity": "sha512-tE2UXzivje6ofPW7l23cjDOMa09gb7xlAqG6jG5ej6uPV32TlWP3NKPigtaGeHNu9fohccRYvIiZMfOOnOYUtg==", + "node_modules/jest-haste-map/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "has-tostringtag": "^1.0.0" + "has-flag": "^4.0.0" }, "engines": { - "node": ">= 0.4" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/is-symbol": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/is-symbol/-/is-symbol-1.0.4.tgz", - "integrity": "sha512-C/CPBqKWnvdcxqIARxyOh4v1UUEOCHpgDa0WYgpKDFMszcrPcffg5uhwSgPCLD2WWxmq6isisz87tzT01tuGhg==", + "node_modules/jest-jasmine2": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", + "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", "dev": true, "dependencies": { - "has-symbols": "^1.0.2" + "@jest/environment": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "co": "^4.6.0", + "expect": "^27.5.1", + "is-generator-fn": "^2.0.0", + "jest-each": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-snapshot": "^27.5.1", + "jest-util": "^27.5.1", + "pretty-format": "^27.5.1", + "throat": "^6.0.1" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-typed-array": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/is-typed-array/-/is-typed-array-1.1.13.tgz", - "integrity": "sha512-uZ25/bUAlUY5fR4OKT4rZQEBrzQWYV9ZJYGGsUmEJ6thodVJ1HX64ePQ6Z0qPWP+m+Uq6e9UugrE38jeYsDSMw==", + "node_modules/jest-jasmine2/node_modules/@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", "dev": true, "dependencies": { - "which-typed-array": "^1.1.14" - }, - "engines": { - "node": ">= 0.4" + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha512-cyA56iCMHAh5CdzjJIa4aohJyeO1YbwLi3Jc35MmRU6poroFjIGZzUzupGiRPOjgHg9TLu43xbpwXk523fMxKA==" - }, - "node_modules/is-unicode-supported": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-0.1.0.tgz", - "integrity": "sha512-knxG2q4UC3u8stRGyAVJCOdxFmv5DZiRcdlIaAQXAbSfJya+OhopNotLQrstBhququ4ZpuKbDc/8S6mgXgPFPw==", - "dev": true, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/is-upper-case": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/is-upper-case/-/is-upper-case-1.1.2.tgz", - "integrity": "sha512-GQYSJMgfeAmVwh9ixyk888l7OIhNAGKtY6QA+IrWlu9MDTCaXmeozOZ2S9Knj7bQwBO/H6J2kb+pbyTUiMNbsw==", + "node_modules/jest-jasmine2/node_modules/@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", "dev": true, "dependencies": { - "upper-case": "^1.1.0" - } - }, - "node_modules/is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha512-rMYPYvCzsXywIsldgLaSoPlw5PfoB/ssr7hY4pLfcodrA5M/eArza1a9VmTiNIBNMjOGr1Ow9mTyU2o69U6U9Q==" - }, - "node_modules/is-weakmap": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-weakmap/-/is-weakmap-2.0.1.tgz", - "integrity": "sha512-NSBR4kH5oVj1Uwvv970ruUkCV7O1mzgVFO4/rev2cLRda9Tm9HrL70ZPut4rOHgY0FNrUu9BCbXA2sdQ+x0chA==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "@types/yargs-parser": "*" } }, - "node_modules/is-weakref": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-weakref/-/is-weakref-1.0.2.tgz", - "integrity": "sha512-qctsuLZmIQ0+vSSMfoVvyFe2+GSEvnmZ2ezTup1SBse9+twCCeial6EEi3Nc2KFcf6+qz2FBPnjXsk8xhKSaPQ==", + "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "call-bind": "^1.0.2" + "color-convert": "^2.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/is-weakset": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/is-weakset/-/is-weakset-2.0.2.tgz", - "integrity": "sha512-t2yVvttHkQktwnNNmBQ98AhENLdPUTDTE21uPqAQ0ARwQfGeQKRVS0NNurH7bTf7RrvcVn1OOge45CnBeHCSmg==", - "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "get-intrinsic": "^1.1.1" + "engines": { + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/is-wsl": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-2.2.0.tgz", - "integrity": "sha512-fKzAra0rGJUUBwGBgNkHZuToZcn+TtXHpeCgmkMJMMYx1sQDYaCSyjJBSCa2nH1DGm7s3n1oBnohoVTBaN7Lww==", + "node_modules/jest-jasmine2/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "is-docker": "^2.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" - } - }, - "node_modules/isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha512-VLghIWNM6ELQzo7zwmcg0NmTVyWKYjvIeM83yjp0wRDTmUnrM678fQbcKBo6n2CJEF0szoG//ytg+TKla89ALQ==" - }, - "node_modules/iserror": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/iserror/-/iserror-0.0.2.tgz", - "integrity": "sha512-oKGGrFVaWwETimP3SiWwjDeY27ovZoyZPHtxblC4hCq9fXxed/jasx+ATWFFjCVSRZng8VTMsN1nDnGo6zMBSw==" - }, - "node_modules/isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha512-RHxMLp9lnKHGHRng9QFhRCMbYAcVpn69smSGcq3f36xjgVVWThj4qqLbTLlq7Ssj8B+fIQ1EuCEGI2lKsyQeIw==", - "dev": true - }, - "node_modules/ismobilejs": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ismobilejs/-/ismobilejs-1.1.1.tgz", - "integrity": "sha512-VaFW53yt8QO61k2WJui0dHf4SlL8lxBofUuUmwBo0ljPk0Drz2TiuDW4jo3wDcv41qy/SxrJ+VAzJ/qYqsmzRw==" - }, - "node_modules/isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/isomorphic-unfetch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz", - "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==", - "dev": true, - "dependencies": { - "node-fetch": "^2.6.1", - "unfetch": "^4.2.0" - } - }, - "node_modules/isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha512-Yljz7ffyPbrLpLngrMtZ7NduUgVvi6wG9RJ9IUcyCd59YQ911PBJphODUcbOVbqYfxe1wuYf/LJ8PauMRwsM/g==" - }, - "node_modules/issue-parser": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/issue-parser/-/issue-parser-6.0.0.tgz", - "integrity": "sha512-zKa/Dxq2lGsBIXQ7CUZWTHfvxPC2ej0KfO7fIPqLlHB9J2hJ7rGhZ5rilhuufylr4RXYPzJUeFjKxz305OsNlA==", - "dev": true, - "dependencies": { - "lodash.capitalize": "^4.2.1", - "lodash.escaperegexp": "^4.1.2", - "lodash.isplainobject": "^4.0.6", - "lodash.isstring": "^4.0.1", - "lodash.uniqby": "^4.7.0" + "node": ">=10" }, - "engines": { - "node": ">=10.13" - } - }, - "node_modules/istanbul-lib-coverage": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-coverage/-/istanbul-lib-coverage-3.2.0.tgz", - "integrity": "sha512-eOeJ5BHCmHYvQK7xt9GkdHuzuCGS1Y6g9Gvnx3Ym33fz/HpLRYxiS0wHNr+m/MBC8B647Xt608vCDEvhl9c6Mw==", - "dev": true, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/istanbul-lib-instrument": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-instrument/-/istanbul-lib-instrument-5.2.0.tgz", - "integrity": "sha512-6Lthe1hqXHBNsqvgDzGO6l03XNeu3CrG4RqQ1KM9+l5+jNGpEJfIELx1NS3SEHmJQA8np/u+E4EPRKRiu6m19A==", + "node_modules/jest-jasmine2/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "@babel/core": "^7.12.3", - "@babel/parser": "^7.14.7", - "@istanbuljs/schema": "^0.1.2", - "istanbul-lib-coverage": "^3.2.0", - "semver": "^6.3.0" - }, "engines": { "node": ">=8" } }, - "node_modules/istanbul-lib-instrument/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true, - "bin": { - "semver": "bin/semver.js" - } - }, - "node_modules/istanbul-lib-report": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/istanbul-lib-report/-/istanbul-lib-report-3.0.0.tgz", - "integrity": "sha512-wcdi+uAKzfiGT2abPpKZ0hSU1rGQjUQnLvtY5MpQ7QCTahD3VODhcu4wcfY1YtkGaDD5yuydOLINXsfbus9ROw==", + "node_modules/jest-jasmine2/node_modules/jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { - "istanbul-lib-coverage": "^3.0.0", - "make-dir": "^3.0.0", - "supports-color": "^7.1.0" + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": ">=8" - } - }, - "node_modules/istanbul-lib-report/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/istanbul-lib-report/node_modules/supports-color": { + "node_modules/jest-jasmine2/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -19975,74 +20553,35 @@ "node": ">=8" } }, - "node_modules/istanbul-lib-source-maps": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/istanbul-lib-source-maps/-/istanbul-lib-source-maps-4.0.1.tgz", - "integrity": "sha512-n3s8EwkdFIJCG3BPKBYvskgXGoy88ARzvegkitk60NxRdwltLOTaH7CUiMRXvwYorl0Q712iEjcWB+fK/MrWVw==", - "dev": true, - "dependencies": { - "debug": "^4.1.1", - "istanbul-lib-coverage": "^3.0.0", - "source-map": "^0.6.1" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/istanbul-reports": { - "version": "3.1.4", - "resolved": "https://registry.npmjs.org/istanbul-reports/-/istanbul-reports-3.1.4.tgz", - "integrity": "sha512-r1/DshN4KSE7xWEknZLLLLDn5CJybV3nw01VTkp6D5jzLuELlcbudfj/eSQFvrKsJuTVCGnePO7ho82Nw9zzfw==", + "node_modules/jest-leak-detector": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", + "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", "dev": true, "dependencies": { - "html-escaper": "^2.0.0", - "istanbul-lib-report": "^3.0.0" + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">=8" - } - }, - "node_modules/iterate-iterator": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/iterate-iterator/-/iterate-iterator-1.0.2.tgz", - "integrity": "sha512-t91HubM4ZDQ70M9wqp+pcNpu8OyJ9UAtXntT/Bcsvp5tZMnz9vRa+IunKXeI8AnfZMTv0jNuVEmGeLSMjVvfPw==", - "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/iterate-value": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/iterate-value/-/iterate-value-1.0.2.tgz", - "integrity": "sha512-A6fMAio4D2ot2r/TYzr4yUWrmwNdsN5xL7+HUiyACE4DXm+q8HtPcnFTp+NnW3k4N05tZ7FVYFFb2CR13NxyHQ==", - "dev": true, - "dependencies": { - "es-get-iterator": "^1.0.2", - "iterate-iterator": "^1.0.1" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jake": { - "version": "10.8.5", - "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", - "integrity": "sha512-sVpxYeuAhWt0OTWITwT98oyV0GsXyMlXCF+3L1SuafBVUIr/uILGRB+NqwkzhgXKvoJpDIpQvqkUALgdmQsQxw==", + "node_modules/jest-matcher-utils": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", + "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", "dev": true, "dependencies": { - "async": "^3.2.3", - "chalk": "^4.0.2", - "filelist": "^1.0.1", - "minimatch": "^3.0.4" - }, - "bin": { - "jake": "bin/cli.js" + "chalk": "^4.0.0", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "pretty-format": "^27.5.1" }, "engines": { - "node": ">=10" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jake/node_modules/ansi-styles": { + "node_modules/jest-matcher-utils/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20057,7 +20596,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jake/node_modules/chalk": { + "node_modules/jest-matcher-utils/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -20073,7 +20612,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jake/node_modules/has-flag": { + "node_modules/jest-matcher-utils/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -20082,7 +20621,7 @@ "node": ">=8" } }, - "node_modules/jake/node_modules/supports-color": { + "node_modules/jest-matcher-utils/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -20094,61 +20633,27 @@ "node": ">=8" } }, - "node_modules/javascript-natural-sort": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/javascript-natural-sort/-/javascript-natural-sort-0.7.1.tgz", - "integrity": "sha512-nO6jcEfZWQXDhOiBtG2KvKyEptz7RVbpGP4vTD2hLBdmNQSsCiicO2Ioinv6UI4y9ukqnBpy+XZ9H6uLNgJTlw==" - }, - "node_modules/jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest/-/jest-27.5.1.tgz", - "integrity": "sha512-Yn0mADZB89zTtjkPJEXwrac3LHudkQMR+Paqa8uxJHCBr9agxztUifWCyiYrjhMPBoUVBjyny0I7XH6ozDr7QQ==", - "dev": true, - "dependencies": { - "@jest/core": "^27.5.1", - "import-local": "^3.0.2", - "jest-cli": "^27.5.1" - }, - "bin": { - "jest": "bin/jest.js" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } - } - }, - "node_modules/jest-canvas-mock": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/jest-canvas-mock/-/jest-canvas-mock-2.4.0.tgz", - "integrity": "sha512-mmMpZzpmLzn5vepIaHk5HoH3Ka4WykbSoLuG/EKoJd0x0ID/t+INo1l8ByfcUJuDM+RIsL4QDg/gDnBbrj2/IQ==", - "dev": true, - "dependencies": { - "cssfontparser": "^1.2.1", - "moo-color": "^1.0.2" - } - }, - "node_modules/jest-changed-files": { + "node_modules/jest-message-util": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-changed-files/-/jest-changed-files-27.5.1.tgz", - "integrity": "sha512-buBLMiByfWGCoMsLLzGUUSpAmIAGnbR2KJoMN10ziLhOLvP4e0SlypHnAel8iqQXTrcbmfEY9sSqae5sgUsTvw==", + "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", + "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", "dev": true, "dependencies": { + "@babel/code-frame": "^7.12.13", "@jest/types": "^27.5.1", - "execa": "^5.0.0", - "throat": "^6.0.1" + "@types/stack-utils": "^2.0.0", + "chalk": "^4.0.0", + "graceful-fs": "^4.2.9", + "micromatch": "^4.0.4", + "pretty-format": "^27.5.1", + "slash": "^3.0.0", + "stack-utils": "^2.0.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-changed-files/node_modules/@jest/types": { + "node_modules/jest-message-util/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -20164,7 +20669,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-changed-files/node_modules/@types/yargs": { + "node_modules/jest-message-util/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -20173,7 +20678,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-changed-files/node_modules/ansi-styles": { + "node_modules/jest-message-util/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20188,7 +20693,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-changed-files/node_modules/chalk": { + "node_modules/jest-message-util/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -20204,7 +20709,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-changed-files/node_modules/has-flag": { + "node_modules/jest-message-util/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -20213,7 +20718,7 @@ "node": ">=8" } }, - "node_modules/jest-changed-files/node_modules/supports-color": { + "node_modules/jest-message-util/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -20225,37 +20730,20 @@ "node": ">=8" } }, - "node_modules/jest-circus": { + "node_modules/jest-mock": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-circus/-/jest-circus-27.5.1.tgz", - "integrity": "sha512-D95R7x5UtlMA5iBYsOHFFbMD/GVA4R/Kdq15f7xYWUfWHBto9NYRsOvnSauTgdF+ogCpJ4tyKOXhUifxS65gdw==", + "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", + "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", "dev": true, "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "co": "^4.6.0", - "dedent": "^0.7.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3", - "throat": "^6.0.1" + "@types/node": "*" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-circus/node_modules/@jest/types": { + "node_modules/jest-mock/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -20271,7 +20759,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-circus/node_modules/@types/yargs": { + "node_modules/jest-mock/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -20280,7 +20768,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-circus/node_modules/ansi-styles": { + "node_modules/jest-mock/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20295,7 +20783,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-circus/node_modules/chalk": { + "node_modules/jest-mock/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -20311,7 +20799,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-circus/node_modules/has-flag": { + "node_modules/jest-mock/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -20320,70 +20808,80 @@ "node": ">=8" } }, - "node_modules/jest-circus/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "node_modules/jest-mock/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" } }, - "node_modules/jest-circus/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-pnp-resolver": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", + "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "engines": { + "node": ">=6" + }, + "peerDependencies": { + "jest-resolve": "*" }, + "peerDependenciesMeta": { + "jest-resolve": { + "optional": true + } + } + }, + "node_modules/jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true, "engines": { - "node": ">=8" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-cli": { + "node_modules/jest-resolve": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-cli/-/jest-cli-27.5.1.tgz", - "integrity": "sha512-Hc6HOOwYq4/74/c62dEE3r5elx8wjYqxY0r0G/nFrLDPMFRu6RA/u8qINOIkvhxG7mMQ5EJsOGfRpI8L6eFUVw==", + "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", + "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", "dev": true, "dependencies": { - "@jest/core": "^27.5.1", - "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", "chalk": "^4.0.0", - "exit": "^0.1.2", "graceful-fs": "^4.2.9", - "import-local": "^3.0.2", - "jest-config": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-pnp-resolver": "^1.2.2", "jest-util": "^27.5.1", "jest-validate": "^27.5.1", - "prompts": "^2.0.1", - "yargs": "^16.2.0" - }, - "bin": { - "jest": "bin/jest.js" + "resolve": "^1.20.0", + "resolve.exports": "^1.1.0", + "slash": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-resolve-dependencies": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", + "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-snapshot": "^27.5.1" }, - "peerDependencies": { - "node-notifier": "^8.0.1 || ^9.0.0 || ^10.0.0" - }, - "peerDependenciesMeta": { - "node-notifier": { - "optional": true - } + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-cli/node_modules/@jest/types": { + "node_modules/jest-resolve-dependencies/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -20399,7 +20897,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-cli/node_modules/@types/yargs": { + "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -20408,7 +20906,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-cli/node_modules/ansi-styles": { + "node_modules/jest-resolve-dependencies/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20423,7 +20921,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-cli/node_modules/chalk": { + "node_modules/jest-resolve-dependencies/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -20439,7 +20937,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-cli/node_modules/has-flag": { + "node_modules/jest-resolve-dependencies/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -20448,24 +20946,16 @@ "node": ">=8" } }, - "node_modules/jest-cli/node_modules/jest-util": { + "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-cli/node_modules/supports-color": { + "node_modules/jest-resolve-dependencies/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -20477,76 +20967,7 @@ "node": ">=8" } }, - "node_modules/jest-config": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-config/-/jest-config-27.5.1.tgz", - "integrity": "sha512-5sAsjm6tGdsVbW9ahcChPAFCk4IlkQUknH5AvKjuLTSlcO/wCZKyFdn7Rg0EkC+OGgWODEy2hDpWB1PgzH0JNA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.8.0", - "@jest/test-sequencer": "^27.5.1", - "@jest/types": "^27.5.1", - "babel-jest": "^27.5.1", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "deepmerge": "^4.2.2", - "glob": "^7.1.1", - "graceful-fs": "^4.2.9", - "jest-circus": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-jasmine2": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runner": "^27.5.1", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "micromatch": "^4.0.4", - "parse-json": "^5.2.0", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "strip-json-comments": "^3.1.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "ts-node": ">=9.0.0" - }, - "peerDependenciesMeta": { - "ts-node": { - "optional": true - } - } - }, - "node_modules/jest-config/node_modules/@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", - "dev": true, - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-config/node_modules/@jest/types": { + "node_modules/jest-resolve/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -20562,7 +20983,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config/node_modules/@types/yargs": { + "node_modules/jest-resolve/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -20571,7 +20992,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-config/node_modules/ansi-styles": { + "node_modules/jest-resolve/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20586,60 +21007,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-config/node_modules/babel-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-jest/-/babel-jest-27.5.1.tgz", - "integrity": "sha512-cdQ5dXjGRd0IBRATiQ4mZGlGlRE8kJpjPOixdNRdT+m3UcNqmYWN6rK6nvtXYfY3D76cb8s/O1Ss8ea24PIwcg==", - "dev": true, - "dependencies": { - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__core": "^7.1.14", - "babel-plugin-istanbul": "^6.1.1", - "babel-preset-jest": "^27.5.1", - "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "slash": "^3.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.8.0" - } - }, - "node_modules/jest-config/node_modules/babel-plugin-jest-hoist": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-plugin-jest-hoist/-/babel-plugin-jest-hoist-27.5.1.tgz", - "integrity": "sha512-50wCwD5EMNW4aRpOwtqzyZHIewTYNxLA4nhB+09d8BIssfNfzBRhkBIHiaPv1Si226TQSvp8gxAJm2iY2qs2hQ==", - "dev": true, - "dependencies": { - "@babel/template": "^7.3.3", - "@babel/types": "^7.3.3", - "@types/babel__core": "^7.0.0", - "@types/babel__traverse": "^7.0.6" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-config/node_modules/babel-preset-jest": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/babel-preset-jest/-/babel-preset-jest-27.5.1.tgz", - "integrity": "sha512-Nptf2FzlPCWYuJg41HBqXVT8ym6bXOevuCTbhxlUpjwtysGaIWFvDEjp4y+G7fl13FgOdjs7P/DmErqH7da0Ag==", - "dev": true, - "dependencies": { - "babel-plugin-jest-hoist": "^27.5.1", - "babel-preset-current-node-syntax": "^1.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "peerDependencies": { - "@babel/core": "^7.0.0" - } - }, - "node_modules/jest-config/node_modules/chalk": { + "node_modules/jest-resolve/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -20655,7 +21023,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-config/node_modules/has-flag": { + "node_modules/jest-resolve/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -20664,7 +21032,7 @@ "node": ">=8" } }, - "node_modules/jest-config/node_modules/jest-haste-map": { + "node_modules/jest-resolve/node_modules/jest-haste-map": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", @@ -20690,7 +21058,7 @@ "fsevents": "^2.3.2" } }, - "node_modules/jest-config/node_modules/jest-regex-util": { + "node_modules/jest-resolve/node_modules/jest-regex-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", @@ -20699,7 +21067,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config/node_modules/jest-serializer": { + "node_modules/jest-resolve/node_modules/jest-serializer": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", @@ -20712,7 +21080,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config/node_modules/jest-util": { + "node_modules/jest-resolve/node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", @@ -20729,7 +21097,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-config/node_modules/supports-color": { + "node_modules/jest-resolve/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -20741,102 +21109,65 @@ "node": ">=8" } }, - "node_modules/jest-diff": { + "node_modules/jest-runner": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-diff/-/jest-diff-27.5.1.tgz", - "integrity": "sha512-m0NvkX55LDt9T4mctTEgnZk3fmEg3NRYutvMPWM/0iPnkFj2wIeF45O1718cMSOFO1vINkqmxqD8vE37uTEbqw==", + "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", + "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", "dev": true, "dependencies": { + "@jest/console": "^27.5.1", + "@jest/environment": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", "chalk": "^4.0.0", - "diff-sequences": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-diff/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-diff/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-diff/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-docblock": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-docblock/-/jest-docblock-27.5.1.tgz", - "integrity": "sha512-rl7hlABeTsRYxKiUfpHrQrG4e2obOiTQWfMEH3PxPjOtdsfLQO4ReWSZaQ7DETm4xu07rl4q/h4zcKXyU0/OzQ==", - "dev": true, - "dependencies": { - "detect-newline": "^3.0.0" + "emittery": "^0.8.1", + "graceful-fs": "^4.2.9", + "jest-docblock": "^27.5.1", + "jest-environment-jsdom": "^27.5.1", + "jest-environment-node": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-leak-detector": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-runtime": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "source-map-support": "^0.5.6", + "throat": "^6.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each": { + "node_modules/jest-runner/node_modules/@jest/transform": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-each/-/jest-each-27.5.1.tgz", - "integrity": "sha512-1Ff6p+FbhT/bXQnEouYy00bkNSY7OUpfIcmdl8vZ31A1UUaurOLPA8a8BbJOF2RDUElwJhmeaV7LnagI+5UwNQ==", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "dependencies": { + "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", "jest-util": "^27.5.1", - "pretty-format": "^27.5.1" + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each/node_modules/@jest/types": { + "node_modules/jest-runner/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -20852,7 +21183,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each/node_modules/@types/yargs": { + "node_modules/jest-runner/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -20861,7 +21192,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-each/node_modules/ansi-styles": { + "node_modules/jest-runner/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20876,7 +21207,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-each/node_modules/chalk": { + "node_modules/jest-runner/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -20892,7 +21223,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-each/node_modules/has-flag": { + "node_modules/jest-runner/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -20901,7 +21232,55 @@ "node": ">=8" } }, - "node_modules/jest-each/node_modules/jest-util": { + "node_modules/jest-runner/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-runner/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runner/node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", @@ -20918,7 +21297,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-each/node_modules/supports-color": { + "node_modules/jest-runner/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -20930,25 +21309,66 @@ "node": ">=8" } }, - "node_modules/jest-environment-jsdom": { + "node_modules/jest-runtime": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", + "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", "dev": true, "dependencies": { "@jest/environment": "^27.5.1", "@jest/fake-timers": "^27.5.1", + "@jest/globals": "^27.5.1", + "@jest/source-map": "^27.5.1", + "@jest/test-result": "^27.5.1", + "@jest/transform": "^27.5.1", "@jest/types": "^27.5.1", - "@types/node": "*", + "chalk": "^4.0.0", + "cjs-module-lexer": "^1.0.0", + "collect-v8-coverage": "^1.0.0", + "execa": "^5.0.0", + "glob": "^7.1.3", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-message-util": "^27.5.1", "jest-mock": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-resolve": "^27.5.1", + "jest-snapshot": "^27.5.1", "jest-util": "^27.5.1", - "jsdom": "^16.6.0" + "slash": "^3.0.0", + "strip-bom": "^4.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-environment-jsdom/node_modules/@jest/types": { + "node_modules/jest-runtime/node_modules/@jest/transform": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "dev": true, + "dependencies": { + "@babel/core": "^7.1.0", + "@jest/types": "^27.5.1", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", + "jest-util": "^27.5.1", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-runtime/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -20964,7 +21384,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-environment-jsdom/node_modules/@types/yargs": { + "node_modules/jest-runtime/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -20973,7 +21393,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-environment-jsdom/node_modules/ansi-styles": { + "node_modules/jest-runtime/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -20988,7 +21408,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-environment-jsdom/node_modules/chalk": { + "node_modules/jest-runtime/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -21004,7 +21424,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-environment-jsdom/node_modules/has-flag": { + "node_modules/jest-runtime/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -21013,118 +21433,55 @@ "node": ">=8" } }, - "node_modules/jest-environment-jsdom/node_modules/jest-util": { + "node_modules/jest-runtime/node_modules/jest-haste-map": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" } }, - "node_modules/jest-environment-jsdom/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/jest-runtime/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-environment-node": { + "node_modules/jest-runtime/node_modules/jest-serializer": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", - "dev": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-environment-node/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "graceful-fs": "^4.2.9" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-environment-node/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-environment-node/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" - } - }, - "node_modules/jest-environment-node/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/jest-environment-node/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-environment-node/node_modules/jest-util": { + "node_modules/jest-runtime/node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", @@ -21141,7 +21498,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-environment-node/node_modules/supports-color": { + "node_modules/jest-runtime/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -21153,44 +21510,66 @@ "node": ">=8" } }, - "node_modules/jest-get-type": { + "node_modules/jest-snapshot": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", + "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", "dev": true, + "dependencies": { + "@babel/core": "^7.7.2", + "@babel/generator": "^7.7.2", + "@babel/plugin-syntax-typescript": "^7.7.2", + "@babel/traverse": "^7.7.2", + "@babel/types": "^7.0.0", + "@jest/transform": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/babel__traverse": "^7.0.4", + "@types/prettier": "^2.1.5", + "babel-preset-current-node-syntax": "^1.0.0", + "chalk": "^4.0.0", + "expect": "^27.5.1", + "graceful-fs": "^4.2.9", + "jest-diff": "^27.5.1", + "jest-get-type": "^27.5.1", + "jest-haste-map": "^27.5.1", + "jest-matcher-utils": "^27.5.1", + "jest-message-util": "^27.5.1", + "jest-util": "^27.5.1", + "natural-compare": "^1.4.0", + "pretty-format": "^27.5.1", + "semver": "^7.3.2" + }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-jasmine2": { + "node_modules/jest-snapshot/node_modules/@jest/transform": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", - "integrity": "sha512-jtq7VVyG8SqAorDpApwiJJImd0V2wv1xzdheGHRGyuT7gZm6gG47QEskOlzsN1PG/6WNaCo5pmwMHDf3AkG2pQ==", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", + "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", "dev": true, "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", + "@babel/core": "^7.1.0", "@jest/types": "^27.5.1", - "@types/node": "*", + "babel-plugin-istanbul": "^6.1.1", "chalk": "^4.0.0", - "co": "^4.6.0", - "expect": "^27.5.1", - "is-generator-fn": "^2.0.0", - "jest-each": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-snapshot": "^27.5.1", + "convert-source-map": "^1.4.0", + "fast-json-stable-stringify": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^27.5.1", + "jest-regex-util": "^27.5.1", "jest-util": "^27.5.1", - "pretty-format": "^27.5.1", - "throat": "^6.0.1" + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "source-map": "^0.6.1", + "write-file-atomic": "^3.0.0" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-jasmine2/node_modules/@jest/types": { + "node_modules/jest-snapshot/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -21206,7 +21585,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-jasmine2/node_modules/@types/yargs": { + "node_modules/jest-snapshot/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -21215,7 +21594,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-jasmine2/node_modules/ansi-styles": { + "node_modules/jest-snapshot/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -21230,7 +21609,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-jasmine2/node_modules/chalk": { + "node_modules/jest-snapshot/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -21246,7 +21625,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-jasmine2/node_modules/has-flag": { + "node_modules/jest-snapshot/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -21255,7 +21634,55 @@ "node": ">=8" } }, - "node_modules/jest-jasmine2/node_modules/jest-util": { + "node_modules/jest-snapshot/node_modules/jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "dependencies": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + }, + "optionalDependencies": { + "fsevents": "^2.3.2" + } + }, + "node_modules/jest-snapshot/node_modules/jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "dependencies": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + } + }, + "node_modules/jest-snapshot/node_modules/jest-util": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", @@ -21272,7 +21699,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-jasmine2/node_modules/supports-color": { + "node_modules/jest-snapshot/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -21284,35 +21711,30 @@ "node": ">=8" } }, - "node_modules/jest-leak-detector": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-leak-detector/-/jest-leak-detector-27.5.1.tgz", - "integrity": "sha512-POXfWAMvfU6WMUXftV4HolnJfnPOGEu10fscNCA76KBpRRhcMN2c8d3iT2pxQS3HLbA+5X4sOUPzYO2NUyIlHQ==", - "dev": true, - "dependencies": { - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "node_modules/jest-transform-stub": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jest-transform-stub/-/jest-transform-stub-2.0.0.tgz", + "integrity": "sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==", + "dev": true }, - "node_modules/jest-matcher-utils": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-matcher-utils/-/jest-matcher-utils-27.5.1.tgz", - "integrity": "sha512-z2uTx/T6LBaCoNWNFWwChLBKYxTMcGBRjAt+2SbP929/Fflb9aa5LGma654Rz8z9HLxsrUaYzxE9T/EFIL/PAw==", + "node_modules/jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", "dev": true, "dependencies": { + "@jest/types": "^29.6.3", + "@types/node": "*", "chalk": "^4.0.0", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "pretty-format": "^27.5.1" + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.15.0 || ^16.10.0 || >=18.0.0" } }, - "node_modules/jest-matcher-utils/node_modules/ansi-styles": { + "node_modules/jest-util/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -21327,7 +21749,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/chalk": { + "node_modules/jest-util/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -21343,7 +21765,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-matcher-utils/node_modules/has-flag": { + "node_modules/jest-util/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -21352,7 +21774,7 @@ "node": ">=8" } }, - "node_modules/jest-matcher-utils/node_modules/supports-color": { + "node_modules/jest-util/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -21364,27 +21786,24 @@ "node": ">=8" } }, - "node_modules/jest-message-util": { + "node_modules/jest-validate": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-message-util/-/jest-message-util-27.5.1.tgz", - "integrity": "sha512-rMyFe1+jnyAAf+NHwTclDz0eAaLkVDdKVHHBFWsBWHnnh5YeJMNWWsv7AbFYXfK3oTqvL7VTWkhNLu1jX24D+g==", + "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", + "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.12.13", "@jest/types": "^27.5.1", - "@types/stack-utils": "^2.0.0", + "camelcase": "^6.2.0", "chalk": "^4.0.0", - "graceful-fs": "^4.2.9", - "micromatch": "^4.0.4", - "pretty-format": "^27.5.1", - "slash": "^3.0.0", - "stack-utils": "^2.0.3" + "jest-get-type": "^27.5.1", + "leven": "^3.1.0", + "pretty-format": "^27.5.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-message-util/node_modules/@jest/types": { + "node_modules/jest-validate/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -21400,7 +21819,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-message-util/node_modules/@types/yargs": { + "node_modules/jest-validate/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -21409,7 +21828,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-message-util/node_modules/ansi-styles": { + "node_modules/jest-validate/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -21424,7 +21843,19 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/chalk": { + "node_modules/jest-validate/node_modules/camelcase": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", + "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/jest-validate/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -21440,7 +21871,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-message-util/node_modules/has-flag": { + "node_modules/jest-validate/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -21449,7 +21880,7 @@ "node": ">=8" } }, - "node_modules/jest-message-util/node_modules/supports-color": { + "node_modules/jest-validate/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -21461,20 +21892,25 @@ "node": ">=8" } }, - "node_modules/jest-mock": { + "node_modules/jest-watcher": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-mock/-/jest-mock-27.5.1.tgz", - "integrity": "sha512-K4jKbY1d4ENhbrG2zuPWaQBvDly+iZ2yAW+T1fATN78hc0sInwn7wZB8XtlNnvHug5RMwV897Xm4LqmPM4e2Og==", + "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", + "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", "dev": true, "dependencies": { + "@jest/test-result": "^27.5.1", "@jest/types": "^27.5.1", - "@types/node": "*" + "@types/node": "*", + "ansi-escapes": "^4.2.1", + "chalk": "^4.0.0", + "jest-util": "^27.5.1", + "string-length": "^4.0.1" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-mock/node_modules/@jest/types": { + "node_modules/jest-watcher/node_modules/@jest/types": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", @@ -21490,7 +21926,7 @@ "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-mock/node_modules/@types/yargs": { + "node_modules/jest-watcher/node_modules/@types/yargs": { "version": "16.0.4", "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", @@ -21499,7 +21935,7 @@ "@types/yargs-parser": "*" } }, - "node_modules/jest-mock/node_modules/ansi-styles": { + "node_modules/jest-watcher/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -21514,7 +21950,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-mock/node_modules/chalk": { + "node_modules/jest-watcher/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -21530,7 +21966,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-mock/node_modules/has-flag": { + "node_modules/jest-watcher/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -21539,182 +21975,157 @@ "node": ">=8" } }, - "node_modules/jest-mock/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/jest-pnp-resolver": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/jest-pnp-resolver/-/jest-pnp-resolver-1.2.2.tgz", - "integrity": "sha512-olV41bKSMm8BdnuMsewT4jqlZ8+3TCARAXjZGT9jcoSnrfUnRCqnMoF9XEeoWjbzObpqF9dRhHQj0Xb9QdF6/w==", - "dev": true, - "engines": { - "node": ">=6" - }, - "peerDependencies": { - "jest-resolve": "*" - }, - "peerDependenciesMeta": { - "jest-resolve": { - "optional": true - } - } - }, - "node_modules/jest-resolve": { + "node_modules/jest-watcher/node_modules/jest-util": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", - "integrity": "sha512-FFDy8/9E6CV83IMbDpcjOhumAQPDyETnU2KZ1O98DwTnz8AOBsW/Xv3GySr1mOZdItLR+zDZ7I/UdTFbgSOVCw==", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", "dev": true, "dependencies": { "@jest/types": "^27.5.1", + "@types/node": "*", "chalk": "^4.0.0", + "ci-info": "^3.2.0", "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-pnp-resolver": "^1.2.2", - "jest-util": "^27.5.1", - "jest-validate": "^27.5.1", - "resolve": "^1.20.0", - "resolve.exports": "^1.1.0", - "slash": "^3.0.0" + "picomatch": "^2.2.3" }, "engines": { "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/jest-resolve-dependencies": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-resolve-dependencies/-/jest-resolve-dependencies-27.5.1.tgz", - "integrity": "sha512-QQOOdY4PE39iawDn5rzbIePNigfe5B9Z91GDD1ae/xNDlu9kaat8QQ5EKnNmVWPV54hUdxCVwwj6YMgR2O7IOg==", + "node_modules/jest-watcher/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-snapshot": "^27.5.1" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8" } }, - "node_modules/jest-resolve-dependencies/node_modules/@jest/types": { + "node_modules/jest-worker": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", + "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-resolve-dependencies/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": ">= 10.13.0" } }, - "node_modules/jest-resolve-dependencies/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/jest-worker/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-resolve-dependencies/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/jest-worker/node_modules/supports-color": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "has-flag": "^4.0.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/chalk/supports-color?sponsor=1" } }, - "node_modules/jest-resolve-dependencies/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/joycon": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", + "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", "dev": true, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/jest-resolve-dependencies/node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "node_modules/jpeg-js": { + "version": "0.4.4", + "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", + "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" }, - "node_modules/jest-resolve-dependencies/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/js-base64": { + "version": "2.6.4", + "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", + "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } + "optional": true, + "peer": true }, - "node_modules/jest-resolve/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "node_modules/js-tokens": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", + "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + }, + "node_modules/js-yaml": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "argparse": "^2.0.1" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/jest-resolve/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node_modules/jsbn": { + "version": "0.1.1", + "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", + "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + }, + "node_modules/jscodeshift": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", + "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", + "dev": true, + "dependencies": { + "@babel/core": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/preset-flow": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@babel/register": "^7.22.15", + "babel-core": "^7.0.0-bridge.0", + "chalk": "^4.1.2", + "flow-parser": "0.*", + "graceful-fs": "^4.2.4", + "micromatch": "^4.0.4", + "neo-async": "^2.5.0", + "node-dir": "^0.1.17", + "recast": "^0.23.3", + "temp": "^0.8.4", + "write-file-atomic": "^2.3.0" + }, + "bin": { + "jscodeshift": "bin/jscodeshift.js" + }, + "peerDependencies": { + "@babel/preset-env": "^7.1.6" + }, + "peerDependenciesMeta": { + "@babel/preset-env": { + "optional": true + } } }, - "node_modules/jest-resolve/node_modules/ansi-styles": { + "node_modules/jscodeshift/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -21729,7 +22140,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-resolve/node_modules/chalk": { + "node_modules/jscodeshift/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -21745,7 +22156,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-resolve/node_modules/has-flag": { + "node_modules/jscodeshift/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -21754,569 +22165,506 @@ "node": ">=8" } }, - "node_modules/jest-resolve/node_modules/jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "node_modules/jscodeshift/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" + "has-flag": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "node": ">=8" } }, - "node_modules/jest-resolve/node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "node_modules/jscodeshift/node_modules/write-file-atomic": { + "version": "2.4.3", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", + "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "dependencies": { + "graceful-fs": "^4.1.11", + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.2" } }, - "node_modules/jest-resolve/node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "node_modules/jsdom": { + "version": "16.7.0", + "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", + "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", "dev": true, "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" + "abab": "^2.0.5", + "acorn": "^8.2.4", + "acorn-globals": "^6.0.0", + "cssom": "^0.4.4", + "cssstyle": "^2.3.0", + "data-urls": "^2.0.0", + "decimal.js": "^10.2.1", + "domexception": "^2.0.1", + "escodegen": "^2.0.0", + "form-data": "^3.0.0", + "html-encoding-sniffer": "^2.0.1", + "http-proxy-agent": "^4.0.1", + "https-proxy-agent": "^5.0.0", + "is-potential-custom-element-name": "^1.0.1", + "nwsapi": "^2.2.0", + "parse5": "6.0.1", + "saxes": "^5.0.1", + "symbol-tree": "^3.2.4", + "tough-cookie": "^4.0.0", + "w3c-hr-time": "^1.0.2", + "w3c-xmlserializer": "^2.0.0", + "webidl-conversions": "^6.1.0", + "whatwg-encoding": "^1.0.5", + "whatwg-mimetype": "^2.3.0", + "whatwg-url": "^8.5.0", + "ws": "^7.4.6", + "xml-name-validator": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "peerDependencies": { + "canvas": "^2.5.0" + }, + "peerDependenciesMeta": { + "canvas": { + "optional": true + } } }, - "node_modules/jest-resolve/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "node_modules/jsesc": { + "version": "2.5.2", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", + "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "bin": { + "jsesc": "bin/jsesc" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=4" } }, - "node_modules/jest-resolve/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/json-buffer": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", + "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", + "dev": true + }, + "node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", + "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", + "dev": true + }, + "node_modules/json-schema": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", + "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" + }, + "node_modules/json-schema-traverse": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true + }, + "node_modules/json-stable-stringify-without-jsonify": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", + "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", + "dev": true + }, + "node_modules/json-stringify-safe": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", + "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" + }, + "node_modules/json5": { + "version": "2.2.3", + "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", + "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" + "bin": { + "json5": "lib/cli.js" }, "engines": { - "node": ">=8" + "node": ">=6" } }, - "node_modules/jest-runner": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runner/-/jest-runner-27.5.1.tgz", - "integrity": "sha512-g4NPsM4mFCOwFKXO4p/H/kWGdJp9V8kURY2lX8Me2drgXqG7rrZAx5kv+5H7wtt/cdFIjhqYx1HrlqWHaOvDaQ==", + "node_modules/jsonfile": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", + "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", "dev": true, "dependencies": { - "@jest/console": "^27.5.1", - "@jest/environment": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "emittery": "^0.8.1", - "graceful-fs": "^4.2.9", - "jest-docblock": "^27.5.1", - "jest-environment-jsdom": "^27.5.1", - "jest-environment-node": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-leak-detector": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-runtime": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "source-map-support": "^0.5.6", - "throat": "^6.0.1" + "universalify": "^2.0.0" }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "optionalDependencies": { + "graceful-fs": "^4.1.6" } }, - "node_modules/jest-runner/node_modules/@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", - "dev": true, + "node_modules/jsprim": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", + "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" + "assert-plus": "1.0.0", + "extsprintf": "1.3.0", + "json-schema": "0.4.0", + "verror": "1.10.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.6.0" } }, - "node_modules/jest-runner/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "node_modules/jsx-ast-utils": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz", + "integrity": "sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "array-includes": "^3.1.4", + "object.assign": "^4.1.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=4.0" } }, - "node_modules/jest-runner/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/keyv": { + "version": "4.5.4", + "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", + "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "json-buffer": "3.0.1" } }, - "node_modules/jest-runner/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/kind-of": { + "version": "6.0.3", + "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", + "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/jest-runner/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/kleur": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", + "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=6" } }, - "node_modules/jest-runner/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/klona": { + "version": "2.0.5", + "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", + "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 8" } }, - "node_modules/jest-runner/node_modules/jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", - "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" - } + "node_modules/language-subtag-registry": { + "version": "0.3.21", + "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", + "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==", + "dev": true }, - "node_modules/jest-runner/node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "node_modules/language-tags": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", + "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "dependencies": { + "language-subtag-registry": "~0.3.2" } }, - "node_modules/jest-runner/node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "node_modules/latest-version": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", + "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", "dev": true, "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" + "package-json": "^8.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=14.16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runner/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "dev": true, + "node_modules/layout": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/layout/-/layout-2.2.0.tgz", + "integrity": "sha512-+kdgg25XW11BA4cl9vF+SH01HaBipld2Nf/PlU2kSYncAbdUbDoahzrlh6yhR93N/wR2TGgcFoxebzR1LKmZUg==", "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "bin-pack": "~1.0.1" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.8.0" } }, - "node_modules/jest-runner/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/lazy-universal-dotenv": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", + "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "app-root-dir": "^1.0.2", + "dotenv": "^16.0.0", + "dotenv-expand": "^10.0.0" }, "engines": { - "node": ">=8" + "node": ">=14.0.0" } }, - "node_modules/jest-runtime": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-runtime/-/jest-runtime-27.5.1.tgz", - "integrity": "sha512-o7gxw3Gf+H2IGt8fv0RiyE1+r83FJBRruoA+FXrlHw6xEyBsU8ugA6IPfTdVyA0w8HClpbK+DGJxH59UrNMx8A==", + "node_modules/leven": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", + "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", "dev": true, - "dependencies": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/globals": "^27.5.1", - "@jest/source-map": "^27.5.1", - "@jest/test-result": "^27.5.1", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "chalk": "^4.0.0", - "cjs-module-lexer": "^1.0.0", - "collect-v8-coverage": "^1.0.0", - "execa": "^5.0.0", - "glob": "^7.1.3", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-mock": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-resolve": "^27.5.1", - "jest-snapshot": "^27.5.1", - "jest-util": "^27.5.1", - "slash": "^3.0.0", - "strip-bom": "^4.0.0" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=6" } }, - "node_modules/jest-runtime/node_modules/@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "node_modules/levn": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", + "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", "dev": true, "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" + "prelude-ls": "^1.2.1", + "type-check": "~0.4.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.8.0" } }, - "node_modules/jest-runtime/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dev": true, + "node_modules/lightweight-charts": { + "version": "3.8.0", + "resolved": "https://registry.npmjs.org/lightweight-charts/-/lightweight-charts-3.8.0.tgz", + "integrity": "sha512-7yFGnYuE1RjRJG9RwUTBz5wvF1QtjBOSW4FFlikr8Dh+/TDNt4ci+HsWSYmStgQUpawpvkCJ3j5/W25GppGj9Q==", "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "fancy-canvas": "0.2.2" } }, - "node_modules/jest-runtime/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/lilconfig": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", + "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "engines": { + "node": ">=10" } }, - "node_modules/jest-runtime/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/lines-and-columns": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", + "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", + "dev": true + }, + "node_modules/lint-staged": { + "version": "13.2.2", + "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.2.tgz", + "integrity": "sha512-71gSwXKy649VrSU09s10uAT0rWCcY3aewhMaHyl2N84oBk4Xs9HgxvUp3AYu+bNsK4NrOYYxvSgg7FyGJ+jGcA==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "chalk": "5.2.0", + "cli-truncate": "^3.1.0", + "commander": "^10.0.0", + "debug": "^4.3.4", + "execa": "^7.0.0", + "lilconfig": "2.1.0", + "listr2": "^5.0.7", + "micromatch": "^4.0.5", + "normalize-path": "^3.0.0", + "object-inspect": "^1.12.3", + "pidtree": "^0.6.0", + "string-argv": "^0.3.1", + "yaml": "^2.2.2" + }, + "bin": { + "lint-staged": "bin/lint-staged.js" }, "engines": { - "node": ">=8" + "node": "^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://opencollective.com/lint-staged" } }, - "node_modules/jest-runtime/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/lint-staged/node_modules/chalk": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", + "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" + "node": "^12.17.0 || ^14.13 || >=16.0.0" }, "funding": { "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/lint-staged/node_modules/commander": { + "version": "10.0.1", + "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", + "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", "dev": true, "engines": { - "node": ">=8" + "node": ">=14" } }, - "node_modules/jest-runtime/node_modules/jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "node_modules/lint-staged/node_modules/execa": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", + "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" + "cross-spawn": "^7.0.3", + "get-stream": "^6.0.1", + "human-signals": "^4.3.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^3.0.7", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^14.18.0 || ^16.14.0 || >=18.0.0" }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/jest-runtime/node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "node_modules/lint-staged/node_modules/human-signals": { + "version": "4.3.1", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", + "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=14.18.0" } }, - "node_modules/jest-runtime/node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "node_modules/lint-staged/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, - "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "node_modules/lint-staged/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-runtime/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/lint-staged/node_modules/npm-run-path": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", + "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "path-key": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-snapshot": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-snapshot/-/jest-snapshot-27.5.1.tgz", - "integrity": "sha512-yYykXI5a0I31xX67mgeLw1DZ0bJB+gpq5IpSuCAoyDi0+BhgU/RIrL+RTzDmkNTchvDFWKP8lp+w/42Z3us5sA==", + "node_modules/lint-staged/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, "dependencies": { - "@babel/core": "^7.7.2", - "@babel/generator": "^7.7.2", - "@babel/plugin-syntax-typescript": "^7.7.2", - "@babel/traverse": "^7.7.2", - "@babel/types": "^7.0.0", - "@jest/transform": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/babel__traverse": "^7.0.4", - "@types/prettier": "^2.1.5", - "babel-preset-current-node-syntax": "^1.0.0", - "chalk": "^4.0.0", - "expect": "^27.5.1", - "graceful-fs": "^4.2.9", - "jest-diff": "^27.5.1", - "jest-get-type": "^27.5.1", - "jest-haste-map": "^27.5.1", - "jest-matcher-utils": "^27.5.1", - "jest-message-util": "^27.5.1", - "jest-util": "^27.5.1", - "natural-compare": "^1.4.0", - "pretty-format": "^27.5.1", - "semver": "^7.3.2" + "mimic-fn": "^4.0.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-snapshot/node_modules/@jest/transform": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-27.5.1.tgz", - "integrity": "sha512-ipON6WtYgl/1329g5AIJVbUuEh0wZVbdpGwC99Jw4LwuoBNS95MVphU6zOeD9pDkon+LLbFL7lOQRapbB8SCHw==", + "node_modules/lint-staged/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, - "dependencies": { - "@babel/core": "^7.1.0", - "@jest/types": "^27.5.1", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^1.4.0", - "fast-json-stable-stringify": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^27.5.1", - "jest-regex-util": "^27.5.1", - "jest-util": "^27.5.1", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "source-map": "^0.6.1", - "write-file-atomic": "^3.0.0" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-snapshot/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "node_modules/lint-staged/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "engines": { + "node": ">=12" }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } + }, + "node_modules/lint-staged/node_modules/yaml": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz", + "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==", + "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 14" } }, - "node_modules/jest-snapshot/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "node_modules/listr2": { + "version": "5.0.8", + "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", + "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", "dev": true, "dependencies": { - "@types/yargs-parser": "*" + "cli-truncate": "^2.1.0", + "colorette": "^2.0.19", + "log-update": "^4.0.0", + "p-map": "^4.0.0", + "rfdc": "^1.3.0", + "rxjs": "^7.8.0", + "through": "^2.3.8", + "wrap-ansi": "^7.0.0" + }, + "engines": { + "node": "^14.13.1 || >=16.0.0" + }, + "peerDependencies": { + "enquirer": ">= 2.3.0 < 3" + }, + "peerDependenciesMeta": { + "enquirer": { + "optional": true + } } }, - "node_modules/jest-snapshot/node_modules/ansi-styles": { + "node_modules/listr2/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -22331,157 +22679,179 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-snapshot/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/listr2/node_modules/cli-truncate": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", + "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "slice-ansi": "^3.0.0", + "string-width": "^4.2.0" }, "engines": { - "node": ">=10" + "node": ">=8" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-snapshot/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/listr2/node_modules/slice-ansi": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", + "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/jest-snapshot/node_modules/jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", - "dev": true, + "node_modules/lit": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.1.tgz", + "integrity": "sha512-TejktDR4mqG3qB32Y8Lm5Lye3c8SUehqz7qRsxe1PqGYL6me2Ef+jeQAEqh20BnnGncv4Yxy2njEIT0kzK1WCw==", "dependencies": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - }, - "optionalDependencies": { - "fsevents": "^2.3.2" + "@lit/reactive-element": "^1.4.0", + "lit-element": "^3.2.0", + "lit-html": "^2.3.0" } }, - "node_modules/jest-snapshot/node_modules/jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "dev": true, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node_modules/lit-element": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.2.2.tgz", + "integrity": "sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ==", + "dependencies": { + "@lit/reactive-element": "^1.3.0", + "lit-html": "^2.2.0" } }, - "node_modules/jest-snapshot/node_modules/jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "dev": true, + "node_modules/lit-html": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.3.1.tgz", + "integrity": "sha512-FyKH6LTW6aBdkfNhNSHyZTnLgJSTe5hMk7HFtc/+DcN1w74C215q8B+Cfxc2OuIEpBNcEKxgF64qL8as30FDHA==", "dependencies": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - }, + "@types/trusted-types": "^2.0.2" + } + }, + "node_modules/loader-runner": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", + "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "dev": true, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=6.11.5" } }, - "node_modules/jest-snapshot/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "node_modules/loader-utils": { + "version": "2.0.4", + "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", + "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", "dev": true, "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "big.js": "^5.2.2", + "emojis-list": "^3.0.0", + "json5": "^2.1.2" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=8.9.0" } }, - "node_modules/jest-snapshot/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/locate-path": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", + "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "p-locate": "^4.1.0" }, "engines": { "node": ">=8" } }, - "node_modules/jest-transform-stub": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/jest-transform-stub/-/jest-transform-stub-2.0.0.tgz", - "integrity": "sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==", + "node_modules/lodash": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", + "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + }, + "node_modules/lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, + "node_modules/lodash.camelcase": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", + "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", "dev": true }, - "node_modules/jest-validate": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", - "integrity": "sha512-thkNli0LYTmOI1tDB3FI1S1RTp/Bqyd9pTarJwL87OIBFuqEb5Apv5EaApEudYg4g86e3CT6kM0RowkhtEnCBQ==", - "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "camelcase": "^6.2.0", - "chalk": "^4.0.0", - "jest-get-type": "^27.5.1", - "leven": "^3.1.0", - "pretty-format": "^27.5.1" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } + "node_modules/lodash.capitalize": { + "version": "4.2.1", + "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", + "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "dev": true }, - "node_modules/jest-validate/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "node_modules/lodash.debounce": { + "version": "4.0.8", + "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", + "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", + "dev": true + }, + "node_modules/lodash.escaperegexp": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", + "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", + "dev": true + }, + "node_modules/lodash.isplainobject": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", + "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "dev": true + }, + "node_modules/lodash.isstring": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", + "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", + "dev": true + }, + "node_modules/lodash.merge": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", + "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", + "dev": true + }, + "node_modules/lodash.unescape": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.1.tgz", + "integrity": "sha512-DhhGRshNS1aX6s5YdBE3njCCouPgnG29ebyHvImlZzXZf2SHgt+J08DHgytTPnpywNbO1Y8mNUFyQuIDBq2JZg==", + "dev": true + }, + "node_modules/lodash.uniqby": { + "version": "4.7.0", + "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", + "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", + "dev": true + }, + "node_modules/log-symbols": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", + "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", "dev": true, "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" + "chalk": "^4.1.0", + "is-unicode-supported": "^0.1.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-validate/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-validate/node_modules/ansi-styles": { + "node_modules/log-symbols/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -22496,19 +22866,7 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-validate/node_modules/camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/jest-validate/node_modules/chalk": { + "node_modules/log-symbols/node_modules/chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", @@ -22524,7 +22882,7 @@ "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/jest-validate/node_modules/has-flag": { + "node_modules/log-symbols/node_modules/has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", @@ -22533,7 +22891,7 @@ "node": ">=8" } }, - "node_modules/jest-validate/node_modules/supports-color": { + "node_modules/log-symbols/node_modules/supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", @@ -22545,50 +22903,25 @@ "node": ">=8" } }, - "node_modules/jest-watcher": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-watcher/-/jest-watcher-27.5.1.tgz", - "integrity": "sha512-z676SuD6Z8o8qbmEGhoEUFOM1+jfEiL3DXHK/xgEiG2EyNYfFG60jluWcupY6dATjfEsKQuibReS1djInQnoVw==", + "node_modules/log-update": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", + "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", "dev": true, "dependencies": { - "@jest/test-result": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "ansi-escapes": "^4.2.1", - "chalk": "^4.0.0", - "jest-util": "^27.5.1", - "string-length": "^4.0.1" + "ansi-escapes": "^4.3.0", + "cli-cursor": "^3.1.0", + "slice-ansi": "^4.0.0", + "wrap-ansi": "^6.2.0" }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jest-watcher/node_modules/@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dev": true, - "dependencies": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - }, - "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" - } - }, - "node_modules/jest-watcher/node_modules/@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "dependencies": { - "@types/yargs-parser": "*" - } - }, - "node_modules/jest-watcher/node_modules/ansi-styles": { + "node_modules/log-update/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", @@ -22603,2012 +22936,2042 @@ "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/log-update/node_modules/slice-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", + "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "ansi-styles": "^4.0.0", + "astral-regex": "^2.0.0", + "is-fullwidth-code-point": "^3.0.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/jest-watcher/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/log-update/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/jest-watcher/node_modules/jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "node_modules/loglevel": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", + "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", "dev": true, - "dependencies": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">= 0.6.0" + }, + "funding": { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/loglevel" } }, - "node_modules/jest-watcher/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/loglevel-colored-level-prefix": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz", + "integrity": "sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "chalk": "^1.1.3", + "loglevel": "^1.4.1" } }, - "node_modules/jest-worker": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-27.5.1.tgz", - "integrity": "sha512-7vuh85V5cdDofPyxn58nrPjBktZo0u9x1g8WtjQol+jZDaE+fhN+cIvTj11GndBnMnyfrUOG1sZQxCdjKh+DKg==", + "node_modules/loglevel-colored-level-prefix/node_modules/ansi-regex": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", + "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", "dev": true, - "dependencies": { - "@types/node": "*", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, "engines": { - "node": ">= 10.13.0" + "node": ">=0.10.0" } }, - "node_modules/jest-worker/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/loglevel-colored-level-prefix/node_modules/ansi-styles": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", + "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", "dev": true, "engines": { - "node": ">=8" + "node": ">=0.10.0" } }, - "node_modules/jest-worker/node_modules/supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", + "node_modules/loglevel-colored-level-prefix/node_modules/chalk": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", + "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "ansi-styles": "^2.2.1", + "escape-string-regexp": "^1.0.2", + "has-ansi": "^2.0.0", + "strip-ansi": "^3.0.0", + "supports-color": "^2.0.0" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/supports-color?sponsor=1" + "node": ">=0.10.0" } }, - "node_modules/joycon": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/joycon/-/joycon-3.1.1.tgz", - "integrity": "sha512-34wB/Y7MW7bzjKRjUKTa46I2Z7eV62Rkhva+KkopW7Qvv/OSWBqvkSY7vusOPrNuZcUG3tApvdVgNB8POj3SPw==", + "node_modules/loglevel-colored-level-prefix/node_modules/strip-ansi": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", + "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", "dev": true, + "dependencies": { + "ansi-regex": "^2.0.0" + }, "engines": { - "node": ">=10" + "node": ">=0.10.0" } }, - "node_modules/jpeg-js": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/jpeg-js/-/jpeg-js-0.4.4.tgz", - "integrity": "sha512-WZzeDOEtTOBK4Mdsar0IqEU5sMr3vSV2RqkAIzUEV2BHnUfKGyswWFPFwK5EeDo93K3FohSHbLAjj0s1Wzd+dg==" - }, - "node_modules/js-base64": { - "version": "2.6.4", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.6.4.tgz", - "integrity": "sha512-pZe//GGmwJndub7ZghVHz7vjb2LgC1m8B07Au3eYqeqv9emhESByMXxaEgkUkEqJe87oBbSniGYoQNIBklc7IQ==", + "node_modules/loglevel-colored-level-prefix/node_modules/supports-color": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", + "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", "dev": true, - "optional": true, - "peer": true - }, - "node_modules/js-tokens": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-4.0.0.tgz", - "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" + "engines": { + "node": ">=0.8.0" + } }, - "node_modules/js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", - "dev": true, + "node_modules/loose-envify": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", + "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", "dependencies": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "js-tokens": "^3.0.0 || ^4.0.0" }, "bin": { - "js-yaml": "bin/js-yaml.js" + "loose-envify": "cli.js" } }, - "node_modules/jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" + "node_modules/lower-case": { + "version": "1.1.4", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", + "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "dev": true }, - "node_modules/jscodeshift": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", - "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", - "dev": true, - "dependencies": { - "@babel/core": "^7.13.16", - "@babel/parser": "^7.13.16", - "@babel/plugin-proposal-class-properties": "^7.13.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", - "@babel/plugin-proposal-optional-chaining": "^7.13.12", - "@babel/plugin-transform-modules-commonjs": "^7.13.8", - "@babel/preset-flow": "^7.13.13", - "@babel/preset-typescript": "^7.13.0", - "@babel/register": "^7.13.16", - "babel-core": "^7.0.0-bridge.0", - "chalk": "^4.1.2", - "flow-parser": "0.*", - "graceful-fs": "^4.2.4", - "micromatch": "^4.0.4", - "neo-async": "^2.5.0", - "node-dir": "^0.1.17", - "recast": "^0.21.0", - "temp": "^0.8.4", - "write-file-atomic": "^2.3.0" - }, - "bin": { - "jscodeshift": "bin/jscodeshift.js" - }, - "peerDependencies": { - "@babel/preset-env": "^7.1.6" + "node_modules/lower-case-first": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", + "integrity": "sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==", + "dev": true, + "dependencies": { + "lower-case": "^1.1.2" } }, - "node_modules/jscodeshift/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/lowercase-keys": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", + "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jscodeshift/node_modules/ast-types": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", - "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", - "dev": true, + "node_modules/lru-cache": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", + "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", "dependencies": { - "tslib": "^2.0.1" + "yallist": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=10" } }, - "node_modules/jscodeshift/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node_modules/lz-string": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", + "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", + "bin": { + "lz-string": "bin/bin.js" } }, - "node_modules/jscodeshift/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/macos-release": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-3.2.0.tgz", + "integrity": "sha512-fSErXALFNsnowREYZ49XCdOHF8wOPWuFOGQrAhP7x5J/BqQv+B02cNsTykGpDgRVx43EKg++6ANmTaGTtW+hUA==", "dev": true, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jscodeshift/node_modules/recast": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", - "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", + "node_modules/magic-string": { + "version": "0.30.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.9.tgz", + "integrity": "sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==", "dev": true, "dependencies": { - "ast-types": "0.15.2", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tslib": "^2.0.1" + "@jridgewell/sourcemap-codec": "^1.4.15" }, "engines": { - "node": ">= 4" + "node": ">=12" } }, - "node_modules/jscodeshift/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/make-dir": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", + "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "semver": "^6.0.0" }, "engines": { "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jscodeshift/node_modules/write-file-atomic": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-2.4.3.tgz", - "integrity": "sha512-GaETH5wwsX+GcnzhPgKcKjJ6M2Cq3/iZp1WyY/X1CSqrW+jVNM9Y7D8EC2sM4ZG/V8wZlSniJnCKWPmBYAucRQ==", + "node_modules/make-dir/node_modules/semver": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", + "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", "dev": true, - "dependencies": { - "graceful-fs": "^4.1.11", - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.2" + "bin": { + "semver": "bin/semver.js" } }, - "node_modules/jsdom": { - "version": "16.7.0", - "resolved": "https://registry.npmjs.org/jsdom/-/jsdom-16.7.0.tgz", - "integrity": "sha512-u9Smc2G1USStM+s/x1ru5Sxrl6mPYCbByG1U/hUmqaVsm4tbNyS7CicOSRyuGQYZhTu0h84qkZZQ/I+dzizSVw==", + "node_modules/make-error": { + "version": "1.3.6", + "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", + "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", + "dev": true + }, + "node_modules/make-fetch-happen": { + "version": "9.1.0", + "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", + "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "abab": "^2.0.5", - "acorn": "^8.2.4", - "acorn-globals": "^6.0.0", - "cssom": "^0.4.4", - "cssstyle": "^2.3.0", - "data-urls": "^2.0.0", - "decimal.js": "^10.2.1", - "domexception": "^2.0.1", - "escodegen": "^2.0.0", - "form-data": "^3.0.0", - "html-encoding-sniffer": "^2.0.1", + "agentkeepalive": "^4.1.3", + "cacache": "^15.2.0", + "http-cache-semantics": "^4.1.0", "http-proxy-agent": "^4.0.1", "https-proxy-agent": "^5.0.0", - "is-potential-custom-element-name": "^1.0.1", - "nwsapi": "^2.2.0", - "parse5": "6.0.1", - "saxes": "^5.0.1", - "symbol-tree": "^3.2.4", - "tough-cookie": "^4.0.0", - "w3c-hr-time": "^1.0.2", - "w3c-xmlserializer": "^2.0.0", - "webidl-conversions": "^6.1.0", - "whatwg-encoding": "^1.0.5", - "whatwg-mimetype": "^2.3.0", - "whatwg-url": "^8.5.0", - "ws": "^7.4.6", - "xml-name-validator": "^3.0.0" + "is-lambda": "^1.0.1", + "lru-cache": "^6.0.0", + "minipass": "^3.1.3", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^1.3.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.2", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.0.0", + "ssri": "^8.0.0" }, "engines": { - "node": ">=10" - }, - "peerDependencies": { - "canvas": "^2.5.0" - }, - "peerDependenciesMeta": { - "canvas": { - "optional": true - } + "node": ">= 10" } }, - "node_modules/jsesc": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-2.5.2.tgz", - "integrity": "sha512-OYu7XEzjkCQ3C5Ps3QIZsQfNpqoJyZZA99wd9aWd05NCtC5pWOkShK2mkL6HXQR6/Cy2lbNdPlZBpuQHXE63gA==", + "node_modules/makeerror": { + "version": "1.0.12", + "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", + "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", "dev": true, - "bin": { - "jsesc": "bin/jsesc" - }, - "engines": { - "node": ">=4" + "dependencies": { + "tmpl": "1.0.5" } }, - "node_modules/json-buffer": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/json-buffer/-/json-buffer-3.0.1.tgz", - "integrity": "sha512-4bV5BfR2mqfQTJm+V5tPPdf+ZpuhiIvTuAB5g8kcrXOZpTT/QwwVRWBywX1ozr6lEuPdbHxwaJlm9G6mI2sfSQ==", - "dev": true - }, - "node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/json-parse-even-better-errors/-/json-parse-even-better-errors-2.3.1.tgz", - "integrity": "sha512-xyFwyhro/JEof6Ghe2iz2NcXoj2sloNsWr/XsERDK/oiPCfaNhl5ONfp+jQdAZRQQ0IJWNzH9zIZF7li91kh2w==", - "dev": true - }, - "node_modules/json-schema": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.4.0.tgz", - "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" - }, - "node_modules/json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" - }, - "node_modules/json-stable-stringify-without-jsonify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify-without-jsonify/-/json-stable-stringify-without-jsonify-1.0.1.tgz", - "integrity": "sha512-Bdboy+l7tA3OGW6FjyFHWkP5LuByj1Tk33Ljyq0axyzdk9//JSi2u3fP1QSmd1KNwq6VOKYGlAu87CisVir6Pw==", - "dev": true - }, - "node_modules/json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha512-ZClg6AaYvamvYEE82d3Iyd3vSSIjQ+odgjaTzRuO3s7toCdFKczob2i0zCh7JE8kWn17yvAWhUVxvqGwUalsRA==" - }, - "node_modules/json5": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/json5/-/json5-2.2.3.tgz", - "integrity": "sha512-XmOWe7eyHYH14cLdVPoyg+GOH3rYX++KpzrylJwSW98t3Nk+U8XOl8FWKOgwtzdb8lXGf6zYwDUzeHMWfxasyg==", + "node_modules/map-obj": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", + "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", "dev": true, - "bin": { - "json5": "lib/cli.js" - }, "engines": { - "node": ">=6" + "node": ">=8" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/jsonfile": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-6.1.0.tgz", - "integrity": "sha512-5dgndWOriYSm5cnYaJNhalLNDKOqFwyDB/rr1E9ZsGciGvKPs8R2xYGCacuf3z6K1YKDz182fd+fY3cn3pMqXQ==", + "node_modules/map-or-similar": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", + "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", + "dev": true + }, + "node_modules/markdown-to-jsx": { + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.4.5.tgz", + "integrity": "sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==", "dev": true, - "dependencies": { - "universalify": "^2.0.0" + "engines": { + "node": ">= 10" }, - "optionalDependencies": { - "graceful-fs": "^4.1.6" + "peerDependencies": { + "react": ">= 0.14.0" } }, - "node_modules/jsprim": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.2.tgz", - "integrity": "sha512-P2bSOMAc/ciLz6DzgjVlGJP9+BrJWu5UDGK70C2iweC5QBIeFf0ZXRvGjEj2uYgrY2MkAAhsSWHDWlFtEroZWw==", + "node_modules/mathjs": { + "version": "10.6.1", + "resolved": "https://registry.npmjs.org/mathjs/-/mathjs-10.6.1.tgz", + "integrity": "sha512-8iZp6uUKKBoCFoUHze9ydsrSji9/IOEzMhwURyoQXaLL1+ILEZnraw4KzZnUBt/XN6lPJPV+7JO94oil3AmosQ==", "dependencies": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.4.0", - "verror": "1.10.0" + "@babel/runtime": "^7.18.3", + "complex.js": "^2.1.1", + "decimal.js": "^10.3.1", + "escape-latex": "^1.2.0", + "fraction.js": "^4.2.0", + "javascript-natural-sort": "^0.7.1", + "seedrandom": "^3.0.5", + "tiny-emitter": "^2.1.0", + "typed-function": "^2.1.0" + }, + "bin": { + "mathjs": "bin/cli.js" }, "engines": { - "node": ">=0.6.0" + "node": ">= 14" } }, - "node_modules/jsx-ast-utils": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/jsx-ast-utils/-/jsx-ast-utils-3.3.0.tgz", - "integrity": "sha512-XzO9luP6L0xkxwhIJMTJQpZo/eeN60K08jHdexfD569AGxeNug6UketeHXEhROoM8aR7EcUoOQmIhcJQjcuq8Q==", + "node_modules/mdast-util-definitions": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", + "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", "dev": true, "dependencies": { - "array-includes": "^3.1.4", - "object.assign": "^4.1.2" + "unist-util-visit": "^2.0.0" }, - "engines": { - "node": ">=4.0" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/keyv": { - "version": "4.5.4", - "resolved": "https://registry.npmjs.org/keyv/-/keyv-4.5.4.tgz", - "integrity": "sha512-oxVHkHR/EJf2CNXnWxRLW6mg7JyCCUcG0DtEGmL2ctUo1PNTin1PUil+r/+4r5MpVgC/fn1kjsx7mjSujKqIpw==", + "node_modules/mdast-util-to-string": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", + "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", "dev": true, - "dependencies": { - "json-buffer": "3.0.1" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/kind-of": { - "version": "6.0.3", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.3.tgz", - "integrity": "sha512-dcS1ul+9tmeD95T+x28/ehLgd9mENa3LsvDTtzm3vyBEO7RPptvAD+t44WVXaUjTBRcrpFeFlC8WCruUR456hw==", - "dev": true, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/kleur": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/kleur/-/kleur-3.0.3.tgz", - "integrity": "sha512-eTIzlVOSUR+JxdDFepEYcBMtZ9Qqdef+rnzWdRZuMbOywu5tO2w2N7rqjoANZ5k9vywhL6Br1VRjUIgTQx4E8w==", + "node_modules/media-typer": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", + "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", "dev": true, "engines": { - "node": ">=6" + "node": ">= 0.6" } }, - "node_modules/klona": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/klona/-/klona-2.0.5.tgz", - "integrity": "sha512-pJiBpiXMbt7dkzXe8Ghj/u4FfXOOa98fPW+bihOJ4SjnoijweJrNThJfd3ifXpXhREjpoF2mZVH1GfS9LV3kHQ==", + "node_modules/memfs": { + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dev": true, + "dependencies": { + "fs-monkey": "^1.0.4" + }, "engines": { - "node": ">= 8" + "node": ">= 4.0.0" } }, - "node_modules/language-subtag-registry": { - "version": "0.3.21", - "resolved": "https://registry.npmjs.org/language-subtag-registry/-/language-subtag-registry-0.3.21.tgz", - "integrity": "sha512-L0IqwlIXjilBVVYKFT37X9Ih11Um5NEl9cbJIuU/SwP/zEEAbBPOnEeeuxVMf45ydWQRDQN3Nqc96OgbH1K+Pg==", - "dev": true - }, - "node_modules/language-tags": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/language-tags/-/language-tags-1.0.5.tgz", - "integrity": "sha512-qJhlO9cGXi6hBGKoxEG/sKZDAHD5Hnu9Hs4WbOY3pCWXDhw0N8x1NenNzm2EnNLkLkk7J2SdxAkDSbb6ftT+UQ==", + "node_modules/memoizerific": { + "version": "1.11.3", + "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", + "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", "dev": true, "dependencies": { - "language-subtag-registry": "~0.3.2" + "map-or-similar": "^1.5.0" } }, - "node_modules/latest-version": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/latest-version/-/latest-version-7.0.0.tgz", - "integrity": "sha512-KvNT4XqAMzdcL6ka6Tl3i2lYeFDgXNCuIX+xNx6ZMVR1dFq+idXd9FLKNMOIx0t9mJ9/HudyX4oZWXZQ0UJHeg==", + "node_modules/meow": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", + "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "package-json": "^8.1.0" + "@types/minimist": "^1.2.0", + "camelcase-keys": "^6.2.2", + "decamelize": "^1.2.0", + "decamelize-keys": "^1.1.0", + "hard-rejection": "^2.1.0", + "minimist-options": "4.1.0", + "normalize-package-data": "^3.0.0", + "read-pkg-up": "^7.0.1", + "redent": "^3.0.0", + "trim-newlines": "^3.0.0", + "type-fest": "^0.18.0", + "yargs-parser": "^20.2.3" }, "engines": { - "node": ">=14.16" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/layout": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/layout/-/layout-2.2.0.tgz", - "integrity": "sha512-+kdgg25XW11BA4cl9vF+SH01HaBipld2Nf/PlU2kSYncAbdUbDoahzrlh6yhR93N/wR2TGgcFoxebzR1LKmZUg==", - "dependencies": { - "bin-pack": "~1.0.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lazy-universal-dotenv": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/lazy-universal-dotenv/-/lazy-universal-dotenv-4.0.0.tgz", - "integrity": "sha512-aXpZJRnTkpK6gQ/z4nk+ZBLd/Qdp118cvPruLSIQzQNRhKwEcdXCOzXuF55VDqIiuAaY3UGZ10DJtvZzDcvsxg==", + "node_modules/meow/node_modules/type-fest": { + "version": "0.18.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", + "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", "dev": true, - "dependencies": { - "app-root-dir": "^1.0.2", - "dotenv": "^16.0.0", - "dotenv-expand": "^10.0.0" - }, + "optional": true, + "peer": true, "engines": { - "node": ">=14.0.0" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/leven": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/leven/-/leven-3.1.0.tgz", - "integrity": "sha512-qsda+H8jTaUaN/x5vzW2rzc+8Rw4TAQ/4KjB46IwK5VH+IlVeeeje/EoZRpiXvIqjFgK84QffqPztGI3VBLG1A==", + "node_modules/meow/node_modules/yargs-parser": { + "version": "20.2.9", + "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", + "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/levn": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.4.1.tgz", - "integrity": "sha512-+bT2uH4E5LGE7h/n3evcS/sQlJXCpIp6ym8OWJ5eV6+67Dsql/LaaT7qJBAt2rzfoa/5QBGBhxDix1dMt2kQKQ==", + "node_modules/merge-descriptors": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", + "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", + "dev": true + }, + "node_modules/merge-stream": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", + "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", + "dev": true + }, + "node_modules/merge2": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", + "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", "dev": true, - "dependencies": { - "prelude-ls": "^1.2.1", - "type-check": "~0.4.0" - }, "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/lightweight-charts": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/lightweight-charts/-/lightweight-charts-3.8.0.tgz", - "integrity": "sha512-7yFGnYuE1RjRJG9RwUTBz5wvF1QtjBOSW4FFlikr8Dh+/TDNt4ci+HsWSYmStgQUpawpvkCJ3j5/W25GppGj9Q==", - "dependencies": { - "fancy-canvas": "0.2.2" + "node": ">= 8" } }, - "node_modules/lilconfig": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/lilconfig/-/lilconfig-2.1.0.tgz", - "integrity": "sha512-utWOt/GHzuUxnLKxB6dk81RoOeoNeHgbrXiuGk4yyF5qlRz+iIVWu56E2fqGHFrXz0QNUhLB/8nKqvRH66JKGQ==", + "node_modules/methods": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", + "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", "dev": true, "engines": { - "node": ">=10" + "node": ">= 0.6" } }, - "node_modules/lines-and-columns": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/lines-and-columns/-/lines-and-columns-1.2.4.tgz", - "integrity": "sha512-7ylylesZQ/PV29jhEDl3Ufjo6ZX7gCqJr5F7PKrqc93v7fzSymt1BpwEU8nAUXs8qzzvqhbjhK5QZg6Mt/HkBg==", - "dev": true - }, - "node_modules/lint-staged": { - "version": "13.2.2", - "resolved": "https://registry.npmjs.org/lint-staged/-/lint-staged-13.2.2.tgz", - "integrity": "sha512-71gSwXKy649VrSU09s10uAT0rWCcY3aewhMaHyl2N84oBk4Xs9HgxvUp3AYu+bNsK4NrOYYxvSgg7FyGJ+jGcA==", + "node_modules/micromatch": { + "version": "4.0.5", + "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", + "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", "dev": true, "dependencies": { - "chalk": "5.2.0", - "cli-truncate": "^3.1.0", - "commander": "^10.0.0", - "debug": "^4.3.4", - "execa": "^7.0.0", - "lilconfig": "2.1.0", - "listr2": "^5.0.7", - "micromatch": "^4.0.5", - "normalize-path": "^3.0.0", - "object-inspect": "^1.12.3", - "pidtree": "^0.6.0", - "string-argv": "^0.3.1", - "yaml": "^2.2.2" - }, - "bin": { - "lint-staged": "bin/lint-staged.js" + "braces": "^3.0.2", + "picomatch": "^2.3.1" }, "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://opencollective.com/lint-staged" + "node": ">=8.6" } }, - "node_modules/lint-staged/node_modules/chalk": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.2.0.tgz", - "integrity": "sha512-ree3Gqw/nazQAPuJJEy+avdl7QfZMcUvmHIKgEZkGL+xOBzRvup5Hxo6LHuMceSxOabuJLJm5Yp/92R9eMmMvA==", + "node_modules/mime": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", + "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", "dev": true, - "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "bin": { + "mime": "cli.js" }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "engines": { + "node": ">=4" } }, - "node_modules/lint-staged/node_modules/commander": { - "version": "10.0.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-10.0.1.tgz", - "integrity": "sha512-y4Mg2tXshplEbSGzx7amzPwKKOCGuoSRP/CjEdwwk0FOGlUbq6lKuoyDZTNZkmxHdJtp54hdfY/JUrdL7Xfdug==", - "dev": true, + "node_modules/mime-db": { + "version": "1.52.0", + "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", + "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", "engines": { - "node": ">=14" + "node": ">= 0.6" } }, - "node_modules/lint-staged/node_modules/execa": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-7.1.1.tgz", - "integrity": "sha512-wH0eMf/UXckdUYnO21+HDztteVv05rq2GXksxT4fCGeHkBhw1DROXh40wcjMcRqDOWE7iPJ4n3M7e2+YFP+76Q==", - "dev": true, + "node_modules/mime-types": { + "version": "2.1.35", + "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", + "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^6.0.1", - "human-signals": "^4.3.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^3.0.7", - "strip-final-newline": "^3.0.0" + "mime-db": "1.52.0" }, "engines": { - "node": "^14.18.0 || ^16.14.0 || >=18.0.0" - }, - "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "node": ">= 0.6" } }, - "node_modules/lint-staged/node_modules/human-signals": { - "version": "4.3.1", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-4.3.1.tgz", - "integrity": "sha512-nZXjEF2nbo7lIw3mgYjItAfgQXog3OjJogSbKa2CQIIvSGWcKgeJnQlNXip6NglNzYH45nSRiEVimMvYL8DDqQ==", + "node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", "dev": true, "engines": { - "node": ">=14.18.0" + "node": ">=6" } }, - "node_modules/lint-staged/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, + "node_modules/mimic-response": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", + "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/lint-staged/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "node_modules/min-indent": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", + "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4" } }, - "node_modules/lint-staged/node_modules/npm-run-path": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.1.0.tgz", - "integrity": "sha512-sJOdmRGrY2sjNTRMbSvluQqg+8X7ZK61yvzBEIDhz4f8z1TZFYABsqjjCBd/0PUNE9M6QDgHJXQkGUEm7Q+l9Q==", + "node_modules/minimalistic-assert": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", + "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", + "dev": true + }, + "node_modules/minimatch": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", + "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", "dev": true, "dependencies": { - "path-key": "^4.0.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "*" } }, - "node_modules/lint-staged/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "node_modules/minimist": { + "version": "1.2.6", + "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", + "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" + }, + "node_modules/minimist-options": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", + "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", "dev": true, "dependencies": { - "mimic-fn": "^4.0.0" + "arrify": "^1.0.1", + "is-plain-obj": "^1.1.0", + "kind-of": "^6.0.3" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 6" } }, - "node_modules/lint-staged/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "node_modules/minimist-options/node_modules/is-plain-obj": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", + "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", "dev": true, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/lint-staged/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "node_modules/minipass": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", + "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", "dev": true, - "engines": { - "node": ">=12" + "dependencies": { + "yallist": "^4.0.0" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/lint-staged/node_modules/yaml": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/yaml/-/yaml-2.2.2.tgz", - "integrity": "sha512-CBKFWExMn46Foo4cldiChEzn7S7SRV+wqiluAb6xmueD/fGyRHIhX8m14vVGgeFWjN540nKCNVj6P21eQjgTuA==", - "dev": true, "engines": { - "node": ">= 14" + "node": ">=8" } }, - "node_modules/listr2": { - "version": "5.0.8", - "resolved": "https://registry.npmjs.org/listr2/-/listr2-5.0.8.tgz", - "integrity": "sha512-mC73LitKHj9w6v30nLNGPetZIlfpUniNSsxxrbaPcWOjDb92SHPzJPi/t+v1YC/lxKz/AJ9egOjww0qUuFxBpA==", + "node_modules/minipass-collect": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", + "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "cli-truncate": "^2.1.0", - "colorette": "^2.0.19", - "log-update": "^4.0.0", - "p-map": "^4.0.0", - "rfdc": "^1.3.0", - "rxjs": "^7.8.0", - "through": "^2.3.8", - "wrap-ansi": "^7.0.0" + "minipass": "^3.0.0" }, "engines": { - "node": "^14.13.1 || >=16.0.0" - }, - "peerDependencies": { - "enquirer": ">= 2.3.0 < 3" - }, - "peerDependenciesMeta": { - "enquirer": { - "optional": true - } + "node": ">= 8" } }, - "node_modules/listr2/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/minipass-fetch": { + "version": "1.4.1", + "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", + "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "color-convert": "^2.0.1" + "minipass": "^3.1.0", + "minipass-sized": "^1.0.3", + "minizlib": "^2.0.0" }, "engines": { "node": ">=8" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "optionalDependencies": { + "encoding": "^0.1.12" } }, - "node_modules/listr2/node_modules/cli-truncate": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cli-truncate/-/cli-truncate-2.1.0.tgz", - "integrity": "sha512-n8fOixwDD6b/ObinzTrp1ZKFzbgvKZvuz/TvejnLn1aQfC6r52XEx85FmuC+3HI+JM7coBRXUvNqEU2PHVrHpg==", + "node_modules/minipass-flush": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", + "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "slice-ansi": "^3.0.0", - "string-width": "^4.2.0" + "minipass": "^3.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 8" } }, - "node_modules/listr2/node_modules/slice-ansi": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-3.0.0.tgz", - "integrity": "sha512-pSyv7bSTC7ig9Dcgbw9AuRNUb5k5V6oDudjZoMBSr13qpLBG7tB+zgCkARjq7xIUgdz5P1Qe8u+rSGdouOOIyQ==", + "node_modules/minipass-pipeline": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", + "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "minipass": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/lit": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/lit/-/lit-2.3.1.tgz", - "integrity": "sha512-TejktDR4mqG3qB32Y8Lm5Lye3c8SUehqz7qRsxe1PqGYL6me2Ef+jeQAEqh20BnnGncv4Yxy2njEIT0kzK1WCw==", - "dependencies": { - "@lit/reactive-element": "^1.4.0", - "lit-element": "^3.2.0", - "lit-html": "^2.3.0" - } - }, - "node_modules/lit-element": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/lit-element/-/lit-element-3.2.2.tgz", - "integrity": "sha512-6ZgxBR9KNroqKb6+htkyBwD90XGRiqKDHVrW/Eh0EZ+l+iC+u+v+w3/BA5NGi4nizAVHGYvQBHUDuSmLjPp7NQ==", - "dependencies": { - "@lit/reactive-element": "^1.3.0", - "lit-html": "^2.2.0" - } - }, - "node_modules/lit-html": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/lit-html/-/lit-html-2.3.1.tgz", - "integrity": "sha512-FyKH6LTW6aBdkfNhNSHyZTnLgJSTe5hMk7HFtc/+DcN1w74C215q8B+Cfxc2OuIEpBNcEKxgF64qL8as30FDHA==", - "dependencies": { - "@types/trusted-types": "^2.0.2" - } - }, - "node_modules/loader-runner": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-4.3.0.tgz", - "integrity": "sha512-3R/1M+yS3j5ou80Me59j7F9IMs4PXs3VqRrm0TU3AbKPxlmpoY1TNscJV/oGJXo8qCatFGTfDbY6W6ipGOYXfg==", + "node_modules/minipass-sized": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", + "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">=6.11.5" + "node": ">=8" } }, - "node_modules/loader-utils": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-2.0.4.tgz", - "integrity": "sha512-xXqpXoINfFhgua9xiqD8fPFHgkoq1mmmpE92WlDbm9rNRd/EbRb+Gqf908T2DMfuHjjJlksiK2RbHVOdD/MqSw==", + "node_modules/minizlib": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", + "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", "dev": true, "dependencies": { - "big.js": "^5.2.2", - "emojis-list": "^3.0.0", - "json5": "^2.1.2" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": ">=8.9.0" + "node": ">= 8" } }, - "node_modules/locate-path": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-5.0.0.tgz", - "integrity": "sha512-t7hw9pI+WvuwNJXwk5zVHpyhIqzg2qTlklJOf0mVxGSbe3Fp2VieZcduNYjaLDoy6p9uGpQEGWG87WpMKlNq8g==", + "node_modules/mkdirp": { + "version": "0.5.6", + "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", + "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", "dev": true, "dependencies": { - "p-locate": "^4.1.0" + "minimist": "^1.2.6" }, - "engines": { - "node": ">=8" + "bin": { + "mkdirp": "bin/cmd.js" } }, - "node_modules/lodash": { - "version": "4.17.21", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", - "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" + "node_modules/mkdirp-classic": { + "version": "0.5.3", + "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", + "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" }, - "node_modules/lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha512-TwuEnCnxbc3rAvhf/LbG7tJUDzhqXyFnv3dtzLOPgCG/hODL7WFnsbwktkD7yUV0RrreP/l1PALq/YSg6VvjlA==", - "dev": true + "node_modules/moo-color": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/moo-color/-/moo-color-1.0.3.tgz", + "integrity": "sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==", + "dev": true, + "dependencies": { + "color-name": "^1.1.4" + } }, - "node_modules/lodash.capitalize": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.capitalize/-/lodash.capitalize-4.2.1.tgz", - "integrity": "sha512-kZzYOKspf8XVX5AvmQF94gQW0lejFVgb80G85bU4ZWzoJ6C03PQg3coYAUpSTpQWelrZELd3XWgHzw4Ck5kaIw==", + "node_modules/ms": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", + "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", "dev": true }, - "node_modules/lodash.debounce": { - "version": "4.0.8", - "resolved": "https://registry.npmjs.org/lodash.debounce/-/lodash.debounce-4.0.8.tgz", - "integrity": "sha512-FT1yDzDYEoYWhnSGnpE/4Kj1fLZkDFyqRb7fNt6FdYOSxlUWAtp42Eh6Wb0rGIv/m9Bgo7x4GhQbm5Ys4SG5ow==", - "dev": true + "node_modules/multicast-dns": { + "version": "7.2.5", + "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", + "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", + "dev": true, + "dependencies": { + "dns-packet": "^5.2.2", + "thunky": "^1.0.2" + }, + "bin": { + "multicast-dns": "cli.js" + } }, - "node_modules/lodash.escaperegexp": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.escaperegexp/-/lodash.escaperegexp-4.1.2.tgz", - "integrity": "sha512-TM9YBvyC84ZxE3rgfefxUWiQKLilstD6k7PTGt6wfbtXF8ixIJLOL3VYyV/z+ZiPLsVxAsKAFVwWlWeb2Y8Yyw==", - "dev": true + "node_modules/mustache": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", + "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", + "bin": { + "mustache": "bin/mustache" + } }, - "node_modules/lodash.isplainobject": { - "version": "4.0.6", - "resolved": "https://registry.npmjs.org/lodash.isplainobject/-/lodash.isplainobject-4.0.6.tgz", - "integrity": "sha512-oSXzaWypCMHkPC3NvBEaPHf0KsA5mvPrOPgQWDsbg8n7orZ290M0BmC/jgRZ4vcJ6DTAhjrsSYgdsW/F+MFOBA==", + "node_modules/mute-stream": { + "version": "0.0.7", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", + "integrity": "sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==", "dev": true }, - "node_modules/lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha512-0wJxfxH1wgO3GrbuP+dTTk7op+6L41QCXbGINEmD+ny/G/eCqGzxyCsh7159S+mgDDcoarnBw6PC1PS5+wUGgw==", - "dev": true + "node_modules/nan": { + "version": "2.17.0", + "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", + "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", + "dev": true, + "optional": true, + "peer": true }, - "node_modules/lodash.merge": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/lodash.merge/-/lodash.merge-4.6.2.tgz", - "integrity": "sha512-0KpjqXRVvrYyCsX1swR/XTK0va6VQkQM6MNo7PqW77ByjAhoARA8EfrP1N4+KlKj8YS0ZUCtRT/YUuhyYDujIQ==", - "dev": true + "node_modules/nanoid": { + "version": "3.3.4", + "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", + "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", + "dev": true, + "bin": { + "nanoid": "bin/nanoid.cjs" + }, + "engines": { + "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + } }, - "node_modules/lodash.unescape": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.unescape/-/lodash.unescape-4.0.1.tgz", - "integrity": "sha512-DhhGRshNS1aX6s5YdBE3njCCouPgnG29ebyHvImlZzXZf2SHgt+J08DHgytTPnpywNbO1Y8mNUFyQuIDBq2JZg==", - "dev": true + "node_modules/napi-build-utils": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", + "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" }, - "node_modules/lodash.uniqby": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/lodash.uniqby/-/lodash.uniqby-4.7.0.tgz", - "integrity": "sha512-e/zcLx6CSbmaEgFHCA7BnoQKyCtKMxnuWrJygbwPs/AIn+IMKl66L8/s+wBUn5LRw2pZx3bUHibiV1b6aTWIww==", + "node_modules/natural-compare": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", + "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", "dev": true }, - "node_modules/log-symbols": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-4.1.0.tgz", - "integrity": "sha512-8XPvpAA8uyhfteu8pIvQxpJZ7SYYdpUivZpGy6sFsBuKRY/7rQGavedeB8aK+Zkyq6upMFVL/9AW6vOYzfRyLg==", - "dev": true, + "node_modules/ndarray": { + "version": "1.0.19", + "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", + "integrity": "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ==", "dependencies": { - "chalk": "^4.1.0", - "is-unicode-supported": "^0.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "iota-array": "^1.0.0", + "is-buffer": "^1.0.2" } }, - "node_modules/log-symbols/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, + "node_modules/ndarray-ops": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/ndarray-ops/-/ndarray-ops-1.2.2.tgz", + "integrity": "sha512-BppWAFRjMYF7N/r6Ie51q6D4fs0iiGmeXIACKY66fLpnwIui3Wc3CXiD/30mgLbDjPpSLrsqcp3Z62+IcHZsDw==", "dependencies": { - "color-convert": "^2.0.1" - }, - "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "cwise-compiler": "^1.0.0" } }, - "node_modules/log-symbols/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, + "node_modules/ndarray-pack": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", + "integrity": "sha512-51cECUJMT0rUZNQa09EoKsnFeDL4x2dHRT0VR5U2H5ZgEcm95ZDWcMA5JShroXjHOejmAD/fg8+H+OvUnVXz2g==", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "cwise-compiler": "^1.1.2", + "ndarray": "^1.0.13" } }, - "node_modules/log-symbols/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/negotiator": { + "version": "0.6.3", + "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", + "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/log-symbols/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/neo-async": { + "version": "2.6.2", + "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", + "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", + "dev": true + }, + "node_modules/netmask": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", + "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, "engines": { - "node": ">=8" + "node": ">= 0.4.0" } }, - "node_modules/log-update": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/log-update/-/log-update-4.0.0.tgz", - "integrity": "sha512-9fkkDevMefjg0mmzWFBW8YkFP91OrizzkW3diF7CpG+S2EYdy4+TVfGwz1zeF8x7hCx1ovSPTOE9Ngib74qqUg==", + "node_modules/new-github-release-url": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/new-github-release-url/-/new-github-release-url-2.0.0.tgz", + "integrity": "sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==", "dev": true, "dependencies": { - "ansi-escapes": "^4.3.0", - "cli-cursor": "^3.1.0", - "slice-ansi": "^4.0.0", - "wrap-ansi": "^6.2.0" + "type-fest": "^2.5.1" }, "engines": { - "node": ">=10" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/new-github-release-url/node_modules/type-fest": { + "version": "2.19.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", + "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", "dev": true, - "dependencies": { - "color-convert": "^2.0.1" - }, "engines": { - "node": ">=8" + "node": ">=12.20" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/log-update/node_modules/slice-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/slice-ansi/-/slice-ansi-4.0.0.tgz", - "integrity": "sha512-qMCMfhY040cVHT43K9BFygqYbUPFZKHOg7K73mtTWJRb8pyP3fzf4Ixd5SzdEJQ6MRUg/WBnOLxghZtKKurENQ==", + "node_modules/no-case": { + "version": "2.3.2", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", + "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "astral-regex": "^2.0.0", - "is-fullwidth-code-point": "^3.0.0" + "lower-case": "^1.1.1" + } + }, + "node_modules/node-abi": { + "version": "3.35.0", + "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", + "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "dependencies": { + "semver": "^7.3.5" }, "engines": { "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/slice-ansi?sponsor=1" } }, - "node_modules/log-update/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", + "node_modules/node-abort-controller": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", + "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", + "dev": true + }, + "node_modules/node-addon-api": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.0.0.tgz", + "integrity": "sha512-GyHvgPvUXBvAkXa0YvYnhilSB1A+FRYMpIVggKzPZqdaZfevZOuzfWzyvgzOwRLHBeo/MMswmJFsrNF4Nw1pmA==" + }, + "node_modules/node-bitmap": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", + "integrity": "sha512-Jx5lPaaLdIaOsj2mVLWMWulXF6GQVdyLvNSxmiYCvZ8Ma2hfKX0POoR2kgKOqz+oFsRreq0yYZjQ2wjE9VNzCA==", + "engines": { + "node": ">=v0.6.5" + } + }, + "node_modules/node-dir": { + "version": "0.1.17", + "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", + "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", "dev": true, "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" + "minimatch": "^3.0.2" }, "engines": { - "node": ">=8" + "node": ">= 0.10.5" } }, - "node_modules/loglevel": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/loglevel/-/loglevel-1.8.0.tgz", - "integrity": "sha512-G6A/nJLRgWOuuwdNuA6koovfEV1YpqqAG4pRUlFaz3jj2QNZ8M4vBqnVA+HBTmU/AMNUtlOsMmSpF6NyOjztbA==", + "node_modules/node-domexception": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", + "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", "dev": true, + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/jimmywarting" + }, + { + "type": "github", + "url": "https://paypal.me/jimmywarting" + } + ], "engines": { - "node": ">= 0.6.0" - }, - "funding": { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/loglevel" + "node": ">=10.5.0" } }, - "node_modules/loglevel-colored-level-prefix": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/loglevel-colored-level-prefix/-/loglevel-colored-level-prefix-1.0.0.tgz", - "integrity": "sha512-u45Wcxxc+SdAlh4yeF/uKlC1SPUPCy0gullSNKXod5I4bmifzk+Q4lSLExNEVn19tGaJipbZ4V4jbFn79/6mVA==", + "node_modules/node-fetch": { + "version": "2.6.9", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", + "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", "dev": true, "dependencies": { - "chalk": "^1.1.3", - "loglevel": "^1.4.1" + "whatwg-url": "^5.0.0" + }, + "engines": { + "node": "4.x || >=6.0.0" + }, + "peerDependencies": { + "encoding": "^0.1.0" + }, + "peerDependenciesMeta": { + "encoding": { + "optional": true + } } }, - "node_modules/loglevel-colored-level-prefix/node_modules/ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha512-TIGnTpdo+E3+pCyAluZvtED5p5wCqLdezCyhPZzKPcxvFplEt4i+W7OONCKgeZFT3+y5NZZfOOS/Bdcanm1MYA==", + "node_modules/node-fetch-native": { + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/tr46": { + "version": "0.0.3", + "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", + "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", + "dev": true + }, + "node_modules/node-fetch/node_modules/webidl-conversions": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", + "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", + "dev": true + }, + "node_modules/node-fetch/node_modules/whatwg-url": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", + "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "dependencies": { + "tr46": "~0.0.3", + "webidl-conversions": "^3.0.0" } }, - "node_modules/loglevel-colored-level-prefix/node_modules/ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha512-kmCevFghRiWM7HB5zTPULl4r9bVFSWjz62MhqizDGUrq2NWuNMQyuv4tHHoKJHs69M/MF64lEcHdYIocrdWQYA==", + "node_modules/node-forge": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", + "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">= 6.13.0" } }, - "node_modules/loglevel-colored-level-prefix/node_modules/chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha512-U3lRVLMSlsCfjqYPbLyVv11M9CPW4I728d6TCKMAOJueEeB9/8o+eSsMnxPJD+Q+K909sdESg7C+tIkoH6on1A==", + "node_modules/node-gyp": { + "version": "8.4.1", + "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", + "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^9.1.0", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" }, "engines": { - "node": ">=0.10.0" + "node": ">= 10.12.0" } }, - "node_modules/loglevel-colored-level-prefix/node_modules/strip-ansi": { + "node_modules/node-gyp/node_modules/are-we-there-yet": { "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", + "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", + "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "ansi-regex": "^2.0.0" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": ">=0.10.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/loglevel-colored-level-prefix/node_modules/supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", + "node_modules/node-gyp/node_modules/gauge": { + "version": "4.0.4", + "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", + "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "aproba": "^1.0.3 || ^2.0.0", + "color-support": "^1.1.3", + "console-control-strings": "^1.1.0", + "has-unicode": "^2.0.1", + "signal-exit": "^3.0.7", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wide-align": "^1.1.5" + }, "engines": { - "node": ">=0.8.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/loose-envify": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/loose-envify/-/loose-envify-1.4.0.tgz", - "integrity": "sha512-lyuxPGr/Wfhrlem2CL/UcnUc1zcqKAImBDzukY7Y5F/yQiNdko6+fRLevlw1HgMySw7f611UIY408EtxRSoK3Q==", + "node_modules/node-gyp/node_modules/npmlog": { + "version": "6.0.2", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", + "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { - "js-tokens": "^3.0.0 || ^4.0.0" + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" }, - "bin": { - "loose-envify": "cli.js" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha512-2Fgx1Ycm599x+WGpIYwJOvsjmXFzTSc34IwDWALRA/8AopUKAVPwfJ+h5+f85BCp0PWmmJcWzEpxOpoXycMpdA==", + "node_modules/node-int64": { + "version": "0.4.0", + "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", + "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", "dev": true }, - "node_modules/lower-case-first": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/lower-case-first/-/lower-case-first-1.0.2.tgz", - "integrity": "sha512-UuxaYakO7XeONbKrZf5FEgkantPf5DUqDayzP5VXZrtRPdH86s4kN47I8B3TW10S4QKiE3ziHNf3kRN//okHjA==", + "node_modules/node-releases": { + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", + "dev": true + }, + "node_modules/node-sass": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-7.0.3.tgz", + "integrity": "sha512-8MIlsY/4dXUkJDYht9pIWBhMil3uHmE8b/AdJPjmFn1nBx9X9BASzfzmsCy0uCCb8eqI3SYYzVPDswWqSx7gjw==", "dev": true, + "hasInstallScript": true, + "optional": true, + "peer": true, "dependencies": { - "lower-case": "^1.1.2" + "async-foreach": "^0.1.3", + "chalk": "^4.1.2", + "cross-spawn": "^7.0.3", + "gaze": "^1.0.0", + "get-stdin": "^4.0.1", + "glob": "^7.0.3", + "lodash": "^4.17.15", + "meow": "^9.0.0", + "nan": "^2.13.2", + "node-gyp": "^8.4.1", + "npmlog": "^5.0.0", + "request": "^2.88.0", + "sass-graph": "^4.0.1", + "stdout-stream": "^1.4.0", + "true-case-path": "^1.0.2" + }, + "bin": { + "node-sass": "bin/node-sass" + }, + "engines": { + "node": ">=12" } }, - "node_modules/lowercase-keys": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/lowercase-keys/-/lowercase-keys-3.0.0.tgz", - "integrity": "sha512-ozCC6gdQ+glXOQsveKD0YsDy8DSQFjDTz4zyzEHNV5+JP5D62LmfDZ6o1cycFx9ouG940M5dE8C8CTewdj2YWQ==", + "node_modules/node-sass/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "color-convert": "^2.0.1" + }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/lru-cache": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-6.0.0.tgz", - "integrity": "sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA==", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/lz-string": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/lz-string/-/lz-string-1.5.0.tgz", - "integrity": "sha512-h5bgJWpxJNswbU7qCrV0tIKQCaS3blPDrqKWx+QxzuzL1zGUzij9XCWLrSLsJPu5t+eWA/ycetzYAO5IOMcWAQ==", - "bin": { - "lz-string": "bin/bin.js" - } - }, - "node_modules/macos-release": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/macos-release/-/macos-release-3.2.0.tgz", - "integrity": "sha512-fSErXALFNsnowREYZ49XCdOHF8wOPWuFOGQrAhP7x5J/BqQv+B02cNsTykGpDgRVx43EKg++6ANmTaGTtW+hUA==", + "node_modules/node-sass/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, + "optional": true, + "peer": true, + "dependencies": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/make-dir": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", - "integrity": "sha512-g3FeP20LNwhALb/6Cz6Dd4F2ngze0jz7tbzrD2wAV+o9FeNHe4rL+yK2md0J/fiSf1sa1ADhXqi5+oVwOM/eGw==", + "node_modules/node-sass/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, - "dependencies": { - "semver": "^6.0.0" - }, + "optional": true, + "peer": true, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/make-dir/node_modules/semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "node_modules/node-sass/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, - "bin": { - "semver": "bin/semver.js" + "optional": true, + "peer": true, + "dependencies": { + "has-flag": "^4.0.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/make-error": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/make-error/-/make-error-1.3.6.tgz", - "integrity": "sha512-s8UhlNe7vPKomQhC1qFelMokr/Sc3AgNbso3n74mVPA5LTZwkB9NlXf4XPamLxJE8h0gh73rM94xvwRT2CVInw==", - "dev": true - }, - "node_modules/make-fetch-happen": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/make-fetch-happen/-/make-fetch-happen-9.1.0.tgz", - "integrity": "sha512-+zopwDy7DNknmwPQplem5lAZX/eCOzSvSNNcSKm5eVwTkOBzoktEfXsa9L23J/GIRhxRsaxzkPEhrJEpE2F4Gg==", + "node_modules/nopt": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", + "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", "dev": true, "optional": true, "peer": true, "dependencies": { - "agentkeepalive": "^4.1.3", - "cacache": "^15.2.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^4.0.1", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^6.0.0", - "minipass": "^3.1.3", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^1.3.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.2", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.0.0", - "ssri": "^8.0.0" + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" }, "engines": { - "node": ">= 10" + "node": ">=6" } }, - "node_modules/makeerror": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/makeerror/-/makeerror-1.0.12.tgz", - "integrity": "sha512-JmqCvUhmt43madlpFzG4BQzG2Z3m6tvQDNKdClZnO3VbIudJYmxsT0FNJMeiB2+JTSlTQTSbU8QdesVmwJcmLg==", + "node_modules/normalize-package-data": { + "version": "3.0.3", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", + "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "tmpl": "1.0.5" + "hosted-git-info": "^4.0.1", + "is-core-module": "^2.5.0", + "semver": "^7.3.4", + "validate-npm-package-license": "^3.0.1" + }, + "engines": { + "node": ">=10" } }, - "node_modules/map-obj": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-4.3.0.tgz", - "integrity": "sha512-hdN1wVrZbb29eBGiGjJbeP8JbKjq1urkHJ/LIP/NY48MZ1QVXUsQBV1G1zvYFHn1XE06cwjBsOI2K3Ulnj1YXQ==", + "node_modules/normalize-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", + "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", "dev": true, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.10.0" } }, - "node_modules/map-or-similar": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/map-or-similar/-/map-or-similar-1.5.0.tgz", - "integrity": "sha512-0aF7ZmVon1igznGI4VS30yugpduQW3y3GkcgGJOp7d8x8QrizhigUxjI/m2UojsXXto+jLAH3KSz+xOJTiORjg==", - "dev": true - }, - "node_modules/markdown-to-jsx": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz", - "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==", + "node_modules/normalize-url": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", + "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", "dev": true, "engines": { - "node": ">= 10" + "node": ">=14.16" }, - "peerDependencies": { - "react": ">= 0.14.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/mathjs": { - "version": "10.6.1", - "resolved": "https://registry.npmjs.org/mathjs/-/mathjs-10.6.1.tgz", - "integrity": "sha512-8iZp6uUKKBoCFoUHze9ydsrSji9/IOEzMhwURyoQXaLL1+ILEZnraw4KzZnUBt/XN6lPJPV+7JO94oil3AmosQ==", + "node_modules/npm": { + "version": "8.12.1", + "resolved": "https://registry.npmjs.org/npm/-/npm-8.12.1.tgz", + "integrity": "sha512-0yOlhfgu1UzP6UijnaFuIS2bES2H9D90EA5OVsf2iOZw7VBrjntXKEwKfCaFA6vMVWkCP8qnPwCxxPdnDVwlNw==", + "bundleDependencies": [ + "@isaacs/string-locale-compare", + "@npmcli/arborist", + "@npmcli/ci-detect", + "@npmcli/config", + "@npmcli/fs", + "@npmcli/map-workspaces", + "@npmcli/package-json", + "@npmcli/run-script", + "abbrev", + "archy", + "cacache", + "chalk", + "chownr", + "cli-columns", + "cli-table3", + "columnify", + "fastest-levenshtein", + "glob", + "graceful-fs", + "hosted-git-info", + "ini", + "init-package-json", + "is-cidr", + "json-parse-even-better-errors", + "libnpmaccess", + "libnpmdiff", + "libnpmexec", + "libnpmfund", + "libnpmhook", + "libnpmorg", + "libnpmpack", + "libnpmpublish", + "libnpmsearch", + "libnpmteam", + "libnpmversion", + "make-fetch-happen", + "minipass", + "minipass-pipeline", + "mkdirp", + "mkdirp-infer-owner", + "ms", + "node-gyp", + "nopt", + "npm-audit-report", + "npm-install-checks", + "npm-package-arg", + "npm-pick-manifest", + "npm-profile", + "npm-registry-fetch", + "npm-user-validate", + "npmlog", + "opener", + "pacote", + "parse-conflict-json", + "proc-log", + "qrcode-terminal", + "read", + "read-package-json", + "read-package-json-fast", + "readdir-scoped-modules", + "rimraf", + "semver", + "ssri", + "tar", + "text-table", + "tiny-relative-date", + "treeverse", + "validate-npm-package-name", + "which", + "write-file-atomic" + ], "dependencies": { - "@babel/runtime": "^7.18.3", - "complex.js": "^2.1.1", - "decimal.js": "^10.3.1", - "escape-latex": "^1.2.0", - "fraction.js": "^4.2.0", - "javascript-natural-sort": "^0.7.1", - "seedrandom": "^3.0.5", - "tiny-emitter": "^2.1.0", - "typed-function": "^2.1.0" + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/arborist": "^5.0.4", + "@npmcli/ci-detect": "^2.0.0", + "@npmcli/config": "^4.1.0", + "@npmcli/fs": "^2.1.0", + "@npmcli/map-workspaces": "^2.0.3", + "@npmcli/package-json": "^2.0.0", + "@npmcli/run-script": "^3.0.1", + "abbrev": "~1.1.1", + "archy": "~1.0.0", + "cacache": "^16.1.0", + "chalk": "^4.1.2", + "chownr": "^2.0.0", + "cli-columns": "^4.0.0", + "cli-table3": "^0.6.2", + "columnify": "^1.6.0", + "fastest-levenshtein": "^1.0.12", + "glob": "^8.0.1", + "graceful-fs": "^4.2.10", + "hosted-git-info": "^5.0.0", + "ini": "^3.0.0", + "init-package-json": "^3.0.2", + "is-cidr": "^4.0.2", + "json-parse-even-better-errors": "^2.3.1", + "libnpmaccess": "^6.0.2", + "libnpmdiff": "^4.0.2", + "libnpmexec": "^4.0.2", + "libnpmfund": "^3.0.1", + "libnpmhook": "^8.0.2", + "libnpmorg": "^4.0.2", + "libnpmpack": "^4.0.2", + "libnpmpublish": "^6.0.2", + "libnpmsearch": "^5.0.2", + "libnpmteam": "^4.0.2", + "libnpmversion": "^3.0.1", + "make-fetch-happen": "^10.1.6", + "minipass": "^3.1.6", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "ms": "^2.1.2", + "node-gyp": "^9.0.0", + "nopt": "^5.0.0", + "npm-audit-report": "^3.0.0", + "npm-install-checks": "^5.0.0", + "npm-package-arg": "^9.0.2", + "npm-pick-manifest": "^7.0.1", + "npm-profile": "^6.0.3", + "npm-registry-fetch": "^13.1.1", + "npm-user-validate": "^1.0.1", + "npmlog": "^6.0.2", + "opener": "^1.5.2", + "pacote": "^13.6.0", + "parse-conflict-json": "^2.0.2", + "proc-log": "^2.0.1", + "qrcode-terminal": "^0.12.0", + "read": "~1.0.7", + "read-package-json": "^5.0.1", + "read-package-json-fast": "^2.0.3", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^9.0.1", + "tar": "^6.1.11", + "text-table": "~0.2.0", + "tiny-relative-date": "^1.3.0", + "treeverse": "^2.0.0", + "validate-npm-package-name": "^4.0.0", + "which": "^2.0.2", + "write-file-atomic": "^4.0.1" }, "bin": { - "mathjs": "bin/cli.js" + "npm": "bin/npm-cli.js", + "npx": "bin/npx-cli.js" }, "engines": { - "node": ">= 14" + "node": "^12.13.0 || ^14.15.0 || >=16" } }, - "node_modules/mdast-util-definitions": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mdast-util-definitions/-/mdast-util-definitions-4.0.0.tgz", - "integrity": "sha512-k8AJ6aNnUkB7IE+5azR9h81O5EQ/cTDXtWdMq9Kk5KcEW/8ritU5CeLg/9HhOC++nALHBlaogJ5jz0Ybk3kPMQ==", + "node_modules/npm-run-path": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", + "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", "dev": true, "dependencies": { - "unist-util-visit": "^2.0.0" + "path-key": "^3.0.0" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "engines": { + "node": ">=8" } }, - "node_modules/mdast-util-to-string": { + "node_modules/npm/node_modules/@colors/colors": { + "version": "1.5.0", + "inBundle": true, + "license": "MIT", + "optional": true, + "engines": { + "node": ">=0.1.90" + } + }, + "node_modules/npm/node_modules/@gar/promisify": { + "version": "1.1.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/@isaacs/string-locale-compare": { "version": "1.1.0", - "resolved": "https://registry.npmjs.org/mdast-util-to-string/-/mdast-util-to-string-1.1.0.tgz", - "integrity": "sha512-jVU0Nr2B9X3MU4tSK7JP1CMkSvOj7X5l/GboG1tKRw52lLF1x2Ju92Ms9tNetCcbfX3hzlM73zYo2NKkWSfF/A==", - "dev": true, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/arborist": { + "version": "5.2.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@isaacs/string-locale-compare": "^1.1.0", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/map-workspaces": "^2.0.3", + "@npmcli/metavuln-calculator": "^3.0.1", + "@npmcli/move-file": "^2.0.0", + "@npmcli/name-from-folder": "^1.0.1", + "@npmcli/node-gyp": "^2.0.0", + "@npmcli/package-json": "^2.0.0", + "@npmcli/run-script": "^3.0.0", + "bin-links": "^3.0.0", + "cacache": "^16.0.6", + "common-ancestor-path": "^1.0.1", + "json-parse-even-better-errors": "^2.3.1", + "json-stringify-nice": "^1.1.4", + "mkdirp": "^1.0.4", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^5.0.0", + "npm-install-checks": "^5.0.0", + "npm-package-arg": "^9.0.0", + "npm-pick-manifest": "^7.0.0", + "npm-registry-fetch": "^13.0.0", + "npmlog": "^6.0.2", + "pacote": "^13.0.5", + "parse-conflict-json": "^2.0.1", + "proc-log": "^2.0.0", + "promise-all-reject-late": "^1.0.0", + "promise-call-limit": "^1.0.1", + "read-package-json-fast": "^2.0.2", + "readdir-scoped-modules": "^1.1.0", + "rimraf": "^3.0.2", + "semver": "^7.3.7", + "ssri": "^9.0.0", + "treeverse": "^2.0.0", + "walk-up-path": "^1.0.0" + }, + "bin": { + "arborist": "bin/index.js" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha512-dq+qelQ9akHpcOl/gUVRTxVIOkAJ1wR3QAvb4RsVjS8oVoFjDGTc679wJYmUmknUF5HwMLOgb5O+a3KxfWapPQ==", - "dev": true, + "node_modules/npm/node_modules/@npmcli/ci-detect": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16" } }, - "node_modules/memfs": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.4.tgz", - "integrity": "sha512-W4gHNUE++1oSJVn8Y68jPXi+mkx3fXR5ITE/Ubz6EQ3xRpCN5k2CQ4AUR8094Z7211F876TyoBACGsIveqgiGA==", - "dev": true, + "node_modules/npm/node_modules/@npmcli/config": { + "version": "4.1.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "fs-monkey": "1.0.3" + "@npmcli/map-workspaces": "^2.0.2", + "ini": "^3.0.0", + "mkdirp-infer-owner": "^2.0.0", + "nopt": "^5.0.0", + "proc-log": "^2.0.0", + "read-package-json-fast": "^2.0.3", + "semver": "^7.3.5", + "walk-up-path": "^1.0.0" }, "engines": { - "node": ">= 4.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/memoizerific": { - "version": "1.11.3", - "resolved": "https://registry.npmjs.org/memoizerific/-/memoizerific-1.11.3.tgz", - "integrity": "sha512-/EuHYwAPdLtXwAwSZkh/Gutery6pD2KYd44oQLhAvQp/50mpyduZh8Q7PYHXTCJ+wuXxt7oij2LXyIJOOYFPog==", - "dev": true, + "node_modules/npm/node_modules/@npmcli/disparity-colors": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "map-or-similar": "^1.5.0" + "ansi-styles": "^4.3.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/meow": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-9.0.0.tgz", - "integrity": "sha512-+obSblOQmRhcyBt62furQqRAQpNyWXo8BuQ5bN7dG8wmwQ+vwHKp/rCFD4CrTP8CsDQD1sjoZ94K417XEUk8IQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/@npmcli/fs": { + "version": "2.1.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "@types/minimist": "^1.2.0", - "camelcase-keys": "^6.2.2", - "decamelize": "^1.2.0", - "decamelize-keys": "^1.1.0", - "hard-rejection": "^2.1.0", - "minimist-options": "4.1.0", - "normalize-package-data": "^3.0.0", - "read-pkg-up": "^7.0.1", - "redent": "^3.0.0", - "trim-newlines": "^3.0.0", - "type-fest": "^0.18.0", - "yargs-parser": "^20.2.3" + "@gar/promisify": "^1.1.3", + "semver": "^7.3.5" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/meow/node_modules/type-fest": { - "version": "0.18.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.18.1.tgz", - "integrity": "sha512-OIAYXk8+ISY+qTOwkHtKqzAuxchoMiD9Udx+FSGQDuiRR+PJKJHc2NJAXlbhkGwTt/4/nKZxELY1w3ReWOL8mw==", - "dev": true, - "optional": true, - "peer": true, - "engines": { - "node": ">=10" + "node_modules/npm/node_modules/@npmcli/git": { + "version": "3.0.1", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/promise-spawn": "^3.0.0", + "lru-cache": "^7.4.4", + "mkdirp": "^1.0.4", + "npm-pick-manifest": "^7.0.0", + "proc-log": "^2.0.0", + "promise-inflight": "^1.0.1", + "promise-retry": "^2.0.1", + "semver": "^7.3.5", + "which": "^2.0.2" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/meow/node_modules/yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true, - "optional": true, - "peer": true, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha512-cCi6g3/Zr1iqQi6ySbseM1Xvooa98N0w31jzUYrXPX2xqObmFGHJ0tQ5u74H3mVh7wLouTseZyYIq39g8cNp1w==", - "dev": true - }, - "node_modules/merge-stream": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/merge-stream/-/merge-stream-2.0.0.tgz", - "integrity": "sha512-abv/qOcuPfk3URPfDzmZU1LKmuw8kT+0nIHvKrKgFrwifol/doWcdA4ZqsWQ8ENrFKkd67Mfpo/LovbIUsbt3w==", - "dev": true - }, - "node_modules/merge2": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/merge2/-/merge2-1.4.1.tgz", - "integrity": "sha512-8q7VEgMJW4J8tcfVPy8g09NcQwZdbwFEqhe/WZkoIzjn/3TGDwtOCYtXGxA3O8tPzpczCCDgv+P2P5y00ZJOOg==", - "dev": true, + "node_modules/npm/node_modules/@npmcli/installed-package-contents": { + "version": "1.0.7", + "inBundle": true, + "license": "ISC", + "dependencies": { + "npm-bundled": "^1.1.1", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "installed-package-contents": "index.js" + }, "engines": { - "node": ">= 8" + "node": ">= 10" } }, - "node_modules/methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha512-iclAHeNqNm68zFtnZ0e+1L2yUIdvzNoauKU4WBA3VvH/vPFieF7qfRlwUZU+DA9P9bPXIS90ulxoUoCH23sV2w==", - "dev": true, + "node_modules/npm/node_modules/@npmcli/map-workspaces": { + "version": "2.0.3", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/name-from-folder": "^1.0.1", + "glob": "^8.0.1", + "minimatch": "^5.0.1", + "read-package-json-fast": "^2.0.3" + }, "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/micromatch": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-4.0.5.tgz", - "integrity": "sha512-DMy+ERcEW2q8Z2Po+WNXuw3c5YaUSFjAO5GsJqfEl7UjvtIuFKO6ZrKvcItdy98dwFI2N1tg3zNIdKaQT+aNdA==", - "dev": true, + "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { + "version": "3.1.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "braces": "^3.0.2", - "picomatch": "^2.3.1" + "cacache": "^16.0.0", + "json-parse-even-better-errors": "^2.3.1", + "pacote": "^13.0.3", + "semver": "^7.3.5" }, "engines": { - "node": ">=8.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true, - "bin": { - "mime": "cli.js" + "node_modules/npm/node_modules/@npmcli/move-file": { + "version": "2.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "mkdirp": "^1.0.4", + "rimraf": "^3.0.2" }, "engines": { - "node": ">=4" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/mime-db": { - "version": "1.52.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.52.0.tgz", - "integrity": "sha512-sPU4uV7dYlvtWJxwwxHD0PuihVNiE7TyAbQ5SWxDCB9mUYvOgroQOwYQQOKPJ8CIbE+1ETVlOoK1UC2nU3gYvg==", + "node_modules/npm/node_modules/@npmcli/name-from-folder": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/@npmcli/node-gyp": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/mime-types": { - "version": "2.1.35", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.35.tgz", - "integrity": "sha512-ZDY+bPm5zTTF+YpCrAU9nK0UgICYPT0QtT1NZWFv4s++TNkcgVaT0g6+4R2uI4MjQjzysHB1zxuWL50hzaeXiw==", + "node_modules/npm/node_modules/@npmcli/package-json": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "mime-db": "1.52.0" + "json-parse-even-better-errors": "^2.3.1" }, "engines": { - "node": ">= 0.6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, + "node_modules/npm/node_modules/@npmcli/promise-spawn": { + "version": "3.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "infer-owner": "^1.0.4" + }, "engines": { - "node": ">=6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/mimic-response": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/mimic-response/-/mimic-response-3.1.0.tgz", - "integrity": "sha512-z0yWI+4FDrrweS8Zmt4Ej5HdJmky15+L2e6Wgn3+iK5fWzb6T3fhNFq2+MeTRb064c6Wr4N/wv0DzQTjNzHNGQ==", - "engines": { - "node": ">=10" + "node_modules/npm/node_modules/@npmcli/run-script": { + "version": "3.0.2", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/node-gyp": "^2.0.0", + "@npmcli/promise-spawn": "^3.0.0", + "node-gyp": "^9.0.0", + "read-package-json-fast": "^2.0.3" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/min-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/min-indent/-/min-indent-1.0.1.tgz", - "integrity": "sha512-I9jwMn07Sy/IwOj3zVkVik2JTvgpaykDZEigL6Rx6N9LbMywwUSMtxET+7lVoDLLd3O3IXwJwvuuns8UB/HeAg==", - "dev": true, + "node_modules/npm/node_modules/@tootallnate/once": { + "version": "2.0.0", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">= 10" } }, - "node_modules/minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true + "node_modules/npm/node_modules/abbrev": { + "version": "1.1.1", + "inBundle": true, + "license": "ISC" }, - "node_modules/minimatch": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.1.2.tgz", - "integrity": "sha512-J7p63hRiAjw1NDEww1W7i37+ByIrOWO5XQQAzZ3VOcL0PNybwpfmV/N05zFAzwQ9USyEcX6t3UO+K5aqBQOIHw==", - "dev": true, + "node_modules/npm/node_modules/agent-base": { + "version": "6.0.2", + "inBundle": true, + "license": "MIT", "dependencies": { - "brace-expansion": "^1.1.7" + "debug": "4" }, "engines": { - "node": "*" + "node": ">= 6.0.0" } }, - "node_modules/minimist": { - "version": "1.2.6", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.6.tgz", - "integrity": "sha512-Jsjnk4bw3YJqYzbdyBiNsPWHPfO++UGG749Cxs6peCu5Xg4nrena6OVxOYxrQTqww0Jmwt+Ref8rggumkTLz9Q==" - }, - "node_modules/minimist-options": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/minimist-options/-/minimist-options-4.1.0.tgz", - "integrity": "sha512-Q4r8ghd80yhO/0j1O3B2BjweX3fiHg9cdOwjJd2J76Q135c+NDxGCqdYKQ1SKBuFfgWbAUzBfvYjPUEeNgqN1A==", - "dev": true, + "node_modules/npm/node_modules/agentkeepalive": { + "version": "4.2.1", + "inBundle": true, + "license": "MIT", "dependencies": { - "arrify": "^1.0.1", - "is-plain-obj": "^1.1.0", - "kind-of": "^6.0.3" + "debug": "^4.1.0", + "depd": "^1.1.2", + "humanize-ms": "^1.2.1" }, "engines": { - "node": ">= 6" - } - }, - "node_modules/minimist-options/node_modules/is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha512-yvkRyxmFKEOQ4pNXCmJG5AEQNlXJS5LaONXo5/cLdTZdWvsZ1ioJEonLGAosKlMWE8lwUy/bJzMjcw8az73+Fg==", - "dev": true, - "engines": { - "node": ">=0.10.0" + "node": ">= 8.0.0" } }, - "node_modules/minipass": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-3.3.4.tgz", - "integrity": "sha512-I9WPbWHCGu8W+6k1ZiGpPu0GkoKBeorkfKNuAFBNS1HNFJvke82sxvI5bzcCNpWPorkOO5QQ+zomzzwRxejXiw==", - "dev": true, + "node_modules/npm/node_modules/aggregate-error": { + "version": "3.1.0", + "inBundle": true, + "license": "MIT", "dependencies": { - "yallist": "^4.0.0" + "clean-stack": "^2.0.0", + "indent-string": "^4.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/minipass-collect": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/minipass-collect/-/minipass-collect-1.0.2.tgz", - "integrity": "sha512-6T6lH0H8OG9kITm/Jm6tdooIbogG9e0tLgpY6mphXSm/A9u8Nq1ryBG+Qspiub9LjWlBPsPS3tWQ/Botq4FdxA==", - "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "minipass": "^3.0.0" - }, + "node_modules/npm/node_modules/ansi-regex": { + "version": "5.0.1", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/minipass-fetch": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/minipass-fetch/-/minipass-fetch-1.4.1.tgz", - "integrity": "sha512-CGH1eblLq26Y15+Azk7ey4xh0J/XfJfrCox5LDJiKqI2Q2iwOLOKrlmIaODiSQS8d18jalF6y2K2ePUm0CmShw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/ansi-styles": { + "version": "4.3.0", + "inBundle": true, + "license": "MIT", "dependencies": { - "minipass": "^3.1.0", - "minipass-sized": "^1.0.3", - "minizlib": "^2.0.0" + "color-convert": "^2.0.1" }, "engines": { "node": ">=8" }, - "optionalDependencies": { - "encoding": "^0.1.12" + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/minipass-flush": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/minipass-flush/-/minipass-flush-1.0.5.tgz", - "integrity": "sha512-JmQSYYpPUqX5Jyn1mXaRwOda1uQ8HP5KAT/oDSLCzt1BYRhQU0/hDtsB1ufZfEEzMZ9aAVmsBw8+FWsIXlClWw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/aproba": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/archy": { + "version": "1.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/are-we-there-yet": { + "version": "3.0.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "minipass": "^3.0.0" + "delegates": "^1.0.0", + "readable-stream": "^3.6.0" }, "engines": { - "node": ">= 8" + "node": "^12.13.0 || ^14.15.0 || >=16" } }, - "node_modules/minipass-pipeline": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/minipass-pipeline/-/minipass-pipeline-1.2.4.tgz", - "integrity": "sha512-xuIq7cIOt09RPRJ19gdi4b+RiNvDFYe5JH+ggNvBqGqpQXcru3PcRmOZuHBKWK1Txf9+cQ+HMVN4d6z46LZP7A==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/asap": { + "version": "2.0.6", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/balanced-match": { + "version": "1.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/bin-links": { + "version": "3.0.1", + "inBundle": true, + "license": "ISC", "dependencies": { - "minipass": "^3.0.0" + "cmd-shim": "^5.0.0", + "mkdirp-infer-owner": "^2.0.0", + "npm-normalize-package-bin": "^1.0.0", + "read-cmd-shim": "^3.0.0", + "rimraf": "^3.0.0", + "write-file-atomic": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/minipass-sized": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/minipass-sized/-/minipass-sized-1.0.3.tgz", - "integrity": "sha512-MbkQQ2CTiBMlA2Dm/5cY+9SWFEN8pzzOXi6rlM5Xxq0Yqbda5ZQy9sU75a673FE9ZK0Zsbr6Y5iP6u9nktfg2g==", - "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "minipass": "^3.0.0" - }, + "node_modules/npm/node_modules/binary-extensions": { + "version": "2.2.0", + "inBundle": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/minizlib": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/minizlib/-/minizlib-2.1.2.tgz", - "integrity": "sha512-bAxsR8BVfj60DWXHE3u30oHzfl4G7khkSuPW+qvpd7jFRHm7dLxOjUk1EHACJ/hxLY8phGJ0YhYHZo7jil7Qdg==", - "dev": true, + "node_modules/npm/node_modules/brace-expansion": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "balanced-match": "^1.0.0" + } + }, + "node_modules/npm/node_modules/builtins": { + "version": "5.0.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "semver": "^7.0.0" + } + }, + "node_modules/npm/node_modules/cacache": { + "version": "16.1.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "@npmcli/fs": "^2.1.0", + "@npmcli/move-file": "^2.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "glob": "^8.0.1", + "infer-owner": "^1.0.4", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "mkdirp": "^1.0.4", + "p-map": "^4.0.0", + "promise-inflight": "^1.0.1", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11", + "unique-filename": "^1.1.1" }, "engines": { - "node": ">= 8" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/mkdirp": { - "version": "0.5.6", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.6.tgz", - "integrity": "sha512-FP+p8RB8OWpF3YZBCrP5gtADmtXApB5AMLn+vdyA+PyxCjrCs00mjyUozssO33cwDeT3wNGdLxJ5M//YqtHAJw==", - "dev": true, + "node_modules/npm/node_modules/chalk": { + "version": "4.1.2", + "inBundle": true, + "license": "MIT", "dependencies": { - "minimist": "^1.2.6" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, - "bin": { - "mkdirp": "bin/cmd.js" + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/mkdirp-classic": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/mkdirp-classic/-/mkdirp-classic-0.5.3.tgz", - "integrity": "sha512-gKLcREMhtuZRwRAfqP3RFW+TK4JqApVBtOIftVgjuABpAtpxhPGaDcfvbhNvD0B8iD1oUr/txX35NjcaY6Ns/A==" + "node_modules/npm/node_modules/chownr": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC", + "engines": { + "node": ">=10" + } }, - "node_modules/moo-color": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/moo-color/-/moo-color-1.0.3.tgz", - "integrity": "sha512-i/+ZKXMDf6aqYtBhuOcej71YSlbjT3wCO/4H1j8rPvxDJEifdwgg5MaFyu6iYAT8GBZJg2z0dkgK4YMzvURALQ==", - "dev": true, + "node_modules/npm/node_modules/cidr-regex": { + "version": "3.1.1", + "inBundle": true, + "license": "BSD-2-Clause", "dependencies": { - "color-name": "^1.1.4" + "ip-regex": "^4.1.0" + }, + "engines": { + "node": ">=10" } }, - "node_modules/mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "dev": true, + "node_modules/npm/node_modules/clean-stack": { + "version": "2.2.0", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">=4" + "node": ">=6" } }, - "node_modules/ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - }, - "node_modules/multicast-dns": { - "version": "7.2.5", - "resolved": "https://registry.npmjs.org/multicast-dns/-/multicast-dns-7.2.5.tgz", - "integrity": "sha512-2eznPJP8z2BFLX50tf0LuODrpINqP1RVIm/CObbTcBRITQgmC/TjcREF1NeTBzIcR5XO/ukWo+YHOjBbFwIupg==", - "dev": true, + "node_modules/npm/node_modules/cli-columns": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", "dependencies": { - "dns-packet": "^5.2.2", - "thunky": "^1.0.2" + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1" }, - "bin": { - "multicast-dns": "cli.js" + "engines": { + "node": ">= 10" } }, - "node_modules/mustache": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/mustache/-/mustache-4.2.0.tgz", - "integrity": "sha512-71ippSywq5Yb7/tVYyGbkBggbU8H3u5Rz56fH60jGFgr8uHwxs+aSKeqmluIVzM0m0kB7xQjKS6qPfd0b2ZoqQ==", - "bin": { - "mustache": "bin/mustache" + "node_modules/npm/node_modules/cli-table3": { + "version": "0.6.2", + "inBundle": true, + "license": "MIT", + "dependencies": { + "string-width": "^4.2.0" + }, + "engines": { + "node": "10.* || >= 12.*" + }, + "optionalDependencies": { + "@colors/colors": "1.5.0" } }, - "node_modules/mute-stream": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-0.0.7.tgz", - "integrity": "sha512-r65nCZhrbXXb6dXOACihYApHw2Q6pV0M3V0PSxd74N0+D8nzAdEAITq2oAjA1jVnKI+tGvEBUpqiMh0+rW6zDQ==", - "dev": true - }, - "node_modules/nan": { - "version": "2.17.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.17.0.tgz", - "integrity": "sha512-2ZTgtl0nJsO0KQCjEpxcIr5D+Yv90plTitZt9JBfQvVJDS5seMl3FOvsh3+9CoYWXf/1l5OaZzzF6nDm4cagaQ==", - "dev": true, - "optional": true, - "peer": true + "node_modules/npm/node_modules/clone": { + "version": "1.0.4", + "inBundle": true, + "license": "MIT", + "engines": { + "node": ">=0.8" + } }, - "node_modules/nanoid": { - "version": "3.3.4", - "resolved": "https://registry.npmjs.org/nanoid/-/nanoid-3.3.4.tgz", - "integrity": "sha512-MqBkQh/OHTS2egovRtLk45wEyNXwF+cokD+1YPf9u5VfJiRdAiRwB2froX5Co9Rh20xs4siNPm8naNotSD6RBw==", - "dev": true, - "bin": { - "nanoid": "bin/nanoid.cjs" + "node_modules/npm/node_modules/cmd-shim": { + "version": "5.0.0", + "inBundle": true, + "license": "ISC", + "dependencies": { + "mkdirp-infer-owner": "^2.0.0" }, "engines": { - "node": "^10 || ^12 || ^13.7 || ^14 || >=15.0.1" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/napi-build-utils": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/napi-build-utils/-/napi-build-utils-1.0.2.tgz", - "integrity": "sha512-ONmRUqK7zj7DWX0D9ADe03wbwOBZxNAfF20PlGfCWQcD3+/MakShIHrMqx9YwPTfxDdF1zLeL+RGZiR9kGMLdg==" - }, - "node_modules/natural-compare": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/natural-compare/-/natural-compare-1.4.0.tgz", - "integrity": "sha512-OWND8ei3VtNC9h7V60qff3SVobHr996CTwgxubgyQYEpg290h9J0buyECNNJexkFm5sOajh5G116RYA1c8ZMSw==", - "dev": true - }, - "node_modules/ndarray": { - "version": "1.0.19", - "resolved": "https://registry.npmjs.org/ndarray/-/ndarray-1.0.19.tgz", - "integrity": "sha512-B4JHA4vdyZU30ELBw3g7/p9bZupyew5a7tX1Y/gGeF2hafrPaQZhgrGQfsvgfYbgdFZjYwuEcnaobeM/WMW+HQ==", + "node_modules/npm/node_modules/color-convert": { + "version": "2.0.1", + "inBundle": true, + "license": "MIT", "dependencies": { - "iota-array": "^1.0.0", - "is-buffer": "^1.0.2" + "color-name": "~1.1.4" + }, + "engines": { + "node": ">=7.0.0" } }, - "node_modules/ndarray-ops": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/ndarray-ops/-/ndarray-ops-1.2.2.tgz", - "integrity": "sha512-BppWAFRjMYF7N/r6Ie51q6D4fs0iiGmeXIACKY66fLpnwIui3Wc3CXiD/30mgLbDjPpSLrsqcp3Z62+IcHZsDw==", - "dependencies": { - "cwise-compiler": "^1.0.0" - } - }, - "node_modules/ndarray-pack": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/ndarray-pack/-/ndarray-pack-1.2.1.tgz", - "integrity": "sha512-51cECUJMT0rUZNQa09EoKsnFeDL4x2dHRT0VR5U2H5ZgEcm95ZDWcMA5JShroXjHOejmAD/fg8+H+OvUnVXz2g==", - "dependencies": { - "cwise-compiler": "^1.1.2", - "ndarray": "^1.0.13" - } - }, - "node_modules/negotiator": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.3.tgz", - "integrity": "sha512-+EUsqGPLsM+j/zdChZjsnX51g4XrHFOIXwfnCVPGlQk/k5giakcKsuxCObBRu6DSm9opw/O6slWbJdghQM4bBg==", - "dev": true, - "engines": { - "node": ">= 0.6" - } - }, - "node_modules/neo-async": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.2.tgz", - "integrity": "sha512-Yd3UES5mWCSqR+qNT93S3UoYUkqAZ9lLg8a7g9rimsWmYGK8cVToA4/sF3RrshdyV3sAGMXVUmpMYOw+dLpOuw==", - "dev": true + "node_modules/npm/node_modules/color-name": { + "version": "1.1.4", + "inBundle": true, + "license": "MIT" }, - "node_modules/netmask": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/netmask/-/netmask-2.0.2.tgz", - "integrity": "sha512-dBpDMdxv9Irdq66304OLfEmQ9tbNRFnFTuZiLo+bD+r332bBmMJ8GBLXklIXXgxd3+v9+KUnZaUR5PJMa75Gsg==", - "dev": true, - "engines": { - "node": ">= 0.4.0" + "node_modules/npm/node_modules/color-support": { + "version": "1.1.3", + "inBundle": true, + "license": "ISC", + "bin": { + "color-support": "bin.js" } }, - "node_modules/new-github-release-url": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/new-github-release-url/-/new-github-release-url-2.0.0.tgz", - "integrity": "sha512-NHDDGYudnvRutt/VhKFlX26IotXe1w0cmkDm6JGquh5bz/bDTw0LufSmH/GxTjEdpHEO+bVKFTwdrcGa/9XlKQ==", - "dev": true, + "node_modules/npm/node_modules/columnify": { + "version": "1.6.0", + "inBundle": true, + "license": "MIT", "dependencies": { - "type-fest": "^2.5.1" + "strip-ansi": "^6.0.1", + "wcwidth": "^1.0.0" }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8.0.0" } }, - "node_modules/new-github-release-url/node_modules/type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true, - "engines": { - "node": ">=12.20" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } + "node_modules/npm/node_modules/common-ancestor-path": { + "version": "1.0.1", + "inBundle": true, + "license": "ISC" }, - "node_modules/no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", - "dev": true, - "dependencies": { - "lower-case": "^1.1.1" - } + "node_modules/npm/node_modules/concat-map": { + "version": "0.0.1", + "inBundle": true, + "license": "MIT" }, - "node_modules/node-abi": { - "version": "3.35.0", - "resolved": "https://registry.npmjs.org/node-abi/-/node-abi-3.35.0.tgz", - "integrity": "sha512-jAlSOFR1Bls963NmFwxeQkNTzqjUF0NThm8Le7eRIRGzFUVJuMOFZDLv5Y30W/Oaw+KEebEJLAigwO9gQHoEmw==", + "node_modules/npm/node_modules/console-control-strings": { + "version": "1.1.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/debug": { + "version": "4.3.4", + "inBundle": true, + "license": "MIT", "dependencies": { - "semver": "^7.3.5" + "ms": "2.1.2" }, "engines": { - "node": ">=10" + "node": ">=6.0" + }, + "peerDependenciesMeta": { + "supports-color": { + "optional": true + } } }, - "node_modules/node-abort-controller": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/node-abort-controller/-/node-abort-controller-3.1.1.tgz", - "integrity": "sha512-AGK2yQKIjRuqnc6VkX2Xj5d+QW8xZ87pa1UK6yA6ouUyuxfHuMP6umE5QK7UmTeOAymo+Zx1Fxiuw9rVx8taHQ==", - "dev": true - }, - "node_modules/node-addon-api": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/node-addon-api/-/node-addon-api-6.0.0.tgz", - "integrity": "sha512-GyHvgPvUXBvAkXa0YvYnhilSB1A+FRYMpIVggKzPZqdaZfevZOuzfWzyvgzOwRLHBeo/MMswmJFsrNF4Nw1pmA==" + "node_modules/npm/node_modules/debug/node_modules/ms": { + "version": "2.1.2", + "inBundle": true, + "license": "MIT" }, - "node_modules/node-bitmap": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/node-bitmap/-/node-bitmap-0.0.1.tgz", - "integrity": "sha512-Jx5lPaaLdIaOsj2mVLWMWulXF6GQVdyLvNSxmiYCvZ8Ma2hfKX0POoR2kgKOqz+oFsRreq0yYZjQ2wjE9VNzCA==", + "node_modules/npm/node_modules/debuglog": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">=v0.6.5" + "node": "*" } }, - "node_modules/node-dir": { - "version": "0.1.17", - "resolved": "https://registry.npmjs.org/node-dir/-/node-dir-0.1.17.tgz", - "integrity": "sha512-tmPX422rYgofd4epzrNoOXiE8XFZYOcCq1vD7MAXCDO+O+zndlA2ztdKKMa+EeuBG5tHETpr4ml4RGgpqDCCAg==", - "dev": true, + "node_modules/npm/node_modules/defaults": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT", "dependencies": { - "minimatch": "^3.0.2" - }, - "engines": { - "node": ">= 0.10.5" + "clone": "^1.0.2" } }, - "node_modules/node-domexception": { + "node_modules/npm/node_modules/delegates": { "version": "1.0.0", - "resolved": "https://registry.npmjs.org/node-domexception/-/node-domexception-1.0.0.tgz", - "integrity": "sha512-/jKZoMpw0F8GRwl4/eLROPA3cfcXtLApP0QzLmUT/HuPCZWyB7IY9ZrMeKw2O/nFIqPQB3PVM9aYm0F312AXDQ==", - "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/jimmywarting" - }, - { - "type": "github", - "url": "https://paypal.me/jimmywarting" - } - ], - "engines": { - "node": ">=10.5.0" - } + "inBundle": true, + "license": "MIT" }, - "node_modules/node-fetch": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-2.6.9.tgz", - "integrity": "sha512-DJm/CJkZkRjKKj4Zi4BsKVZh3ValV5IR5s7LVZnW+6YMh0W1BfNA8XSs6DLMGYlId5F3KnA70uu2qepcR08Qqg==", - "dev": true, - "dependencies": { - "whatwg-url": "^5.0.0" - }, + "node_modules/npm/node_modules/depd": { + "version": "1.1.2", + "inBundle": true, + "license": "MIT", "engines": { - "node": "4.x || >=6.0.0" - }, - "peerDependencies": { - "encoding": "^0.1.0" - }, - "peerDependenciesMeta": { - "encoding": { - "optional": true - } + "node": ">= 0.6" } }, - "node_modules/node-fetch-native": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.0.1.tgz", - "integrity": "sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==", - "dev": true - }, - "node_modules/node-fetch/node_modules/tr46": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/tr46/-/tr46-0.0.3.tgz", - "integrity": "sha512-N3WMsuqV66lT30CrXNbEjx4GEwlow3v6rr4mCcv6prnfwhS01rkgyFdjPNBYd9br7LpXV1+Emh01fHnq2Gdgrw==", - "dev": true - }, - "node_modules/node-fetch/node_modules/webidl-conversions": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/webidl-conversions/-/webidl-conversions-3.0.1.tgz", - "integrity": "sha512-2JAn3z8AR6rjK8Sm8orRC0h/bcl/DqL7tRPdGZ4I1CjdF+EaMLmYxBHyXuKL849eucPFhvBoxMsflfOb8kxaeQ==", - "dev": true - }, - "node_modules/node-fetch/node_modules/whatwg-url": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/whatwg-url/-/whatwg-url-5.0.0.tgz", - "integrity": "sha512-saE57nupxk6v3HY35+jzBwYa0rKSy0XR8JSxZPwgLr7ys0IBzhGviA1/TUGJLmSVqs8pb9AnvICXEuOHLprYTw==", - "dev": true, + "node_modules/npm/node_modules/dezalgo": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC", "dependencies": { - "tr46": "~0.0.3", - "webidl-conversions": "^3.0.0" + "asap": "^2.0.0", + "wrappy": "1" } }, - "node_modules/node-forge": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/node-forge/-/node-forge-1.3.1.tgz", - "integrity": "sha512-dPEtOeMvF9VMcYV/1Wb8CPoVAXtp6MKMlcbAt4ddqmGqUJ6fQZFXkNZNkNlfevtNkGtaSoXf/vNNNSvgrdXwtA==", - "dev": true, + "node_modules/npm/node_modules/diff": { + "version": "5.0.0", + "inBundle": true, + "license": "BSD-3-Clause", "engines": { - "node": ">= 6.13.0" + "node": ">=0.3.1" } }, - "node_modules/node-gyp": { - "version": "8.4.1", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-8.4.1.tgz", - "integrity": "sha512-olTJRgUtAb/hOXG0E93wZDs5YiJlgbXxTwQAFHyNlRsXQnYzUaF2aGgujZbw+hR8aF4ZG/rST57bWMWD16jr9w==", - "dev": true, + "node_modules/npm/node_modules/emoji-regex": { + "version": "8.0.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/encoding": { + "version": "0.1.13", + "inBundle": true, + "license": "MIT", "optional": true, - "peer": true, "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^9.1.0", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, + "iconv-lite": "^0.6.2" + } + }, + "node_modules/npm/node_modules/env-paths": { + "version": "2.2.1", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">= 10.12.0" + "node": ">=6" } }, - "node_modules/node-gyp/node_modules/are-we-there-yet": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-3.0.1.tgz", - "integrity": "sha512-QZW4EDmGwlYur0Yyf/b2uGucHQMa8aFUP7eu9ddR73vvhFyt4V0Vl3QHPcTNJ8l6qYOBdxgXdnBXQrHilfRQBg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/err-code": { + "version": "2.0.3", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fastest-levenshtein": { + "version": "1.0.12", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/fs-minipass": { + "version": "2.1.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "minipass": "^3.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 8" } }, - "node_modules/node-gyp/node_modules/gauge": { + "node_modules/npm/node_modules/fs.realpath": { + "version": "1.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/function-bind": { + "version": "1.1.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/gauge": { "version": "4.0.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-4.0.4.tgz", - "integrity": "sha512-f9m+BEN5jkg6a0fZjleidjN51VE1X+mPFQ2DJ0uv1V39oCLCbsGe6yjbBnp7eK7z/+GAon99a3nHuqbuuthyPg==", - "dev": true, - "optional": true, - "peer": true, + "inBundle": true, + "license": "ISC", "dependencies": { "aproba": "^1.0.3 || ^2.0.0", "color-support": "^1.1.3", @@ -24623,6101 +24986,5376 @@ "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/node-gyp/node_modules/npmlog": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-6.0.2.tgz", - "integrity": "sha512-/vBvz5Jfr9dT/aFWd0FIRf+T/Q2WBsLENygUaFUqstqsycmZAP/t5BvFJTK0viFmSUxiUKTUplWy5vt+rvKIxg==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/glob": { + "version": "8.0.3", + "inBundle": true, + "license": "ISC", "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^5.0.1", + "once": "^1.3.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/node-int64": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/node-int64/-/node-int64-0.4.0.tgz", - "integrity": "sha512-O5lz91xSOeoXP6DulyHfllpq+Eg00MWitZIbtPfoSEvqIHdl5gfcY6hYzDWnj0qD5tz52PI08u9qUvSVeUBeHw==", - "dev": true - }, - "node_modules/node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", - "dev": true + "node_modules/npm/node_modules/graceful-fs": { + "version": "4.2.10", + "inBundle": true, + "license": "ISC" }, - "node_modules/node-sass": { - "version": "7.0.3", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-7.0.3.tgz", - "integrity": "sha512-8MIlsY/4dXUkJDYht9pIWBhMil3uHmE8b/AdJPjmFn1nBx9X9BASzfzmsCy0uCCb8eqI3SYYzVPDswWqSx7gjw==", - "dev": true, - "hasInstallScript": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/has": { + "version": "1.0.3", + "inBundle": true, + "license": "MIT", "dependencies": { - "async-foreach": "^0.1.3", - "chalk": "^4.1.2", - "cross-spawn": "^7.0.3", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "lodash": "^4.17.15", - "meow": "^9.0.0", - "nan": "^2.13.2", - "node-gyp": "^8.4.1", - "npmlog": "^5.0.0", - "request": "^2.88.0", - "sass-graph": "^4.0.1", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - }, - "bin": { - "node-sass": "bin/node-sass" + "function-bind": "^1.1.1" }, "engines": { - "node": ">=12" + "node": ">= 0.4.0" } }, - "node_modules/node-sass/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "optional": true, - "peer": true, - "dependencies": { - "color-convert": "^2.0.1" - }, + "node_modules/npm/node_modules/has-flag": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/node-sass/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/has-unicode": { + "version": "2.0.1", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/hosted-git-info": { + "version": "5.0.0", + "inBundle": true, + "license": "ISC", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "lru-cache": "^7.5.1" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "^12.13.0 || ^14.15.0 || >=16" } }, - "node_modules/node-sass/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/http-cache-semantics": { + "version": "4.1.0", + "inBundle": true, + "license": "BSD-2-Clause" + }, + "node_modules/npm/node_modules/http-proxy-agent": { + "version": "5.0.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "@tootallnate/once": "2", + "agent-base": "6", + "debug": "4" + }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/node-sass/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/https-proxy-agent": { + "version": "5.0.1", + "inBundle": true, + "license": "MIT", "dependencies": { - "has-flag": "^4.0.0" + "agent-base": "6", + "debug": "4" }, "engines": { - "node": ">=8" + "node": ">= 6" } }, - "node_modules/nopt": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-5.0.0.tgz", - "integrity": "sha512-Tbj67rffqceeLpcRXrT7vKAN8CwfPeIBgM7E6iBkmKLV7bEMwpGgYLGv0jACUsECaa/vuxP0IjEont6umdMgtQ==", - "dev": true, + "node_modules/npm/node_modules/humanize-ms": { + "version": "1.2.1", + "inBundle": true, + "license": "MIT", + "dependencies": { + "ms": "^2.0.0" + } + }, + "node_modules/npm/node_modules/iconv-lite": { + "version": "0.6.3", + "inBundle": true, + "license": "MIT", "optional": true, - "peer": true, "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" + "safer-buffer": ">= 2.1.2 < 3.0.0" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/normalize-package-data": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-3.0.3.tgz", - "integrity": "sha512-p2W1sgqij3zMMyRC067Dg16bfzVH+w7hyegmpIvZ4JNjqtGOVAIvLmjBx3yP7YTe9vKJgkoNOPjwQGogDoMXFA==", - "dev": true, - "optional": true, - "peer": true, + "node_modules/npm/node_modules/ignore-walk": { + "version": "5.0.1", + "inBundle": true, + "license": "ISC", "dependencies": { - "hosted-git-info": "^4.0.1", - "is-core-module": "^2.5.0", - "semver": "^7.3.4", - "validate-npm-package-license": "^3.0.1" + "minimatch": "^5.0.1" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true, + "node_modules/npm/node_modules/imurmurhash": { + "version": "0.1.4", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">=0.10.0" + "node": ">=0.8.19" } }, - "node_modules/normalize-url": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-8.0.1.tgz", - "integrity": "sha512-IO9QvjUMWxPQQhs60oOu10CRkWCiZzSUkzbXGGV9pviYl1fXYcvkzQ5jV9z8Y6un8ARoVRl4EtC6v6jNqbaJ/w==", - "dev": true, + "node_modules/npm/node_modules/indent-string": { + "version": "4.0.0", + "inBundle": true, + "license": "MIT", "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=8" } }, - "node_modules/npm": { - "version": "8.12.1", - "resolved": "https://registry.npmjs.org/npm/-/npm-8.12.1.tgz", - "integrity": "sha512-0yOlhfgu1UzP6UijnaFuIS2bES2H9D90EA5OVsf2iOZw7VBrjntXKEwKfCaFA6vMVWkCP8qnPwCxxPdnDVwlNw==", - "bundleDependencies": [ - "@isaacs/string-locale-compare", - "@npmcli/arborist", - "@npmcli/ci-detect", - "@npmcli/config", - "@npmcli/fs", - "@npmcli/map-workspaces", - "@npmcli/package-json", - "@npmcli/run-script", - "abbrev", - "archy", - "cacache", - "chalk", - "chownr", - "cli-columns", - "cli-table3", - "columnify", - "fastest-levenshtein", - "glob", - "graceful-fs", - "hosted-git-info", - "ini", - "init-package-json", - "is-cidr", - "json-parse-even-better-errors", - "libnpmaccess", - "libnpmdiff", - "libnpmexec", - "libnpmfund", - "libnpmhook", - "libnpmorg", - "libnpmpack", - "libnpmpublish", - "libnpmsearch", - "libnpmteam", - "libnpmversion", - "make-fetch-happen", - "minipass", - "minipass-pipeline", - "mkdirp", - "mkdirp-infer-owner", - "ms", - "node-gyp", - "nopt", - "npm-audit-report", - "npm-install-checks", - "npm-package-arg", - "npm-pick-manifest", - "npm-profile", - "npm-registry-fetch", - "npm-user-validate", - "npmlog", - "opener", - "pacote", - "parse-conflict-json", - "proc-log", - "qrcode-terminal", - "read", - "read-package-json", - "read-package-json-fast", - "readdir-scoped-modules", - "rimraf", - "semver", - "ssri", - "tar", - "text-table", - "tiny-relative-date", - "treeverse", - "validate-npm-package-name", - "which", - "write-file-atomic" - ], + "node_modules/npm/node_modules/infer-owner": { + "version": "1.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/inflight": { + "version": "1.0.6", + "inBundle": true, + "license": "ISC", "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/arborist": "^5.0.4", - "@npmcli/ci-detect": "^2.0.0", - "@npmcli/config": "^4.1.0", - "@npmcli/fs": "^2.1.0", - "@npmcli/map-workspaces": "^2.0.3", - "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^3.0.1", - "abbrev": "~1.1.1", - "archy": "~1.0.0", - "cacache": "^16.1.0", - "chalk": "^4.1.2", - "chownr": "^2.0.0", - "cli-columns": "^4.0.0", - "cli-table3": "^0.6.2", - "columnify": "^1.6.0", - "fastest-levenshtein": "^1.0.12", - "glob": "^8.0.1", - "graceful-fs": "^4.2.10", - "hosted-git-info": "^5.0.0", - "ini": "^3.0.0", - "init-package-json": "^3.0.2", - "is-cidr": "^4.0.2", - "json-parse-even-better-errors": "^2.3.1", - "libnpmaccess": "^6.0.2", - "libnpmdiff": "^4.0.2", - "libnpmexec": "^4.0.2", - "libnpmfund": "^3.0.1", - "libnpmhook": "^8.0.2", - "libnpmorg": "^4.0.2", - "libnpmpack": "^4.0.2", - "libnpmpublish": "^6.0.2", - "libnpmsearch": "^5.0.2", - "libnpmteam": "^4.0.2", - "libnpmversion": "^3.0.1", - "make-fetch-happen": "^10.1.6", - "minipass": "^3.1.6", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "mkdirp-infer-owner": "^2.0.0", - "ms": "^2.1.2", - "node-gyp": "^9.0.0", - "nopt": "^5.0.0", - "npm-audit-report": "^3.0.0", - "npm-install-checks": "^5.0.0", - "npm-package-arg": "^9.0.2", - "npm-pick-manifest": "^7.0.1", - "npm-profile": "^6.0.3", - "npm-registry-fetch": "^13.1.1", - "npm-user-validate": "^1.0.1", - "npmlog": "^6.0.2", - "opener": "^1.5.2", - "pacote": "^13.6.0", - "parse-conflict-json": "^2.0.2", - "proc-log": "^2.0.1", - "qrcode-terminal": "^0.12.0", - "read": "~1.0.7", - "read-package-json": "^5.0.1", - "read-package-json-fast": "^2.0.3", - "readdir-scoped-modules": "^1.1.0", - "rimraf": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^9.0.1", - "tar": "^6.1.11", - "text-table": "~0.2.0", - "tiny-relative-date": "^1.3.0", - "treeverse": "^2.0.0", - "validate-npm-package-name": "^4.0.0", - "which": "^2.0.2", - "write-file-atomic": "^4.0.1" - }, - "bin": { - "npm": "bin/npm-cli.js", - "npx": "bin/npx-cli.js" - }, + "once": "^1.3.0", + "wrappy": "1" + } + }, + "node_modules/npm/node_modules/inherits": { + "version": "2.0.4", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/ini": { + "version": "3.0.0", + "inBundle": true, + "license": "ISC", "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm-run-path": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-4.0.1.tgz", - "integrity": "sha512-S48WzZW777zhNIrn7gxOlISNAqi9ZC/uQFnRdbeIHhZhCA6UqpkOT8T1G7BvfdgP4Er8gF4sUbaS0i7QvIfCWw==", - "dev": true, + "node_modules/npm/node_modules/init-package-json": { + "version": "3.0.2", + "inBundle": true, + "license": "ISC", "dependencies": { - "path-key": "^3.0.0" + "npm-package-arg": "^9.0.1", + "promzard": "^0.3.0", + "read": "^1.0.7", + "read-package-json": "^5.0.0", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4", + "validate-npm-package-name": "^4.0.0" }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } + }, + "node_modules/npm/node_modules/ip": { + "version": "1.1.8", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/ip-regex": { + "version": "4.3.0", + "inBundle": true, + "license": "MIT", "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/@colors/colors": { - "version": "1.5.0", + "node_modules/npm/node_modules/is-cidr": { + "version": "4.0.2", + "inBundle": true, + "license": "BSD-2-Clause", + "dependencies": { + "cidr-regex": "^3.1.1" + }, + "engines": { + "node": ">=10" + } + }, + "node_modules/npm/node_modules/is-core-module": { + "version": "2.9.0", + "inBundle": true, + "license": "MIT", + "dependencies": { + "has": "^1.0.3" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" + } + }, + "node_modules/npm/node_modules/is-fullwidth-code-point": { + "version": "3.0.0", "inBundle": true, "license": "MIT", - "optional": true, "engines": { - "node": ">=0.1.90" + "node": ">=8" } }, - "node_modules/npm/node_modules/@gar/promisify": { - "version": "1.1.3", + "node_modules/npm/node_modules/is-lambda": { + "version": "1.0.1", "inBundle": true, "license": "MIT" }, - "node_modules/npm/node_modules/@isaacs/string-locale-compare": { - "version": "1.1.0", + "node_modules/npm/node_modules/isexe": { + "version": "2.0.0", "inBundle": true, "license": "ISC" }, - "node_modules/npm/node_modules/@npmcli/arborist": { - "version": "5.2.1", + "node_modules/npm/node_modules/json-parse-even-better-errors": { + "version": "2.3.1", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/json-stringify-nice": { + "version": "1.1.4", + "inBundle": true, + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } + }, + "node_modules/npm/node_modules/jsonparse": { + "version": "1.3.1", + "engines": [ + "node >= 0.2.0" + ], + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff": { + "version": "5.0.2", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/just-diff-apply": { + "version": "5.2.0", + "inBundle": true, + "license": "MIT" + }, + "node_modules/npm/node_modules/libnpmaccess": { + "version": "6.0.3", "inBundle": true, "license": "ISC", "dependencies": { - "@isaacs/string-locale-compare": "^1.1.0", - "@npmcli/installed-package-contents": "^1.0.7", - "@npmcli/map-workspaces": "^2.0.3", - "@npmcli/metavuln-calculator": "^3.0.1", - "@npmcli/move-file": "^2.0.0", - "@npmcli/name-from-folder": "^1.0.1", - "@npmcli/node-gyp": "^2.0.0", - "@npmcli/package-json": "^2.0.0", - "@npmcli/run-script": "^3.0.0", - "bin-links": "^3.0.0", - "cacache": "^16.0.6", - "common-ancestor-path": "^1.0.1", - "json-parse-even-better-errors": "^2.3.1", - "json-stringify-nice": "^1.1.4", - "mkdirp": "^1.0.4", - "mkdirp-infer-owner": "^2.0.0", - "nopt": "^5.0.0", - "npm-install-checks": "^5.0.0", - "npm-package-arg": "^9.0.0", - "npm-pick-manifest": "^7.0.0", - "npm-registry-fetch": "^13.0.0", - "npmlog": "^6.0.2", - "pacote": "^13.0.5", - "parse-conflict-json": "^2.0.1", - "proc-log": "^2.0.0", - "promise-all-reject-late": "^1.0.0", - "promise-call-limit": "^1.0.1", - "read-package-json-fast": "^2.0.2", - "readdir-scoped-modules": "^1.1.0", - "rimraf": "^3.0.2", - "semver": "^7.3.7", - "ssri": "^9.0.0", - "treeverse": "^2.0.0", - "walk-up-path": "^1.0.0" - }, - "bin": { - "arborist": "bin/index.js" + "aproba": "^2.0.0", + "minipass": "^3.1.1", + "npm-package-arg": "^9.0.1", + "npm-registry-fetch": "^13.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/ci-detect": { - "version": "2.0.0", + "node_modules/npm/node_modules/libnpmdiff": { + "version": "4.0.3", "inBundle": true, "license": "ISC", + "dependencies": { + "@npmcli/disparity-colors": "^2.0.0", + "@npmcli/installed-package-contents": "^1.0.7", + "binary-extensions": "^2.2.0", + "diff": "^5.0.0", + "minimatch": "^5.0.1", + "npm-package-arg": "^9.0.1", + "pacote": "^13.0.5", + "tar": "^6.1.0" + }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/config": { - "version": "4.1.0", + "node_modules/npm/node_modules/libnpmexec": { + "version": "4.0.6", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/map-workspaces": "^2.0.2", - "ini": "^3.0.0", + "@npmcli/arborist": "^5.0.0", + "@npmcli/ci-detect": "^2.0.0", + "@npmcli/run-script": "^3.0.0", + "chalk": "^4.1.0", "mkdirp-infer-owner": "^2.0.0", - "nopt": "^5.0.0", + "npm-package-arg": "^9.0.1", + "npmlog": "^6.0.2", + "pacote": "^13.0.5", "proc-log": "^2.0.0", - "read-package-json-fast": "^2.0.3", - "semver": "^7.3.5", + "read": "^1.0.7", + "read-package-json-fast": "^2.0.2", "walk-up-path": "^1.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/disparity-colors": { - "version": "2.0.0", + "node_modules/npm/node_modules/libnpmfund": { + "version": "3.0.2", "inBundle": true, "license": "ISC", "dependencies": { - "ansi-styles": "^4.3.0" + "@npmcli/arborist": "^5.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/fs": { - "version": "2.1.0", + "node_modules/npm/node_modules/libnpmhook": { + "version": "8.0.3", "inBundle": true, "license": "ISC", "dependencies": { - "@gar/promisify": "^1.1.3", - "semver": "^7.3.5" + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/git": { - "version": "3.0.1", + "node_modules/npm/node_modules/libnpmorg": { + "version": "4.0.3", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/promise-spawn": "^3.0.0", - "lru-cache": "^7.4.4", - "mkdirp": "^1.0.4", - "npm-pick-manifest": "^7.0.0", - "proc-log": "^2.0.0", - "promise-inflight": "^1.0.1", - "promise-retry": "^2.0.1", - "semver": "^7.3.5", - "which": "^2.0.2" + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/installed-package-contents": { - "version": "1.0.7", + "node_modules/npm/node_modules/libnpmpack": { + "version": "4.1.0", "inBundle": true, "license": "ISC", "dependencies": { - "npm-bundled": "^1.1.1", - "npm-normalize-package-bin": "^1.0.1" - }, - "bin": { - "installed-package-contents": "index.js" + "@npmcli/run-script": "^3.0.0", + "npm-package-arg": "^9.0.1", + "pacote": "^13.5.0" }, "engines": { - "node": ">= 10" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/map-workspaces": { - "version": "2.0.3", + "node_modules/npm/node_modules/libnpmpublish": { + "version": "6.0.4", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/name-from-folder": "^1.0.1", - "glob": "^8.0.1", - "minimatch": "^5.0.1", - "read-package-json-fast": "^2.0.3" + "normalize-package-data": "^4.0.0", + "npm-package-arg": "^9.0.1", + "npm-registry-fetch": "^13.0.0", + "semver": "^7.3.7", + "ssri": "^9.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/metavuln-calculator": { - "version": "3.1.0", + "node_modules/npm/node_modules/libnpmsearch": { + "version": "5.0.3", "inBundle": true, "license": "ISC", "dependencies": { - "cacache": "^16.0.0", - "json-parse-even-better-errors": "^2.3.1", - "pacote": "^13.0.3", - "semver": "^7.3.5" + "npm-registry-fetch": "^13.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/move-file": { - "version": "2.0.0", + "node_modules/npm/node_modules/libnpmteam": { + "version": "4.0.3", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "mkdirp": "^1.0.4", - "rimraf": "^3.0.2" + "aproba": "^2.0.0", + "npm-registry-fetch": "^13.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/name-from-folder": { - "version": "1.0.1", + "node_modules/npm/node_modules/libnpmversion": { + "version": "3.0.4", "inBundle": true, - "license": "ISC" + "license": "ISC", + "dependencies": { + "@npmcli/git": "^3.0.0", + "@npmcli/run-script": "^3.0.0", + "json-parse-even-better-errors": "^2.3.1", + "proc-log": "^2.0.0", + "semver": "^7.3.7" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } }, - "node_modules/npm/node_modules/@npmcli/node-gyp": { - "version": "2.0.0", + "node_modules/npm/node_modules/lru-cache": { + "version": "7.9.0", "inBundle": true, "license": "ISC", "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=12" } }, - "node_modules/npm/node_modules/@npmcli/package-json": { - "version": "2.0.0", + "node_modules/npm/node_modules/make-fetch-happen": { + "version": "10.1.6", "inBundle": true, "license": "ISC", "dependencies": { - "json-parse-even-better-errors": "^2.3.1" + "agentkeepalive": "^4.2.1", + "cacache": "^16.1.0", + "http-cache-semantics": "^4.1.0", + "http-proxy-agent": "^5.0.0", + "https-proxy-agent": "^5.0.0", + "is-lambda": "^1.0.1", + "lru-cache": "^7.7.1", + "minipass": "^3.1.6", + "minipass-collect": "^1.0.2", + "minipass-fetch": "^2.0.3", + "minipass-flush": "^1.0.5", + "minipass-pipeline": "^1.2.4", + "negotiator": "^0.6.3", + "promise-retry": "^2.0.1", + "socks-proxy-agent": "^6.1.1", + "ssri": "^9.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/@npmcli/promise-spawn": { - "version": "3.0.0", + "node_modules/npm/node_modules/minimatch": { + "version": "5.1.0", "inBundle": true, "license": "ISC", "dependencies": { - "infer-owner": "^1.0.4" + "brace-expansion": "^2.0.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=10" } }, - "node_modules/npm/node_modules/@npmcli/run-script": { - "version": "3.0.2", + "node_modules/npm/node_modules/minipass": { + "version": "3.1.6", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/node-gyp": "^2.0.0", - "@npmcli/promise-spawn": "^3.0.0", - "node-gyp": "^9.0.0", - "read-package-json-fast": "^2.0.3" + "yallist": "^4.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/@tootallnate/once": { - "version": "2.0.0", + "node_modules/npm/node_modules/minipass-collect": { + "version": "1.0.2", "inBundle": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { - "node": ">= 10" + "node": ">= 8" } }, - "node_modules/npm/node_modules/abbrev": { - "version": "1.1.1", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/agent-base": { - "version": "6.0.2", + "node_modules/npm/node_modules/minipass-fetch": { + "version": "2.1.0", "inBundle": true, "license": "MIT", "dependencies": { - "debug": "4" + "minipass": "^3.1.6", + "minipass-sized": "^1.0.3", + "minizlib": "^2.1.2" }, "engines": { - "node": ">= 6.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + }, + "optionalDependencies": { + "encoding": "^0.1.13" } }, - "node_modules/npm/node_modules/agentkeepalive": { - "version": "4.2.1", + "node_modules/npm/node_modules/minipass-flush": { + "version": "1.0.5", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "debug": "^4.1.0", - "depd": "^1.1.2", - "humanize-ms": "^1.2.1" + "minipass": "^3.0.0" }, "engines": { - "node": ">= 8.0.0" + "node": ">= 8" } }, - "node_modules/npm/node_modules/aggregate-error": { - "version": "3.1.0", + "node_modules/npm/node_modules/minipass-json-stream": { + "version": "1.0.1", "inBundle": true, "license": "MIT", "dependencies": { - "clean-stack": "^2.0.0", - "indent-string": "^4.0.0" + "jsonparse": "^1.3.1", + "minipass": "^3.0.0" + } + }, + "node_modules/npm/node_modules/minipass-pipeline": { + "version": "1.2.4", + "inBundle": true, + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" }, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/ansi-regex": { - "version": "5.0.1", + "node_modules/npm/node_modules/minipass-sized": { + "version": "1.0.3", "inBundle": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "minipass": "^3.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/ansi-styles": { - "version": "4.3.0", + "node_modules/npm/node_modules/minizlib": { + "version": "2.1.2", "inBundle": true, "license": "MIT", "dependencies": { - "color-convert": "^2.0.1" + "minipass": "^3.0.0", + "yallist": "^4.0.0" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "node": ">= 8" } }, - "node_modules/npm/node_modules/aproba": { - "version": "2.0.0", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/archy": { - "version": "1.0.0", + "node_modules/npm/node_modules/mkdirp": { + "version": "1.0.4", "inBundle": true, - "license": "MIT" + "license": "MIT", + "bin": { + "mkdirp": "bin/cmd.js" + }, + "engines": { + "node": ">=10" + } }, - "node_modules/npm/node_modules/are-we-there-yet": { - "version": "3.0.0", + "node_modules/npm/node_modules/mkdirp-infer-owner": { + "version": "2.0.0", "inBundle": true, "license": "ISC", "dependencies": { - "delegates": "^1.0.0", - "readable-stream": "^3.6.0" + "chownr": "^2.0.0", + "infer-owner": "^1.0.4", + "mkdirp": "^1.0.3" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": ">=10" } }, - "node_modules/npm/node_modules/asap": { - "version": "2.0.6", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/balanced-match": { - "version": "1.0.2", + "node_modules/npm/node_modules/ms": { + "version": "2.1.3", "inBundle": true, "license": "MIT" }, - "node_modules/npm/node_modules/bin-links": { - "version": "3.0.1", + "node_modules/npm/node_modules/mute-stream": { + "version": "0.0.8", "inBundle": true, - "license": "ISC", - "dependencies": { - "cmd-shim": "^5.0.0", - "mkdirp-infer-owner": "^2.0.0", - "npm-normalize-package-bin": "^1.0.0", - "read-cmd-shim": "^3.0.0", - "rimraf": "^3.0.0", - "write-file-atomic": "^4.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } + "license": "ISC" }, - "node_modules/npm/node_modules/binary-extensions": { - "version": "2.2.0", + "node_modules/npm/node_modules/negotiator": { + "version": "0.6.3", "inBundle": true, "license": "MIT", "engines": { - "node": ">=8" + "node": ">= 0.6" } }, - "node_modules/npm/node_modules/brace-expansion": { - "version": "2.0.1", + "node_modules/npm/node_modules/node-gyp": { + "version": "9.0.0", "inBundle": true, "license": "MIT", "dependencies": { - "balanced-match": "^1.0.0" + "env-paths": "^2.2.0", + "glob": "^7.1.4", + "graceful-fs": "^4.2.6", + "make-fetch-happen": "^10.0.3", + "nopt": "^5.0.0", + "npmlog": "^6.0.0", + "rimraf": "^3.0.2", + "semver": "^7.3.5", + "tar": "^6.1.2", + "which": "^2.0.2" + }, + "bin": { + "node-gyp": "bin/node-gyp.js" + }, + "engines": { + "node": "^12.22 || ^14.13 || >=16" } }, - "node_modules/npm/node_modules/builtins": { - "version": "5.0.1", + "node_modules/npm/node_modules/node-gyp/node_modules/brace-expansion": { + "version": "1.1.11", "inBundle": true, "license": "MIT", "dependencies": { - "semver": "^7.0.0" + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" } }, - "node_modules/npm/node_modules/cacache": { - "version": "16.1.0", + "node_modules/npm/node_modules/node-gyp/node_modules/glob": { + "version": "7.2.3", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/fs": "^2.1.0", - "@npmcli/move-file": "^2.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "glob": "^8.0.1", - "infer-owner": "^1.0.4", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "mkdirp": "^1.0.4", - "p-map": "^4.0.0", - "promise-inflight": "^1.0.1", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11", - "unique-filename": "^1.1.1" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/chalk": { - "version": "4.1.2", + "node_modules/npm/node_modules/node-gyp/node_modules/minimatch": { + "version": "3.1.2", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": "*" } }, - "node_modules/npm/node_modules/chownr": { - "version": "2.0.0", + "node_modules/npm/node_modules/nopt": { + "version": "5.0.0", "inBundle": true, "license": "ISC", + "dependencies": { + "abbrev": "1" + }, + "bin": { + "nopt": "bin/nopt.js" + }, "engines": { - "node": ">=10" + "node": ">=6" } }, - "node_modules/npm/node_modules/cidr-regex": { - "version": "3.1.1", + "node_modules/npm/node_modules/normalize-package-data": { + "version": "4.0.0", "inBundle": true, "license": "BSD-2-Clause", "dependencies": { - "ip-regex": "^4.1.0" + "hosted-git-info": "^5.0.0", + "is-core-module": "^2.8.1", + "semver": "^7.3.5", + "validate-npm-package-license": "^3.0.4" }, "engines": { - "node": ">=10" + "node": "^12.13.0 || ^14.15.0 || >=16" } }, - "node_modules/npm/node_modules/clean-stack": { - "version": "2.2.0", + "node_modules/npm/node_modules/npm-audit-report": { + "version": "3.0.0", "inBundle": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "chalk": "^4.0.0" + }, "engines": { - "node": ">=6" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/cli-columns": { - "version": "4.0.0", + "node_modules/npm/node_modules/npm-bundled": { + "version": "1.1.2", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1" - }, - "engines": { - "node": ">= 10" + "npm-normalize-package-bin": "^1.0.1" } }, - "node_modules/npm/node_modules/cli-table3": { - "version": "0.6.2", + "node_modules/npm/node_modules/npm-install-checks": { + "version": "5.0.0", "inBundle": true, - "license": "MIT", + "license": "BSD-2-Clause", "dependencies": { - "string-width": "^4.2.0" + "semver": "^7.1.1" }, "engines": { - "node": "10.* || >= 12.*" - }, - "optionalDependencies": { - "@colors/colors": "1.5.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/clone": { - "version": "1.0.4", + "node_modules/npm/node_modules/npm-normalize-package-bin": { + "version": "1.0.1", "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=0.8" - } + "license": "ISC" }, - "node_modules/npm/node_modules/cmd-shim": { - "version": "5.0.0", + "node_modules/npm/node_modules/npm-package-arg": { + "version": "9.0.2", "inBundle": true, "license": "ISC", "dependencies": { - "mkdirp-infer-owner": "^2.0.0" + "hosted-git-info": "^5.0.0", + "semver": "^7.3.5", + "validate-npm-package-name": "^4.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/color-convert": { - "version": "2.0.1", + "node_modules/npm/node_modules/npm-packlist": { + "version": "5.1.0", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "color-name": "~1.1.4" + "glob": "^8.0.1", + "ignore-walk": "^5.0.1", + "npm-bundled": "^1.1.2", + "npm-normalize-package-bin": "^1.0.1" + }, + "bin": { + "npm-packlist": "bin/index.js" }, "engines": { - "node": ">=7.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/color-name": { - "version": "1.1.4", + "node_modules/npm/node_modules/npm-pick-manifest": { + "version": "7.0.1", "inBundle": true, - "license": "MIT" + "license": "ISC", + "dependencies": { + "npm-install-checks": "^5.0.0", + "npm-normalize-package-bin": "^1.0.1", + "npm-package-arg": "^9.0.0", + "semver": "^7.3.5" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } }, - "node_modules/npm/node_modules/color-support": { - "version": "1.1.3", + "node_modules/npm/node_modules/npm-profile": { + "version": "6.0.3", "inBundle": true, "license": "ISC", - "bin": { - "color-support": "bin.js" + "dependencies": { + "npm-registry-fetch": "^13.0.1", + "proc-log": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/columnify": { - "version": "1.6.0", + "node_modules/npm/node_modules/npm-registry-fetch": { + "version": "13.1.1", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "strip-ansi": "^6.0.1", - "wcwidth": "^1.0.0" + "make-fetch-happen": "^10.0.6", + "minipass": "^3.1.6", + "minipass-fetch": "^2.0.3", + "minipass-json-stream": "^1.0.1", + "minizlib": "^2.1.2", + "npm-package-arg": "^9.0.1", + "proc-log": "^2.0.0" }, "engines": { - "node": ">=8.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/common-ancestor-path": { + "node_modules/npm/node_modules/npm-user-validate": { "version": "1.0.1", "inBundle": true, - "license": "ISC" + "license": "BSD-2-Clause" }, - "node_modules/npm/node_modules/concat-map": { - "version": "0.0.1", + "node_modules/npm/node_modules/npmlog": { + "version": "6.0.2", "inBundle": true, - "license": "MIT" + "license": "ISC", + "dependencies": { + "are-we-there-yet": "^3.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^4.0.3", + "set-blocking": "^2.0.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } }, - "node_modules/npm/node_modules/console-control-strings": { - "version": "1.1.0", + "node_modules/npm/node_modules/once": { + "version": "1.4.0", "inBundle": true, - "license": "ISC" + "license": "ISC", + "dependencies": { + "wrappy": "1" + } }, - "node_modules/npm/node_modules/debug": { - "version": "4.3.4", + "node_modules/npm/node_modules/opener": { + "version": "1.5.2", + "inBundle": true, + "license": "(WTFPL OR MIT)", + "bin": { + "opener": "bin/opener-bin.js" + } + }, + "node_modules/npm/node_modules/p-map": { + "version": "4.0.0", "inBundle": true, "license": "MIT", "dependencies": { - "ms": "2.1.2" + "aggregate-error": "^3.0.0" }, "engines": { - "node": ">=6.0" + "node": ">=10" }, - "peerDependenciesMeta": { - "supports-color": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/debug/node_modules/ms": { - "version": "2.1.2", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/debuglog": { - "version": "1.0.1", + "node_modules/npm/node_modules/pacote": { + "version": "13.6.0", "inBundle": true, - "license": "MIT", + "license": "ISC", + "dependencies": { + "@npmcli/git": "^3.0.0", + "@npmcli/installed-package-contents": "^1.0.7", + "@npmcli/promise-spawn": "^3.0.0", + "@npmcli/run-script": "^3.0.1", + "cacache": "^16.0.0", + "chownr": "^2.0.0", + "fs-minipass": "^2.1.0", + "infer-owner": "^1.0.4", + "minipass": "^3.1.6", + "mkdirp": "^1.0.4", + "npm-package-arg": "^9.0.0", + "npm-packlist": "^5.1.0", + "npm-pick-manifest": "^7.0.0", + "npm-registry-fetch": "^13.0.1", + "proc-log": "^2.0.0", + "promise-retry": "^2.0.1", + "read-package-json": "^5.0.0", + "read-package-json-fast": "^2.0.3", + "rimraf": "^3.0.2", + "ssri": "^9.0.0", + "tar": "^6.1.11" + }, + "bin": { + "pacote": "lib/bin.js" + }, "engines": { - "node": "*" + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/defaults": { - "version": "1.0.3", + "node_modules/npm/node_modules/parse-conflict-json": { + "version": "2.0.2", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "clone": "^1.0.2" + "json-parse-even-better-errors": "^2.3.1", + "just-diff": "^5.0.1", + "just-diff-apply": "^5.2.0" + }, + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/delegates": { - "version": "1.0.0", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/depd": { - "version": "1.1.2", + "node_modules/npm/node_modules/path-is-absolute": { + "version": "1.0.1", "inBundle": true, "license": "MIT", "engines": { - "node": ">= 0.6" + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/dezalgo": { - "version": "1.0.4", + "node_modules/npm/node_modules/proc-log": { + "version": "2.0.1", "inBundle": true, "license": "ISC", - "dependencies": { - "asap": "^2.0.0", - "wrappy": "1" + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/diff": { - "version": "5.0.0", + "node_modules/npm/node_modules/promise-all-reject-late": { + "version": "1.0.1", "inBundle": true, - "license": "BSD-3-Clause", - "engines": { - "node": ">=0.3.1" + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/emoji-regex": { - "version": "8.0.0", + "node_modules/npm/node_modules/promise-call-limit": { + "version": "1.0.1", "inBundle": true, - "license": "MIT" + "license": "ISC", + "funding": { + "url": "https://github.com/sponsors/isaacs" + } }, - "node_modules/npm/node_modules/encoding": { - "version": "0.1.13", + "node_modules/npm/node_modules/promise-inflight": { + "version": "1.0.1", "inBundle": true, - "license": "MIT", - "optional": true, - "dependencies": { - "iconv-lite": "^0.6.2" - } + "license": "ISC" }, - "node_modules/npm/node_modules/env-paths": { - "version": "2.2.1", + "node_modules/npm/node_modules/promise-retry": { + "version": "2.0.1", "inBundle": true, "license": "MIT", + "dependencies": { + "err-code": "^2.0.2", + "retry": "^0.12.0" + }, "engines": { - "node": ">=6" + "node": ">=10" } }, - "node_modules/npm/node_modules/err-code": { - "version": "2.0.3", + "node_modules/npm/node_modules/promzard": { + "version": "0.3.0", "inBundle": true, - "license": "MIT" + "license": "ISC", + "dependencies": { + "read": "1" + } }, - "node_modules/npm/node_modules/fastest-levenshtein": { - "version": "1.0.12", + "node_modules/npm/node_modules/qrcode-terminal": { + "version": "0.12.0", "inBundle": true, - "license": "MIT" + "bin": { + "qrcode-terminal": "bin/qrcode-terminal.js" + } }, - "node_modules/npm/node_modules/fs-minipass": { - "version": "2.1.0", + "node_modules/npm/node_modules/read": { + "version": "1.0.7", "inBundle": true, "license": "ISC", "dependencies": { - "minipass": "^3.0.0" + "mute-stream": "~0.0.4" }, "engines": { - "node": ">= 8" + "node": ">=0.8" } }, - "node_modules/npm/node_modules/fs.realpath": { - "version": "1.0.0", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/function-bind": { - "version": "1.1.1", + "node_modules/npm/node_modules/read-cmd-shim": { + "version": "3.0.0", "inBundle": true, - "license": "MIT" + "license": "ISC", + "engines": { + "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + } }, - "node_modules/npm/node_modules/gauge": { - "version": "4.0.4", + "node_modules/npm/node_modules/read-package-json": { + "version": "5.0.1", "inBundle": true, "license": "ISC", "dependencies": { - "aproba": "^1.0.3 || ^2.0.0", - "color-support": "^1.1.3", - "console-control-strings": "^1.1.0", - "has-unicode": "^2.0.1", - "signal-exit": "^3.0.7", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wide-align": "^1.1.5" + "glob": "^8.0.1", + "json-parse-even-better-errors": "^2.3.1", + "normalize-package-data": "^4.0.0", + "npm-normalize-package-bin": "^1.0.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/glob": { - "version": "8.0.3", + "node_modules/npm/node_modules/read-package-json-fast": { + "version": "2.0.3", "inBundle": true, "license": "ISC", "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" + "json-parse-even-better-errors": "^2.3.0", + "npm-normalize-package-bin": "^1.0.1" }, "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node": ">=10" } }, - "node_modules/npm/node_modules/graceful-fs": { - "version": "4.2.10", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/has": { - "version": "1.0.3", + "node_modules/npm/node_modules/readable-stream": { + "version": "3.6.0", "inBundle": true, "license": "MIT", "dependencies": { - "function-bind": "^1.1.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">= 0.4.0" + "node": ">= 6" } }, - "node_modules/npm/node_modules/has-flag": { - "version": "4.0.0", + "node_modules/npm/node_modules/readdir-scoped-modules": { + "version": "1.1.0", "inBundle": true, - "license": "MIT", - "engines": { - "node": ">=8" + "license": "ISC", + "dependencies": { + "debuglog": "^1.0.1", + "dezalgo": "^1.0.0", + "graceful-fs": "^4.1.2", + "once": "^1.3.0" } }, - "node_modules/npm/node_modules/has-unicode": { - "version": "2.0.1", + "node_modules/npm/node_modules/retry": { + "version": "0.12.0", "inBundle": true, - "license": "ISC" + "license": "MIT", + "engines": { + "node": ">= 4" + } }, - "node_modules/npm/node_modules/hosted-git-info": { - "version": "5.0.0", + "node_modules/npm/node_modules/rimraf": { + "version": "3.0.2", "inBundle": true, "license": "ISC", "dependencies": { - "lru-cache": "^7.5.1" + "glob": "^7.1.3" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "bin": { + "rimraf": "bin.js" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/http-cache-semantics": { - "version": "4.1.0", + "node_modules/npm/node_modules/rimraf/node_modules/brace-expansion": { + "version": "1.1.11", "inBundle": true, - "license": "BSD-2-Clause" + "license": "MIT", + "dependencies": { + "balanced-match": "^1.0.0", + "concat-map": "0.0.1" + } }, - "node_modules/npm/node_modules/http-proxy-agent": { - "version": "5.0.0", + "node_modules/npm/node_modules/rimraf/node_modules/glob": { + "version": "7.2.3", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "@tootallnate/once": "2", - "agent-base": "6", - "debug": "4" + "fs.realpath": "^1.0.0", + "inflight": "^1.0.4", + "inherits": "2", + "minimatch": "^3.1.1", + "once": "^1.3.0", + "path-is-absolute": "^1.0.0" }, "engines": { - "node": ">= 6" + "node": "*" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/https-proxy-agent": { - "version": "5.0.1", + "node_modules/npm/node_modules/rimraf/node_modules/minimatch": { + "version": "3.1.2", "inBundle": true, - "license": "MIT", + "license": "ISC", "dependencies": { - "agent-base": "6", - "debug": "4" + "brace-expansion": "^1.1.7" }, "engines": { - "node": ">= 6" + "node": "*" } }, - "node_modules/npm/node_modules/humanize-ms": { - "version": "1.2.1", + "node_modules/npm/node_modules/safe-buffer": { + "version": "5.2.1", + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ], "inBundle": true, - "license": "MIT", - "dependencies": { - "ms": "^2.0.0" - } + "license": "MIT" }, - "node_modules/npm/node_modules/iconv-lite": { - "version": "0.6.3", + "node_modules/npm/node_modules/safer-buffer": { + "version": "2.1.2", "inBundle": true, "license": "MIT", - "optional": true, + "optional": true + }, + "node_modules/npm/node_modules/semver": { + "version": "7.3.7", + "inBundle": true, + "license": "ISC", "dependencies": { - "safer-buffer": ">= 2.1.2 < 3.0.0" + "lru-cache": "^6.0.0" + }, + "bin": { + "semver": "bin/semver.js" }, "engines": { - "node": ">=0.10.0" + "node": ">=10" } }, - "node_modules/npm/node_modules/ignore-walk": { - "version": "5.0.1", + "node_modules/npm/node_modules/semver/node_modules/lru-cache": { + "version": "6.0.0", "inBundle": true, "license": "ISC", "dependencies": { - "minimatch": "^5.0.1" + "yallist": "^4.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=10" } }, - "node_modules/npm/node_modules/imurmurhash": { - "version": "0.1.4", + "node_modules/npm/node_modules/set-blocking": { + "version": "2.0.0", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/signal-exit": { + "version": "3.0.7", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/smart-buffer": { + "version": "4.2.0", "inBundle": true, "license": "MIT", "engines": { - "node": ">=0.8.19" + "node": ">= 6.0.0", + "npm": ">= 3.0.0" } }, - "node_modules/npm/node_modules/indent-string": { - "version": "4.0.0", + "node_modules/npm/node_modules/socks": { + "version": "2.6.2", "inBundle": true, "license": "MIT", + "dependencies": { + "ip": "^1.1.5", + "smart-buffer": "^4.2.0" + }, "engines": { - "node": ">=8" + "node": ">= 10.13.0", + "npm": ">= 3.0.0" } }, - "node_modules/npm/node_modules/infer-owner": { - "version": "1.0.4", + "node_modules/npm/node_modules/socks-proxy-agent": { + "version": "6.2.0", "inBundle": true, - "license": "ISC" + "license": "MIT", + "dependencies": { + "agent-base": "^6.0.2", + "debug": "^4.3.3", + "socks": "^2.6.2" + }, + "engines": { + "node": ">= 10" + } }, - "node_modules/npm/node_modules/inflight": { - "version": "1.0.6", + "node_modules/npm/node_modules/spdx-correct": { + "version": "3.1.1", "inBundle": true, - "license": "ISC", + "license": "Apache-2.0", "dependencies": { - "once": "^1.3.0", - "wrappy": "1" + "spdx-expression-parse": "^3.0.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/npm/node_modules/inherits": { - "version": "2.0.4", + "node_modules/npm/node_modules/spdx-exceptions": { + "version": "2.3.0", "inBundle": true, - "license": "ISC" + "license": "CC-BY-3.0" }, - "node_modules/npm/node_modules/ini": { - "version": "3.0.0", + "node_modules/npm/node_modules/spdx-expression-parse": { + "version": "3.0.1", "inBundle": true, - "license": "ISC", - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "license": "MIT", + "dependencies": { + "spdx-exceptions": "^2.1.0", + "spdx-license-ids": "^3.0.0" } }, - "node_modules/npm/node_modules/init-package-json": { - "version": "3.0.2", + "node_modules/npm/node_modules/spdx-license-ids": { + "version": "3.0.11", + "inBundle": true, + "license": "CC0-1.0" + }, + "node_modules/npm/node_modules/ssri": { + "version": "9.0.1", "inBundle": true, "license": "ISC", "dependencies": { - "npm-package-arg": "^9.0.1", - "promzard": "^0.3.0", - "read": "^1.0.7", - "read-package-json": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4", - "validate-npm-package-name": "^4.0.0" + "minipass": "^3.1.1" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/ip": { - "version": "1.1.8", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/ip-regex": { - "version": "4.3.0", + "node_modules/npm/node_modules/string_decoder": { + "version": "1.3.0", "inBundle": true, "license": "MIT", - "engines": { - "node": ">=8" + "dependencies": { + "safe-buffer": "~5.2.0" } }, - "node_modules/npm/node_modules/is-cidr": { - "version": "4.0.2", + "node_modules/npm/node_modules/string-width": { + "version": "4.2.3", "inBundle": true, - "license": "BSD-2-Clause", + "license": "MIT", "dependencies": { - "cidr-regex": "^3.1.1" + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" }, "engines": { - "node": ">=10" + "node": ">=8" } }, - "node_modules/npm/node_modules/is-core-module": { - "version": "2.9.0", + "node_modules/npm/node_modules/strip-ansi": { + "version": "6.0.1", "inBundle": true, "license": "MIT", "dependencies": { - "has": "^1.0.3" + "ansi-regex": "^5.0.1" }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "engines": { + "node": ">=8" } }, - "node_modules/npm/node_modules/is-fullwidth-code-point": { - "version": "3.0.0", + "node_modules/npm/node_modules/supports-color": { + "version": "7.2.0", "inBundle": true, "license": "MIT", + "dependencies": { + "has-flag": "^4.0.0" + }, "engines": { "node": ">=8" } }, - "node_modules/npm/node_modules/is-lambda": { - "version": "1.0.1", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/isexe": { - "version": "2.0.0", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/json-parse-even-better-errors": { - "version": "2.3.1", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/json-stringify-nice": { - "version": "1.1.4", + "node_modules/npm/node_modules/tar": { + "version": "6.1.11", "inBundle": true, "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" + "dependencies": { + "chownr": "^2.0.0", + "fs-minipass": "^2.0.0", + "minipass": "^3.0.0", + "minizlib": "^2.1.1", + "mkdirp": "^1.0.3", + "yallist": "^4.0.0" + }, + "engines": { + "node": ">= 10" } }, - "node_modules/npm/node_modules/jsonparse": { - "version": "1.3.1", - "engines": [ - "node >= 0.2.0" - ], - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/just-diff": { - "version": "5.0.2", + "node_modules/npm/node_modules/text-table": { + "version": "0.2.0", "inBundle": true, "license": "MIT" }, - "node_modules/npm/node_modules/just-diff-apply": { - "version": "5.2.0", + "node_modules/npm/node_modules/tiny-relative-date": { + "version": "1.3.0", "inBundle": true, "license": "MIT" }, - "node_modules/npm/node_modules/libnpmaccess": { - "version": "6.0.3", + "node_modules/npm/node_modules/treeverse": { + "version": "2.0.0", "inBundle": true, "license": "ISC", - "dependencies": { - "aproba": "^2.0.0", - "minipass": "^3.1.1", - "npm-package-arg": "^9.0.1", - "npm-registry-fetch": "^13.0.0" - }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/libnpmdiff": { - "version": "4.0.3", + "node_modules/npm/node_modules/unique-filename": { + "version": "1.1.1", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/disparity-colors": "^2.0.0", - "@npmcli/installed-package-contents": "^1.0.7", - "binary-extensions": "^2.2.0", - "diff": "^5.0.0", - "minimatch": "^5.0.1", - "npm-package-arg": "^9.0.1", - "pacote": "^13.0.5", - "tar": "^6.1.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "unique-slug": "^2.0.0" } }, - "node_modules/npm/node_modules/libnpmexec": { - "version": "4.0.6", + "node_modules/npm/node_modules/unique-slug": { + "version": "2.0.2", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/arborist": "^5.0.0", - "@npmcli/ci-detect": "^2.0.0", - "@npmcli/run-script": "^3.0.0", - "chalk": "^4.1.0", - "mkdirp-infer-owner": "^2.0.0", - "npm-package-arg": "^9.0.1", - "npmlog": "^6.0.2", - "pacote": "^13.0.5", - "proc-log": "^2.0.0", - "read": "^1.0.7", - "read-package-json-fast": "^2.0.2", - "walk-up-path": "^1.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "imurmurhash": "^0.1.4" } }, - "node_modules/npm/node_modules/libnpmfund": { - "version": "3.0.2", + "node_modules/npm/node_modules/util-deprecate": { + "version": "1.0.2", "inBundle": true, - "license": "ISC", + "license": "MIT" + }, + "node_modules/npm/node_modules/validate-npm-package-license": { + "version": "3.0.4", + "inBundle": true, + "license": "Apache-2.0", "dependencies": { - "@npmcli/arborist": "^5.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "spdx-correct": "^3.0.0", + "spdx-expression-parse": "^3.0.0" } }, - "node_modules/npm/node_modules/libnpmhook": { - "version": "8.0.3", + "node_modules/npm/node_modules/validate-npm-package-name": { + "version": "4.0.0", "inBundle": true, "license": "ISC", "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" + "builtins": "^5.0.0" }, "engines": { "node": "^12.13.0 || ^14.15.0 || >=16.0.0" } }, - "node_modules/npm/node_modules/libnpmorg": { - "version": "4.0.3", + "node_modules/npm/node_modules/walk-up-path": { + "version": "1.0.0", "inBundle": true, - "license": "ISC", + "license": "ISC" + }, + "node_modules/npm/node_modules/wcwidth": { + "version": "1.0.1", + "inBundle": true, + "license": "MIT", "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "defaults": "^1.0.3" } }, - "node_modules/npm/node_modules/libnpmpack": { - "version": "4.1.0", + "node_modules/npm/node_modules/which": { + "version": "2.0.2", "inBundle": true, "license": "ISC", "dependencies": { - "@npmcli/run-script": "^3.0.0", - "npm-package-arg": "^9.0.1", - "pacote": "^13.5.0" + "isexe": "^2.0.0" + }, + "bin": { + "node-which": "bin/node-which" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 8" } }, - "node_modules/npm/node_modules/libnpmpublish": { - "version": "6.0.4", + "node_modules/npm/node_modules/wide-align": { + "version": "1.1.5", "inBundle": true, "license": "ISC", "dependencies": { - "normalize-package-data": "^4.0.0", - "npm-package-arg": "^9.0.1", - "npm-registry-fetch": "^13.0.0", - "semver": "^7.3.7", - "ssri": "^9.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/npm/node_modules/libnpmsearch": { - "version": "5.0.3", + "node_modules/npm/node_modules/wrappy": { + "version": "1.0.2", + "inBundle": true, + "license": "ISC" + }, + "node_modules/npm/node_modules/write-file-atomic": { + "version": "4.0.1", "inBundle": true, "license": "ISC", "dependencies": { - "npm-registry-fetch": "^13.0.0" + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^12.13.0 || ^14.15.0 || >=16" } }, - "node_modules/npm/node_modules/libnpmteam": { - "version": "4.0.3", + "node_modules/npm/node_modules/yallist": { + "version": "4.0.0", "inBundle": true, - "license": "ISC", + "license": "ISC" + }, + "node_modules/npmlog": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", + "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { - "aproba": "^2.0.0", - "npm-registry-fetch": "^13.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "are-we-there-yet": "^2.0.0", + "console-control-strings": "^1.1.0", + "gauge": "^3.0.0", + "set-blocking": "^2.0.0" } }, - "node_modules/npm/node_modules/libnpmversion": { - "version": "3.0.4", - "inBundle": true, - "license": "ISC", + "node_modules/nth-check": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", + "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "dev": true, "dependencies": { - "@npmcli/git": "^3.0.0", - "@npmcli/run-script": "^3.0.0", - "json-parse-even-better-errors": "^2.3.1", - "proc-log": "^2.0.0", - "semver": "^7.3.7" + "boolbase": "^1.0.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "funding": { + "url": "https://github.com/fb55/nth-check?sponsor=1" } }, - "node_modules/npm/node_modules/lru-cache": { - "version": "7.9.0", - "inBundle": true, - "license": "ISC", - "engines": { - "node": ">=12" - } + "node_modules/nwsapi": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", + "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", + "dev": true }, - "node_modules/npm/node_modules/make-fetch-happen": { - "version": "10.1.6", - "inBundle": true, - "license": "ISC", + "node_modules/nypm": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.8.tgz", + "integrity": "sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==", + "dev": true, "dependencies": { - "agentkeepalive": "^4.2.1", - "cacache": "^16.1.0", - "http-cache-semantics": "^4.1.0", - "http-proxy-agent": "^5.0.0", - "https-proxy-agent": "^5.0.0", - "is-lambda": "^1.0.1", - "lru-cache": "^7.7.1", - "minipass": "^3.1.6", - "minipass-collect": "^1.0.2", - "minipass-fetch": "^2.0.3", - "minipass-flush": "^1.0.5", - "minipass-pipeline": "^1.2.4", - "negotiator": "^0.6.3", - "promise-retry": "^2.0.1", - "socks-proxy-agent": "^6.1.1", - "ssri": "^9.0.0" + "citty": "^0.1.6", + "consola": "^3.2.3", + "execa": "^8.0.1", + "pathe": "^1.1.2", + "ufo": "^1.4.0" }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" - } - }, - "node_modules/npm/node_modules/minimatch": { - "version": "5.1.0", - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^2.0.1" + "bin": { + "nypm": "dist/cli.mjs" }, "engines": { - "node": ">=10" + "node": "^14.16.0 || >=16.10.0" } }, - "node_modules/npm/node_modules/minipass": { - "version": "3.1.6", - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, + "node_modules/nypm/node_modules/consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true, "engines": { - "node": ">=8" + "node": "^14.18.0 || >=16.10.0" } }, - "node_modules/npm/node_modules/minipass-collect": { - "version": "1.0.2", - "inBundle": true, - "license": "ISC", + "node_modules/nypm/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, "dependencies": { - "minipass": "^3.0.0" + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" }, "engines": { - "node": ">= 8" + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/npm/node_modules/minipass-fetch": { - "version": "2.1.0", - "inBundle": true, - "license": "MIT", - "dependencies": { - "minipass": "^3.1.6", - "minipass-sized": "^1.0.3", - "minizlib": "^2.1.2" - }, + "node_modules/nypm/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=16" }, - "optionalDependencies": { - "encoding": "^0.1.13" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/minipass-flush": { - "version": "1.0.5", - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, + "node_modules/nypm/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, "engines": { - "node": ">= 8" + "node": ">=16.17.0" } }, - "node_modules/npm/node_modules/minipass-json-stream": { - "version": "1.0.1", - "inBundle": true, - "license": "MIT", - "dependencies": { - "jsonparse": "^1.3.1", - "minipass": "^3.0.0" + "node_modules/nypm/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true, + "engines": { + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/minipass-pipeline": { - "version": "1.2.4", - "inBundle": true, - "license": "ISC", - "dependencies": { - "minipass": "^3.0.0" - }, + "node_modules/nypm/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/minipass-sized": { - "version": "1.0.3", - "inBundle": true, - "license": "ISC", + "node_modules/nypm/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, "dependencies": { - "minipass": "^3.0.0" + "path-key": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/minizlib": { - "version": "2.1.2", - "inBundle": true, - "license": "MIT", + "node_modules/nypm/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, "dependencies": { - "minipass": "^3.0.0", - "yallist": "^4.0.0" + "mimic-fn": "^4.0.0" }, "engines": { - "node": ">= 8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/mkdirp": { - "version": "1.0.4", - "inBundle": true, - "license": "MIT", - "bin": { - "mkdirp": "bin/cmd.js" - }, + "node_modules/nypm/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/mkdirp-infer-owner": { - "version": "2.0.0", - "inBundle": true, - "license": "ISC", - "dependencies": { - "chownr": "^2.0.0", - "infer-owner": "^1.0.4", - "mkdirp": "^1.0.3" - }, + "node_modules/nypm/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true, "engines": { - "node": ">=10" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/npm/node_modules/ms": { - "version": "2.1.3", - "inBundle": true, - "license": "MIT" + "node_modules/nypm/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true, + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" + } }, - "node_modules/npm/node_modules/mute-stream": { - "version": "0.0.8", - "inBundle": true, - "license": "ISC" + "node_modules/oauth-sign": { + "version": "0.9.0", + "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", + "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "engines": { + "node": "*" + } }, - "node_modules/npm/node_modules/negotiator": { - "version": "0.6.3", - "inBundle": true, - "license": "MIT", + "node_modules/obj-extend": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/obj-extend/-/obj-extend-0.1.0.tgz", + "integrity": "sha512-or9c7Ue2wWCun41DuLP3+LKEUjSZcDSxfCM4HZQSX9tcjLL/yuzTW7MmtVNs+MmN16uDRpDrFmFK/WVSm4vklg==", "engines": { - "node": ">= 0.6" + "node": "*" } }, - "node_modules/npm/node_modules/node-gyp": { - "version": "9.0.0", - "inBundle": true, - "license": "MIT", - "dependencies": { - "env-paths": "^2.2.0", - "glob": "^7.1.4", - "graceful-fs": "^4.2.6", - "make-fetch-happen": "^10.0.3", - "nopt": "^5.0.0", - "npmlog": "^6.0.0", - "rimraf": "^3.0.2", - "semver": "^7.3.5", - "tar": "^6.1.2", - "which": "^2.0.2" - }, - "bin": { - "node-gyp": "bin/node-gyp.js" - }, + "node_modules/object-assign": { + "version": "4.1.1", + "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", + "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", "engines": { - "node": "^12.22 || ^14.13 || >=16" + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/brace-expansion": { - "version": "1.1.11", - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "node_modules/object-inspect": { + "version": "1.13.1", + "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", + "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "dev": true, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/glob": { - "version": "7.2.3", - "inBundle": true, - "license": "ISC", + "node_modules/object-is": { + "version": "1.1.5", + "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", + "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.3" }, "engines": { - "node": "*" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/node-gyp/node_modules/minimatch": { - "version": "3.1.2", - "inBundle": true, - "license": "ISC", - "dependencies": { - "brace-expansion": "^1.1.7" - }, + "node_modules/object-keys": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", + "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "dev": true, "engines": { - "node": "*" + "node": ">= 0.4" } }, - "node_modules/npm/node_modules/nopt": { - "version": "5.0.0", - "inBundle": true, - "license": "ISC", + "node_modules/object.assign": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", + "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "dev": true, "dependencies": { - "abbrev": "1" - }, - "bin": { - "nopt": "bin/nopt.js" + "call-bind": "^1.0.5", + "define-properties": "^1.2.1", + "has-symbols": "^1.0.3", + "object-keys": "^1.1.1" }, "engines": { - "node": ">=6" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/normalize-package-data": { - "version": "4.0.0", - "inBundle": true, - "license": "BSD-2-Clause", + "node_modules/object.entries": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", + "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "dev": true, "dependencies": { - "hosted-git-info": "^5.0.0", - "is-core-module": "^2.8.1", - "semver": "^7.3.5", - "validate-npm-package-license": "^3.0.4" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": ">= 0.4" } }, - "node_modules/npm/node_modules/npm-audit-report": { - "version": "3.0.0", - "inBundle": true, - "license": "ISC", + "node_modules/object.fromentries": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", + "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "dev": true, + "peer": true, "dependencies": { - "chalk": "^4.0.0" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/npm-bundled": { + "node_modules/object.hasown": { "version": "1.1.2", - "inBundle": true, - "license": "ISC", + "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", + "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", + "dev": true, + "peer": true, "dependencies": { - "npm-normalize-package-bin": "^1.0.1" + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/npm-install-checks": { - "version": "5.0.0", - "inBundle": true, - "license": "BSD-2-Clause", + "node_modules/object.values": { + "version": "1.1.6", + "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", + "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", + "dev": true, "dependencies": { - "semver": "^7.1.1" + "call-bind": "^1.0.2", + "define-properties": "^1.1.4", + "es-abstract": "^1.20.4" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/npm/node_modules/npm-normalize-package-bin": { - "version": "1.0.1", - "inBundle": true, - "license": "ISC" + "node_modules/objectorarray": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", + "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", + "dev": true }, - "node_modules/npm/node_modules/npm-package-arg": { - "version": "9.0.2", - "inBundle": true, - "license": "ISC", + "node_modules/obuf": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", + "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", + "dev": true + }, + "node_modules/ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", + "dev": true + }, + "node_modules/omggif": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", + "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + }, + "node_modules/on-finished": { + "version": "2.4.1", + "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", + "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", + "dev": true, "dependencies": { - "hosted-git-info": "^5.0.0", - "semver": "^7.3.5", - "validate-npm-package-name": "^4.0.0" + "ee-first": "1.1.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.8" } }, - "node_modules/npm/node_modules/npm-packlist": { - "version": "5.1.0", - "inBundle": true, - "license": "ISC", - "dependencies": { - "glob": "^8.0.1", - "ignore-walk": "^5.0.1", - "npm-bundled": "^1.1.2", - "npm-normalize-package-bin": "^1.0.1" - }, - "bin": { - "npm-packlist": "bin/index.js" - }, + "node_modules/on-headers": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", + "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", + "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.8" } }, - "node_modules/npm/node_modules/npm-pick-manifest": { - "version": "7.0.1", - "inBundle": true, - "license": "ISC", - "dependencies": { - "npm-install-checks": "^5.0.0", - "npm-normalize-package-bin": "^1.0.1", - "npm-package-arg": "^9.0.0", - "semver": "^7.3.5" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node_modules/once": { + "version": "1.4.0", + "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", + "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", + "dependencies": { + "wrappy": "1" } }, - "node_modules/npm/node_modules/npm-profile": { - "version": "6.0.3", - "inBundle": true, - "license": "ISC", + "node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", + "dev": true, "dependencies": { - "npm-registry-fetch": "^13.0.1", - "proc-log": "^2.0.0" + "mimic-fn": "^2.1.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=6" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/npm-registry-fetch": { - "version": "13.1.1", - "inBundle": true, - "license": "ISC", + "node_modules/open": { + "version": "8.4.0", + "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", + "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", + "dev": true, "dependencies": { - "make-fetch-happen": "^10.0.6", - "minipass": "^3.1.6", - "minipass-fetch": "^2.0.3", - "minipass-json-stream": "^1.0.1", - "minizlib": "^2.1.2", - "npm-package-arg": "^9.0.1", - "proc-log": "^2.0.0" + "define-lazy-prop": "^2.0.0", + "is-docker": "^2.1.1", + "is-wsl": "^2.2.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/npm-user-validate": { - "version": "1.0.1", - "inBundle": true, - "license": "BSD-2-Clause" - }, - "node_modules/npm/node_modules/npmlog": { - "version": "6.0.2", - "inBundle": true, - "license": "ISC", + "node_modules/optionator": { + "version": "0.9.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", + "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", + "dev": true, "dependencies": { - "are-we-there-yet": "^3.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^4.0.3", - "set-blocking": "^2.0.0" + "@aashutoshrathi/word-wrap": "^1.2.3", + "deep-is": "^0.1.3", + "fast-levenshtein": "^2.0.6", + "levn": "^0.4.1", + "prelude-ls": "^1.2.1", + "type-check": "^0.4.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.8.0" } }, - "node_modules/npm/node_modules/once": { - "version": "1.4.0", - "inBundle": true, - "license": "ISC", + "node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", + "dev": true, "dependencies": { - "wrappy": "1" + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/opener": { - "version": "1.5.2", - "inBundle": true, - "license": "(WTFPL OR MIT)", - "bin": { - "opener": "bin/opener-bin.js" + "node_modules/ora/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/npm/node_modules/p-map": { - "version": "4.0.0", - "inBundle": true, - "license": "MIT", + "node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, "dependencies": { - "aggregate-error": "^3.0.0" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/npm/node_modules/pacote": { - "version": "13.6.0", - "inBundle": true, - "license": "ISC", + "node_modules/ora/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/ora/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, "dependencies": { - "@npmcli/git": "^3.0.0", - "@npmcli/installed-package-contents": "^1.0.7", - "@npmcli/promise-spawn": "^3.0.0", - "@npmcli/run-script": "^3.0.1", - "cacache": "^16.0.0", - "chownr": "^2.0.0", - "fs-minipass": "^2.1.0", - "infer-owner": "^1.0.4", - "minipass": "^3.1.6", - "mkdirp": "^1.0.4", - "npm-package-arg": "^9.0.0", - "npm-packlist": "^5.1.0", - "npm-pick-manifest": "^7.0.0", - "npm-registry-fetch": "^13.0.1", - "proc-log": "^2.0.0", - "promise-retry": "^2.0.1", - "read-package-json": "^5.0.0", - "read-package-json-fast": "^2.0.3", - "rimraf": "^3.0.2", - "ssri": "^9.0.0", - "tar": "^6.1.11" - }, - "bin": { - "pacote": "lib/bin.js" + "has-flag": "^4.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=8" } }, - "node_modules/npm/node_modules/parse-conflict-json": { - "version": "2.0.2", - "inBundle": true, - "license": "ISC", + "node_modules/os-name": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/os-name/-/os-name-5.1.0.tgz", + "integrity": "sha512-YEIoAnM6zFmzw3PQ201gCVCIWbXNyKObGlVvpAVvraAeOHnlYVKFssbA/riRX5R40WA6kKrZ7Dr7dWzO3nKSeQ==", + "dev": true, "dependencies": { - "json-parse-even-better-errors": "^2.3.1", - "just-diff": "^5.0.1", - "just-diff-apply": "^5.2.0" + "macos-release": "^3.1.0", + "windows-release": "^5.0.1" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/path-is-absolute": { - "version": "1.0.1", - "inBundle": true, - "license": "MIT", + "node_modules/os-tmpdir": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", + "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "dev": true, "engines": { "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/proc-log": { - "version": "2.0.1", - "inBundle": true, - "license": "ISC", + "node_modules/p-cancelable": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", + "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=12.20" } }, - "node_modules/npm/node_modules/promise-all-reject-late": { - "version": "1.0.1", - "inBundle": true, - "license": "ISC", + "node_modules/p-limit": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", + "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "dev": true, + "dependencies": { + "p-try": "^2.0.0" + }, + "engines": { + "node": ">=6" + }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/promise-call-limit": { - "version": "1.0.1", - "inBundle": true, - "license": "ISC", - "funding": { - "url": "https://github.com/sponsors/isaacs" + "node_modules/p-locate": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", + "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "dev": true, + "dependencies": { + "p-limit": "^2.2.0" + }, + "engines": { + "node": ">=8" } }, - "node_modules/npm/node_modules/promise-inflight": { - "version": "1.0.1", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/promise-retry": { - "version": "2.0.1", - "inBundle": true, - "license": "MIT", + "node_modules/p-map": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", + "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "dev": true, "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" + "aggregate-error": "^3.0.0" }, "engines": { "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/promzard": { - "version": "0.3.0", - "inBundle": true, - "license": "ISC", + "node_modules/p-retry": { + "version": "4.6.2", + "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", + "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "dev": true, "dependencies": { - "read": "1" + "@types/retry": "0.12.0", + "retry": "^0.13.1" + }, + "engines": { + "node": ">=8" } }, - "node_modules/npm/node_modules/qrcode-terminal": { - "version": "0.12.0", - "inBundle": true, - "bin": { - "qrcode-terminal": "bin/qrcode-terminal.js" + "node_modules/p-try": { + "version": "2.2.0", + "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", + "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", + "dev": true, + "engines": { + "node": ">=6" } }, - "node_modules/npm/node_modules/read": { - "version": "1.0.7", - "inBundle": true, - "license": "ISC", + "node_modules/pac-proxy-agent": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", + "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", + "dev": true, "dependencies": { - "mute-stream": "~0.0.4" + "@tootallnate/quickjs-emscripten": "^0.23.0", + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "get-uri": "^6.0.1", + "http-proxy-agent": "^7.0.0", + "https-proxy-agent": "^7.0.2", + "pac-resolver": "^7.0.0", + "socks-proxy-agent": "^8.0.2" }, "engines": { - "node": ">=0.8" + "node": ">= 14" } }, - "node_modules/npm/node_modules/read-cmd-shim": { - "version": "3.0.0", - "inBundle": true, - "license": "ISC", + "node_modules/pac-proxy-agent/node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "dev": true, + "dependencies": { + "debug": "^4.3.4" + }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 14" } }, - "node_modules/npm/node_modules/read-package-json": { - "version": "5.0.1", - "inBundle": true, - "license": "ISC", + "node_modules/pac-proxy-agent/node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "dev": true, "dependencies": { - "glob": "^8.0.1", - "json-parse-even-better-errors": "^2.3.1", - "normalize-package-data": "^4.0.0", - "npm-normalize-package-bin": "^1.0.1" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 14" } }, - "node_modules/npm/node_modules/read-package-json-fast": { - "version": "2.0.3", - "inBundle": true, - "license": "ISC", + "node_modules/pac-proxy-agent/node_modules/https-proxy-agent": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "dev": true, "dependencies": { - "json-parse-even-better-errors": "^2.3.0", - "npm-normalize-package-bin": "^1.0.1" + "agent-base": "^7.0.2", + "debug": "4" }, "engines": { - "node": ">=10" + "node": ">= 14" } }, - "node_modules/npm/node_modules/readable-stream": { - "version": "3.6.0", - "inBundle": true, - "license": "MIT", + "node_modules/pac-proxy-agent/node_modules/socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" }, "engines": { - "node": ">= 6" + "node": ">= 14" } }, - "node_modules/npm/node_modules/readdir-scoped-modules": { - "version": "1.1.0", - "inBundle": true, - "license": "ISC", + "node_modules/pac-resolver": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", + "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", + "dev": true, "dependencies": { - "debuglog": "^1.0.1", - "dezalgo": "^1.0.0", - "graceful-fs": "^4.1.2", - "once": "^1.3.0" - } - }, - "node_modules/npm/node_modules/retry": { - "version": "0.12.0", - "inBundle": true, - "license": "MIT", + "degenerator": "^5.0.0", + "netmask": "^2.0.2" + }, "engines": { - "node": ">= 4" + "node": ">= 14" } }, - "node_modules/npm/node_modules/rimraf": { - "version": "3.0.2", - "inBundle": true, - "license": "ISC", + "node_modules/package-json": { + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz", + "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==", + "dev": true, "dependencies": { - "glob": "^7.1.3" + "got": "^12.1.0", + "registry-auth-token": "^5.0.1", + "registry-url": "^6.0.0", + "semver": "^7.3.7" }, - "bin": { - "rimraf": "bin.js" + "engines": { + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/npm/node_modules/rimraf/node_modules/brace-expansion": { - "version": "1.1.11", - "inBundle": true, - "license": "MIT", - "dependencies": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/rimraf/node_modules/glob": { - "version": "7.2.3", - "inBundle": true, - "license": "ISC", + "node_modules/package-json/node_modules/got": { + "version": "12.6.1", + "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", + "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", + "dev": true, "dependencies": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.1.1", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" + "@sindresorhus/is": "^5.2.0", + "@szmarczak/http-timer": "^5.0.1", + "cacheable-lookup": "^7.0.0", + "cacheable-request": "^10.2.8", + "decompress-response": "^6.0.0", + "form-data-encoder": "^2.1.2", + "get-stream": "^6.0.1", + "http2-wrapper": "^2.1.10", + "lowercase-keys": "^3.0.0", + "p-cancelable": "^3.0.0", + "responselike": "^3.0.0" }, "engines": { - "node": "*" + "node": ">=14.16" }, "funding": { - "url": "https://github.com/sponsors/isaacs" + "url": "https://github.com/sindresorhus/got?sponsor=1" } }, - "node_modules/npm/node_modules/rimraf/node_modules/minimatch": { - "version": "3.1.2", - "inBundle": true, - "license": "ISC", + "node_modules/pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + }, + "node_modules/param-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", + "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "dev": true, "dependencies": { - "brace-expansion": "^1.1.7" - }, - "engines": { - "node": "*" + "dot-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/npm/node_modules/safe-buffer": { - "version": "5.2.1", - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" - }, - { - "type": "consulting", - "url": "https://feross.org/support" - } - ], - "inBundle": true, - "license": "MIT" + "node_modules/param-case/node_modules/dot-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", + "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "dev": true, + "dependencies": { + "no-case": "^3.0.4", + "tslib": "^2.0.3" + } }, - "node_modules/npm/node_modules/safer-buffer": { - "version": "2.1.2", - "inBundle": true, - "license": "MIT", - "optional": true - }, - "node_modules/npm/node_modules/semver": { - "version": "7.3.7", - "inBundle": true, - "license": "ISC", - "dependencies": { - "lru-cache": "^6.0.0" - }, - "bin": { - "semver": "bin/semver.js" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/semver/node_modules/lru-cache": { - "version": "6.0.0", - "inBundle": true, - "license": "ISC", - "dependencies": { - "yallist": "^4.0.0" - }, - "engines": { - "node": ">=10" - } - }, - "node_modules/npm/node_modules/set-blocking": { - "version": "2.0.0", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/signal-exit": { - "version": "3.0.7", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/smart-buffer": { - "version": "4.2.0", - "inBundle": true, - "license": "MIT", - "engines": { - "node": ">= 6.0.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/npm/node_modules/socks": { - "version": "2.6.2", - "inBundle": true, - "license": "MIT", - "dependencies": { - "ip": "^1.1.5", - "smart-buffer": "^4.2.0" - }, - "engines": { - "node": ">= 10.13.0", - "npm": ">= 3.0.0" - } - }, - "node_modules/npm/node_modules/socks-proxy-agent": { - "version": "6.2.0", - "inBundle": true, - "license": "MIT", - "dependencies": { - "agent-base": "^6.0.2", - "debug": "^4.3.3", - "socks": "^2.6.2" - }, - "engines": { - "node": ">= 10" - } - }, - "node_modules/npm/node_modules/spdx-correct": { - "version": "3.1.1", - "inBundle": true, - "license": "Apache-2.0", + "node_modules/param-case/node_modules/lower-case": { + "version": "2.0.2", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, "dependencies": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" + "tslib": "^2.0.3" } }, - "node_modules/npm/node_modules/spdx-exceptions": { - "version": "2.3.0", - "inBundle": true, - "license": "CC-BY-3.0" - }, - "node_modules/npm/node_modules/spdx-expression-parse": { - "version": "3.0.1", - "inBundle": true, - "license": "MIT", + "node_modules/param-case/node_modules/no-case": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, "dependencies": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node_modules/npm/node_modules/spdx-license-ids": { - "version": "3.0.11", - "inBundle": true, - "license": "CC0-1.0" - }, - "node_modules/npm/node_modules/ssri": { - "version": "9.0.1", - "inBundle": true, - "license": "ISC", + "node_modules/parent-module": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", + "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "dev": true, "dependencies": { - "minipass": "^3.1.1" + "callsites": "^3.0.0" }, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">=6" } }, - "node_modules/npm/node_modules/string_decoder": { - "version": "1.3.0", - "inBundle": true, - "license": "MIT", + "node_modules/parse-data-uri": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/parse-data-uri/-/parse-data-uri-0.2.0.tgz", + "integrity": "sha512-uOtts8NqDcaCt1rIsO3VFDRsAfgE4c6osG4d9z3l4dCBlxYFzni6Di/oNU270SDrjkfZuUvLZx1rxMyqh46Y9w==", "dependencies": { - "safe-buffer": "~5.2.0" + "data-uri-to-buffer": "0.0.3" } }, - "node_modules/npm/node_modules/string-width": { - "version": "4.2.3", - "inBundle": true, - "license": "MIT", + "node_modules/parse-json": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", + "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "dev": true, "dependencies": { - "emoji-regex": "^8.0.0", - "is-fullwidth-code-point": "^3.0.0", - "strip-ansi": "^6.0.1" + "@babel/code-frame": "^7.0.0", + "error-ex": "^1.3.1", + "json-parse-even-better-errors": "^2.3.0", + "lines-and-columns": "^1.1.6" }, "engines": { "node": ">=8" - } - }, - "node_modules/npm/node_modules/strip-ansi": { - "version": "6.0.1", - "inBundle": true, - "license": "MIT", - "dependencies": { - "ansi-regex": "^5.0.1" }, - "engines": { - "node": ">=8" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/npm/node_modules/supports-color": { - "version": "7.2.0", - "inBundle": true, - "license": "MIT", + "node_modules/parse-path": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", + "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "dev": true, "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" + "protocols": "^2.0.0" } }, - "node_modules/npm/node_modules/tar": { - "version": "6.1.11", - "inBundle": true, - "license": "ISC", + "node_modules/parse-url": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", + "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "dev": true, "dependencies": { - "chownr": "^2.0.0", - "fs-minipass": "^2.0.0", - "minipass": "^3.0.0", - "minizlib": "^2.1.1", - "mkdirp": "^1.0.3", - "yallist": "^4.0.0" - }, - "engines": { - "node": ">= 10" + "parse-path": "^7.0.0" } }, - "node_modules/npm/node_modules/text-table": { - "version": "0.2.0", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/tiny-relative-date": { - "version": "1.3.0", - "inBundle": true, - "license": "MIT" + "node_modules/parse5": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", + "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", + "dev": true }, - "node_modules/npm/node_modules/treeverse": { - "version": "2.0.0", - "inBundle": true, - "license": "ISC", + "node_modules/parseurl": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", + "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "node": ">= 0.8" } }, - "node_modules/npm/node_modules/unique-filename": { - "version": "1.1.1", - "inBundle": true, - "license": "ISC", + "node_modules/pascal-case": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", + "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "dev": true, "dependencies": { - "unique-slug": "^2.0.0" + "no-case": "^3.0.4", + "tslib": "^2.0.3" } }, - "node_modules/npm/node_modules/unique-slug": { + "node_modules/pascal-case/node_modules/lower-case": { "version": "2.0.2", - "inBundle": true, - "license": "ISC", + "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", + "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "dev": true, "dependencies": { - "imurmurhash": "^0.1.4" + "tslib": "^2.0.3" } }, - "node_modules/npm/node_modules/util-deprecate": { - "version": "1.0.2", - "inBundle": true, - "license": "MIT" - }, - "node_modules/npm/node_modules/validate-npm-package-license": { + "node_modules/pascal-case/node_modules/no-case": { "version": "3.0.4", - "inBundle": true, - "license": "Apache-2.0", - "dependencies": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "node_modules/npm/node_modules/validate-npm-package-name": { - "version": "4.0.0", - "inBundle": true, - "license": "ISC", + "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", + "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "dev": true, "dependencies": { - "builtins": "^5.0.0" - }, - "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16.0.0" + "lower-case": "^2.0.2", + "tslib": "^2.0.3" } }, - "node_modules/npm/node_modules/walk-up-path": { - "version": "1.0.0", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npm/node_modules/wcwidth": { + "node_modules/path-browserify": { "version": "1.0.1", - "inBundle": true, - "license": "MIT", + "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", + "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "dev": true + }, + "node_modules/path-case": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", + "integrity": "sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==", + "dev": true, "dependencies": { - "defaults": "^1.0.3" + "no-case": "^2.2.0" } }, - "node_modules/npm/node_modules/which": { - "version": "2.0.2", - "inBundle": true, - "license": "ISC", - "dependencies": { - "isexe": "^2.0.0" - }, - "bin": { - "node-which": "bin/node-which" - }, + "node_modules/path-exists": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", + "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "dev": true, "engines": { - "node": ">= 8" + "node": ">=8" } }, - "node_modules/npm/node_modules/wide-align": { - "version": "1.1.5", - "inBundle": true, - "license": "ISC", - "dependencies": { - "string-width": "^1.0.2 || 2 || 3 || 4" + "node_modules/path-is-absolute": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", + "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/npm/node_modules/wrappy": { + "node_modules/path-is-inside": { "version": "1.0.2", - "inBundle": true, - "license": "ISC" + "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", + "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", + "dev": true }, - "node_modules/npm/node_modules/write-file-atomic": { - "version": "4.0.1", - "inBundle": true, - "license": "ISC", - "dependencies": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - }, + "node_modules/path-key": { + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", + "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "dev": true, "engines": { - "node": "^12.13.0 || ^14.15.0 || >=16" + "node": ">=8" } }, - "node_modules/npm/node_modules/yallist": { - "version": "4.0.0", - "inBundle": true, - "license": "ISC" - }, - "node_modules/npmlog": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", - "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", - "dev": true, - "dependencies": { - "are-we-there-yet": "^2.0.0", - "console-control-strings": "^1.1.0", - "gauge": "^3.0.0", - "set-blocking": "^2.0.0" - } + "node_modules/path-parse": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", + "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", + "dev": true }, - "node_modules/nth-check": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/nth-check/-/nth-check-2.1.1.tgz", - "integrity": "sha512-lqjrjmaOoAnWfMmBPL+XNnynZh2+swxiX3WUE0s4yEHI6m+AwrK2UZOimIRl3X/4QctVqS8AiZjFqyOGrMXb/w==", + "node_modules/path-scurry": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", "dev": true, "dependencies": { - "boolbase": "^1.0.0" + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "engines": { + "node": ">=16 || 14 >=14.17" }, "funding": { - "url": "https://github.com/fb55/nth-check?sponsor=1" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/nwsapi": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/nwsapi/-/nwsapi-2.2.0.tgz", - "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", - "dev": true - }, - "node_modules/oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", + "node_modules/path-scurry/node_modules/lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true, "engines": { - "node": "*" + "node": "14 || >=16.14" } }, - "node_modules/obj-extend": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/obj-extend/-/obj-extend-0.1.0.tgz", - "integrity": "sha512-or9c7Ue2wWCun41DuLP3+LKEUjSZcDSxfCM4HZQSX9tcjLL/yuzTW7MmtVNs+MmN16uDRpDrFmFK/WVSm4vklg==", + "node_modules/path-scurry/node_modules/minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true, "engines": { - "node": "*" + "node": ">=16 || 14 >=14.17" } }, - "node_modules/object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha512-rJgTQnkUnH1sFw8yT6VSU3zD3sWmu6sZhIseY8VX+GRu3P6F7Fu+JNDoXfklElbLJSnc3FUQHVe4cU5hj+BcUg==", + "node_modules/path-to-regexp": { + "version": "0.1.7", + "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", + "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", + "dev": true + }, + "node_modules/path-type": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", + "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/object-inspect": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/object-inspect/-/object-inspect-1.13.1.tgz", - "integrity": "sha512-5qoj1RUiKOMsCCNLV1CBiPYE10sziTsnmNxkAI/rZhiD63CF7IqdFGC/XzjWjpSgLf0LxXX3bDFIh0E18f6UhQ==", + "node_modules/pathe": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", + "dev": true + }, + "node_modules/peek-stream": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", + "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", "dev": true, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "dependencies": { + "buffer-from": "^1.0.0", + "duplexify": "^3.5.0", + "through2": "^2.0.3" } }, - "node_modules/object-is": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/object-is/-/object-is-1.1.5.tgz", - "integrity": "sha512-3cyDsyHgtmi7I7DfSSI2LDp6SK2lwvtbg0p0R1e0RvTqF5ceGx+K2dfSjm1bKDMVCFEDAQvy+o8c6a7VujOddw==", + "node_modules/pend": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", + "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", + "dev": true + }, + "node_modules/performance-now": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", + "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" + }, + "node_modules/picocolors": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", + "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", + "dev": true + }, + "node_modules/picomatch": { + "version": "2.3.1", + "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", + "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", "dev": true, - "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.3" - }, "engines": { - "node": ">= 0.4" + "node": ">=8.6" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/jonschlinkert" } }, - "node_modules/object-keys": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/object-keys/-/object-keys-1.1.1.tgz", - "integrity": "sha512-NuAESUOUMrlIXOfHKzD6bpPu3tYt3xvjNdRIQ+FeT0lNb4K8WR70CaDxhuNguS2XG+GjkyMwOzsN5ZktImfhLA==", + "node_modules/pidtree": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", + "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", "dev": true, + "bin": { + "pidtree": "bin/pidtree.js" + }, "engines": { - "node": ">= 0.4" + "node": ">=0.10" } }, - "node_modules/object.assign": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/object.assign/-/object.assign-4.1.5.tgz", - "integrity": "sha512-byy+U7gp+FVwmyzKPYhW2h5l3crpmGsxl7X2s8y43IgxvG4g3QZ6CffDtsNQy1WsmZpQbO+ybo0AlW7TY6DcBQ==", + "node_modules/pify": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", + "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", "dev": true, - "dependencies": { - "call-bind": "^1.0.5", - "define-properties": "^1.2.1", - "has-symbols": "^1.0.3", - "object-keys": "^1.1.1" - }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">=6" } }, - "node_modules/object.entries": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.entries/-/object.entries-1.1.6.tgz", - "integrity": "sha512-leTPzo4Zvg3pmbQ3rDK69Rl8GQvIqMWubrkxONG9/ojtFE2rD9fjMKfSI5BxW3osRH1m6VdzmqK8oAY9aT4x5w==", + "node_modules/pino": { + "version": "4.17.6", + "resolved": "https://registry.npmjs.org/pino/-/pino-4.17.6.tgz", + "integrity": "sha512-LFDwmhyWLBnmwO/2UFbWu1jEGVDzaPupaVdx0XcZ3tIAx1EDEBauzxXf2S0UcFK7oe+X9MApjH0hx9U1XMgfCA==", "dev": true, "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "chalk": "^2.4.1", + "fast-json-parse": "^1.0.3", + "fast-safe-stringify": "^1.2.3", + "flatstr": "^1.0.5", + "pino-std-serializers": "^2.0.0", + "pump": "^3.0.0", + "quick-format-unescaped": "^1.1.2", + "split2": "^2.2.0" }, - "engines": { - "node": ">= 0.4" + "bin": { + "pino": "bin.js" } }, - "node_modules/object.fromentries": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/object.fromentries/-/object.fromentries-2.0.6.tgz", - "integrity": "sha512-VciD13dswC4j1Xt5394WR4MzmAQmlgN72phd/riNp9vtD7tp4QQWJ0R4wvclXcafgcYK8veHRed2W6XeGBvcfg==", + "node_modules/pino-std-serializers": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.5.0.tgz", + "integrity": "sha512-wXqbqSrIhE58TdrxxlfLwU9eDhrzppQDvGhBEr1gYbzzM4KKo3Y63gSjiDXRKLVS2UOXdPNR2v+KnQgNrs+xUg==", + "dev": true + }, + "node_modules/pirates": { + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true, - "peer": true, + "engines": { + "node": ">= 6" + } + }, + "node_modules/pixelsmith": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.6.0.tgz", + "integrity": "sha512-1W0C8EVxAPJwsCodw/+dfeEtdSc8JuHFipVylf51PIvh7S7Q33qmVCCzeWQp1y1sXpZ52iXGY2D/ICMyHPIULw==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" + "async": "^3.2.3", + "concat-stream": "~1.5.1", + "get-pixels": "~3.3.0", + "mime-types": "~2.1.7", + "ndarray": "~1.0.15", + "obj-extend": "~0.1.0", + "save-pixels": "~2.3.0", + "vinyl-file": "~1.3.0" }, "engines": { - "node": ">= 0.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "node": ">= 12.0.0" } }, - "node_modules/object.hasown": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/object.hasown/-/object.hasown-1.1.2.tgz", - "integrity": "sha512-B5UIT3J1W+WuWIU55h0mjlwaqxiE5vYENJXIXZ4VFe05pNYrkKuK0U/6aFcb0pKywYJh7IhfoqUfKVmrJJHZHw==", - "dev": true, - "peer": true, + "node_modules/pixelsmith/node_modules/concat-stream": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", + "integrity": "sha512-H6xsIBfQ94aESBG8jGHXQ7i5AEpy5ZeVaLDOisDICiTCKpqEfr34/KmTrspKQNoLKNu9gTkovlpQcUi630AKiQ==", + "engines": [ + "node >= 0.8" + ], "dependencies": { - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" + "inherits": "~2.0.1", + "readable-stream": "~2.0.0", + "typedarray": "~0.0.5" } }, - "node_modules/object.values": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/object.values/-/object.values-1.1.6.tgz", - "integrity": "sha512-FVVTkD1vENCsAcwNs9k6jea2uHC/X0+JcjG8YA60FN5CMaJmG95wT9jek/xX9nornqGRrBkKtzuAu2wuHpKqvw==", - "dev": true, + "node_modules/pixelsmith/node_modules/process-nextick-args": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", + "integrity": "sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw==" + }, + "node_modules/pixelsmith/node_modules/readable-stream": { + "version": "2.0.6", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", + "integrity": "sha512-TXcFfb63BQe1+ySzsHZI/5v1aJPCShfqvWJ64ayNImXMsN1Cd0YGk/wm8KB7/OeessgPc9QvS9Zou8QTkFzsLw==", "dependencies": { - "call-bind": "^1.0.2", - "define-properties": "^1.1.4", - "es-abstract": "^1.20.4" - }, - "engines": { - "node": ">= 0.4" + "core-util-is": "~1.0.0", + "inherits": "~2.0.1", + "isarray": "~1.0.0", + "process-nextick-args": "~1.0.6", + "string_decoder": "~0.10.x", + "util-deprecate": "~1.0.1" + } + }, + "node_modules/pixelsmith/node_modules/string_decoder": { + "version": "0.10.31", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", + "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" + }, + "node_modules/pixi-viewport": { + "version": "5.0.1", + "resolved": "https://registry.npmjs.org/pixi-viewport/-/pixi-viewport-5.0.1.tgz", + "integrity": "sha512-fIILU9xztqGnhGF5SYfjn1Rir/7asWkJ8zSUay2hwzPrdGTWFtB4yiIlZDeFaLf7KHA04RRb2kI01Sy1kNksAw==" + }, + "node_modules/pixi.js": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-7.2.4.tgz", + "integrity": "sha512-nBH60meoLnHxoMFz17HoMxXS4uJpG5jwIdL+Gx2S11TzWgP3iKF+/WLOTrkSdyuQoQSdIBxVqpnYii0Wiox15A==", + "dependencies": { + "@pixi/accessibility": "7.2.4", + "@pixi/app": "7.2.4", + "@pixi/assets": "7.2.4", + "@pixi/compressed-textures": "7.2.4", + "@pixi/core": "7.2.4", + "@pixi/display": "7.2.4", + "@pixi/events": "7.2.4", + "@pixi/extensions": "7.2.4", + "@pixi/extract": "7.2.4", + "@pixi/filter-alpha": "7.2.4", + "@pixi/filter-blur": "7.2.4", + "@pixi/filter-color-matrix": "7.2.4", + "@pixi/filter-displacement": "7.2.4", + "@pixi/filter-fxaa": "7.2.4", + "@pixi/filter-noise": "7.2.4", + "@pixi/graphics": "7.2.4", + "@pixi/mesh": "7.2.4", + "@pixi/mesh-extras": "7.2.4", + "@pixi/mixin-cache-as-bitmap": "7.2.4", + "@pixi/mixin-get-child-by-name": "7.2.4", + "@pixi/mixin-get-global-position": "7.2.4", + "@pixi/particle-container": "7.2.4", + "@pixi/prepare": "7.2.4", + "@pixi/sprite": "7.2.4", + "@pixi/sprite-animated": "7.2.4", + "@pixi/sprite-tiling": "7.2.4", + "@pixi/spritesheet": "7.2.4", + "@pixi/text": "7.2.4", + "@pixi/text-bitmap": "7.2.4", + "@pixi/text-html": "7.2.4" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "type": "opencollective", + "url": "https://opencollective.com/pixijs" } }, - "node_modules/objectorarray": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/objectorarray/-/objectorarray-1.0.5.tgz", - "integrity": "sha512-eJJDYkhJFFbBBAxeh8xW+weHlkI28n2ZdQV/J/DNfWfSKlGEf2xcfAbZTv3riEXHAhL9SVOTs2pRmXiSTf78xg==", - "dev": true + "node_modules/pixi.js/node_modules/@pixi/accessibility": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-7.2.4.tgz", + "integrity": "sha512-EVjuqUqv9FeYFXCv0S0qj1hgCtbAMNBPCbOGEtiMogpM++/IySxBZvcOYg3rRgo9inwt2s4Bi7kUiqMPD8hItw==", + "peerDependencies": { + "@pixi/core": "7.2.4", + "@pixi/display": "7.2.4", + "@pixi/events": "7.2.4" + } }, - "node_modules/obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true + "node_modules/pixi.js/node_modules/@pixi/compressed-textures": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/compressed-textures/-/compressed-textures-7.2.4.tgz", + "integrity": "sha512-atnWyw/ot/Wg69qhgskKiuTYCZx15IxV35sa0KyXMthyjyvDLCIvOn0nczM6wCBy9H96SjJbfgynVWhVrip6qw==", + "peerDependencies": { + "@pixi/assets": "7.2.4", + "@pixi/core": "7.2.4" + } }, - "node_modules/omggif": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", - "integrity": "sha512-LMJTtvgc/nugXj0Vcrrs68Mn2D1r0zf630VNtqtpI1FEO7e+O9FP4gqs9AcnBaSEeoHIPm28u6qgPR0oyEpGSw==" + "node_modules/pixi.js/node_modules/@pixi/events": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/events/-/events-7.2.4.tgz", + "integrity": "sha512-/JtmoB98fzIU8giN9xvlRvmvOi6u4MaD2DnKNOMHkQ1MBraj3pmrXM9fZ0JbNzi+324GraAAY76QidgHjIYoYQ==", + "peerDependencies": { + "@pixi/core": "7.2.4", + "@pixi/display": "7.2.4" + } }, - "node_modules/on-finished": { - "version": "2.4.1", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.4.1.tgz", - "integrity": "sha512-oVlzkg3ENAhCk2zdv7IJwd/QUD4z2RxRwpkcGY8psCVcCYZNq4wYnVWALHM+brtuJjePWiYF/ClmuDr8Ch5+kg==", - "dev": true, - "dependencies": { - "ee-first": "1.1.1" - }, - "engines": { - "node": ">= 0.8" + "node_modules/pixi.js/node_modules/@pixi/extract": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-7.2.4.tgz", + "integrity": "sha512-wlXZg+J2L/1jQhRi5nZQP/cXshovhjksjss91eAKMvY5aGxNAQovCP4xotJ/XJjfTvPMpeRzHPFYzm3PrOPQ7g==", + "peerDependencies": { + "@pixi/core": "7.2.4" } }, - "node_modules/on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true, - "engines": { - "node": ">= 0.8" + "node_modules/pixi.js/node_modules/@pixi/filter-alpha": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-7.2.4.tgz", + "integrity": "sha512-UTUMSGyktUr+I9vmigqJo9iUhb0nwGyqTTME2xBWZvVGCnl5z+/wHxvIBBCe5pNZ66IM15pGXQ4cDcfqCuP2kA==", + "peerDependencies": { + "@pixi/core": "7.2.4" } }, - "node_modules/once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha512-lNaJgI+2Q5URQBkccEKHTQOPaXdUxnZZElQTZY0MFUAuaEqe1E+Nyvgdz/aIyNi6Z9MzO5dv1H8n58/GELp3+w==", - "dependencies": { - "wrappy": "1" + "node_modules/pixi.js/node_modules/@pixi/filter-blur": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-7.2.4.tgz", + "integrity": "sha512-aLyXIoxy14bTansCPtbY8x7Sdn2OrrqkF/pcKiRXHJGGhi7wPacvB/NcmYJdnI/n2ExQ6V5Njuj/nfrsejVwcA==", + "peerDependencies": { + "@pixi/core": "7.2.4" } }, - "node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/pixi.js/node_modules/@pixi/filter-color-matrix": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-7.2.4.tgz", + "integrity": "sha512-DFtayybYXoUh73eHUFRK5REbi1t3FZuVUnaQTj+euHKF9L7EaYc3Q9wctpx1WPRcwkqEX50M4SNFhxpA7Pxtaw==", + "peerDependencies": { + "@pixi/core": "7.2.4" } }, - "node_modules/open": { - "version": "8.4.0", - "resolved": "https://registry.npmjs.org/open/-/open-8.4.0.tgz", - "integrity": "sha512-XgFPPM+B28FtCCgSb9I+s9szOC1vZRSwgWsRUA5ylIxRTgKozqjOCrVOqGsYABPYK5qnfqClxZTFBa8PKt2v6Q==", - "dev": true, - "dependencies": { - "define-lazy-prop": "^2.0.0", - "is-docker": "^2.1.1", - "is-wsl": "^2.2.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/pixi.js/node_modules/@pixi/filter-displacement": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-7.2.4.tgz", + "integrity": "sha512-Simq3IBJKt7+Gvk4kK7OFkfoeYUMhNhIyATCdeT+Jkdkq5WV7pYnH5hqO0YW7eAHrgjV13yn6t4H/GC4+6LhEA==", + "peerDependencies": { + "@pixi/core": "7.2.4" } }, - "node_modules/optionator": { - "version": "0.9.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.9.3.tgz", - "integrity": "sha512-JjCoypp+jKn1ttEFExxhetCKeJt9zhAgAve5FXHixTvFDW/5aEktX9bufBKLRRMdU7bNtpLfcGu94B3cdEJgjg==", - "dev": true, - "dependencies": { - "@aashutoshrathi/word-wrap": "^1.2.3", - "deep-is": "^0.1.3", - "fast-levenshtein": "^2.0.6", - "levn": "^0.4.1", - "prelude-ls": "^1.2.1", - "type-check": "^0.4.0" - }, - "engines": { - "node": ">= 0.8.0" + "node_modules/pixi.js/node_modules/@pixi/filter-fxaa": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-7.2.4.tgz", + "integrity": "sha512-qzKjdL+Ih18uGTJLg8tT/H+YCsTeGkw2uF7lyKnw/lxGLJQhLWIhM95M9qSNgxbXyW1vp7SbG81a9aAEz2HAhA==", + "peerDependencies": { + "@pixi/core": "7.2.4" } }, - "node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node_modules/pixi.js/node_modules/@pixi/filter-noise": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-7.2.4.tgz", + "integrity": "sha512-QAU9Ybj2ZQrWM9ZEjTTC0iLnQcuyNoZNRinxSbg1G0yacpmsSb9wvV5ltIZ66+hfY+90+u2Nudt/v9g6pvOdGg==", + "peerDependencies": { + "@pixi/core": "7.2.4" } }, - "node_modules/ora/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/pixi.js/node_modules/@pixi/mixin-cache-as-bitmap": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-7.2.4.tgz", + "integrity": "sha512-95L/9nzfLHw6GoeqqRl/RjSloKvRt0xrc2inCmjMZvMsFUEtHN2F8IWd1k5vcv0S+83NCreFkJg6nJm1m5AZqg==", + "peerDependencies": { + "@pixi/core": "7.2.4", + "@pixi/display": "7.2.4", + "@pixi/sprite": "7.2.4" + } + }, + "node_modules/pixi.js/node_modules/@pixi/mixin-get-child-by-name": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-7.2.4.tgz", + "integrity": "sha512-9g17KgSBEEhkinnKk4dqmxagzHOCPSTvGB6lOopBq4yyXmr/2WVv+QGjuzE0O+p80szQeBJjPBQxzrfBILaSRw==", + "peerDependencies": { + "@pixi/display": "7.2.4" + } + }, + "node_modules/pixi.js/node_modules/@pixi/mixin-get-global-position": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-7.2.4.tgz", + "integrity": "sha512-UrAUF2BXCeWtFgR2m+er41Ky7zShT7r228cZkB6ZfYwMeThhwqG5mH68UeCyP6p68JMpT1gjI2DPfeSRY3ecnA==", + "peerDependencies": { + "@pixi/core": "7.2.4", + "@pixi/display": "7.2.4" + } + }, + "node_modules/pixi.js/node_modules/@pixi/prepare": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-7.2.4.tgz", + "integrity": "sha512-Yff5Sh4kTLdKc5VkkM44LW9gpj7Izw8ns3P1TzWxqeGjzPZ3folr/tQujGL+Qw+8A9VESp+hX9MSIHyw+jpyrg==", + "peerDependencies": { + "@pixi/core": "7.2.4", + "@pixi/display": "7.2.4", + "@pixi/graphics": "7.2.4", + "@pixi/text": "7.2.4" + } + }, + "node_modules/pixi.js/node_modules/@pixi/spritesheet": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-7.2.4.tgz", + "integrity": "sha512-LNmlavyiMQeCF0U4S+yhzxUYmPmat6EpLjLnkGukQTZV5CZkxDCVgXM9uKoRF2DvNydj4yuwZ6+JjK8QssHI8Q==", + "peerDependencies": { + "@pixi/assets": "7.2.4", + "@pixi/core": "7.2.4" + } + }, + "node_modules/pixi.js/node_modules/@pixi/text-html": { + "version": "7.2.4", + "resolved": "https://registry.npmjs.org/@pixi/text-html/-/text-html-7.2.4.tgz", + "integrity": "sha512-0NfLAE/w51ZtatxVqLvDS62iO0VLKsSdctqTAVv4Zlgdk9TKJmX1WUucHJboTvbm2SbDjNDGfZ6qXM5nAslIDQ==", + "peerDependencies": { + "@pixi/core": "7.2.4", + "@pixi/display": "7.2.4", + "@pixi/sprite": "7.2.4", + "@pixi/text": "7.2.4" + } + }, + "node_modules/pkg-dir": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", + "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "find-up": "^4.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "node_modules/pluralize": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", + "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "node": ">=4" } }, - "node_modules/ora/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true, + "node_modules/pngjs": { + "version": "3.4.0", + "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", + "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", "engines": { - "node": ">=8" + "node": ">=4.0.0" } }, - "node_modules/ora/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "node_modules/pngjs-nozlib": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/pngjs-nozlib/-/pngjs-nozlib-1.0.0.tgz", + "integrity": "sha512-N1PggqLp9xDqwAoKvGohmZ3m4/N9xpY0nDZivFqQLcpLHmliHnCp9BuNCsOeqHWMuEEgFjpEaq9dZq6RZyy0fA==", + "engines": { + "iojs": ">= 1.0.0", + "node": ">=0.10.0" + } + }, + "node_modules/polished": { + "version": "4.2.2", + "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", + "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", "dev": true, "dependencies": { - "has-flag": "^4.0.0" + "@babel/runtime": "^7.17.8" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/os-name": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/os-name/-/os-name-5.1.0.tgz", - "integrity": "sha512-YEIoAnM6zFmzw3PQ201gCVCIWbXNyKObGlVvpAVvraAeOHnlYVKFssbA/riRX5R40WA6kKrZ7Dr7dWzO3nKSeQ==", + "node_modules/possible-typed-array-names": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", + "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", "dev": true, - "dependencies": { - "macos-release": "^3.1.0", - "windows-release": "^5.0.1" - }, "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">= 0.4" } }, - "node_modules/os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha512-D2FR03Vir7FIu45XBY20mTb+/ZSWB00sjU9jdQXt83gDrI4Ztz5Fs7/yy74g2N5SVQY4xY1qDr4rNddwYRVX0g==", + "node_modules/postcss": { + "version": "8.4.18", + "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", + "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", "dev": true, + "funding": [ + { + "type": "opencollective", + "url": "https://opencollective.com/postcss/" + }, + { + "type": "tidelift", + "url": "https://tidelift.com/funding/github/npm/postcss" + } + ], + "dependencies": { + "nanoid": "^3.3.4", + "picocolors": "^1.0.0", + "source-map-js": "^1.0.2" + }, "engines": { - "node": ">=0.10.0" + "node": "^10 || ^12 || >=14" } }, - "node_modules/p-cancelable": { + "node_modules/postcss-modules-extract-imports": { "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-cancelable/-/p-cancelable-3.0.0.tgz", - "integrity": "sha512-mlVgR3PGuzlo0MmTdk4cXqXWlwQDLnONTAg6sm62XkMJEiRxN3GL3SffkYvqwonbkJBcrI7Uvv5Zh9yjvn2iUw==", + "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", + "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", "dev": true, "engines": { - "node": ">=12.20" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/p-limit": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-2.3.0.tgz", - "integrity": "sha512-//88mFWSJx8lxCzwdAABTJL2MyWB12+eIY7MDL2SqLmAkeKU9qxRvWuSyTjm3FUmpBEMuFfckAIqEaVGUDxb6w==", + "node_modules/postcss-modules-local-by-default": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", + "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", "dev": true, "dependencies": { - "p-try": "^2.0.0" + "icss-utils": "^5.0.0", + "postcss-selector-parser": "^6.0.2", + "postcss-value-parser": "^4.1.0" }, "engines": { - "node": ">=6" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/p-locate": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-4.1.0.tgz", - "integrity": "sha512-R79ZZ/0wAxKGu3oYMlz8jy/kbhsNrS7SKZ7PxEHBgJ5+F2mtFW2fK2cOtBh1cHYkQsbzFV7I+EoRKe6Yt0oK7A==", + "node_modules/postcss-modules-scope": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", + "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", "dev": true, "dependencies": { - "p-limit": "^2.2.0" + "postcss-selector-parser": "^6.0.4" }, "engines": { - "node": ">=8" + "node": "^10 || ^12 || >= 14" + }, + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/p-map": { + "node_modules/postcss-modules-values": { "version": "4.0.0", - "resolved": "https://registry.npmjs.org/p-map/-/p-map-4.0.0.tgz", - "integrity": "sha512-/bjOqmgETBYB5BoEeGVea8dmvHb2m9GLy1E9W43yeyfP6QQCZGFNa+XRceJEuDB6zqr+gKpIAmlLebMpykw/MQ==", + "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", + "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", "dev": true, "dependencies": { - "aggregate-error": "^3.0.0" + "icss-utils": "^5.0.0" }, "engines": { - "node": ">=10" + "node": "^10 || ^12 || >= 14" }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "peerDependencies": { + "postcss": "^8.1.0" } }, - "node_modules/p-retry": { - "version": "4.6.2", - "resolved": "https://registry.npmjs.org/p-retry/-/p-retry-4.6.2.tgz", - "integrity": "sha512-312Id396EbJdvRONlngUx0NydfrIQ5lsYu0znKVUzVvArzEIt08V1qhtyESbGVd1FGX7UKtiFp5uwKZdM8wIuQ==", + "node_modules/postcss-selector-parser": { + "version": "6.0.10", + "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", + "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", "dev": true, "dependencies": { - "@types/retry": "0.12.0", - "retry": "^0.13.1" + "cssesc": "^3.0.0", + "util-deprecate": "^1.0.2" }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/p-try": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/p-try/-/p-try-2.2.0.tgz", - "integrity": "sha512-R4nPAVTAU0B9D35/Gk3uJf/7XYbQcyohSKdvAxIRSNghFl4e71hVoGnBNQz9cWaXxO2I10KTC+3jMdvvoKw6dQ==", - "dev": true, - "engines": { - "node": ">=6" - } + "node_modules/postcss-value-parser": { + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", + "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", + "dev": true }, - "node_modules/pac-proxy-agent": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-proxy-agent/-/pac-proxy-agent-7.0.1.tgz", - "integrity": "sha512-ASV8yU4LLKBAjqIPMbrgtaKIvxQri/yh2OpI+S6hVa9JRkUI3Y3NPFbfngDtY7oFtSMD3w31Xns89mDa3Feo5A==", - "dev": true, + "node_modules/prebuild-install": { + "version": "7.1.1", + "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", + "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", "dependencies": { - "@tootallnate/quickjs-emscripten": "^0.23.0", - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "get-uri": "^6.0.1", - "http-proxy-agent": "^7.0.0", - "https-proxy-agent": "^7.0.2", - "pac-resolver": "^7.0.0", - "socks-proxy-agent": "^8.0.2" + "detect-libc": "^2.0.0", + "expand-template": "^2.0.3", + "github-from-package": "0.0.0", + "minimist": "^1.2.3", + "mkdirp-classic": "^0.5.3", + "napi-build-utils": "^1.0.1", + "node-abi": "^3.3.0", + "pump": "^3.0.0", + "rc": "^1.2.7", + "simple-get": "^4.0.0", + "tar-fs": "^2.0.0", + "tunnel-agent": "^0.6.0" + }, + "bin": { + "prebuild-install": "bin.js" }, "engines": { - "node": ">= 14" + "node": ">=10" } }, - "node_modules/pac-proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "node_modules/prelude-ls": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", + "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", "dev": true, - "dependencies": { - "debug": "^4.3.4" - }, "engines": { - "node": ">= 14" + "node": ">= 0.8.0" } }, - "node_modules/pac-proxy-agent/node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", + "node_modules/prettier": { + "version": "2.8.4", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.4.tgz", + "integrity": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==", "dev": true, - "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" + "bin": { + "prettier": "bin-prettier.js" }, "engines": { - "node": ">= 14" + "node": ">=10.13.0" + }, + "funding": { + "url": "https://github.com/prettier/prettier?sponsor=1" } }, - "node_modules/pac-proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", - "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "node_modules/prettier-eslint": { + "version": "8.8.2", + "resolved": "https://registry.npmjs.org/prettier-eslint/-/prettier-eslint-8.8.2.tgz", + "integrity": "sha512-2UzApPuxi2yRoyMlXMazgR6UcH9DKJhNgCviIwY3ixZ9THWSSrUww5vkiZ3C48WvpFl1M1y/oU63deSy1puWEA==", "dev": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" + "babel-runtime": "^6.26.0", + "common-tags": "^1.4.0", + "dlv": "^1.1.0", + "eslint": "^4.0.0", + "indent-string": "^3.2.0", + "lodash.merge": "^4.6.0", + "loglevel-colored-level-prefix": "^1.0.0", + "prettier": "^1.7.0", + "pretty-format": "^23.0.1", + "require-relative": "^0.8.7", + "typescript": "^2.5.1", + "typescript-eslint-parser": "^16.0.0", + "vue-eslint-parser": "^2.0.2" }, "engines": { - "node": ">= 14" + "node": ">=4.0.0" } }, - "node_modules/pac-proxy-agent/node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "node_modules/prettier-eslint/node_modules/acorn": { + "version": "5.7.4", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", + "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", "dev": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">= 14" + "node": ">=0.4.0" } }, - "node_modules/pac-resolver": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/pac-resolver/-/pac-resolver-7.0.1.tgz", - "integrity": "sha512-5NPgf87AT2STgwa2ntRMr45jTKrYBGkVU36yT0ig/n/GMAa3oPqhZfIQ2kMEimReg0+t9kZViDVZ83qfVUlckg==", + "node_modules/prettier-eslint/node_modules/acorn-jsx": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", + "integrity": "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==", "dev": true, "dependencies": { - "degenerator": "^5.0.0", - "netmask": "^2.0.2" - }, - "engines": { - "node": ">= 14" + "acorn": "^3.0.4" } }, - "node_modules/package-json": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/package-json/-/package-json-8.1.1.tgz", - "integrity": "sha512-cbH9IAIJHNj9uXi196JVsRlt7cHKak6u/e6AkL/bkRelZ7rlL3X1YKxsZwa36xipOEKAsdtmaG6aAJoM1fx2zA==", + "node_modules/prettier-eslint/node_modules/acorn-jsx/node_modules/acorn": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", + "integrity": "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==", "dev": true, - "dependencies": { - "got": "^12.1.0", - "registry-auth-token": "^5.0.1", - "registry-url": "^6.0.0", - "semver": "^7.3.7" + "bin": { + "acorn": "bin/acorn" }, "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=0.4.0" } }, - "node_modules/package-json/node_modules/got": { - "version": "12.6.1", - "resolved": "https://registry.npmjs.org/got/-/got-12.6.1.tgz", - "integrity": "sha512-mThBblvlAF1d4O5oqyvN+ZxLAYwIJK7bpMxgYqPD9okW0C3qm5FFn7k811QrcuEBwaogR3ngOFoCfs6mRv7teQ==", + "node_modules/prettier-eslint/node_modules/ajv": { + "version": "5.5.2", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", + "integrity": "sha512-Ajr4IcMXq/2QmMkEmSvxqfLN5zGmJ92gHXAeOXq1OekoH2rfDNsgdDoL2f7QaRCy7G/E6TpxBVdRuNraMztGHw==", "dev": true, "dependencies": { - "@sindresorhus/is": "^5.2.0", - "@szmarczak/http-timer": "^5.0.1", - "cacheable-lookup": "^7.0.0", - "cacheable-request": "^10.2.8", - "decompress-response": "^6.0.0", - "form-data-encoder": "^2.1.2", - "get-stream": "^6.0.1", - "http2-wrapper": "^2.1.10", - "lowercase-keys": "^3.0.0", - "p-cancelable": "^3.0.0", - "responselike": "^3.0.0" - }, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sindresorhus/got?sponsor=1" + "co": "^4.6.0", + "fast-deep-equal": "^1.0.0", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.3.0" } }, - "node_modules/param-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", - "integrity": "sha512-RXlj7zCYokReqWpOPH9oYivUzLYZ5vAPIfEmCTNViosC78F8F0H9y7T7gG2M39ymgutxF5gcFEsyZQSph9Bp3A==", + "node_modules/prettier-eslint/node_modules/ansi-regex": { + "version": "3.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", + "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "dev": true, - "dependencies": { - "dot-case": "^3.0.4", - "tslib": "^2.0.3" + "engines": { + "node": ">=4" } }, - "node_modules/param-case/node_modules/dot-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/dot-case/-/dot-case-3.0.4.tgz", - "integrity": "sha512-Kv5nKlh6yRrdrGvxeJ2e5y2eRUpkUosIW4A2AS38zwSz27zu7ufDwQPi5Jhs3XAlGNetl3bmnGhQsMtkKJnj3w==", + "node_modules/prettier-eslint/node_modules/argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", "dev": true, "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "sprintf-js": "~1.0.2" } }, - "node_modules/param-case/node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "node_modules/prettier-eslint/node_modules/cross-spawn": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", + "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", "dev": true, "dependencies": { - "tslib": "^2.0.3" + "lru-cache": "^4.0.1", + "shebang-command": "^1.2.0", + "which": "^1.2.9" } }, - "node_modules/param-case/node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "node_modules/prettier-eslint/node_modules/debug": { + "version": "3.2.7", + "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", + "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", "dev": true, "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "ms": "^2.1.1" } }, - "node_modules/parent-module": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/parent-module/-/parent-module-1.0.1.tgz", - "integrity": "sha512-GQ2EWRpQV8/o+Aw8YqtfZZPfNRWZYkbidE9k5rpl/hC3vtHHBfGm2Ifi6qWV+coDGkrUKZAxE3Lot5kcsRlh+g==", + "node_modules/prettier-eslint/node_modules/doctrine": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", + "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", "dev": true, "dependencies": { - "callsites": "^3.0.0" + "esutils": "^2.0.2" }, "engines": { - "node": ">=6" + "node": ">=0.10.0" } }, - "node_modules/parse-data-uri": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/parse-data-uri/-/parse-data-uri-0.2.0.tgz", - "integrity": "sha512-uOtts8NqDcaCt1rIsO3VFDRsAfgE4c6osG4d9z3l4dCBlxYFzni6Di/oNU270SDrjkfZuUvLZx1rxMyqh46Y9w==", + "node_modules/prettier-eslint/node_modules/eslint": { + "version": "4.19.1", + "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz", + "integrity": "sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ==", + "dev": true, "dependencies": { - "data-uri-to-buffer": "0.0.3" + "ajv": "^5.3.0", + "babel-code-frame": "^6.22.0", + "chalk": "^2.1.0", + "concat-stream": "^1.6.0", + "cross-spawn": "^5.1.0", + "debug": "^3.1.0", + "doctrine": "^2.1.0", + "eslint-scope": "^3.7.1", + "eslint-visitor-keys": "^1.0.0", + "espree": "^3.5.4", + "esquery": "^1.0.0", + "esutils": "^2.0.2", + "file-entry-cache": "^2.0.0", + "functional-red-black-tree": "^1.0.1", + "glob": "^7.1.2", + "globals": "^11.0.1", + "ignore": "^3.3.3", + "imurmurhash": "^0.1.4", + "inquirer": "^3.0.6", + "is-resolvable": "^1.0.0", + "js-yaml": "^3.9.1", + "json-stable-stringify-without-jsonify": "^1.0.1", + "levn": "^0.3.0", + "lodash": "^4.17.4", + "minimatch": "^3.0.2", + "mkdirp": "^0.5.1", + "natural-compare": "^1.4.0", + "optionator": "^0.8.2", + "path-is-inside": "^1.0.2", + "pluralize": "^7.0.0", + "progress": "^2.0.0", + "regexpp": "^1.0.1", + "require-uncached": "^1.0.3", + "semver": "^5.3.0", + "strip-ansi": "^4.0.0", + "strip-json-comments": "~2.0.1", + "table": "4.0.2", + "text-table": "~0.2.0" + }, + "bin": { + "eslint": "bin/eslint.js" + }, + "engines": { + "node": ">=4" } }, - "node_modules/parse-json": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-5.2.0.tgz", - "integrity": "sha512-ayCKvm/phCGxOkYRSCM82iDwct8/EonSEgCSxWxD7ve6jHggsFl4fZVQBPRNgQoKiuV/odhFrGzQXZwbifC8Rg==", + "node_modules/prettier-eslint/node_modules/eslint-scope": { + "version": "3.7.3", + "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz", + "integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==", "dev": true, "dependencies": { - "@babel/code-frame": "^7.0.0", - "error-ex": "^1.3.1", - "json-parse-even-better-errors": "^2.3.0", - "lines-and-columns": "^1.1.6" + "esrecurse": "^4.1.0", + "estraverse": "^4.1.1" }, "engines": { - "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "node": ">=4.0.0" } }, - "node_modules/parse-path": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/parse-path/-/parse-path-7.0.0.tgz", - "integrity": "sha512-Euf9GG8WT9CdqwuWJGdf3RkUcTBArppHABkO7Lm8IzRQp0e2r/kkFnmhu4TSK30Wcu5rVAZLmfPKSBBi9tWFog==", + "node_modules/prettier-eslint/node_modules/eslint-visitor-keys": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", + "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", "dev": true, - "dependencies": { - "protocols": "^2.0.0" + "engines": { + "node": ">=4" } }, - "node_modules/parse-url": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/parse-url/-/parse-url-8.1.0.tgz", - "integrity": "sha512-xDvOoLU5XRrcOZvnI6b8zA6n9O9ejNk/GExuz1yBuWUGn9KA97GI6HTs6u02wKara1CeVmZhH+0TZFdWScR89w==", + "node_modules/prettier-eslint/node_modules/espree": { + "version": "3.5.4", + "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", + "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", "dev": true, "dependencies": { - "parse-path": "^7.0.0" + "acorn": "^5.5.0", + "acorn-jsx": "^3.0.0" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/parse5": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-6.0.1.tgz", - "integrity": "sha512-Ofn/CTFzRGTTxwpNEs9PP93gXShHcTq255nzRYSKe8AkVpZY7e1fpmTfOyoIvjP5HG7Z2ZM7VS9PPhQGW2pOpw==", - "dev": true - }, - "node_modules/parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", + "node_modules/prettier-eslint/node_modules/estraverse": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", + "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">=4.0" } }, - "node_modules/pascal-case": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/pascal-case/-/pascal-case-3.1.2.tgz", - "integrity": "sha512-uWlGT3YSnK9x3BQJaOdcZwrnV6hPpd8jFH1/ucpiLRPh/2zCVJKS19E4GvYHvaCcACn3foXZ0cLB9Wrx1KGe5g==", + "node_modules/prettier-eslint/node_modules/fast-deep-equal": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", + "integrity": "sha512-fueX787WZKCV0Is4/T2cyAdM4+x1S3MXXOAhavE1ys/W42SHAPacLTQhucja22QBYrfGw50M2sRiXPtTGv9Ymw==", + "dev": true + }, + "node_modules/prettier-eslint/node_modules/file-entry-cache": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", + "integrity": "sha512-uXP/zGzxxFvFfcZGgBIwotm+Tdc55ddPAzF7iHshP4YGaXMww7rSF9peD9D1sui5ebONg5UobsZv+FfgEpGv/w==", "dev": true, "dependencies": { - "no-case": "^3.0.4", - "tslib": "^2.0.3" + "flat-cache": "^1.2.1", + "object-assign": "^4.0.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pascal-case/node_modules/lower-case": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-2.0.2.tgz", - "integrity": "sha512-7fm3l3NAF9WfN6W3JOmf5drwpVqX78JtoGJ3A6W0a6ZnldM41w2fV5D490psKFTpMds8TJse/eHLFFsNHHjHgg==", + "node_modules/prettier-eslint/node_modules/flat-cache": { + "version": "1.3.4", + "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz", + "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", "dev": true, "dependencies": { - "tslib": "^2.0.3" + "circular-json": "^0.3.1", + "graceful-fs": "^4.1.2", + "rimraf": "~2.6.2", + "write": "^0.2.1" + }, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pascal-case/node_modules/no-case": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-3.0.4.tgz", - "integrity": "sha512-fgAN3jGAh+RoxUGZHTSOLJIqUc2wmoBwGR4tbpNAKmmovFoWq0OdRkb0VkldReO2a2iBT/OEulG9XSUc10r3zg==", + "node_modules/prettier-eslint/node_modules/ignore": { + "version": "3.3.10", + "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", + "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", + "dev": true + }, + "node_modules/prettier-eslint/node_modules/js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", "dev": true, "dependencies": { - "lower-case": "^2.0.2", - "tslib": "^2.0.3" + "argparse": "^1.0.7", + "esprima": "^4.0.0" + }, + "bin": { + "js-yaml": "bin/js-yaml.js" } }, - "node_modules/path-browserify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-1.0.1.tgz", - "integrity": "sha512-b7uo2UCUOYZcnF/3ID0lulOJi/bafxa1xPe7ZPsammBSpjSWQkjNxlt635YGS2MiR9GjvuXCtz2emr3jbsz98g==", + "node_modules/prettier-eslint/node_modules/json-schema-traverse": { + "version": "0.3.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", + "integrity": "sha512-4JD/Ivzg7PoW8NzdrBSr3UFwC9mHgvI7Z6z3QGBsSHgKaRTUDmyZAAKJo2UbG1kUVfS9WS8bi36N49U1xw43DA==", "dev": true }, - "node_modules/path-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/path-case/-/path-case-2.1.1.tgz", - "integrity": "sha512-Ou0N05MioItesaLr9q8TtHVWmJ6fxWdqKB2RohFmNWVyJ+2zeKIeDNWAN6B/Pe7wpzWChhZX6nONYmOnMeJQ/Q==", + "node_modules/prettier-eslint/node_modules/levn": { + "version": "0.3.0", + "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", + "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", "dev": true, "dependencies": { - "no-case": "^2.2.0" + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2" + }, + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/path-exists": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-4.0.0.tgz", - "integrity": "sha512-ak9Qy5Q7jYb2Wwcey5Fpvg2KoAc/ZIhLSLOSBmRmygPsGwkVVt0fZa0qrtMz+m6tJTAHfZQ8FnmB4MG4LWy7/w==", + "node_modules/prettier-eslint/node_modules/lru-cache": { + "version": "4.1.5", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", + "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "pseudomap": "^1.0.2", + "yallist": "^2.1.2" } }, - "node_modules/path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha512-AVbw3UJ2e9bq64vSaS9Am0fje1Pa8pbGqTTsmXfaIiMpnr5DlDhfJOuLj9Sf95ZPVDAUerDfEk88MPmPe7UCQg==", + "node_modules/prettier-eslint/node_modules/optionator": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", + "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", "dev": true, + "dependencies": { + "deep-is": "~0.1.3", + "fast-levenshtein": "~2.0.6", + "levn": "~0.3.0", + "prelude-ls": "~1.1.2", + "type-check": "~0.3.2", + "word-wrap": "~1.2.3" + }, "engines": { - "node": ">=0.10.0" + "node": ">= 0.8.0" } }, - "node_modules/path-is-inside": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-is-inside/-/path-is-inside-1.0.2.tgz", - "integrity": "sha512-DUWJr3+ULp4zXmol/SZkFf3JGsS9/SIv+Y3Rt93/UjPpDpklB5f1er4O3POIbUuUJ3FXgqte2Q7SrU6zAqwk8w==", - "dev": true - }, - "node_modules/path-key": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-3.1.1.tgz", - "integrity": "sha512-ojmeN0qd+y0jszEtoY48r0Peq5dwMEkIlCOu6Q5f41lfkswXuKtYrhgoTpLnyIcHm24Uhqx+5Tqm2InSwLhE6Q==", + "node_modules/prettier-eslint/node_modules/prelude-ls": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", + "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", "dev": true, "engines": { - "node": ">=8" + "node": ">= 0.8.0" } }, - "node_modules/path-parse": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.7.tgz", - "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", - "dev": true - }, - "node_modules/path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha512-5DFkuoqlv1uYQKxy8omFBeJPQcdoE07Kv2sferDCrAq1ohOU+MSDswDIbnx3YAM60qIOnYa53wBhXW0EbMonrQ==", - "dev": true - }, - "node_modules/path-type": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-4.0.0.tgz", - "integrity": "sha512-gDKb8aZMDeD/tZWs9P6+q0J9Mwkdl6xMV8TjnGP3qJVJ06bdMgkbBlLU8IdfOsIsFz2BW1rNVT3XuNEl8zPAvw==", + "node_modules/prettier-eslint/node_modules/prettier": { + "version": "1.19.1", + "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", + "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", "dev": true, + "bin": { + "prettier": "bin-prettier.js" + }, "engines": { - "node": ">=8" + "node": ">=4" } }, - "node_modules/pathe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", - "integrity": "sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==", - "dev": true - }, - "node_modules/pend": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", - "integrity": "sha512-F3asv42UuXchdzt+xXqfW1OGlVBe+mxa2mqI0pg5yAHZPvFmY3Y6drSf/GQ1A86WgWEN9Kzh/WrgKa6iGcHXLg==", - "dev": true - }, - "node_modules/performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha512-7EAHlyLHI56VEIdK57uwHdHKIaAGbnXPiw0yWbarQZOKaKpvUIgW0jWRVLiatnM+XXlSwsanIBH/hzGMJulMow==" - }, - "node_modules/picocolors": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.0.0.tgz", - "integrity": "sha512-1fygroTLlHu66zi26VoTDv8yRgm0Fccecssto+MhsZ0D/DGW2sm8E8AjW7NU5VVTRt5GxbeZ5qBuJr+HyLYkjQ==", - "dev": true + "node_modules/prettier-eslint/node_modules/pretty-format": { + "version": "23.6.0", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-23.6.0.tgz", + "integrity": "sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==", + "dev": true, + "dependencies": { + "ansi-regex": "^3.0.0", + "ansi-styles": "^3.2.0" + } }, - "node_modules/picomatch": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/picomatch/-/picomatch-2.3.1.tgz", - "integrity": "sha512-JU3teHTNjmE2VCGFzuY8EXzCDVwEqB2a8fsIvwaStHhAWJEeVd1o1QD80CU6+ZdEXXSLbSsuLwJjkCBWqRQUVA==", + "node_modules/prettier-eslint/node_modules/regexpp": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz", + "integrity": "sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==", "dev": true, "engines": { - "node": ">=8.6" - }, - "funding": { - "url": "https://github.com/sponsors/jonschlinkert" + "node": ">=4.0.0" } }, - "node_modules/pidtree": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/pidtree/-/pidtree-0.6.0.tgz", - "integrity": "sha512-eG2dWTVw5bzqGRztnHExczNxt5VGsE6OwTeCG3fdUf9KBsZzO3R5OIIIzWR+iZA0NtZ+RDVdaoE2dK1cn6jH4g==", + "node_modules/prettier-eslint/node_modules/rimraf": { + "version": "2.6.3", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", + "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", "dev": true, - "bin": { - "pidtree": "bin/pidtree.js" + "dependencies": { + "glob": "^7.1.3" }, - "engines": { - "node": ">=0.10" + "bin": { + "rimraf": "bin.js" } }, - "node_modules/pify": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/pify/-/pify-4.0.1.tgz", - "integrity": "sha512-uB80kBFb/tfd68bVleG9T5GGsGPjJrLAUpR5PZIrhBnIaRTQRjqdJSsIKkOP6OAIFbj7GOrcudc5pNjZ+geV2g==", + "node_modules/prettier-eslint/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", "dev": true, - "engines": { - "node": ">=6" + "bin": { + "semver": "bin/semver" } }, - "node_modules/pino": { - "version": "4.17.6", - "resolved": "https://registry.npmjs.org/pino/-/pino-4.17.6.tgz", - "integrity": "sha512-LFDwmhyWLBnmwO/2UFbWu1jEGVDzaPupaVdx0XcZ3tIAx1EDEBauzxXf2S0UcFK7oe+X9MApjH0hx9U1XMgfCA==", + "node_modules/prettier-eslint/node_modules/shebang-command": { + "version": "1.2.0", + "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", + "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", "dev": true, "dependencies": { - "chalk": "^2.4.1", - "fast-json-parse": "^1.0.3", - "fast-safe-stringify": "^1.2.3", - "flatstr": "^1.0.5", - "pino-std-serializers": "^2.0.0", - "pump": "^3.0.0", - "quick-format-unescaped": "^1.1.2", - "split2": "^2.2.0" + "shebang-regex": "^1.0.0" }, - "bin": { - "pino": "bin.js" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pino-std-serializers": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/pino-std-serializers/-/pino-std-serializers-2.5.0.tgz", - "integrity": "sha512-wXqbqSrIhE58TdrxxlfLwU9eDhrzppQDvGhBEr1gYbzzM4KKo3Y63gSjiDXRKLVS2UOXdPNR2v+KnQgNrs+xUg==", - "dev": true - }, - "node_modules/pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "node_modules/prettier-eslint/node_modules/shebang-regex": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", + "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", "dev": true, "engines": { - "node": ">= 6" + "node": ">=0.10.0" } }, - "node_modules/pixelsmith": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/pixelsmith/-/pixelsmith-2.6.0.tgz", - "integrity": "sha512-1W0C8EVxAPJwsCodw/+dfeEtdSc8JuHFipVylf51PIvh7S7Q33qmVCCzeWQp1y1sXpZ52iXGY2D/ICMyHPIULw==", + "node_modules/prettier-eslint/node_modules/strip-ansi": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", + "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "dev": true, "dependencies": { - "async": "^3.2.3", - "concat-stream": "~1.5.1", - "get-pixels": "~3.3.0", - "mime-types": "~2.1.7", - "ndarray": "~1.0.15", - "obj-extend": "~0.1.0", - "save-pixels": "~2.3.0", - "vinyl-file": "~1.3.0" + "ansi-regex": "^3.0.0" }, "engines": { - "node": ">= 12.0.0" - } - }, - "node_modules/pixelsmith/node_modules/concat-stream": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/concat-stream/-/concat-stream-1.5.2.tgz", - "integrity": "sha512-H6xsIBfQ94aESBG8jGHXQ7i5AEpy5ZeVaLDOisDICiTCKpqEfr34/KmTrspKQNoLKNu9gTkovlpQcUi630AKiQ==", - "engines": [ - "node >= 0.8" - ], - "dependencies": { - "inherits": "~2.0.1", - "readable-stream": "~2.0.0", - "typedarray": "~0.0.5" + "node": ">=4" } }, - "node_modules/pixelsmith/node_modules/process-nextick-args": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-1.0.7.tgz", - "integrity": "sha512-yN0WQmuCX63LP/TMvAg31nvT6m4vDqJEiiv2CAZqWOGNWutc9DfDk1NPYYmKUFmaVM2UwDowH4u5AHWYP/jxKw==" - }, - "node_modules/pixelsmith/node_modules/readable-stream": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.0.6.tgz", - "integrity": "sha512-TXcFfb63BQe1+ySzsHZI/5v1aJPCShfqvWJ64ayNImXMsN1Cd0YGk/wm8KB7/OeessgPc9QvS9Zou8QTkFzsLw==", - "dependencies": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "~1.0.0", - "process-nextick-args": "~1.0.6", - "string_decoder": "~0.10.x", - "util-deprecate": "~1.0.1" + "node_modules/prettier-eslint/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "dev": true, + "engines": { + "node": ">=0.10.0" } }, - "node_modules/pixelsmith/node_modules/string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha512-ev2QzSzWPYmy9GuqfIVildA4OdcGLeFZQrq5ys6RtiuF+RQQiZWr8TZNyAcuVXyQRYfEO+MsoB/1BuQVhOJuoQ==" - }, - "node_modules/pixi-viewport": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/pixi-viewport/-/pixi-viewport-5.0.1.tgz", - "integrity": "sha512-fIILU9xztqGnhGF5SYfjn1Rir/7asWkJ8zSUay2hwzPrdGTWFtB4yiIlZDeFaLf7KHA04RRb2kI01Sy1kNksAw==" - }, - "node_modules/pixi.js": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/pixi.js/-/pixi.js-7.2.4.tgz", - "integrity": "sha512-nBH60meoLnHxoMFz17HoMxXS4uJpG5jwIdL+Gx2S11TzWgP3iKF+/WLOTrkSdyuQoQSdIBxVqpnYii0Wiox15A==", + "node_modules/prettier-eslint/node_modules/type-check": { + "version": "0.3.2", + "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", + "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "dev": true, "dependencies": { - "@pixi/accessibility": "7.2.4", - "@pixi/app": "7.2.4", - "@pixi/assets": "7.2.4", - "@pixi/compressed-textures": "7.2.4", - "@pixi/core": "7.2.4", - "@pixi/display": "7.2.4", - "@pixi/events": "7.2.4", - "@pixi/extensions": "7.2.4", - "@pixi/extract": "7.2.4", - "@pixi/filter-alpha": "7.2.4", - "@pixi/filter-blur": "7.2.4", - "@pixi/filter-color-matrix": "7.2.4", - "@pixi/filter-displacement": "7.2.4", - "@pixi/filter-fxaa": "7.2.4", - "@pixi/filter-noise": "7.2.4", - "@pixi/graphics": "7.2.4", - "@pixi/mesh": "7.2.4", - "@pixi/mesh-extras": "7.2.4", - "@pixi/mixin-cache-as-bitmap": "7.2.4", - "@pixi/mixin-get-child-by-name": "7.2.4", - "@pixi/mixin-get-global-position": "7.2.4", - "@pixi/particle-container": "7.2.4", - "@pixi/prepare": "7.2.4", - "@pixi/sprite": "7.2.4", - "@pixi/sprite-animated": "7.2.4", - "@pixi/sprite-tiling": "7.2.4", - "@pixi/spritesheet": "7.2.4", - "@pixi/text": "7.2.4", - "@pixi/text-bitmap": "7.2.4", - "@pixi/text-html": "7.2.4" + "prelude-ls": "~1.1.2" }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/pixijs" - } - }, - "node_modules/pixi.js/node_modules/@pixi/accessibility": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/accessibility/-/accessibility-7.2.4.tgz", - "integrity": "sha512-EVjuqUqv9FeYFXCv0S0qj1hgCtbAMNBPCbOGEtiMogpM++/IySxBZvcOYg3rRgo9inwt2s4Bi7kUiqMPD8hItw==", - "peerDependencies": { - "@pixi/core": "7.2.4", - "@pixi/display": "7.2.4", - "@pixi/events": "7.2.4" + "engines": { + "node": ">= 0.8.0" } }, - "node_modules/pixi.js/node_modules/@pixi/compressed-textures": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/compressed-textures/-/compressed-textures-7.2.4.tgz", - "integrity": "sha512-atnWyw/ot/Wg69qhgskKiuTYCZx15IxV35sa0KyXMthyjyvDLCIvOn0nczM6wCBy9H96SjJbfgynVWhVrip6qw==", - "peerDependencies": { - "@pixi/assets": "7.2.4", - "@pixi/core": "7.2.4" + "node_modules/prettier-eslint/node_modules/typescript": { + "version": "2.9.2", + "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz", + "integrity": "sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==", + "dev": true, + "bin": { + "tsc": "bin/tsc", + "tsserver": "bin/tsserver" + }, + "engines": { + "node": ">=4.2.0" } }, - "node_modules/pixi.js/node_modules/@pixi/events": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/events/-/events-7.2.4.tgz", - "integrity": "sha512-/JtmoB98fzIU8giN9xvlRvmvOi6u4MaD2DnKNOMHkQ1MBraj3pmrXM9fZ0JbNzi+324GraAAY76QidgHjIYoYQ==", + "node_modules/prettier-eslint/node_modules/typescript-eslint-parser": { + "version": "16.0.1", + "resolved": "https://registry.npmjs.org/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz", + "integrity": "sha512-IKawLTu4A2xN3aN/cPLxvZ0bhxZHILGDKTZWvWNJ3sLNhJ3PjfMEDQmR2VMpdRPrmWOadgWXRwjLBzSA8AGsaQ==", + "dev": true, + "dependencies": { + "lodash.unescape": "4.0.1", + "semver": "5.5.0" + }, + "engines": { + "node": ">=6.14.0" + }, "peerDependencies": { - "@pixi/core": "7.2.4", - "@pixi/display": "7.2.4" + "typescript": "*" } }, - "node_modules/pixi.js/node_modules/@pixi/extract": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/extract/-/extract-7.2.4.tgz", - "integrity": "sha512-wlXZg+J2L/1jQhRi5nZQP/cXshovhjksjss91eAKMvY5aGxNAQovCP4xotJ/XJjfTvPMpeRzHPFYzm3PrOPQ7g==", - "peerDependencies": { - "@pixi/core": "7.2.4" + "node_modules/prettier-eslint/node_modules/typescript-eslint-parser/node_modules/semver": { + "version": "5.5.0", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", + "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "dev": true, + "bin": { + "semver": "bin/semver" } }, - "node_modules/pixi.js/node_modules/@pixi/filter-alpha": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/filter-alpha/-/filter-alpha-7.2.4.tgz", - "integrity": "sha512-UTUMSGyktUr+I9vmigqJo9iUhb0nwGyqTTME2xBWZvVGCnl5z+/wHxvIBBCe5pNZ66IM15pGXQ4cDcfqCuP2kA==", + "node_modules/prettier-eslint/node_modules/vue-eslint-parser": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz", + "integrity": "sha512-ZezcU71Owm84xVF6gfurBQUGg8WQ+WZGxgDEQu1IHFBZNx7BFZg3L1yHxrCBNNwbwFtE1GuvfJKMtb6Xuwc/Bw==", + "dev": true, + "dependencies": { + "debug": "^3.1.0", + "eslint-scope": "^3.7.1", + "eslint-visitor-keys": "^1.0.0", + "espree": "^3.5.2", + "esquery": "^1.0.0", + "lodash": "^4.17.4" + }, + "engines": { + "node": ">=4" + }, "peerDependencies": { - "@pixi/core": "7.2.4" + "eslint": ">=3.9.0" } }, - "node_modules/pixi.js/node_modules/@pixi/filter-blur": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/filter-blur/-/filter-blur-7.2.4.tgz", - "integrity": "sha512-aLyXIoxy14bTansCPtbY8x7Sdn2OrrqkF/pcKiRXHJGGhi7wPacvB/NcmYJdnI/n2ExQ6V5Njuj/nfrsejVwcA==", - "peerDependencies": { - "@pixi/core": "7.2.4" + "node_modules/prettier-eslint/node_modules/which": { + "version": "1.3.1", + "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", + "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", + "dev": true, + "dependencies": { + "isexe": "^2.0.0" + }, + "bin": { + "which": "bin/which" } }, - "node_modules/pixi.js/node_modules/@pixi/filter-color-matrix": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/filter-color-matrix/-/filter-color-matrix-7.2.4.tgz", - "integrity": "sha512-DFtayybYXoUh73eHUFRK5REbi1t3FZuVUnaQTj+euHKF9L7EaYc3Q9wctpx1WPRcwkqEX50M4SNFhxpA7Pxtaw==", - "peerDependencies": { - "@pixi/core": "7.2.4" - } + "node_modules/prettier-eslint/node_modules/yallist": { + "version": "2.1.2", + "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", + "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "dev": true }, - "node_modules/pixi.js/node_modules/@pixi/filter-displacement": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/filter-displacement/-/filter-displacement-7.2.4.tgz", - "integrity": "sha512-Simq3IBJKt7+Gvk4kK7OFkfoeYUMhNhIyATCdeT+Jkdkq5WV7pYnH5hqO0YW7eAHrgjV13yn6t4H/GC4+6LhEA==", - "peerDependencies": { - "@pixi/core": "7.2.4" + "node_modules/prettier-linter-helpers": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", + "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", + "dev": true, + "dependencies": { + "fast-diff": "^1.1.2" + }, + "engines": { + "node": ">=6.0.0" } }, - "node_modules/pixi.js/node_modules/@pixi/filter-fxaa": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/filter-fxaa/-/filter-fxaa-7.2.4.tgz", - "integrity": "sha512-qzKjdL+Ih18uGTJLg8tT/H+YCsTeGkw2uF7lyKnw/lxGLJQhLWIhM95M9qSNgxbXyW1vp7SbG81a9aAEz2HAhA==", - "peerDependencies": { - "@pixi/core": "7.2.4" + "node_modules/pretty-error": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", + "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", + "dev": true, + "dependencies": { + "lodash": "^4.17.20", + "renderkid": "^3.0.0" } }, - "node_modules/pixi.js/node_modules/@pixi/filter-noise": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/filter-noise/-/filter-noise-7.2.4.tgz", - "integrity": "sha512-QAU9Ybj2ZQrWM9ZEjTTC0iLnQcuyNoZNRinxSbg1G0yacpmsSb9wvV5ltIZ66+hfY+90+u2Nudt/v9g6pvOdGg==", - "peerDependencies": { - "@pixi/core": "7.2.4" + "node_modules/pretty-format": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", + "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1", + "ansi-styles": "^5.0.0", + "react-is": "^17.0.1" + }, + "engines": { + "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" } }, - "node_modules/pixi.js/node_modules/@pixi/mixin-cache-as-bitmap": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/mixin-cache-as-bitmap/-/mixin-cache-as-bitmap-7.2.4.tgz", - "integrity": "sha512-95L/9nzfLHw6GoeqqRl/RjSloKvRt0xrc2inCmjMZvMsFUEtHN2F8IWd1k5vcv0S+83NCreFkJg6nJm1m5AZqg==", - "peerDependencies": { - "@pixi/core": "7.2.4", - "@pixi/display": "7.2.4", - "@pixi/sprite": "7.2.4" + "node_modules/pretty-format/node_modules/ansi-styles": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", + "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "dev": true, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/pixi.js/node_modules/@pixi/mixin-get-child-by-name": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/mixin-get-child-by-name/-/mixin-get-child-by-name-7.2.4.tgz", - "integrity": "sha512-9g17KgSBEEhkinnKk4dqmxagzHOCPSTvGB6lOopBq4yyXmr/2WVv+QGjuzE0O+p80szQeBJjPBQxzrfBILaSRw==", - "peerDependencies": { - "@pixi/display": "7.2.4" + "node_modules/pretty-hrtime": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", + "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "dev": true, + "engines": { + "node": ">= 0.8" } }, - "node_modules/pixi.js/node_modules/@pixi/mixin-get-global-position": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/mixin-get-global-position/-/mixin-get-global-position-7.2.4.tgz", - "integrity": "sha512-UrAUF2BXCeWtFgR2m+er41Ky7zShT7r228cZkB6ZfYwMeThhwqG5mH68UeCyP6p68JMpT1gjI2DPfeSRY3ecnA==", - "peerDependencies": { - "@pixi/core": "7.2.4", - "@pixi/display": "7.2.4" + "node_modules/process": { + "version": "0.11.10", + "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", + "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", + "dev": true, + "engines": { + "node": ">= 0.6.0" } }, - "node_modules/pixi.js/node_modules/@pixi/prepare": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/prepare/-/prepare-7.2.4.tgz", - "integrity": "sha512-Yff5Sh4kTLdKc5VkkM44LW9gpj7Izw8ns3P1TzWxqeGjzPZ3folr/tQujGL+Qw+8A9VESp+hX9MSIHyw+jpyrg==", - "peerDependencies": { - "@pixi/core": "7.2.4", - "@pixi/display": "7.2.4", - "@pixi/graphics": "7.2.4", - "@pixi/text": "7.2.4" - } + "node_modules/process-nextick-args": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", + "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" }, - "node_modules/pixi.js/node_modules/@pixi/spritesheet": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/spritesheet/-/spritesheet-7.2.4.tgz", - "integrity": "sha512-LNmlavyiMQeCF0U4S+yhzxUYmPmat6EpLjLnkGukQTZV5CZkxDCVgXM9uKoRF2DvNydj4yuwZ6+JjK8QssHI8Q==", - "peerDependencies": { - "@pixi/assets": "7.2.4", - "@pixi/core": "7.2.4" + "node_modules/progress": { + "version": "2.0.3", + "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", + "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", + "dev": true, + "engines": { + "node": ">=0.4.0" } }, - "node_modules/pixi.js/node_modules/@pixi/text-html": { - "version": "7.2.4", - "resolved": "https://registry.npmjs.org/@pixi/text-html/-/text-html-7.2.4.tgz", - "integrity": "sha512-0NfLAE/w51ZtatxVqLvDS62iO0VLKsSdctqTAVv4Zlgdk9TKJmX1WUucHJboTvbm2SbDjNDGfZ6qXM5nAslIDQ==", - "peerDependencies": { - "@pixi/core": "7.2.4", - "@pixi/display": "7.2.4", - "@pixi/sprite": "7.2.4", - "@pixi/text": "7.2.4" - } + "node_modules/promise-inflight": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", + "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", + "dev": true, + "optional": true, + "peer": true }, - "node_modules/pkg-dir": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-4.2.0.tgz", - "integrity": "sha512-HRDzbaKjC+AOWVXxAU/x54COGeIv9eb+6CkDSQoNTt4XyWoIJvuPsXizxu/Fr23EiekbtZwmh1IcIG/l/a10GQ==", + "node_modules/promise-retry": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", + "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", "dev": true, + "optional": true, + "peer": true, "dependencies": { - "find-up": "^4.0.0" + "err-code": "^2.0.2", + "retry": "^0.12.0" }, "engines": { - "node": ">=8" + "node": ">=10" } }, - "node_modules/pluralize": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/pluralize/-/pluralize-7.0.0.tgz", - "integrity": "sha512-ARhBOdzS3e41FbkW/XWrTEtukqqLoK5+Z/4UeDaLuSW+39JPeFgs4gCGqsrJHVZX0fUrx//4OF0K1CUGwlIFow==", + "node_modules/promise-retry/node_modules/retry": { + "version": "0.12.0", + "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", + "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", "dev": true, + "optional": true, + "peer": true, "engines": { - "node": ">=4" + "node": ">= 4" } }, - "node_modules/pngjs": { - "version": "3.4.0", - "resolved": "https://registry.npmjs.org/pngjs/-/pngjs-3.4.0.tgz", - "integrity": "sha512-NCrCHhWmnQklfH4MtJMRjZ2a8c80qXeMlQMv2uVp9ISJMTt562SbGd6n2oq0PaPgKm7Z6pL9E2UlLIhC+SHL3w==", - "engines": { - "node": ">=4.0.0" - } - }, - "node_modules/pngjs-nozlib": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/pngjs-nozlib/-/pngjs-nozlib-1.0.0.tgz", - "integrity": "sha512-N1PggqLp9xDqwAoKvGohmZ3m4/N9xpY0nDZivFqQLcpLHmliHnCp9BuNCsOeqHWMuEEgFjpEaq9dZq6RZyy0fA==", + "node_modules/promise.allsettled": { + "version": "1.0.7", + "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.7.tgz", + "integrity": "sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==", + "dev": true, + "dependencies": { + "array.prototype.map": "^1.0.5", + "call-bind": "^1.0.2", + "define-properties": "^1.2.0", + "es-abstract": "^1.22.1", + "get-intrinsic": "^1.2.1", + "iterate-value": "^1.0.2" + }, "engines": { - "iojs": ">= 1.0.0", - "node": ">=0.10.0" + "node": ">= 0.4" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/polished": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/polished/-/polished-4.2.2.tgz", - "integrity": "sha512-Sz2Lkdxz6F2Pgnpi9U5Ng/WdWAUZxmHrNPoVlm3aAemxoy2Qy7LGjQg4uf8qKelDAUW94F4np3iH2YPf2qefcQ==", + "node_modules/prompts": { + "version": "2.4.2", + "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", + "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", "dev": true, "dependencies": { - "@babel/runtime": "^7.17.8" + "kleur": "^3.0.3", + "sisteransi": "^1.0.5" }, "engines": { - "node": ">=10" + "node": ">= 6" } }, - "node_modules/possible-typed-array-names": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.0.0.tgz", - "integrity": "sha512-d7Uw+eZoloe0EHDIYoe+bQ5WXnGMOpmiZFTuMWCwpjzzkL2nTjcKiAk4hh8TjnGye2TwWOk3UXucZ+3rbmBa8Q==", - "dev": true, - "engines": { - "node": ">= 0.4" + "node_modules/prop-types": { + "version": "15.8.1", + "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", + "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "dependencies": { + "loose-envify": "^1.4.0", + "object-assign": "^4.1.1", + "react-is": "^16.13.1" } }, - "node_modules/postcss": { - "version": "8.4.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-8.4.18.tgz", - "integrity": "sha512-Wi8mWhncLJm11GATDaQKobXSNEYGUHeQLiQqDFG1qQ5UTDPTEvKw0Xt5NsTpktGTwLps3ByrWsBrG0rB8YQ9oA==", + "node_modules/prop-types/node_modules/react-is": { + "version": "16.13.1", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", + "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" + }, + "node_modules/proto-list": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", + "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", + "dev": true + }, + "node_modules/protocols": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", + "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", + "dev": true + }, + "node_modules/proxy-addr": { + "version": "2.0.7", + "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", + "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", "dev": true, - "funding": [ - { - "type": "opencollective", - "url": "https://opencollective.com/postcss/" - }, - { - "type": "tidelift", - "url": "https://tidelift.com/funding/github/npm/postcss" - } - ], "dependencies": { - "nanoid": "^3.3.4", - "picocolors": "^1.0.0", - "source-map-js": "^1.0.2" + "forwarded": "0.2.0", + "ipaddr.js": "1.9.1" }, "engines": { - "node": "^10 || ^12 || >=14" + "node": ">= 0.10" } }, - "node_modules/postcss-modules-extract-imports": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-3.0.0.tgz", - "integrity": "sha512-bdHleFnP3kZ4NYDhuGlVK+CMrQ/pqUm8bx/oGL93K6gVwiclvX5x0n76fYMKuIGKzlABOy13zsvqjb0f92TEXw==", + "node_modules/proxy-addr/node_modules/ipaddr.js": { + "version": "1.9.1", + "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", + "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", "dev": true, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 0.10" } }, - "node_modules/postcss-modules-local-by-default": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-4.0.0.tgz", - "integrity": "sha512-sT7ihtmGSF9yhm6ggikHdV0hlziDTX7oFoXtuVWeDd3hHObNkcHRo9V3yg7vCAY7cONyxJC/XXCmmiHHcvX7bQ==", + "node_modules/proxy-agent": { + "version": "6.4.0", + "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", + "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", "dev": true, "dependencies": { - "icss-utils": "^5.0.0", - "postcss-selector-parser": "^6.0.2", - "postcss-value-parser": "^4.1.0" + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "http-proxy-agent": "^7.0.1", + "https-proxy-agent": "^7.0.3", + "lru-cache": "^7.14.1", + "pac-proxy-agent": "^7.0.1", + "proxy-from-env": "^1.1.0", + "socks-proxy-agent": "^8.0.2" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 14" } }, - "node_modules/postcss-modules-scope": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-3.0.0.tgz", - "integrity": "sha512-hncihwFA2yPath8oZ15PZqvWGkWf+XUfQgUGamS4LqoP1anQLOsOJw0vr7J7IwLpoY9fatA2qiGUGmuZL0Iqlg==", + "node_modules/proxy-agent/node_modules/agent-base": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", + "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", "dev": true, "dependencies": { - "postcss-selector-parser": "^6.0.4" + "debug": "^4.3.4" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 14" } }, - "node_modules/postcss-modules-values": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-4.0.0.tgz", - "integrity": "sha512-RDxHkAiEGI78gS2ofyvCsu7iycRv7oqw5xMWn9iMoR0N/7mf9D50ecQqUo5BZ9Zh2vH4bCUR/ktCqbB9m8vJjQ==", + "node_modules/proxy-agent/node_modules/http-proxy-agent": { + "version": "7.0.2", + "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", + "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", "dev": true, "dependencies": { - "icss-utils": "^5.0.0" + "agent-base": "^7.1.0", + "debug": "^4.3.4" }, "engines": { - "node": "^10 || ^12 || >= 14" - }, - "peerDependencies": { - "postcss": "^8.1.0" + "node": ">= 14" } }, - "node_modules/postcss-selector-parser": { - "version": "6.0.10", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-6.0.10.tgz", - "integrity": "sha512-IQ7TZdoaqbT+LCpShg46jnZVlhWD2w6iQYAcYXfHARZ7X1t/UGhhceQDs5X0cGqKvYlHNOuv7Oa1xmb0oQuA3w==", + "node_modules/proxy-agent/node_modules/https-proxy-agent": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", + "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", "dev": true, "dependencies": { - "cssesc": "^3.0.0", - "util-deprecate": "^1.0.2" - }, - "engines": { - "node": ">=4" - } - }, - "node_modules/postcss-value-parser": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-4.2.0.tgz", - "integrity": "sha512-1NNCs6uurfkVbeXG4S8JFT9t19m45ICnif8zWLd5oPSZ50QnwMfK+H3jv408d4jw/7Bttv5axS5IiHoLaVNHeQ==", - "dev": true - }, - "node_modules/prebuild-install": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/prebuild-install/-/prebuild-install-7.1.1.tgz", - "integrity": "sha512-jAXscXWMcCK8GgCoHOfIr0ODh5ai8mj63L2nWrjuAgXE6tDyYGnx4/8o/rCgU+B4JSyZBKbeZqzhtwtC3ovxjw==", - "dependencies": { - "detect-libc": "^2.0.0", - "expand-template": "^2.0.3", - "github-from-package": "0.0.0", - "minimist": "^1.2.3", - "mkdirp-classic": "^0.5.3", - "napi-build-utils": "^1.0.1", - "node-abi": "^3.3.0", - "pump": "^3.0.0", - "rc": "^1.2.7", - "simple-get": "^4.0.0", - "tar-fs": "^2.0.0", - "tunnel-agent": "^0.6.0" - }, - "bin": { - "prebuild-install": "bin.js" + "agent-base": "^7.0.2", + "debug": "4" }, "engines": { - "node": ">=10" + "node": ">= 14" } }, - "node_modules/prelude-ls": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.2.1.tgz", - "integrity": "sha512-vkcDPrRZo1QZLbn5RLGPpg/WmIQ65qoWWhcGKf/b5eplkkarX0m9z8ppCat4mlOqUsWpyNuYgO3VRyrYHSzX5g==", + "node_modules/proxy-agent/node_modules/lru-cache": { + "version": "7.18.3", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", + "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">=12" } }, - "node_modules/prettier": { - "version": "2.8.4", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-2.8.4.tgz", - "integrity": "sha512-vIS4Rlc2FNh0BySk3Wkd6xmwxB0FpOndW5fisM5H8hsZSxU2VWVB5CWIkIjWvrHjIhxk2g3bfMKM87zNTrZddw==", + "node_modules/proxy-agent/node_modules/socks-proxy-agent": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", + "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", "dev": true, - "bin": { - "prettier": "bin-prettier.js" + "dependencies": { + "agent-base": "^7.0.2", + "debug": "^4.3.4", + "socks": "^2.7.1" }, "engines": { - "node": ">=10.13.0" - }, - "funding": { - "url": "https://github.com/prettier/prettier?sponsor=1" + "node": ">= 14" } }, - "node_modules/prettier-eslint": { - "version": "8.8.2", - "resolved": "https://registry.npmjs.org/prettier-eslint/-/prettier-eslint-8.8.2.tgz", - "integrity": "sha512-2UzApPuxi2yRoyMlXMazgR6UcH9DKJhNgCviIwY3ixZ9THWSSrUww5vkiZ3C48WvpFl1M1y/oU63deSy1puWEA==", - "dev": true, + "node_modules/proxy-from-env": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", + "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", + "dev": true + }, + "node_modules/pseudomap": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", + "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "dev": true + }, + "node_modules/psl": { + "version": "1.8.0", + "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", + "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" + }, + "node_modules/pump": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", + "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", "dependencies": { - "babel-runtime": "^6.26.0", - "common-tags": "^1.4.0", - "dlv": "^1.1.0", - "eslint": "^4.0.0", - "indent-string": "^3.2.0", - "lodash.merge": "^4.6.0", - "loglevel-colored-level-prefix": "^1.0.0", - "prettier": "^1.7.0", - "pretty-format": "^23.0.1", - "require-relative": "^0.8.7", - "typescript": "^2.5.1", - "typescript-eslint-parser": "^16.0.0", - "vue-eslint-parser": "^2.0.2" - }, - "engines": { - "node": ">=4.0.0" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/prettier-eslint/node_modules/acorn": { - "version": "5.7.4", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-5.7.4.tgz", - "integrity": "sha512-1D++VG7BhrtvQpNbBzovKNc1FLGGEE/oGe7b9xJm/RFHMBeUaUGpluV9RLjZa47YFdPcDAenEYuq9pQPcMdLJg==", + "node_modules/pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", "dev": true, - "bin": { - "acorn": "bin/acorn" - }, - "engines": { - "node": ">=0.4.0" + "dependencies": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" } }, - "node_modules/prettier-eslint/node_modules/acorn-jsx": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/acorn-jsx/-/acorn-jsx-3.0.1.tgz", - "integrity": "sha512-AU7pnZkguthwBjKgCg6998ByQNIMjbuDQZ8bb78QAFZwPfmKia8AIzgY/gWgqCjnht8JLdXmB4YxA0KaV60ncQ==", + "node_modules/pumpify/node_modules/pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", "dev": true, "dependencies": { - "acorn": "^3.0.4" + "end-of-stream": "^1.1.0", + "once": "^1.3.1" } }, - "node_modules/prettier-eslint/node_modules/acorn-jsx/node_modules/acorn": { - "version": "3.3.0", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-3.3.0.tgz", - "integrity": "sha512-OLUyIIZ7mF5oaAUT1w0TFqQS81q3saT46x8t7ukpPjMNk+nbs4ZHhs7ToV8EWnLYLepjETXd4XaCE4uxkMeqUw==", - "dev": true, - "bin": { - "acorn": "bin/acorn" - }, + "node_modules/punycode": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", + "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", "engines": { - "node": ">=0.4.0" + "node": ">=6" } }, - "node_modules/prettier-eslint/node_modules/ajv": { - "version": "5.5.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-5.5.2.tgz", - "integrity": "sha512-Ajr4IcMXq/2QmMkEmSvxqfLN5zGmJ92gHXAeOXq1OekoH2rfDNsgdDoL2f7QaRCy7G/E6TpxBVdRuNraMztGHw==", + "node_modules/pupa": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", + "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", "dev": true, "dependencies": { - "co": "^4.6.0", - "fast-deep-equal": "^1.0.0", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.3.0" - } - }, - "node_modules/prettier-eslint/node_modules/ansi-regex": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-3.0.1.tgz", - "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", - "dev": true, + "escape-goat": "^4.0.0" + }, "engines": { - "node": ">=4" + "node": ">=12.20" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/prettier-eslint/node_modules/cross-spawn": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", - "integrity": "sha512-pTgQJ5KC0d2hcY8eyL1IzlBPYjTkyH72XRZPnLyKus2mBfNjQs3klqbJU2VILqZryAZUt9JOb3h/mWMy23/f5A==", + "node_modules/puppeteer-core": { + "version": "2.1.1", + "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz", + "integrity": "sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==", "dev": true, "dependencies": { - "lru-cache": "^4.0.1", - "shebang-command": "^1.2.0", - "which": "^1.2.9" + "@types/mime-types": "^2.1.0", + "debug": "^4.1.0", + "extract-zip": "^1.6.6", + "https-proxy-agent": "^4.0.0", + "mime": "^2.0.3", + "mime-types": "^2.1.25", + "progress": "^2.0.1", + "proxy-from-env": "^1.0.0", + "rimraf": "^2.6.1", + "ws": "^6.1.0" + }, + "engines": { + "node": ">=8.16.0" } }, - "node_modules/prettier-eslint/node_modules/debug": { - "version": "3.2.7", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.7.tgz", - "integrity": "sha512-CFjzYYAi4ThfiQvizrFQevTTXHtnCqWfe7x1AhgEscTz6ZbLbfoLRLPugTQyBth6f8ZERVUSyWHFD/7Wu4t1XQ==", + "node_modules/puppeteer-core/node_modules/agent-base": { + "version": "5.1.1", + "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", + "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==", "dev": true, - "dependencies": { - "ms": "^2.1.1" + "engines": { + "node": ">= 6.0.0" } }, - "node_modules/prettier-eslint/node_modules/doctrine": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/doctrine/-/doctrine-2.1.0.tgz", - "integrity": "sha512-35mSku4ZXK0vfCuHEDAwt55dg2jNajHZ1odvF+8SSr82EsZY4QmXfuWso8oEd8zRhVObSN18aM0CjSdoBX7zIw==", + "node_modules/puppeteer-core/node_modules/https-proxy-agent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", + "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==", "dev": true, "dependencies": { - "esutils": "^2.0.2" + "agent-base": "5", + "debug": "4" }, "engines": { - "node": ">=0.10.0" + "node": ">= 6.0.0" } }, - "node_modules/prettier-eslint/node_modules/eslint": { - "version": "4.19.1", - "resolved": "https://registry.npmjs.org/eslint/-/eslint-4.19.1.tgz", - "integrity": "sha512-bT3/1x1EbZB7phzYu7vCr1v3ONuzDtX8WjuM9c0iYxe+cq+pwcKEoQjl7zd3RpC6YOLgnSy3cTN58M2jcoPDIQ==", + "node_modules/puppeteer-core/node_modules/mime": { + "version": "2.6.0", + "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", + "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", "dev": true, - "dependencies": { - "ajv": "^5.3.0", - "babel-code-frame": "^6.22.0", - "chalk": "^2.1.0", - "concat-stream": "^1.6.0", - "cross-spawn": "^5.1.0", - "debug": "^3.1.0", - "doctrine": "^2.1.0", - "eslint-scope": "^3.7.1", - "eslint-visitor-keys": "^1.0.0", - "espree": "^3.5.4", - "esquery": "^1.0.0", - "esutils": "^2.0.2", - "file-entry-cache": "^2.0.0", - "functional-red-black-tree": "^1.0.1", - "glob": "^7.1.2", - "globals": "^11.0.1", - "ignore": "^3.3.3", - "imurmurhash": "^0.1.4", - "inquirer": "^3.0.6", - "is-resolvable": "^1.0.0", - "js-yaml": "^3.9.1", - "json-stable-stringify-without-jsonify": "^1.0.1", - "levn": "^0.3.0", - "lodash": "^4.17.4", - "minimatch": "^3.0.2", - "mkdirp": "^0.5.1", - "natural-compare": "^1.4.0", - "optionator": "^0.8.2", - "path-is-inside": "^1.0.2", - "pluralize": "^7.0.0", - "progress": "^2.0.0", - "regexpp": "^1.0.1", - "require-uncached": "^1.0.3", - "semver": "^5.3.0", - "strip-ansi": "^4.0.0", - "strip-json-comments": "~2.0.1", - "table": "4.0.2", - "text-table": "~0.2.0" - }, "bin": { - "eslint": "bin/eslint.js" + "mime": "cli.js" }, "engines": { - "node": ">=4" + "node": ">=4.0.0" } }, - "node_modules/prettier-eslint/node_modules/eslint-scope": { - "version": "3.7.3", - "resolved": "https://registry.npmjs.org/eslint-scope/-/eslint-scope-3.7.3.tgz", - "integrity": "sha512-W+B0SvF4gamyCTmUc+uITPY0989iXVfKvhwtmJocTaYoc/3khEHmEmvfY/Gn9HA9VV75jrQECsHizkNw1b68FA==", + "node_modules/puppeteer-core/node_modules/rimraf": { + "version": "2.7.1", + "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", + "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", "dev": true, "dependencies": { - "esrecurse": "^4.1.0", - "estraverse": "^4.1.1" + "glob": "^7.1.3" }, - "engines": { - "node": ">=4.0.0" + "bin": { + "rimraf": "bin.js" } }, - "node_modules/prettier-eslint/node_modules/eslint-visitor-keys": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/eslint-visitor-keys/-/eslint-visitor-keys-1.3.0.tgz", - "integrity": "sha512-6J72N8UNa462wa/KFODt/PJ3IU60SDpC3QXC1Hjc1BXXpfL2C9R5+AU7jhe0F6GREqVMh4Juu+NY7xn+6dipUQ==", + "node_modules/puppeteer-core/node_modules/ws": { + "version": "6.2.2", + "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", + "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", "dev": true, - "engines": { - "node": ">=4" + "dependencies": { + "async-limiter": "~1.0.0" } }, - "node_modules/prettier-eslint/node_modules/espree": { - "version": "3.5.4", - "resolved": "https://registry.npmjs.org/espree/-/espree-3.5.4.tgz", - "integrity": "sha512-yAcIQxtmMiB/jL32dzEp2enBeidsB7xWPLNiw3IIkpVds1P+h7qF9YwJq1yUNzp2OKXgAprs4F61ih66UsoD1A==", + "node_modules/qs": { + "version": "6.10.3", + "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", + "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", "dev": true, "dependencies": { - "acorn": "^5.5.0", - "acorn-jsx": "^3.0.0" + "side-channel": "^1.0.4" }, "engines": { - "node": ">=0.10.0" + "node": ">=0.6" + }, + "funding": { + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/prettier-eslint/node_modules/estraverse": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/estraverse/-/estraverse-4.3.0.tgz", - "integrity": "sha512-39nnKffWz8xN1BU/2c79n9nB9HDzo0niYUqx6xyqUnyoAnQyyWpOTdZEeiCch8BBu515t4wp9ZmgVfVhn9EBpw==", - "dev": true, + "node_modules/querystring": { + "version": "0.2.0", + "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", + "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", + "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", "engines": { - "node": ">=4.0" + "node": ">=0.4.x" } }, - "node_modules/prettier-eslint/node_modules/fast-deep-equal": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-1.1.0.tgz", - "integrity": "sha512-fueX787WZKCV0Is4/T2cyAdM4+x1S3MXXOAhavE1ys/W42SHAPacLTQhucja22QBYrfGw50M2sRiXPtTGv9Ymw==", - "dev": true - }, - "node_modules/prettier-eslint/node_modules/file-entry-cache": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/file-entry-cache/-/file-entry-cache-2.0.0.tgz", - "integrity": "sha512-uXP/zGzxxFvFfcZGgBIwotm+Tdc55ddPAzF7iHshP4YGaXMww7rSF9peD9D1sui5ebONg5UobsZv+FfgEpGv/w==", + "node_modules/queue-microtask": { + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", + "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", "dev": true, - "dependencies": { - "flat-cache": "^1.2.1", - "object-assign": "^4.0.1" - }, - "engines": { - "node": ">=0.10.0" - } + "funding": [ + { + "type": "github", + "url": "https://github.com/sponsors/feross" + }, + { + "type": "patreon", + "url": "https://www.patreon.com/feross" + }, + { + "type": "consulting", + "url": "https://feross.org/support" + } + ] }, - "node_modules/prettier-eslint/node_modules/flat-cache": { - "version": "1.3.4", - "resolved": "https://registry.npmjs.org/flat-cache/-/flat-cache-1.3.4.tgz", - "integrity": "sha512-VwyB3Lkgacfik2vhqR4uv2rvebqmDvFu4jlN/C1RzWoJEo8I7z4Q404oiqYCkq41mni8EzQnm95emU9seckwtg==", + "node_modules/quick-format-unescaped": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz", + "integrity": "sha512-lli1svZnGwCLiDydlAN2bmSiEeThfI5gnqWsv0cFRiRbzXsRuzoPldK+BY5TM/i+koLoZ8dmZA6uPEBGTpaZqw==", "dev": true, "dependencies": { - "circular-json": "^0.3.1", - "graceful-fs": "^4.1.2", - "rimraf": "~2.6.2", - "write": "^0.2.1" - }, - "engines": { - "node": ">=0.10.0" + "fast-safe-stringify": "^1.0.8" } }, - "node_modules/prettier-eslint/node_modules/ignore": { - "version": "3.3.10", - "resolved": "https://registry.npmjs.org/ignore/-/ignore-3.3.10.tgz", - "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", - "dev": true - }, - "node_modules/prettier-eslint/node_modules/json-schema-traverse": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", - "integrity": "sha512-4JD/Ivzg7PoW8NzdrBSr3UFwC9mHgvI7Z6z3QGBsSHgKaRTUDmyZAAKJo2UbG1kUVfS9WS8bi36N49U1xw43DA==", - "dev": true - }, - "node_modules/prettier-eslint/node_modules/levn": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/levn/-/levn-0.3.0.tgz", - "integrity": "sha512-0OO4y2iOHix2W6ujICbKIaEQXvFQHue65vUG3pb5EUomzPI90z9hsA1VsO/dbIIpC53J8gxM9Q4Oho0jrCM/yA==", + "node_modules/quick-lru": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", + "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", "dev": true, - "dependencies": { - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2" - }, "engines": { - "node": ">= 0.8.0" + "node": ">=8" } }, - "node_modules/prettier-eslint/node_modules/lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", + "node_modules/ramda": { + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", + "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", "dev": true, - "dependencies": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/ramda" } }, - "node_modules/prettier-eslint/node_modules/optionator": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/optionator/-/optionator-0.8.3.tgz", - "integrity": "sha512-+IW9pACdk3XWmmTXG8m3upGUJst5XRGzxMRjXzAuJ1XnIFNvfhjjIuYkDvysnPQ7qzqVzLt78BCruntqRhWQbA==", + "node_modules/randombytes": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", + "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", "dev": true, "dependencies": { - "deep-is": "~0.1.3", - "fast-levenshtein": "~2.0.6", - "levn": "~0.3.0", - "prelude-ls": "~1.1.2", - "type-check": "~0.3.2", - "word-wrap": "~1.2.3" - }, - "engines": { - "node": ">= 0.8.0" + "safe-buffer": "^5.1.0" } }, - "node_modules/prettier-eslint/node_modules/prelude-ls": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/prelude-ls/-/prelude-ls-1.1.2.tgz", - "integrity": "sha512-ESF23V4SKG6lVSGZgYNpbsiaAkdab6ZgOxe52p7+Kid3W3u3bxR4Vfd/o21dmN7jSt0IwgZ4v5MUd26FEtXE9w==", + "node_modules/range-parser": { + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", + "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", "dev": true, "engines": { - "node": ">= 0.8.0" + "node": ">= 0.6" } }, - "node_modules/prettier-eslint/node_modules/prettier": { - "version": "1.19.1", - "resolved": "https://registry.npmjs.org/prettier/-/prettier-1.19.1.tgz", - "integrity": "sha512-s7PoyDv/II1ObgQunCbB9PdLmUcBZcnWOcxDh7O0N/UwDEsHyqkW+Qh28jW+mVuCdx7gLB0BotYI1Y6uI9iyew==", + "node_modules/raw-body": { + "version": "2.5.1", + "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", + "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", "dev": true, - "bin": { - "prettier": "bin-prettier.js" + "dependencies": { + "bytes": "3.1.2", + "http-errors": "2.0.0", + "iconv-lite": "0.4.24", + "unpipe": "1.0.0" }, "engines": { - "node": ">=4" - } - }, - "node_modules/prettier-eslint/node_modules/pretty-format": { - "version": "23.6.0", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-23.6.0.tgz", - "integrity": "sha512-zf9NV1NSlDLDjycnwm6hpFATCGl/K1lt0R/GdkAK2O5LN/rwJoB+Mh93gGJjut4YbmecbfgLWVGSTCr0Ewvvbw==", - "dev": true, - "dependencies": { - "ansi-regex": "^3.0.0", - "ansi-styles": "^3.2.0" + "node": ">= 0.8" } }, - "node_modules/prettier-eslint/node_modules/regexpp": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/regexpp/-/regexpp-1.1.0.tgz", - "integrity": "sha512-LOPw8FpgdQF9etWMaAfG/WRthIdXJGYp4mJ2Jgn/2lpkbod9jPn0t9UqN7AxBOKNfzRbYyVfgc7Vk4t/MpnXgw==", + "node_modules/raw-body/node_modules/bytes": { + "version": "3.1.2", + "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", + "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", "dev": true, "engines": { - "node": ">=4.0.0" + "node": ">= 0.8" } }, - "node_modules/prettier-eslint/node_modules/rimraf": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.6.3.tgz", - "integrity": "sha512-mwqeW5XsA2qAejG46gYdENaxXjx9onRNCfn7L0duuP4hCuTIi/QO7PDK07KJfp1d+izWPrzEJDcSqBa0OZQriA==", - "dev": true, + "node_modules/rc": { + "version": "1.2.8", + "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", + "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", "dependencies": { - "glob": "^7.1.3" + "deep-extend": "^0.6.0", + "ini": "~1.3.0", + "minimist": "^1.2.0", + "strip-json-comments": "~2.0.1" }, "bin": { - "rimraf": "bin.js" + "rc": "cli.js" } }, - "node_modules/prettier-eslint/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true, - "bin": { - "semver": "bin/semver" + "node_modules/rc/node_modules/strip-json-comments": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", + "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", + "engines": { + "node": ">=0.10.0" } }, - "node_modules/prettier-eslint/node_modules/shebang-command": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/shebang-command/-/shebang-command-1.2.0.tgz", - "integrity": "sha512-EV3L1+UQWGor21OmnvojK36mhg+TyIKDh3iFBKBohr5xeXIhNBcx8oWdgkTEEQ+BEFFYdLRuqMfd5L84N1V5Vg==", - "dev": true, + "node_modules/react": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", + "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", "dependencies": { - "shebang-regex": "^1.0.0" + "loose-envify": "^1.1.0" }, "engines": { "node": ">=0.10.0" } }, - "node_modules/prettier-eslint/node_modules/shebang-regex": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shebang-regex/-/shebang-regex-1.0.0.tgz", - "integrity": "sha512-wpoSFAxys6b2a2wHZ1XpDSgD7N9iVjg29Ph9uV/uaP9Ex/KXlkTZTeddxDPSYQpgvzKLGJke2UU0AzoGCjNIvQ==", + "node_modules/react-click-away-listener": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-click-away-listener/-/react-click-away-listener-2.2.2.tgz", + "integrity": "sha512-6x5Ra+2xagMq+5YcBu42jtht+bKVErgPXaI/GqYP5M8Xz2o/UbGyMd3TISQK6ixfORUTvdHeRnOVU3TbSpZ5Zg==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-colorful": { + "version": "5.6.1", + "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", + "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", "dev": true, - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "react": ">=16.8.0", + "react-dom": ">=16.8.0" } }, - "node_modules/prettier-eslint/node_modules/strip-ansi": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-4.0.0.tgz", - "integrity": "sha1-qEeQIusaw2iocTibY1JixQXuNo8=", + "node_modules/react-docgen": { + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-7.0.3.tgz", + "integrity": "sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==", "dev": true, "dependencies": { - "ansi-regex": "^3.0.0" + "@babel/core": "^7.18.9", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", + "@types/babel__core": "^7.18.0", + "@types/babel__traverse": "^7.18.0", + "@types/doctrine": "^0.0.9", + "@types/resolve": "^1.20.2", + "doctrine": "^3.0.0", + "resolve": "^1.22.1", + "strip-indent": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=16.14.0" } }, - "node_modules/prettier-eslint/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha1-PFMZQukIwml8DsNEhYwobHygpgo=", + "node_modules/react-docgen-typescript": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", + "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", "dev": true, - "engines": { - "node": ">=0.10.0" + "peerDependencies": { + "typescript": ">= 4.3.x" } }, - "node_modules/prettier-eslint/node_modules/type-check": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/type-check/-/type-check-0.3.2.tgz", - "integrity": "sha1-WITKtRLPHTVeP7eE8wgEsrUg23I=", + "node_modules/react-docgen/node_modules/@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", + "dev": true + }, + "node_modules/react-docgen/node_modules/strip-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", "dev": true, "dependencies": { - "prelude-ls": "~1.1.2" + "min-indent": "^1.0.1" }, "engines": { - "node": ">= 0.8.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/prettier-eslint/node_modules/typescript": { - "version": "2.9.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.9.2.tgz", - "integrity": "sha512-Gr4p6nFNaoufRIY4NMdpQRNmgxVIGMs4Fcu/ujdYk3nAZqk7supzBE9idmvfZIlH/Cuj//dvi+019qEue9lV0w==", - "dev": true, - "bin": { - "tsc": "bin/tsc", - "tsserver": "bin/tsserver" + "node_modules/react-dom": { + "version": "18.2.0", + "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", + "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "dependencies": { + "loose-envify": "^1.1.0", + "scheduler": "^0.23.0" }, - "engines": { - "node": ">=4.2.0" + "peerDependencies": { + "react": "^18.2.0" } }, - "node_modules/prettier-eslint/node_modules/typescript-eslint-parser": { - "version": "16.0.1", - "resolved": "https://registry.npmjs.org/typescript-eslint-parser/-/typescript-eslint-parser-16.0.1.tgz", - "integrity": "sha512-IKawLTu4A2xN3aN/cPLxvZ0bhxZHILGDKTZWvWNJ3sLNhJ3PjfMEDQmR2VMpdRPrmWOadgWXRwjLBzSA8AGsaQ==", + "node_modules/react-element-to-jsx-string": { + "version": "15.0.0", + "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", + "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", "dev": true, "dependencies": { - "lodash.unescape": "4.0.1", - "semver": "5.5.0" - }, - "engines": { - "node": ">=6.14.0" + "@base2/pretty-print-object": "1.0.1", + "is-plain-object": "5.0.0", + "react-is": "18.1.0" }, "peerDependencies": { - "typescript": "*" + "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", + "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0" } }, - "node_modules/prettier-eslint/node_modules/typescript-eslint-parser/node_modules/semver": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.5.0.tgz", - "integrity": "sha512-4SJ3dm0WAwWy/NVeioZh5AntkdJoWKxHxcmyP622fOkgHa4z3R0TdBJICINyaSDE6uNwVc8gZr+ZinwZAH4xIA==", + "node_modules/react-element-to-jsx-string/node_modules/is-plain-object": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", + "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", "dev": true, - "bin": { - "semver": "bin/semver" + "engines": { + "node": ">=0.10.0" } }, - "node_modules/prettier-eslint/node_modules/vue-eslint-parser": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/vue-eslint-parser/-/vue-eslint-parser-2.0.3.tgz", - "integrity": "sha512-ZezcU71Owm84xVF6gfurBQUGg8WQ+WZGxgDEQu1IHFBZNx7BFZg3L1yHxrCBNNwbwFtE1GuvfJKMtb6Xuwc/Bw==", - "dev": true, - "dependencies": { - "debug": "^3.1.0", - "eslint-scope": "^3.7.1", - "eslint-visitor-keys": "^1.0.0", - "espree": "^3.5.2", - "esquery": "^1.0.0", - "lodash": "^4.17.4" - }, + "node_modules/react-element-to-jsx-string/node_modules/react-is": { + "version": "18.1.0", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", + "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", + "dev": true + }, + "node_modules/react-fast-compare": { + "version": "3.2.2", + "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", + "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" + }, + "node_modules/react-hook-form": { + "version": "7.50.1", + "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.50.1.tgz", + "integrity": "sha512-3PCY82oE0WgeOgUtIr3nYNNtNvqtJ7BZjsbxh6TnYNbXButaD5WpjOmTjdxZfheuHKR68qfeFnEDVYoSSFPMTQ==", "engines": { - "node": ">=4" + "node": ">=12.22.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/react-hook-form" }, "peerDependencies": { - "eslint": ">=3.9.0" + "react": "^16.8.0 || ^17 || ^18" } }, - "node_modules/prettier-eslint/node_modules/which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, + "node_modules/react-inlinesvg": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/react-inlinesvg/-/react-inlinesvg-3.0.0.tgz", + "integrity": "sha512-zUt0DW3cKBk+vYZJJCzJqA9STRb+ZFmKLQFWurTvM4UR6vyHT8kHZSzyZZseX9BUNbTFJAfirtwpt97BWDJoSg==", "dependencies": { - "isexe": "^2.0.0" + "exenv": "^1.2.2", + "react-from-dom": "^0.6.2" }, - "bin": { - "which": "bin/which" + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" } }, - "node_modules/prettier-eslint/node_modules/yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", + "node_modules/react-inlinesvg/node_modules/react-from-dom": { + "version": "0.6.2", + "resolved": "https://registry.npmjs.org/react-from-dom/-/react-from-dom-0.6.2.tgz", + "integrity": "sha512-qvWWTL/4xw4k/Dywd41RBpLQUSq97csuv15qrxN+izNeLYlD9wn5W8LspbfYe5CWbaSdkZ72BsaYBPQf2x4VbQ==", + "peerDependencies": { + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + } + }, + "node_modules/react-is": { + "version": "17.0.2", + "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", + "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", "dev": true }, - "node_modules/prettier-linter-helpers": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/prettier-linter-helpers/-/prettier-linter-helpers-1.0.0.tgz", - "integrity": "sha512-GbK2cP9nraSSUF9N2XwUwqfzlAFlMNYYl+ShE/V+H8a9uNl/oUqB1w2EL54Jh0OlyRSd8RfWYJ3coVS4TROP2w==", - "dev": true, + "node_modules/react-lifecycles-compat": { + "version": "3.0.4", + "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", + "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" + }, + "node_modules/react-modal": { + "version": "3.15.1", + "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.15.1.tgz", + "integrity": "sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==", "dependencies": { - "fast-diff": "^1.1.2" + "exenv": "^1.2.0", + "prop-types": "^15.7.2", + "react-lifecycles-compat": "^3.0.0", + "warning": "^4.0.3" }, "engines": { - "node": ">=6.0.0" + "node": ">=8" + }, + "peerDependencies": { + "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", + "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" } }, - "node_modules/pretty-error": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/pretty-error/-/pretty-error-4.0.0.tgz", - "integrity": "sha512-AoJ5YMAcXKYxKhuJGdcvse+Voc6v1RgnsR3nWcYU7q4t6z0Q6T86sv5Zq8VIRbOWWFpvdGE83LtdSMNd+6Y0xw==", - "dev": true, + "node_modules/react-popper": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", + "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", "dependencies": { - "lodash": "^4.17.20", - "renderkid": "^3.0.0" + "react-fast-compare": "^3.0.1", + "warning": "^4.0.2" + }, + "peerDependencies": { + "@popperjs/core": "^2.0.0", + "react": "^16.8.0 || ^17 || ^18", + "react-dom": "^16.8.0 || ^17 || ^18" } }, - "node_modules/pretty-format": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/pretty-format/-/pretty-format-27.5.1.tgz", - "integrity": "sha512-Qb1gy5OrP5+zDf2Bvnzdl3jsTf1qXVMazbvCoKhtKqVs4/YK4ozX4gKQJJVyNe+cajNPn0KoC0MC3FUmaHWEmQ==", + "node_modules/react-refresh": { + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", "dev": true, - "dependencies": { - "ansi-regex": "^5.0.1", - "ansi-styles": "^5.0.0", - "react-is": "^17.0.1" - }, "engines": { - "node": "^10.13.0 || ^12.13.0 || ^14.15.0 || >=15.0.0" + "node": ">=0.10.0" } }, - "node_modules/pretty-format/node_modules/ansi-styles": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-5.2.0.tgz", - "integrity": "sha512-Cxwpt2SfTzTtXcfOlzGEee8O+c+MmUgGrNiBcXnuWxuFJHe6a5Hz7qwhwe5OgaSYI0IJvkLqWX1ASG+cJOkEiA==", + "node_modules/react-remove-scroll": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", + "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", "dev": true, + "dependencies": { + "react-remove-scroll-bar": "^2.3.3", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + }, "engines": { "node": ">=10" }, - "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/pretty-hrtime": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/pretty-hrtime/-/pretty-hrtime-1.0.3.tgz", - "integrity": "sha512-66hKPCr+72mlfiSjlEB1+45IjXSqvVAIy6mocupoww4tBFE9R9IhwwUGoI4G++Tc9Aq+2rxOt0RFU6gPcrte0A==", + "node_modules/react-remove-scroll-bar": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz", + "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==", "dev": true, + "dependencies": { + "react-style-singleton": "^2.2.1", + "tslib": "^2.0.0" + }, "engines": { - "node": ">= 0.8" + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha512-cdGef/drWFoydD1JsMzuFf8100nZl+GT+yacc2bEced5f9Rjk4z+WtFUTBu9PhOi9j/jfmBPu0mMEY4wIdAF8A==", - "dev": true, - "engines": { - "node": ">= 0.6.0" + "node_modules/react-router": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.3.0.tgz", + "integrity": "sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==", + "dependencies": { + "history": "^5.2.0" + }, + "peerDependencies": { + "react": ">=16.8" } }, - "node_modules/process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==" - }, - "node_modules/progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true, - "engines": { - "node": ">=0.4.0" + "node_modules/react-router-dom": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.3.0.tgz", + "integrity": "sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==", + "dependencies": { + "history": "^5.2.0", + "react-router": "6.3.0" + }, + "peerDependencies": { + "react": ">=16.8", + "react-dom": ">=16.8" } }, - "node_modules/promise-inflight": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/promise-inflight/-/promise-inflight-1.0.1.tgz", - "integrity": "sha512-6zWPyEOFaQBJYcGMHBKTKJ3u6TBsnMFOIZSa6ce1e/ZrrsOlnHRHbabMjLiBYKp+n44X9eUI6VUPaukCXHuG4g==", - "dev": true, - "optional": true, - "peer": true - }, - "node_modules/promise-retry": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/promise-retry/-/promise-retry-2.0.1.tgz", - "integrity": "sha512-y+WKFlBR8BGXnsNlIHFGPZmyDf3DFMoLhaflAnyZgV6rG6xu+JwesTo2Q9R6XwYmtmwAFCkAk3e35jEdoeh/3g==", + "node_modules/react-style-singleton": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", + "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", "dev": true, - "optional": true, - "peer": true, "dependencies": { - "err-code": "^2.0.2", - "retry": "^0.12.0" + "get-nonce": "^1.0.0", + "invariant": "^2.2.4", + "tslib": "^2.0.0" }, "engines": { "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } } }, - "node_modules/promise-retry/node_modules/retry": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/retry/-/retry-0.12.0.tgz", - "integrity": "sha512-9LkiTwjUh6rT555DtE9rTX+BKByPfrMzEAtnlEtdEwr3Nkffwiihqe2bWADg+OQRjt9gl6ICdmB/ZFDCGAtSow==", + "node_modules/read-pkg": { + "version": "5.2.0", + "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", + "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", "dev": true, - "optional": true, - "peer": true, + "dependencies": { + "@types/normalize-package-data": "^2.4.0", + "normalize-package-data": "^2.5.0", + "parse-json": "^5.0.0", + "type-fest": "^0.6.0" + }, "engines": { - "node": ">= 4" + "node": ">=8" } }, - "node_modules/promise.allsettled": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/promise.allsettled/-/promise.allsettled-1.0.7.tgz", - "integrity": "sha512-hezvKvQQmsFkOdrZfYxUxkyxl8mgFQeT259Ajj9PXdbg9VzBCWrItOev72JyWxkCD5VSSqAeHmlN3tWx4DlmsA==", + "node_modules/read-pkg-up": { + "version": "7.0.1", + "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", + "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", "dev": true, "dependencies": { - "array.prototype.map": "^1.0.5", - "call-bind": "^1.0.2", - "define-properties": "^1.2.0", - "es-abstract": "^1.22.1", - "get-intrinsic": "^1.2.1", - "iterate-value": "^1.0.2" + "find-up": "^4.1.0", + "read-pkg": "^5.2.0", + "type-fest": "^0.8.1" }, "engines": { - "node": ">= 0.4" + "node": ">=8" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/prompts": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/prompts/-/prompts-2.4.2.tgz", - "integrity": "sha512-NxNv/kLguCA7p3jE8oL2aEBsrJWgAakBpgmgK6lpPWV+WuOmY6r2/zbAVnP+T8bQlA0nzHXSJSJW0Hq7ylaD2Q==", + "node_modules/read-pkg-up/node_modules/type-fest": { + "version": "0.8.1", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", + "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", "dev": true, - "dependencies": { - "kleur": "^3.0.3", - "sisteransi": "^1.0.5" - }, "engines": { - "node": ">= 6" + "node": ">=8" } }, - "node_modules/prop-types": { - "version": "15.8.1", - "resolved": "https://registry.npmjs.org/prop-types/-/prop-types-15.8.1.tgz", - "integrity": "sha512-oj87CgZICdulUohogVAR7AjlC0327U4el4L6eAvOqCeudMDVU0NThNaV+b9Df4dXgSP1gXMTnPdhfe/2qDH5cg==", + "node_modules/read-pkg/node_modules/hosted-git-info": { + "version": "2.8.9", + "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", + "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", + "dev": true + }, + "node_modules/read-pkg/node_modules/normalize-package-data": { + "version": "2.5.0", + "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", + "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "dev": true, "dependencies": { - "loose-envify": "^1.4.0", - "object-assign": "^4.1.1", - "react-is": "^16.13.1" + "hosted-git-info": "^2.1.4", + "resolve": "^1.10.0", + "semver": "2 || 3 || 4 || 5", + "validate-npm-package-license": "^3.0.1" } }, - "node_modules/prop-types/node_modules/react-is": { - "version": "16.13.1", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-16.13.1.tgz", - "integrity": "sha512-24e6ynE2H+OKt4kqsOvNd8kBpV65zoxbA4BVsEOB3ARVWQki/DHzaUoC5KuON/BiccDaCCTZBuOcfZs70kR8bQ==" - }, - "node_modules/proto-list": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/proto-list/-/proto-list-1.2.4.tgz", - "integrity": "sha512-vtK/94akxsTMhe0/cbfpR+syPuszcuwhqVjJq26CuNDgFGj682oRBXOP5MJpv2r7JtE8MsiepGIqvvOTBwn2vA==", - "dev": true - }, - "node_modules/protocols": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/protocols/-/protocols-2.0.1.tgz", - "integrity": "sha512-/XJ368cyBJ7fzLMwLKv1e4vLxOju2MNAIokcr7meSaNcVbWz/CPcW22cP04mwxOErdA5mwjA8Q6w/cdAQxVn7Q==", - "dev": true + "node_modules/read-pkg/node_modules/semver": { + "version": "5.7.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", + "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "dev": true, + "bin": { + "semver": "bin/semver" + } }, - "node_modules/proxy-addr": { - "version": "2.0.7", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.7.tgz", - "integrity": "sha512-llQsMLSUDUPT44jdrU/O37qlnifitDP+ZwrmmZcoSKyLKvtZxpyV0n2/bD/N4tBAAZ/gJEdZU7KMraoK1+XYAg==", + "node_modules/read-pkg/node_modules/type-fest": { + "version": "0.6.0", + "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", + "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", "dev": true, + "engines": { + "node": ">=8" + } + }, + "node_modules/readable-stream": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", + "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", "dependencies": { - "forwarded": "0.2.0", - "ipaddr.js": "1.9.1" + "inherits": "^2.0.3", + "string_decoder": "^1.1.1", + "util-deprecate": "^1.0.1" }, "engines": { - "node": ">= 0.10" + "node": ">= 6" } }, - "node_modules/proxy-addr/node_modules/ipaddr.js": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.1.tgz", - "integrity": "sha512-0KI/607xoxSToH7GjN1FfSbLoU0+btTicjsQSWQlh/hZykN8KpmMf7uYwPW3R+akZ6R/w18ZlXSHBYXiYUPO3g==", + "node_modules/readdirp": { + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", + "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", "dev": true, + "dependencies": { + "picomatch": "^2.2.1" + }, "engines": { - "node": ">= 0.10" + "node": ">=8.10.0" } }, - "node_modules/proxy-agent": { - "version": "6.4.0", - "resolved": "https://registry.npmjs.org/proxy-agent/-/proxy-agent-6.4.0.tgz", - "integrity": "sha512-u0piLU+nCOHMgGjRbimiXmA9kM/L9EHh3zL81xCdp7m+Y2pHIsnmbdDoEDoAz5geaonNR6q6+yOPQs6n4T6sBQ==", + "node_modules/recast": { + "version": "0.23.6", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.6.tgz", + "integrity": "sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==", "dev": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "http-proxy-agent": "^7.0.1", - "https-proxy-agent": "^7.0.3", - "lru-cache": "^7.14.1", - "pac-proxy-agent": "^7.0.1", - "proxy-from-env": "^1.1.0", - "socks-proxy-agent": "^8.0.2" + "ast-types": "^0.16.1", + "esprima": "~4.0.0", + "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", + "tslib": "^2.0.1" }, "engines": { - "node": ">= 14" + "node": ">= 4" } }, - "node_modules/proxy-agent/node_modules/agent-base": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-7.1.0.tgz", - "integrity": "sha512-o/zjMZRhJxny7OyEF+Op8X+efiELC7k7yOjMzgfzVqOzXqkBkWI79YoTdOtsuWd5BWhAGAuOY/Xa6xpiaWXiNg==", + "node_modules/rechoir": { + "version": "0.7.1", + "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", + "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", "dev": true, "dependencies": { - "debug": "^4.3.4" + "resolve": "^1.9.0" }, "engines": { - "node": ">= 14" + "node": ">= 0.10" } }, - "node_modules/proxy-agent/node_modules/http-proxy-agent": { - "version": "7.0.2", - "resolved": "https://registry.npmjs.org/http-proxy-agent/-/http-proxy-agent-7.0.2.tgz", - "integrity": "sha512-T1gkAiYYDWYx3V5Bmyu7HcfcvL7mUrTWiM6yOfa3PIphViJ/gFPbvidQ+veqSOHci/PxBcDabeUNCzpOODJZig==", - "dev": true, + "node_modules/recoil": { + "version": "0.7.5", + "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.5.tgz", + "integrity": "sha512-GVShsj5+M/2GULWBs5WBJGcsNis/d3YvDiaKjYh3mLKXftjtmk9kfaQ8jwjoIXySCwn8/RhgJ4Sshwgzj2UpFA==", "dependencies": { - "agent-base": "^7.1.0", - "debug": "^4.3.4" + "hamt_plus": "1.0.2" }, - "engines": { - "node": ">= 14" + "peerDependencies": { + "react": ">=16.13.1" + }, + "peerDependenciesMeta": { + "react-dom": { + "optional": true + }, + "react-native": { + "optional": true + } } }, - "node_modules/proxy-agent/node_modules/https-proxy-agent": { - "version": "7.0.4", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-7.0.4.tgz", - "integrity": "sha512-wlwpilI7YdjSkWaQ/7omYBMTliDcmCN8OLihO6I9B86g06lMyAoqgoDpV0XqoaPOKj+0DIdAvnsWfyAAhmimcg==", + "node_modules/redent": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", + "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", "dev": true, "dependencies": { - "agent-base": "^7.0.2", - "debug": "4" + "indent-string": "^4.0.0", + "strip-indent": "^3.0.0" }, "engines": { - "node": ">= 14" + "node": ">=8" } }, - "node_modules/proxy-agent/node_modules/lru-cache": { - "version": "7.18.3", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-7.18.3.tgz", - "integrity": "sha512-jumlc0BIUrS3qJGgIkWZsyfAM7NCWiBcCDhnd+3NNM5KbBmLTgHVfWBcg6W+rLUsIpzpERPsvwUP7CckAQSOoA==", + "node_modules/redent/node_modules/indent-string": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", + "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", "dev": true, "engines": { - "node": ">=12" + "node": ">=8" } }, - "node_modules/proxy-agent/node_modules/socks-proxy-agent": { - "version": "8.0.2", - "resolved": "https://registry.npmjs.org/socks-proxy-agent/-/socks-proxy-agent-8.0.2.tgz", - "integrity": "sha512-8zuqoLv1aP/66PHF5TqwJ7Czm3Yv32urJQHrVyhD7mmA6d61Zv8cIXQYPTWwmg6qlupnPvs/QKDmfa4P/qct2g==", + "node_modules/reduce-flatten": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", + "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", "dev": true, - "dependencies": { - "agent-base": "^7.0.2", - "debug": "^4.3.4", - "socks": "^2.7.1" - }, "engines": { - "node": ">= 14" + "node": ">=6" } }, - "node_modules/proxy-from-env": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/proxy-from-env/-/proxy-from-env-1.1.0.tgz", - "integrity": "sha512-D+zkORCbA9f1tdWRK0RaCR3GPv50cMxcrz4X8k5LTSUD1Dkw47mKJEZQNunItRTkWwgtaUSo1RVFRIG9ZXiFYg==", - "dev": true + "node_modules/reflect-metadata": { + "version": "0.1.13", + "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", + "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" }, - "node_modules/pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha512-b/YwNhb8lk1Zz2+bXXpS/LK9OisiZZ1SNsSLxN1x2OXVEhW2Ckr/7mWE5vrC1ZTiJlD9g19jWszTmJsB+oEpFQ==", + "node_modules/regenerate": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", + "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", "dev": true }, - "node_modules/psl": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.8.0.tgz", - "integrity": "sha512-RIdOzyoavK+hA18OGGWDqUTsCLhtA7IcZ/6NCs4fFJaHBDab+pDDmDIByWFRQJq2Cd7r1OoQxBGKOaztq+hjIQ==" - }, - "node_modules/pump": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pump/-/pump-3.0.0.tgz", - "integrity": "sha512-LwZy+p3SFs1Pytd/jYct4wpv49HiYCqd9Rlc5ZVdk0V+8Yzv6jR5Blk3TRmPL1ft69TxP0IMZGJ+WPFU2BFhww==", + "node_modules/regenerate-unicode-properties": { + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", + "dev": true, "dependencies": { - "end-of-stream": "^1.1.0", - "once": "^1.3.1" + "regenerate": "^1.4.2" + }, + "engines": { + "node": ">=4" } }, - "node_modules/punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "engines": { - "node": ">=6" + "node_modules/regenerator-runtime": { + "version": "0.13.9", + "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", + "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" + }, + "node_modules/regenerator-transform": { + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.8.4" } }, - "node_modules/pupa": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/pupa/-/pupa-3.1.0.tgz", - "integrity": "sha512-FLpr4flz5xZTSJxSeaheeMKN/EDzMdK7b8PTOC6a5PYFKTucWbdqjgqaEyH0shFiSJrVB1+Qqi4Tk19ccU6Aug==", + "node_modules/regexp.prototype.flags": { + "version": "1.5.2", + "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", + "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", "dev": true, "dependencies": { - "escape-goat": "^4.0.0" + "call-bind": "^1.0.6", + "define-properties": "^1.2.1", + "es-errors": "^1.3.0", + "set-function-name": "^2.0.1" }, "engines": { - "node": ">=12.20" + "node": ">= 0.4" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/puppeteer-core": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/puppeteer-core/-/puppeteer-core-2.1.1.tgz", - "integrity": "sha512-n13AWriBMPYxnpbb6bnaY5YoY6rGj8vPLrz6CZF3o0qJNEwlcfJVxBzYZ0NJsQ21UbdJoijPCDrM++SUVEz7+w==", + "node_modules/regexpu-core": { + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, "dependencies": { - "@types/mime-types": "^2.1.0", - "debug": "^4.1.0", - "extract-zip": "^1.6.6", - "https-proxy-agent": "^4.0.0", - "mime": "^2.0.3", - "mime-types": "^2.1.25", - "progress": "^2.0.1", - "proxy-from-env": "^1.0.0", - "rimraf": "^2.6.1", - "ws": "^6.1.0" + "@babel/regjsgen": "^0.8.0", + "regenerate": "^1.4.2", + "regenerate-unicode-properties": "^10.1.0", + "regjsparser": "^0.9.1", + "unicode-match-property-ecmascript": "^2.0.0", + "unicode-match-property-value-ecmascript": "^2.1.0" }, "engines": { - "node": ">=8.16.0" - } - }, - "node_modules/puppeteer-core/node_modules/agent-base": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/agent-base/-/agent-base-5.1.1.tgz", - "integrity": "sha512-TMeqbNl2fMW0nMjTEPOwe3J/PRFP4vqeoNuQMG0HlMrtm5QxKqdvAkZ1pRBQ/ulIyDD5Yq0nJ7YbdD8ey0TO3g==", - "dev": true, - "engines": { - "node": ">= 6.0.0" + "node": ">=4" } }, - "node_modules/puppeteer-core/node_modules/https-proxy-agent": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/https-proxy-agent/-/https-proxy-agent-4.0.0.tgz", - "integrity": "sha512-zoDhWrkR3of1l9QAL8/scJZyLu8j/gBkcwcaQOZh7Gyh/+uJQzGVETdgT30akuwkpL8HTRfssqI3BZuV18teDg==", + "node_modules/registry-auth-token": { + "version": "5.0.2", + "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", + "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", "dev": true, "dependencies": { - "agent-base": "5", - "debug": "4" + "@pnpm/npm-conf": "^2.1.0" }, "engines": { - "node": ">= 6.0.0" + "node": ">=14" } }, - "node_modules/puppeteer-core/node_modules/mime": { - "version": "2.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-2.6.0.tgz", - "integrity": "sha512-USPkMeET31rOMiarsBNIHZKLGgvKc/LrjofAnBlOttf5ajRvqiRA8QsenbcooctK6d6Ts6aqZXBA+XbkKthiQg==", + "node_modules/registry-url": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", + "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", "dev": true, - "bin": { - "mime": "cli.js" + "dependencies": { + "rc": "1.2.8" }, "engines": { - "node": ">=4.0.0" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/puppeteer-core/node_modules/rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", + "node_modules/regjsparser": { + "version": "0.9.1", + "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", + "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", "dev": true, "dependencies": { - "glob": "^7.1.3" + "jsesc": "~0.5.0" }, "bin": { - "rimraf": "bin.js" + "regjsparser": "bin/parser" } }, - "node_modules/puppeteer-core/node_modules/ws": { - "version": "6.2.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-6.2.2.tgz", - "integrity": "sha512-zmhltoSR8u1cnDsD43TX59mzoMZsLKqUweyYBAIvTngR3shc0W6aOZylZmq/7hqyVxPdi+5Ud2QInblgyE72fw==", + "node_modules/regjsparser/node_modules/jsesc": { + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", + "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", "dev": true, - "dependencies": { - "async-limiter": "~1.0.0" + "bin": { + "jsesc": "bin/jsesc" } }, - "node_modules/qs": { - "version": "6.10.3", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.10.3.tgz", - "integrity": "sha512-wr7M2E0OFRfIfJZjKGieI8lBKb7fRCH4Fv5KNPEs7gJ8jadvotdsS08PzOKR7opXhZ/Xkjtt3WF9g38drmyRqQ==", + "node_modules/relateurl": { + "version": "0.2.7", + "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", + "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", "dev": true, - "dependencies": { - "side-channel": "^1.0.4" - }, - "engines": { - "node": ">=0.6" - }, - "funding": { - "url": "https://github.com/sponsors/ljharb" - } - }, - "node_modules/querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g==", - "deprecated": "The querystring API is considered Legacy. new code should use the URLSearchParams API instead.", "engines": { - "node": ">=0.4.x" + "node": ">= 0.10" } }, - "node_modules/queue-microtask": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/queue-microtask/-/queue-microtask-1.2.3.tgz", - "integrity": "sha512-NuaNSa6flKT5JaSYQzJok04JzTL1CA6aGhv5rfLW3PgqA+M2ChpZQnAC8h8i4ZFkBS8X5RqkDBHA7r4hej3K9A==", + "node_modules/release-it": { + "version": "17.1.1", + "resolved": "https://registry.npmjs.org/release-it/-/release-it-17.1.1.tgz", + "integrity": "sha512-b+4Tu2eb5f2wIdIe5E9hre0evbMQrXp/kRq0natHsHYJVqu1Bd4/h2a+swFi0faGmC3cJdB16uYR6LscG9SchQ==", "dev": true, "funding": [ { "type": "github", - "url": "https://github.com/sponsors/feross" - }, - { - "type": "patreon", - "url": "https://www.patreon.com/feross" + "url": "https://github.com/sponsors/webpro" }, { - "type": "consulting", - "url": "https://feross.org/support" + "type": "opencollective", + "url": "https://opencollective.com/webpro" } - ] - }, - "node_modules/quick-format-unescaped": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/quick-format-unescaped/-/quick-format-unescaped-1.1.2.tgz", - "integrity": "sha512-lli1svZnGwCLiDydlAN2bmSiEeThfI5gnqWsv0cFRiRbzXsRuzoPldK+BY5TM/i+koLoZ8dmZA6uPEBGTpaZqw==", - "dev": true, + ], "dependencies": { - "fast-safe-stringify": "^1.0.8" - } - }, - "node_modules/quick-lru": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/quick-lru/-/quick-lru-4.0.1.tgz", - "integrity": "sha512-ARhCpm70fzdcvNQfPoy49IaanKkTlRWF2JMzqhcJbhSFRZv7nPTvZJdcY7301IPmvW+/p0RgIWnQDLJxifsQ7g==", - "dev": true, + "@iarna/toml": "2.2.5", + "@octokit/rest": "20.0.2", + "async-retry": "1.3.3", + "chalk": "5.3.0", + "cosmiconfig": "9.0.0", + "execa": "8.0.1", + "git-url-parse": "14.0.0", + "globby": "14.0.1", + "got": "13.0.0", + "inquirer": "9.2.14", + "is-ci": "3.0.1", + "issue-parser": "6.0.0", + "lodash": "4.17.21", + "mime-types": "2.1.35", + "new-github-release-url": "2.0.0", + "node-fetch": "3.3.2", + "open": "10.0.3", + "ora": "8.0.1", + "os-name": "5.1.0", + "promise.allsettled": "1.0.7", + "proxy-agent": "6.4.0", + "semver": "7.6.0", + "shelljs": "0.8.5", + "update-notifier": "7.0.0", + "url-join": "5.0.0", + "wildcard-match": "5.1.2", + "yargs-parser": "21.1.1" + }, + "bin": { + "release-it": "bin/release-it.js" + }, "engines": { - "node": ">=8" + "node": ">=18" } }, - "node_modules/ramda": { - "version": "0.28.0", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.28.0.tgz", - "integrity": "sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==", + "node_modules/release-it/node_modules/ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", "dev": true, + "engines": { + "node": ">=12" + }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/ramda" + "url": "https://github.com/chalk/ansi-regex?sponsor=1" } }, - "node_modules/randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", + "node_modules/release-it/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", "dev": true, "dependencies": { - "safe-buffer": "^5.1.0" + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" } }, - "node_modules/range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", + "node_modules/release-it/node_modules/chalk": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", + "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", "dev": true, "engines": { - "node": ">= 0.6" + "node": "^12.17.0 || ^14.13 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/raw-body": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.5.1.tgz", - "integrity": "sha512-qqJBtEyVgS0ZmPGdCFPWJ3FreoqvG4MVQln/kCgF7Olq95IbOp0/BWyMwbdtn4VTvkM8Y7khCQ2Xgk/tcrCXig==", - "dev": true, - "dependencies": { - "bytes": "3.1.2", - "http-errors": "2.0.0", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - }, - "engines": { - "node": ">= 0.8" - } + "node_modules/release-it/node_modules/chardet": { + "version": "0.7.0", + "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", + "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "dev": true }, - "node_modules/raw-body/node_modules/bytes": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.2.tgz", - "integrity": "sha512-/Nf7TyzTx6S3yRJObOAV7956r8cr2+Oj8AC5dt8wSP3BQAoeX58NoHyCU8P8zGkNXStjTSi6fzO6F0pBdcYbEg==", + "node_modules/release-it/node_modules/cli-width": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", + "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", "dev": true, "engines": { - "node": ">= 0.8" + "node": ">= 12" } }, - "node_modules/rc": { - "version": "1.2.8", - "resolved": "https://registry.npmjs.org/rc/-/rc-1.2.8.tgz", - "integrity": "sha512-y3bGgqKj3QBdxLbLkomlohkvsA8gdAiUQlSBJnBhfn+BPxg4bc62d8TcBW15wavDfgexCgccckhcZvywyQYPOw==", + "node_modules/release-it/node_modules/cosmiconfig": { + "version": "9.0.0", + "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", + "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "dev": true, "dependencies": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" + "env-paths": "^2.2.1", + "import-fresh": "^3.3.0", + "js-yaml": "^4.1.0", + "parse-json": "^5.2.0" }, - "bin": { - "rc": "cli.js" - } - }, - "node_modules/rc/node_modules/strip-json-comments": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/strip-json-comments/-/strip-json-comments-2.0.1.tgz", - "integrity": "sha512-4gB8na07fecVVkOI6Rs4e7T6NOTki5EmL7TUduTs6bu3EdnSycntVJ4re8kgZA+wx9IueI2Y11bfbgwtzuE0KQ==", "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react/-/react-18.2.0.tgz", - "integrity": "sha512-/3IjMdb2L9QbBdWiW5e3P2/npwMBaU9mHCSCUzNln0ZCYbcfTsGbTJrU/kGemdH2IWmB2ioZ+zkxtmq6g09fGQ==", - "dependencies": { - "loose-envify": "^1.1.0" + "node": ">=14" + }, + "funding": { + "url": "https://github.com/sponsors/d-fischer" }, - "engines": { - "node": ">=0.10.0" - } - }, - "node_modules/react-click-away-listener": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/react-click-away-listener/-/react-click-away-listener-2.2.2.tgz", - "integrity": "sha512-6x5Ra+2xagMq+5YcBu42jtht+bKVErgPXaI/GqYP5M8Xz2o/UbGyMd3TISQK6ixfORUTvdHeRnOVU3TbSpZ5Zg==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0", - "react-dom": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-colorful": { - "version": "5.6.1", - "resolved": "https://registry.npmjs.org/react-colorful/-/react-colorful-5.6.1.tgz", - "integrity": "sha512-1exovf0uGTGyq5mXQT0zgQ80uvj2PCwvF8zY1RN9/vbJVSjSo3fsB/4L3ObbF7u70NduSiK4xu4Y6q1MHoUGEw==", - "dev": true, "peerDependencies": { - "react": ">=16.8.0", - "react-dom": ">=16.8.0" + "typescript": ">=4.9.5" + }, + "peerDependenciesMeta": { + "typescript": { + "optional": true + } } }, - "node_modules/react-docgen": { - "version": "5.4.3", - "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.3.tgz", - "integrity": "sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==", + "node_modules/release-it/node_modules/data-uri-to-buffer": { + "version": "4.0.1", + "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", + "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", "dev": true, - "dependencies": { - "@babel/core": "^7.7.5", - "@babel/generator": "^7.12.11", - "@babel/runtime": "^7.7.6", - "ast-types": "^0.14.2", - "commander": "^2.19.0", - "doctrine": "^3.0.0", - "estree-to-babel": "^3.1.0", - "neo-async": "^2.6.1", - "node-dir": "^0.1.10", - "strip-indent": "^3.0.0" - }, - "bin": { - "react-docgen": "bin/react-docgen.js" - }, "engines": { - "node": ">=8.10.0" + "node": ">= 12" } }, - "node_modules/react-docgen/node_modules/ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", + "node_modules/release-it/node_modules/define-lazy-prop": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", + "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", "dev": true, - "dependencies": { - "tslib": "^2.0.1" - }, "engines": { - "node": ">=4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-docgen/node_modules/commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", + "node_modules/release-it/node_modules/emoji-regex": { + "version": "10.3.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", + "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", "dev": true }, - "node_modules/react-dom": { - "version": "18.2.0", - "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", - "integrity": "sha512-6IMTriUmvsjHUjNtEDudZfuDQUoWXVxKHhlEGSk81n4YFS+r/Kl99wXiwlVXtPBtJenozv2P+hxDsw9eA7Xo6g==", + "node_modules/release-it/node_modules/execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, "dependencies": { - "loose-envify": "^1.1.0", - "scheduler": "^0.23.0" + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" }, - "peerDependencies": { - "react": "^18.2.0" + "engines": { + "node": ">=16.17" + }, + "funding": { + "url": "https://github.com/sindresorhus/execa?sponsor=1" } }, - "node_modules/react-element-to-jsx-string": { - "version": "15.0.0", - "resolved": "https://registry.npmjs.org/react-element-to-jsx-string/-/react-element-to-jsx-string-15.0.0.tgz", - "integrity": "sha512-UDg4lXB6BzlobN60P8fHWVPX3Kyw8ORrTeBtClmIlGdkOOE+GYQSFvmEU5iLLpwp/6v42DINwNcwOhOLfQ//FQ==", + "node_modules/release-it/node_modules/external-editor": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", + "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", "dev": true, "dependencies": { - "@base2/pretty-print-object": "1.0.1", - "is-plain-object": "5.0.0", - "react-is": "18.1.0" + "chardet": "^0.7.0", + "iconv-lite": "^0.4.24", + "tmp": "^0.0.33" }, - "peerDependencies": { - "react": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0", - "react-dom": "^0.14.8 || ^15.0.1 || ^16.0.0 || ^17.0.1 || ^18.0.0" - } - }, - "node_modules/react-element-to-jsx-string/node_modules/is-plain-object": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-5.0.0.tgz", - "integrity": "sha512-VRSzKkbMm5jMDoKLbltAkFQ5Qr7VDiTFGXxYFXXowVj387GeGNOCsOH6Msy00SGZ3Fp84b1Naa1psqgcCIEP5Q==", - "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=4" } }, - "node_modules/react-element-to-jsx-string/node_modules/react-is": { - "version": "18.1.0", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-18.1.0.tgz", - "integrity": "sha512-Fl7FuabXsJnV5Q1qIOQwx/sagGF18kogb4gpfcG4gjLBWO0WDiiz1ko/ExayuxE7InyQkBLkxRFG5oxY6Uu3Kg==", - "dev": true - }, - "node_modules/react-fast-compare": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/react-fast-compare/-/react-fast-compare-3.2.2.tgz", - "integrity": "sha512-nsO+KSNgo1SbJqJEYRE9ERzo7YtYbou/OqjSQKxV7jcKox7+usiUVZOAC+XnDOABXggQTno0Y1CpVnuWEc1boQ==" - }, - "node_modules/react-hook-form": { - "version": "7.50.1", - "resolved": "https://registry.npmjs.org/react-hook-form/-/react-hook-form-7.50.1.tgz", - "integrity": "sha512-3PCY82oE0WgeOgUtIr3nYNNtNvqtJ7BZjsbxh6TnYNbXButaD5WpjOmTjdxZfheuHKR68qfeFnEDVYoSSFPMTQ==", + "node_modules/release-it/node_modules/figures": { + "version": "3.2.0", + "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", + "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "dev": true, + "dependencies": { + "escape-string-regexp": "^1.0.5" + }, "engines": { - "node": ">=12.22.0" + "node": ">=8" }, "funding": { - "type": "opencollective", - "url": "https://opencollective.com/react-hook-form" - }, - "peerDependencies": { - "react": "^16.8.0 || ^17 || ^18" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-inlinesvg": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/react-inlinesvg/-/react-inlinesvg-3.0.0.tgz", - "integrity": "sha512-zUt0DW3cKBk+vYZJJCzJqA9STRb+ZFmKLQFWurTvM4UR6vyHT8kHZSzyZZseX9BUNbTFJAfirtwpt97BWDJoSg==", - "dependencies": { - "exenv": "^1.2.2", - "react-from-dom": "^0.6.2" + "node_modules/release-it/node_modules/get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true, + "engines": { + "node": ">=16" }, - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-inlinesvg/node_modules/react-from-dom": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/react-from-dom/-/react-from-dom-0.6.2.tgz", - "integrity": "sha512-qvWWTL/4xw4k/Dywd41RBpLQUSq97csuv15qrxN+izNeLYlD9wn5W8LspbfYe5CWbaSdkZ72BsaYBPQf2x4VbQ==", - "peerDependencies": { - "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-inspector": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-6.0.1.tgz", - "integrity": "sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==", + "node_modules/release-it/node_modules/globby": { + "version": "14.0.1", + "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", + "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", "dev": true, - "peerDependencies": { - "react": "^16.8.4 || ^17.0.0 || ^18.0.0" - } - }, - "node_modules/react-is": { - "version": "17.0.2", - "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", - "integrity": "sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w==", - "dev": true - }, - "node_modules/react-lifecycles-compat": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/react-lifecycles-compat/-/react-lifecycles-compat-3.0.4.tgz", - "integrity": "sha512-fBASbA6LnOU9dOU2eW7aQ8xmYBSXUIWr+UmF9b1efZBazGNO+rcXT/icdKnYm2pTwcRylVUYwW7H1PHfLekVzA==" - }, - "node_modules/react-modal": { - "version": "3.15.1", - "resolved": "https://registry.npmjs.org/react-modal/-/react-modal-3.15.1.tgz", - "integrity": "sha512-duB9bxOaYg7Zt6TMFldIFxQRtSP+Dg3F1ZX3FXxSUn+3tZZ/9JCgeAQKDg7rhZSAqopq8TFRw3yIbnx77gyFTw==", "dependencies": { - "exenv": "^1.2.0", - "prop-types": "^15.7.2", - "react-lifecycles-compat": "^3.0.0", - "warning": "^4.0.3" + "@sindresorhus/merge-streams": "^2.1.0", + "fast-glob": "^3.3.2", + "ignore": "^5.2.4", + "path-type": "^5.0.0", + "slash": "^5.1.0", + "unicorn-magic": "^0.1.0" }, "engines": { - "node": ">=8" - }, - "peerDependencies": { - "react": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18", - "react-dom": "^0.14.0 || ^15.0.0 || ^16 || ^17 || ^18" - } - }, - "node_modules/react-popper": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/react-popper/-/react-popper-2.3.0.tgz", - "integrity": "sha512-e1hj8lL3uM+sgSR4Lxzn5h1GxBlpa4CQz0XLF8kx4MDrDRWY0Ena4c97PUeSX9i5W3UAfDP0z0FXCTQkoXUl3Q==", - "dependencies": { - "react-fast-compare": "^3.0.1", - "warning": "^4.0.2" + "node": ">=18" }, - "peerDependencies": { - "@popperjs/core": "^2.0.0", - "react": "^16.8.0 || ^17 || ^18", - "react-dom": "^16.8.0 || ^17 || ^18" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/react-refresh": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", - "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "node_modules/release-it/node_modules/has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true, "engines": { - "node": ">=0.10.0" + "node": ">=8" } }, - "node_modules/react-router": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.3.0.tgz", - "integrity": "sha512-7Wh1DzVQ+tlFjkeo+ujvjSqSJmkt1+8JO+T5xklPlgrh70y7ogx75ODRW0ThWhY7S+6yEDks8TYrtQe/aoboBQ==", - "dependencies": { - "history": "^5.2.0" - }, - "peerDependencies": { - "react": ">=16.8" + "node_modules/release-it/node_modules/human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true, + "engines": { + "node": ">=16.17.0" } }, - "node_modules/react-router-dom": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/react-router-dom/-/react-router-dom-6.3.0.tgz", - "integrity": "sha512-uaJj7LKytRxZNQV8+RbzJWnJ8K2nPsOOEuX7aQstlMZKQT0164C+X2w6bnkqU3sjtLvpd5ojrezAyfZ1+0sStw==", + "node_modules/release-it/node_modules/inquirer": { + "version": "9.2.14", + "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.14.tgz", + "integrity": "sha512-4ByIMt677Iz5AvjyKrDpzaepIyMewNvDcvwpVVRZNmy9dLakVoVgdCHZXbK1SlVJra1db0JZ6XkJyHsanpdrdQ==", + "dev": true, "dependencies": { - "history": "^5.2.0", - "react-router": "6.3.0" + "@ljharb/through": "^2.3.12", + "ansi-escapes": "^4.3.2", + "chalk": "^5.3.0", + "cli-cursor": "^3.1.0", + "cli-width": "^4.1.0", + "external-editor": "^3.1.0", + "figures": "^3.2.0", + "lodash": "^4.17.21", + "mute-stream": "1.0.0", + "ora": "^5.4.1", + "run-async": "^3.0.0", + "rxjs": "^7.8.1", + "string-width": "^4.2.3", + "strip-ansi": "^6.0.1", + "wrap-ansi": "^6.2.0" }, - "peerDependencies": { - "react": ">=16.8", - "react-dom": ">=16.8" + "engines": { + "node": ">=18" } }, - "node_modules/read-pkg": { - "version": "5.2.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", - "integrity": "sha512-Ug69mNOpfvKDAc2Q8DRpMjjzdtrnv9HcSMX+4VsZxD1aZ6ZzrIE7rlzXBtWTyhULSMKg076AW6WR5iZpD0JiOg==", + "node_modules/release-it/node_modules/inquirer/node_modules/ora": { + "version": "5.4.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", + "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", "dev": true, "dependencies": { - "@types/normalize-package-data": "^2.4.0", - "normalize-package-data": "^2.5.0", - "parse-json": "^5.0.0", - "type-fest": "^0.6.0" + "bl": "^4.1.0", + "chalk": "^4.1.0", + "cli-cursor": "^3.1.0", + "cli-spinners": "^2.5.0", + "is-interactive": "^1.0.0", + "is-unicode-supported": "^0.1.0", + "log-symbols": "^4.1.0", + "strip-ansi": "^6.0.0", + "wcwidth": "^1.0.1" }, "engines": { - "node": ">=8" + "node": ">=10" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg-up": { - "version": "7.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-7.0.1.tgz", - "integrity": "sha512-zK0TB7Xd6JpCLmlLmufqykGE+/TlOePD6qKClNW7hHDKFh/J7/7gCWGR7joEQEW1bKq3a3yUZSObOoWLFQ4ohg==", + "node_modules/release-it/node_modules/inquirer/node_modules/ora/node_modules/chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", "dev": true, "dependencies": { - "find-up": "^4.1.0", - "read-pkg": "^5.2.0", - "type-fest": "^0.8.1" + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" }, "engines": { - "node": ">=8" + "node": ">=10" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "url": "https://github.com/chalk/chalk?sponsor=1" } }, - "node_modules/read-pkg-up/node_modules/type-fest": { - "version": "0.8.1", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.8.1.tgz", - "integrity": "sha512-4dbzIzqvjtgiM5rw1k5rEHtBANKmdudhGyBEajN01fEyhaAIhsoKNy6y7+IN93IfpFtwY9iqi7kD+xwKhQsNJA==", + "node_modules/release-it/node_modules/is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", "dev": true, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg/node_modules/hosted-git-info": { - "version": "2.8.9", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.9.tgz", - "integrity": "sha512-mxIDAb9Lsm6DoOJ7xH+5+X4y1LU/4Hi50L9C5sIswK3JzULS4bwk1FvjdBgvYR4bzT4tuUQiC15FE2f5HbLvYw==", - "dev": true - }, - "node_modules/read-pkg/node_modules/normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", + "node_modules/release-it/node_modules/is-wsl": { + "version": "3.1.0", + "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", + "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", "dev": true, "dependencies": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" + "is-inside-container": "^1.0.0" + }, + "engines": { + "node": ">=16" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg/node_modules/semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "node_modules/release-it/node_modules/mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", "dev": true, - "bin": { - "semver": "bin/semver" + "engines": { + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/read-pkg/node_modules/type-fest": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.6.0.tgz", - "integrity": "sha512-q+MB8nYR1KDLrgr4G5yemftpMC7/QLqVndBmEEdqzmNj5dcFOO4Oo8qlwZE3ULT3+Zim1F8Kq4cBnikNhlCMlg==", + "node_modules/release-it/node_modules/mute-stream": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", + "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", "dev": true, "engines": { - "node": ">=8" + "node": "^14.17.0 || ^16.13.0 || >=18.0.0" } }, - "node_modules/readable-stream": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-3.6.0.tgz", - "integrity": "sha512-BViHy7LKeTz4oNnkcLJ+lVSL6vpiFeX6/d3oSH8zCW7UxP2onchk+vTGB143xuFjHS3deTgkKoXXymXqymiIdA==", + "node_modules/release-it/node_modules/node-fetch": { + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", + "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", + "dev": true, "dependencies": { - "inherits": "^2.0.3", - "string_decoder": "^1.1.1", - "util-deprecate": "^1.0.1" + "data-uri-to-buffer": "^4.0.0", + "fetch-blob": "^3.1.4", + "formdata-polyfill": "^4.0.10" }, "engines": { - "node": ">= 6" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "type": "opencollective", + "url": "https://opencollective.com/node-fetch" } }, - "node_modules/readdirp": { - "version": "3.6.0", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-3.6.0.tgz", - "integrity": "sha512-hOS089on8RduqdbhvQ5Z37A0ESjsqz6qnRcffsMU3495FuTdqSm+7bhJ29JvIOsBDEEnan5DPu9t3To9VRlMzA==", + "node_modules/release-it/node_modules/npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", "dev": true, "dependencies": { - "picomatch": "^2.2.1" + "path-key": "^4.0.0" }, "engines": { - "node": ">=8.10.0" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/recast": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.1.tgz", - "integrity": "sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==", + "node_modules/release-it/node_modules/onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", "dev": true, "dependencies": { - "assert": "^2.0.0", - "ast-types": "^0.16.1", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tslib": "^2.0.1" + "mimic-fn": "^4.0.0" }, "engines": { - "node": ">= 4" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/recast/node_modules/assert": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", - "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==", + "node_modules/release-it/node_modules/open": { + "version": "10.0.3", + "resolved": "https://registry.npmjs.org/open/-/open-10.0.3.tgz", + "integrity": "sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==", "dev": true, "dependencies": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" + "default-browser": "^5.2.1", + "define-lazy-prop": "^3.0.0", + "is-inside-container": "^1.0.0", + "is-wsl": "^3.1.0" + }, + "engines": { + "node": ">=18" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/rechoir": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.7.1.tgz", - "integrity": "sha512-/njmZ8s1wVeR6pjTZ+0nCnv8SpZNRMT2D1RLOJQESlYFDBvwpTA4KWJpZ+sBJ4+vhjILRcK7JIFdGCdxEAAitg==", + "node_modules/release-it/node_modules/ora": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/ora/-/ora-8.0.1.tgz", + "integrity": "sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==", "dev": true, "dependencies": { - "resolve": "^1.9.0" + "chalk": "^5.3.0", + "cli-cursor": "^4.0.0", + "cli-spinners": "^2.9.2", + "is-interactive": "^2.0.0", + "is-unicode-supported": "^2.0.0", + "log-symbols": "^6.0.0", + "stdin-discarder": "^0.2.1", + "string-width": "^7.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">= 0.10" - } - }, - "node_modules/recoil": { - "version": "0.7.5", - "resolved": "https://registry.npmjs.org/recoil/-/recoil-0.7.5.tgz", - "integrity": "sha512-GVShsj5+M/2GULWBs5WBJGcsNis/d3YvDiaKjYh3mLKXftjtmk9kfaQ8jwjoIXySCwn8/RhgJ4Sshwgzj2UpFA==", - "dependencies": { - "hamt_plus": "1.0.2" - }, - "peerDependencies": { - "react": ">=16.13.1" + "node": ">=18" }, - "peerDependenciesMeta": { - "react-dom": { - "optional": true - }, - "react-native": { - "optional": true - } + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/redent": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-3.0.0.tgz", - "integrity": "sha512-6tDA8g98We0zd0GvVeMT9arEOnTw9qM03L9cJXaCjrip1OO764RDBLBfrB4cwzNGDj5OA5ioymC9GkizgWJDUg==", + "node_modules/release-it/node_modules/ora/node_modules/cli-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", + "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", "dev": true, "dependencies": { - "indent-string": "^4.0.0", - "strip-indent": "^3.0.0" + "restore-cursor": "^4.0.0" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/redent/node_modules/indent-string": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-4.0.0.tgz", - "integrity": "sha512-EdDDZu4A2OyIK7Lr/2zG+w5jmbuk1DVBnEwREQvBzspBJkCEbRa8GxU1lghYcaGJCnRWibjDXlq779X1/y5xwg==", + "node_modules/release-it/node_modules/ora/node_modules/is-interactive": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", + "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", "dev": true, "engines": { - "node": ">=8" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/reduce-flatten": { + "node_modules/release-it/node_modules/ora/node_modules/is-unicode-supported": { "version": "2.0.0", - "resolved": "https://registry.npmjs.org/reduce-flatten/-/reduce-flatten-2.0.0.tgz", - "integrity": "sha512-EJ4UNY/U1t2P/2k6oqotuX2Cc3T6nxJwsM0N0asT7dhrtH1ltUxDn4NalSYmPE2rCkVpcf/X6R0wDwcFpzhd4w==", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", + "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", "dev": true, "engines": { - "node": ">=6" - } - }, - "node_modules/reflect-metadata": { - "version": "0.1.13", - "resolved": "https://registry.npmjs.org/reflect-metadata/-/reflect-metadata-0.1.13.tgz", - "integrity": "sha512-Ts1Y/anZELhSsjMcU605fU9RE4Oi3p5ORujwbIKXfWa+0Zxs510Qrmrce5/Jowq3cHSZSJqBjypxmHarc+vEWg==" - }, - "node_modules/regenerate": { - "version": "1.4.2", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.2.tgz", - "integrity": "sha512-zrceR/XhGYU/d/opr2EKO7aRHUeiBI8qjtfHqADTwZd6Szfy16la6kqD0MIUs5z5hx6AaKa+PixpPrR289+I0A==", - "dev": true - }, - "node_modules/regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", - "dev": true, - "dependencies": { - "regenerate": "^1.4.2" + "node": ">=18" }, - "engines": { - "node": ">=4" - } - }, - "node_modules/regenerator-runtime": { - "version": "0.13.9", - "resolved": "https://registry.npmjs.org/regenerator-runtime/-/regenerator-runtime-0.13.9.tgz", - "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" - }, - "node_modules/regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", - "dev": true, - "dependencies": { - "@babel/runtime": "^7.8.4" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/regexp.prototype.flags": { - "version": "1.5.2", - "resolved": "https://registry.npmjs.org/regexp.prototype.flags/-/regexp.prototype.flags-1.5.2.tgz", - "integrity": "sha512-NcDiDkTLuPR+++OCKB0nWafEmhg/Da8aUPLPMQbK+bxKKCm1/S5he+AqYa4PlMCVBalb4/yxIRub6qkEx5yJbw==", + "node_modules/release-it/node_modules/ora/node_modules/log-symbols": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz", + "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", "dev": true, "dependencies": { - "call-bind": "^1.0.6", - "define-properties": "^1.2.1", - "es-errors": "^1.3.0", - "set-function-name": "^2.0.1" + "chalk": "^5.3.0", + "is-unicode-supported": "^1.3.0" }, "engines": { - "node": ">= 0.4" + "node": ">=18" }, "funding": { - "url": "https://github.com/sponsors/ljharb" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/regexpu-core": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", - "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", + "node_modules/release-it/node_modules/ora/node_modules/log-symbols/node_modules/is-unicode-supported": { + "version": "1.3.0", + "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", + "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", "dev": true, - "dependencies": { - "@babel/regjsgen": "^0.8.0", - "regenerate": "^1.4.2", - "regenerate-unicode-properties": "^10.1.0", - "regjsparser": "^0.9.1", - "unicode-match-property-ecmascript": "^2.0.0", - "unicode-match-property-value-ecmascript": "^2.1.0" - }, "engines": { - "node": ">=4" - } - }, - "node_modules/registry-auth-token": { - "version": "5.0.2", - "resolved": "https://registry.npmjs.org/registry-auth-token/-/registry-auth-token-5.0.2.tgz", - "integrity": "sha512-o/3ikDxtXaA59BmZuZrJZDJv8NMDGSj+6j6XaeBmHw8eY1i1qd9+6H+LjVvQXx3HN6aRCGa1cUdJ9RaJZUugnQ==", - "dev": true, - "dependencies": { - "@pnpm/npm-conf": "^2.1.0" + "node": ">=12" }, - "engines": { - "node": ">=14" + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/registry-url": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/registry-url/-/registry-url-6.0.1.tgz", - "integrity": "sha512-+crtS5QjFRqFCoQmvGduwYWEBng99ZvmFvF+cUJkGYF1L1BfU8C6Zp9T7f5vPAwyLkUExpvK+ANVZmGU49qi4Q==", + "node_modules/release-it/node_modules/ora/node_modules/string-width": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", + "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", "dev": true, "dependencies": { - "rc": "1.2.8" + "emoji-regex": "^10.3.0", + "get-east-asian-width": "^1.0.0", + "strip-ansi": "^7.1.0" }, "engines": { - "node": ">=12" + "node": ">=18" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/regjsparser": { - "version": "0.9.1", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.9.1.tgz", - "integrity": "sha512-dQUtn90WanSNl+7mQKcXAgZxvUe7Z0SqXlgzv0za4LwiUhyzBC58yQO3liFoUgu8GiJVInAhJjkj1N0EtQ5nkQ==", + "node_modules/release-it/node_modules/ora/node_modules/strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", "dev": true, "dependencies": { - "jsesc": "~0.5.0" + "ansi-regex": "^6.0.1" }, - "bin": { - "regjsparser": "bin/parser" - } - }, - "node_modules/regjsparser/node_modules/jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha512-uZz5UnB7u4T9LvwmFqXii7pZSouaRPorGs5who1Ip7VO0wxanFvBL7GkM6dTHlgX+jhBApRetaWpnDabOeTcnA==", - "dev": true, - "bin": { - "jsesc": "bin/jsesc" - } - }, - "node_modules/relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha512-G08Dxvm4iDN3MLM0EsP62EDV9IuhXPR6blNz6Utcp7zyV3tr4HVNINt6MpaRWbxoOHT3Q7YN2P+jaHX8vUbgog==", - "dev": true, "engines": { - "node": ">= 0.10" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/chalk/strip-ansi?sponsor=1" } }, - "node_modules/release-it": { - "version": "17.1.1", - "resolved": "https://registry.npmjs.org/release-it/-/release-it-17.1.1.tgz", - "integrity": "sha512-b+4Tu2eb5f2wIdIe5E9hre0evbMQrXp/kRq0natHsHYJVqu1Bd4/h2a+swFi0faGmC3cJdB16uYR6LscG9SchQ==", + "node_modules/release-it/node_modules/path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", "dev": true, - "funding": [ - { - "type": "github", - "url": "https://github.com/sponsors/webpro" - }, - { - "type": "opencollective", - "url": "https://opencollective.com/webpro" - } - ], - "dependencies": { - "@iarna/toml": "2.2.5", - "@octokit/rest": "20.0.2", - "async-retry": "1.3.3", - "chalk": "5.3.0", - "cosmiconfig": "9.0.0", - "execa": "8.0.1", - "git-url-parse": "14.0.0", - "globby": "14.0.1", - "got": "13.0.0", - "inquirer": "9.2.14", - "is-ci": "3.0.1", - "issue-parser": "6.0.0", - "lodash": "4.17.21", - "mime-types": "2.1.35", - "new-github-release-url": "2.0.0", - "node-fetch": "3.3.2", - "open": "10.0.3", - "ora": "8.0.1", - "os-name": "5.1.0", - "promise.allsettled": "1.0.7", - "proxy-agent": "6.4.0", - "semver": "7.6.0", - "shelljs": "0.8.5", - "update-notifier": "7.0.0", - "url-join": "5.0.0", - "wildcard-match": "5.1.2", - "yargs-parser": "21.1.1" - }, - "bin": { - "release-it": "bin/release-it.js" - }, "engines": { - "node": ">=18" + "node": ">=12" + }, + "funding": { + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/ansi-regex": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", - "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "node_modules/release-it/node_modules/path-type": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", + "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", "dev": true, "engines": { "node": ">=12" }, "funding": { - "url": "https://github.com/chalk/ansi-regex?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "node_modules/release-it/node_modules/restore-cursor": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", + "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", "dev": true, "dependencies": { - "color-convert": "^2.0.1" + "onetime": "^5.1.0", + "signal-exit": "^3.0.2" }, "engines": { - "node": ">=8" + "node": "^12.20.0 || ^14.13.1 || >=16.0.0" }, "funding": { - "url": "https://github.com/chalk/ansi-styles?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "node_modules/release-it/node_modules/restore-cursor/node_modules/mimic-fn": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", + "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", + "dev": true, + "engines": { + "node": ">=6" + } }, - "node_modules/release-it/node_modules/chalk": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", - "integrity": "sha512-dLitG79d+GV1Nb/VYcCDFivJeK1hiukt9QjRNVOsUtTy1rR1YJsmpGGTZ3qJos+uw7WmWF4wUwBd9jxjocFC2w==", + "node_modules/release-it/node_modules/restore-cursor/node_modules/onetime": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", + "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", "dev": true, + "dependencies": { + "mimic-fn": "^2.1.0" + }, "engines": { - "node": "^12.17.0 || ^14.13 || >=16.0.0" + "node": ">=6" }, "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/chardet": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/chardet/-/chardet-0.7.0.tgz", - "integrity": "sha512-mT8iDcrh03qDGRRmoA2hmBJnxpllMR+0/0qlzjqZES6NdiWDcZkCNAk4rPFZ9Q85r27unkiNNg8ZOiwZXBHwcA==", + "node_modules/release-it/node_modules/restore-cursor/node_modules/signal-exit": { + "version": "3.0.7", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", + "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", "dev": true }, - "node_modules/release-it/node_modules/cli-width": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/cli-width/-/cli-width-4.1.0.tgz", - "integrity": "sha512-ouuZd4/dm2Sw5Gmqy6bGyNNNe1qt9RpmxveLSO7KcgsTnU7RXfsw+/bukWGo1abgBiMAic068rclZsO4IWmmxQ==", + "node_modules/release-it/node_modules/run-async": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", + "integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==", "dev": true, "engines": { - "node": ">= 12" + "node": ">=0.12.0" } }, - "node_modules/release-it/node_modules/cosmiconfig": { - "version": "9.0.0", - "resolved": "https://registry.npmjs.org/cosmiconfig/-/cosmiconfig-9.0.0.tgz", - "integrity": "sha512-itvL5h8RETACmOTFc4UfIyB2RfEHi71Ax6E/PivVxq9NseKbOWpeyHEOIbmAw1rs8Ak0VursQNww7lf7YtUwzg==", + "node_modules/release-it/node_modules/signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", "dev": true, - "dependencies": { - "env-paths": "^2.2.1", - "import-fresh": "^3.3.0", - "js-yaml": "^4.1.0", - "parse-json": "^5.2.0" - }, "engines": { "node": ">=14" }, "funding": { - "url": "https://github.com/sponsors/d-fischer" - }, - "peerDependencies": { - "typescript": ">=4.9.5" - }, - "peerDependenciesMeta": { - "typescript": { - "optional": true - } - } - }, - "node_modules/release-it/node_modules/data-uri-to-buffer": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/data-uri-to-buffer/-/data-uri-to-buffer-4.0.1.tgz", - "integrity": "sha512-0R9ikRb668HB7QDxT1vkpuUBtqc53YyAwMwGeUFKRojY/NWKvdZ+9UYtRfGmhqNbRkTSVpMbmyhXipFFv2cb/A==", - "dev": true, - "engines": { - "node": ">= 12" + "url": "https://github.com/sponsors/isaacs" } }, - "node_modules/release-it/node_modules/define-lazy-prop": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/define-lazy-prop/-/define-lazy-prop-3.0.0.tgz", - "integrity": "sha512-N+MeXYoqr3pOgn8xfyRPREN7gHakLYjhsHhWGT3fWAiL4IkAt0iDw14QiiEm2bE30c5XX5q0FtAA3CK5f9/BUg==", + "node_modules/release-it/node_modules/slash": { + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", + "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", "dev": true, "engines": { - "node": ">=12" + "node": ">=14.16" }, "funding": { "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/emoji-regex": { - "version": "10.3.0", - "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-10.3.0.tgz", - "integrity": "sha512-QpLs9D9v9kArv4lfDEgg1X/gN5XLnf/A6l9cs8SPZLRZR3ZkY9+kwIQTxm+fsSej5UMYGE8fdoaZVIBlqG0XTw==", - "dev": true - }, - "node_modules/release-it/node_modules/execa": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", - "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "node_modules/release-it/node_modules/strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", "dev": true, - "dependencies": { - "cross-spawn": "^7.0.3", - "get-stream": "^8.0.1", - "human-signals": "^5.0.0", - "is-stream": "^3.0.0", - "merge-stream": "^2.0.0", - "npm-run-path": "^5.1.0", - "onetime": "^6.0.0", - "signal-exit": "^4.1.0", - "strip-final-newline": "^3.0.0" - }, "engines": { - "node": ">=16.17" + "node": ">=12" }, "funding": { - "url": "https://github.com/sindresorhus/execa?sponsor=1" + "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/external-editor": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/external-editor/-/external-editor-3.1.0.tgz", - "integrity": "sha512-hMQ4CX1p1izmuLYyZqLMO/qGNw10wSv9QDCPfzXfyFrOaCSSoRfqE1Kf1s5an66J5JZC62NewG+mK49jOCtQew==", + "node_modules/release-it/node_modules/supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", "dev": true, "dependencies": { - "chardet": "^0.7.0", - "iconv-lite": "^0.4.24", - "tmp": "^0.0.33" + "has-flag": "^4.0.0" }, "engines": { - "node": ">=4" + "node": ">=8" } }, - "node_modules/release-it/node_modules/figures": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/figures/-/figures-3.2.0.tgz", - "integrity": "sha512-yaduQFRKLXYOGgEn6AZau90j3ggSOyiqXU0F9JZfeXYhNa+Jk4X+s45A2zg5jns87GAFa34BBm2kXw4XpNcbdg==", + "node_modules/release-it/node_modules/wrap-ansi": { + "version": "6.2.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", + "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", "dev": true, "dependencies": { - "escape-string-regexp": "^1.0.5" + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" }, "engines": { "node": ">=8" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" } }, - "node_modules/release-it/node_modules/get-stream": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", - "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "node_modules/remark-external-links": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", + "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==", "dev": true, - "engines": { - "node": ">=16" + "dependencies": { + "extend": "^3.0.0", + "is-absolute-url": "^3.0.0", + "mdast-util-definitions": "^4.0.0", + "space-separated-tokens": "^1.0.0", + "unist-util-visit": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/release-it/node_modules/globby": { - "version": "14.0.1", - "resolved": "https://registry.npmjs.org/globby/-/globby-14.0.1.tgz", - "integrity": "sha512-jOMLD2Z7MAhyG8aJpNOpmziMOP4rPLcc95oQPKXBazW82z+CEgPFBQvEpRUa1KeIMUJo4Wsm+q6uzO/Q/4BksQ==", + "node_modules/remark-slug": { + "version": "6.1.0", + "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", + "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==", "dev": true, "dependencies": { - "@sindresorhus/merge-streams": "^2.1.0", - "fast-glob": "^3.3.2", - "ignore": "^5.2.4", - "path-type": "^5.0.0", - "slash": "^5.1.0", - "unicorn-magic": "^0.1.0" - }, - "engines": { - "node": ">=18" + "github-slugger": "^1.0.0", + "mdast-util-to-string": "^1.0.0", + "unist-util-visit": "^2.0.0" }, "funding": { - "url": "https://github.com/sponsors/sindresorhus" + "type": "opencollective", + "url": "https://opencollective.com/unified" } }, - "node_modules/release-it/node_modules/has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "node_modules/renderkid": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", + "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", "dev": true, - "engines": { - "node": ">=8" + "dependencies": { + "css-select": "^4.1.3", + "dom-converter": "^0.2.0", + "htmlparser2": "^6.1.0", + "lodash": "^4.17.21", + "strip-ansi": "^6.0.1" } }, - "node_modules/release-it/node_modules/human-signals": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", - "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", - "dev": true, + "node_modules/replace-ext": { + "version": "0.0.1", + "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", + "integrity": "sha512-AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ==", "engines": { - "node": ">=16.17.0" + "node": ">= 0.4" } }, - "node_modules/release-it/node_modules/inquirer": { - "version": "9.2.14", - "resolved": "https://registry.npmjs.org/inquirer/-/inquirer-9.2.14.tgz", - "integrity": "sha512-4ByIMt677Iz5AvjyKrDpzaepIyMewNvDcvwpVVRZNmy9dLakVoVgdCHZXbK1SlVJra1db0JZ6XkJyHsanpdrdQ==", - "dev": true, - "dependencies": { - "@ljharb/through": "^2.3.12", - "ansi-escapes": "^4.3.2", - "chalk": "^5.3.0", - "cli-cursor": "^3.1.0", - "cli-width": "^4.1.0", - "external-editor": "^3.1.0", - "figures": "^3.2.0", - "lodash": "^4.17.21", - "mute-stream": "1.0.0", - "ora": "^5.4.1", - "run-async": "^3.0.0", - "rxjs": "^7.8.1", - "string-width": "^4.2.3", - "strip-ansi": "^6.0.1", - "wrap-ansi": "^6.2.0" - }, - "engines": { - "node": ">=18" - } - }, - "node_modules/release-it/node_modules/inquirer/node_modules/ora": { - "version": "5.4.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-5.4.1.tgz", - "integrity": "sha512-5b6Y85tPxZZ7QytO+BQzysW31HJku27cRIlkbAXaNx+BdcVi+LlRFmVXzeF6a7JCwJpyw5c4b+YSVImQIrBpuQ==", - "dev": true, - "dependencies": { - "bl": "^4.1.0", - "chalk": "^4.1.0", - "cli-cursor": "^3.1.0", - "cli-spinners": "^2.5.0", - "is-interactive": "^1.0.0", - "is-unicode-supported": "^0.1.0", - "log-symbols": "^4.1.0", - "strip-ansi": "^6.0.0", - "wcwidth": "^1.0.1" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/inquirer/node_modules/ora/node_modules/chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - }, - "engines": { - "node": ">=10" - }, - "funding": { - "url": "https://github.com/chalk/chalk?sponsor=1" - } - }, - "node_modules/release-it/node_modules/is-stream": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", - "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", - "dev": true, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/is-wsl": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-wsl/-/is-wsl-3.1.0.tgz", - "integrity": "sha512-UcVfVfaK4Sc4m7X3dUSoHoozQGBEFeDC+zVo06t98xe8CzHSZZBekNXH+tu0NalHolcJ/QAGqS46Hef7QXBIMw==", - "dev": true, - "dependencies": { - "is-inside-container": "^1.0.0" - }, - "engines": { - "node": ">=16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "dependencies": { - "argparse": "^2.0.1" - }, - "bin": { - "js-yaml": "bin/js-yaml.js" - } - }, - "node_modules/release-it/node_modules/mimic-fn": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", - "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/mute-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/mute-stream/-/mute-stream-1.0.0.tgz", - "integrity": "sha512-avsJQhyd+680gKXyG/sQc0nXaC6rBkPOfyHYcFb9+hdkqQkR9bdnkJ0AMZhke0oesPqIO+mFFJ+IdBc7mst4IA==", - "dev": true, - "engines": { - "node": "^14.17.0 || ^16.13.0 || >=18.0.0" - } - }, - "node_modules/release-it/node_modules/node-fetch": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/node-fetch/-/node-fetch-3.3.2.tgz", - "integrity": "sha512-dRB78srN/l6gqWulah9SrxeYnxeddIG30+GOqK/9OlLVyLg3HPnr6SqOWTWOXKRwC2eGYCkZ59NNuSgvSrpgOA==", - "dev": true, - "dependencies": { - "data-uri-to-buffer": "^4.0.0", - "fetch-blob": "^3.1.4", - "formdata-polyfill": "^4.0.10" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/node-fetch" - } - }, - "node_modules/release-it/node_modules/npm-run-path": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", - "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", - "dev": true, - "dependencies": { - "path-key": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/onetime": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", - "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", - "dev": true, - "dependencies": { - "mimic-fn": "^4.0.0" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/open": { - "version": "10.0.3", - "resolved": "https://registry.npmjs.org/open/-/open-10.0.3.tgz", - "integrity": "sha512-dtbI5oW7987hwC9qjJTyABldTaa19SuyJse1QboWv3b0qCcrrLNVDqBx1XgELAjh9QTVQaP/C5b1nhQebd1H2A==", - "dev": true, - "dependencies": { - "default-browser": "^5.2.1", - "define-lazy-prop": "^3.0.0", - "is-inside-container": "^1.0.0", - "is-wsl": "^3.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora": { - "version": "8.0.1", - "resolved": "https://registry.npmjs.org/ora/-/ora-8.0.1.tgz", - "integrity": "sha512-ANIvzobt1rls2BDny5fWZ3ZVKyD6nscLvfFRpQgfWsythlcsVUC9kL0zq6j2Z5z9wwp1kd7wpsD/T9qNPVLCaQ==", - "dev": true, - "dependencies": { - "chalk": "^5.3.0", - "cli-cursor": "^4.0.0", - "cli-spinners": "^2.9.2", - "is-interactive": "^2.0.0", - "is-unicode-supported": "^2.0.0", - "log-symbols": "^6.0.0", - "stdin-discarder": "^0.2.1", - "string-width": "^7.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora/node_modules/cli-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-4.0.0.tgz", - "integrity": "sha512-VGtlMu3x/4DOtIUwEkRezxUZ2lBacNJCHash0N0WeZDBS+7Ux1dm3XWAgWYxLJFMMdOeXMHXorshEFhbMSGelg==", - "dev": true, - "dependencies": { - "restore-cursor": "^4.0.0" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora/node_modules/is-interactive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-interactive/-/is-interactive-2.0.0.tgz", - "integrity": "sha512-qP1vozQRI+BMOPcjFzrjXuQvdak2pHNUMZoeG2eRbiSqyvbEf/wQtEOTOX1guk6E3t36RkaqiSt8A/6YElNxLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora/node_modules/is-unicode-supported": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-2.0.0.tgz", - "integrity": "sha512-FRdAyx5lusK1iHG0TWpVtk9+1i+GjrzRffhDg4ovQ7mcidMQ6mj+MhKPmvh7Xwyv5gIS06ns49CA7Sqg7lC22Q==", - "dev": true, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora/node_modules/log-symbols": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/log-symbols/-/log-symbols-6.0.0.tgz", - "integrity": "sha512-i24m8rpwhmPIS4zscNzK6MSEhk0DUWa/8iYQWxhffV8jkI4Phvs3F+quL5xvS0gdQR0FyTCMMH33Y78dDTzzIw==", - "dev": true, - "dependencies": { - "chalk": "^5.3.0", - "is-unicode-supported": "^1.3.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora/node_modules/log-symbols/node_modules/is-unicode-supported": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/is-unicode-supported/-/is-unicode-supported-1.3.0.tgz", - "integrity": "sha512-43r2mRvz+8JRIKnWJ+3j8JtjRKZ6GmjzfaE/qiBJnikNnYv/6bagRJ1kUhNk8R5EX/GkobD+r+sfxCPJsiKBLQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora/node_modules/string-width": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-7.1.0.tgz", - "integrity": "sha512-SEIJCWiX7Kg4c129n48aDRwLbFb2LJmXXFrWBG4NGaRtMQ3myKPKbwrD1BKqQn74oCoNMBVrfDEr5M9YxCsrkw==", - "dev": true, - "dependencies": { - "emoji-regex": "^10.3.0", - "get-east-asian-width": "^1.0.0", - "strip-ansi": "^7.1.0" - }, - "engines": { - "node": ">=18" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/ora/node_modules/strip-ansi": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", - "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", - "dev": true, - "dependencies": { - "ansi-regex": "^6.0.1" - }, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/chalk/strip-ansi?sponsor=1" - } - }, - "node_modules/release-it/node_modules/path-key": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", - "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/path-type": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-5.0.0.tgz", - "integrity": "sha512-5HviZNaZcfqP95rwpv+1HDgUamezbqdSYTyzjTvwtJSnIH+3vnbmWsItli8OFEndS984VT55M3jduxZbX351gg==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/restore-cursor": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/restore-cursor/-/restore-cursor-4.0.0.tgz", - "integrity": "sha512-I9fPXU9geO9bHOt9pHHOhOkYerIMsmVaWB0rA2AI9ERh/+x/i7MV5HKBNrg+ljO5eoPVgCcnFuRjJ9uH6I/3eg==", - "dev": true, - "dependencies": { - "onetime": "^5.1.0", - "signal-exit": "^3.0.2" - }, - "engines": { - "node": "^12.20.0 || ^14.13.1 || >=16.0.0" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/restore-cursor/node_modules/mimic-fn": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-2.1.0.tgz", - "integrity": "sha512-OqbOk5oEQeAZ8WXWydlu9HJjz9WVdEIvamMCcXmuqUYjTknH/sqsWvhQ3vgwKFRR1HpjvNBKQ37nbJgYzGqGcg==", - "dev": true, - "engines": { - "node": ">=6" - } - }, - "node_modules/release-it/node_modules/restore-cursor/node_modules/onetime": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/onetime/-/onetime-5.1.2.tgz", - "integrity": "sha512-kbpaSSGJTWdAY5KPVeMOKXSrPtr8C8C7wodJbcsd51jRnmD+GZu8Y0VoU6Dm5Z4vWr0Ig/1NKuWRKf7j5aaYSg==", - "dev": true, - "dependencies": { - "mimic-fn": "^2.1.0" - }, - "engines": { - "node": ">=6" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/restore-cursor/node_modules/signal-exit": { - "version": "3.0.7", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.7.tgz", - "integrity": "sha512-wnD2ZE+l+SPC/uoS0vXeE9L1+0wuaMqKlfz9AMUo38JsyLSBWSFcHR1Rri62LZc12vLr1gb3jl7iwQhgwpAbGQ==", - "dev": true - }, - "node_modules/release-it/node_modules/run-async": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/run-async/-/run-async-3.0.0.tgz", - "integrity": "sha512-540WwVDOMxA6dN6We19EcT9sc3hkXPw5mzRNGM3FkdN/vtE9NFvj5lFAPNwUDmJjXidm3v7TC1cTE7t17Ulm1Q==", - "dev": true, - "engines": { - "node": ">=0.12.0" - } - }, - "node_modules/release-it/node_modules/signal-exit": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", - "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", - "dev": true, - "engines": { - "node": ">=14" - }, - "funding": { - "url": "https://github.com/sponsors/isaacs" - } - }, - "node_modules/release-it/node_modules/slash": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/slash/-/slash-5.1.0.tgz", - "integrity": "sha512-ZA6oR3T/pEyuqwMgAKT0/hAv8oAXckzbkmR0UkUosQ+Mc4RxGoJkRmwHgHufaenlyAgE1Mxgpdcrf75y6XcnDg==", - "dev": true, - "engines": { - "node": ">=14.16" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/strip-final-newline": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", - "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", - "dev": true, - "engines": { - "node": ">=12" - }, - "funding": { - "url": "https://github.com/sponsors/sindresorhus" - } - }, - "node_modules/release-it/node_modules/supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "dependencies": { - "has-flag": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/release-it/node_modules/wrap-ansi": { - "version": "6.2.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-6.2.0.tgz", - "integrity": "sha512-r6lPcBGxZXlIcymEu7InxDMhdW0KDxpLgoFLcguasxCaJ/SOIZwINatK9KY/tf+ZrlywOKU0UDj3ATXUBfxJXA==", - "dev": true, - "dependencies": { - "ansi-styles": "^4.0.0", - "string-width": "^4.1.0", - "strip-ansi": "^6.0.0" - }, - "engines": { - "node": ">=8" - } - }, - "node_modules/remark-external-links": { - "version": "8.0.0", - "resolved": "https://registry.npmjs.org/remark-external-links/-/remark-external-links-8.0.0.tgz", - "integrity": "sha512-5vPSX0kHoSsqtdftSHhIYofVINC8qmp0nctkeU9YoJwV3YfiBRiI6cbFRJ0oI/1F9xS+bopXG0m2KS8VFscuKA==", - "dev": true, - "dependencies": { - "extend": "^3.0.0", - "is-absolute-url": "^3.0.0", - "mdast-util-definitions": "^4.0.0", - "space-separated-tokens": "^1.0.0", - "unist-util-visit": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/remark-slug": { - "version": "6.1.0", - "resolved": "https://registry.npmjs.org/remark-slug/-/remark-slug-6.1.0.tgz", - "integrity": "sha512-oGCxDF9deA8phWvxFuyr3oSJsdyUAxMFbA0mZ7Y1Sas+emILtO+e5WutF9564gDsEN4IXaQXm5pFo6MLH+YmwQ==", - "dev": true, - "dependencies": { - "github-slugger": "^1.0.0", - "mdast-util-to-string": "^1.0.0", - "unist-util-visit": "^2.0.0" - }, - "funding": { - "type": "opencollective", - "url": "https://opencollective.com/unified" - } - }, - "node_modules/renderkid": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/renderkid/-/renderkid-3.0.0.tgz", - "integrity": "sha512-q/7VIQA8lmM1hF+jn+sFSPWGlMkSAeNYcPLmDQx2zzuiDfaLrOmumR8iaUKlenFgh0XRPIUeSPlH3A+AW3Z5pg==", - "dev": true, - "dependencies": { - "css-select": "^4.1.3", - "dom-converter": "^0.2.0", - "htmlparser2": "^6.1.0", - "lodash": "^4.17.21", - "strip-ansi": "^6.0.1" - } - }, - "node_modules/replace-ext": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/replace-ext/-/replace-ext-0.0.1.tgz", - "integrity": "sha512-AFBWBy9EVRTa/LhEcG8QDP3FvpwZqmvN2QFDuJswFeaVhWnZMp8q3E6Zd90SR04PlIwfGdyVjNyLPyen/ek5CQ==", - "engines": { - "node": ">= 0.4" - } - }, - "node_modules/request": { - "version": "2.88.2", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", - "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", - "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", + "node_modules/request": { + "version": "2.88.2", + "resolved": "https://registry.npmjs.org/request/-/request-2.88.2.tgz", + "integrity": "sha512-MsvtOrfG9ZcrOwAW+Qi+F6HbD0CWXEh9ou77uOb7FM2WPhwT7smM833PzanhJLsgXjN89Ir6V2PczXNnMpwKhw==", + "deprecated": "request has been deprecated, see https://github.com/request/request/issues/3142", "dependencies": { "aws-sign2": "~0.7.0", "aws4": "^1.8.0", @@ -31273,13 +30911,44 @@ "url": "https://opencollective.com/webpack" } }, - "node_modules/scss-tokenizer": { - "version": "0.4.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz", - "integrity": "sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==", + "node_modules/schema-utils/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", "dev": true, - "optional": true, - "peer": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/schema-utils/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/schema-utils/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, + "node_modules/scss-tokenizer": { + "version": "0.4.3", + "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.4.3.tgz", + "integrity": "sha512-raKLgf1LI5QMQnG+RxHz6oK0sL3x3I4FN2UDLqgLOGO8hodECNnNh5BXn7fAyBxrA8zVzdQizQ6XjNJQ+uBwMw==", + "dev": true, + "optional": true, + "peer": true, "dependencies": { "js-base64": "^2.4.9", "source-map": "^0.7.3" @@ -31412,34 +31081,6 @@ "randombytes": "^2.1.0" } }, - "node_modules/serve-favicon": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz", - "integrity": "sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==", - "dev": true, - "dependencies": { - "etag": "~1.8.1", - "fresh": "0.5.2", - "ms": "2.1.1", - "parseurl": "~1.3.2", - "safe-buffer": "5.1.1" - }, - "engines": { - "node": ">= 0.8.0" - } - }, - "node_modules/serve-favicon/node_modules/ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "node_modules/serve-favicon/node_modules/safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "dev": true - }, "node_modules/serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", @@ -31537,7 +31178,9 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "node_modules/set-function-length": { "version": "1.2.2", @@ -31746,25 +31389,26 @@ "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.3.2.tgz", "integrity": "sha512-eVRqCvVlZbuw3GrM63ovNSNAeA1K16kaR/LRY/92w0zxQ5/1YzwblUX652i4Xs9RwAGjW9d9y6X88t8OaAJfWQ==" }, - "node_modules/simple-update-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", - "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", - "dev": true, + "node_modules/simplebar-core": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/simplebar-core/-/simplebar-core-1.2.4.tgz", + "integrity": "sha512-P+Sqshef4fq3++gQ82TgNYcgl3qZFSCP5jS2/8NMmw18oagXOijMzs1G+vm6RUY3oMvpwH3wGoqh9u6SyDjHfQ==", "dependencies": { - "semver": "~7.0.0" - }, - "engines": { - "node": ">=8.10.0" + "@types/lodash-es": "^4.17.6", + "can-use-dom": "^0.1.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21" } }, - "node_modules/simple-update-notifier/node_modules/semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true, - "bin": { - "semver": "bin/semver.js" + "node_modules/simplebar-react": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/simplebar-react/-/simplebar-react-3.2.4.tgz", + "integrity": "sha512-ogLN79e7JUm82wJChD7NSUB+4EHCFvDkjXpiu8hT1Alk7DnCekUWds61NXcsP9jC97KOgF5To/AVjYFbX0olgg==", + "dependencies": { + "simplebar-core": "^1.2.4" + }, + "peerDependencies": { + "react": ">=16.8.0" } }, "node_modules/sisteransi": { @@ -31981,7 +31625,7 @@ "node_modules/sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, "node_modules/spritesmith": { @@ -32188,18 +31832,18 @@ } }, "node_modules/store2": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", - "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", + "version": "2.14.3", + "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.3.tgz", + "integrity": "sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==", "dev": true }, "node_modules/storybook": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.0.0-beta.45.tgz", - "integrity": "sha512-NWemhdhfELg5tLIigh+G8UYq1kpANqeEbtNVTscNy4XtO/4V7rVez4MiHA9tajNFIcx9m+OVRfFUi59NV01Sxw==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.6.17.tgz", + "integrity": "sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==", "dev": true, "dependencies": { - "@storybook/cli": "7.0.0-beta.45" + "@storybook/cli": "7.6.17" }, "bin": { "sb": "index.js", @@ -32210,6 +31854,12 @@ "url": "https://opencollective.com/storybook" } }, + "node_modules/stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true + }, "node_modules/string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -32272,6 +31922,37 @@ "webpack": "^5" } }, + "node_modules/string-replace-loader/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/string-replace-loader/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/string-replace-loader/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "node_modules/string-replace-loader/node_modules/schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", @@ -32304,6 +31985,27 @@ "node": ">=8" } }, + "node_modules/string-width-cjs": { + "name": "string-width", + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "dependencies": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "engines": { + "node": ">=8" + } + }, + "node_modules/string-width-cjs/node_modules/emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + }, "node_modules/string-width/node_modules/emoji-regex": { "version": "8.0.0", "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", @@ -32388,6 +32090,19 @@ "node": ">=8" } }, + "node_modules/strip-ansi-cjs": { + "name": "strip-ansi", + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "dependencies": { + "ansi-regex": "^5.0.1" + }, + "engines": { + "node": ">=8" + } + }, "node_modules/strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -32537,6 +32252,19 @@ "upper-case": "^1.1.1" } }, + "node_modules/swc-loader": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.6.tgz", + "integrity": "sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==", + "dev": true, + "dependencies": { + "@swc/counter": "^0.1.3" + }, + "peerDependencies": { + "@swc/core": "^1.2.147", + "webpack": ">=2" + } + }, "node_modules/symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -32682,14 +32410,14 @@ } }, "node_modules/tar": { - "version": "6.1.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz", - "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "dev": true, "dependencies": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", + "minipass": "^5.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" @@ -32730,9 +32458,9 @@ } }, "node_modules/tar/node_modules/minipass": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.0.3.tgz", - "integrity": "sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true, "engines": { "node": ">=8" @@ -32751,9 +32479,9 @@ } }, "node_modules/telejson": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.1.0.tgz", - "integrity": "sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", + "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", "dev": true, "dependencies": { "memoizerific": "^1.11.3" @@ -32891,6 +32619,37 @@ } } }, + "node_modules/terser-webpack-plugin/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/terser-webpack-plugin/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/terser-webpack-plugin/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "node_modules/terser-webpack-plugin/node_modules/schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", @@ -32988,6 +32747,12 @@ "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" }, + "node_modules/tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "dev": true + }, "node_modules/title-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz", @@ -33037,6 +32802,12 @@ "node": ">=8.0" } }, + "node_modules/tocbot": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.25.0.tgz", + "integrity": "sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==", + "dev": true + }, "node_modules/toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -33468,6 +33239,12 @@ "node": ">=8" } }, + "node_modules/ufo": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", + "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==", + "dev": true + }, "node_modules/uglify-js": { "version": "3.17.4", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", @@ -33496,10 +33273,10 @@ "url": "https://github.com/sponsors/ljharb" } }, - "node_modules/unfetch": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", - "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==", + "node_modules/undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", "dev": true }, "node_modules/unicode-canonical-property-names-ecmascript": { @@ -33657,15 +33434,18 @@ } }, "node_modules/unplugin": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-0.10.2.tgz", - "integrity": "sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.10.1.tgz", + "integrity": "sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==", "dev": true, "dependencies": { - "acorn": "^8.8.0", - "chokidar": "^3.5.3", + "acorn": "^8.11.3", + "chokidar": "^3.6.0", "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.4.5" + "webpack-virtual-modules": "^0.6.1" + }, + "engines": { + "node": ">=14.0.0" } }, "node_modules/unplugin/node_modules/webpack-sources": { @@ -33677,6 +33457,12 @@ "node": ">=10.13.0" } }, + "node_modules/unplugin/node_modules/webpack-virtual-modules": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz", + "integrity": "sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==", + "dev": true + }, "node_modules/untildify": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/untildify/-/untildify-4.0.0.tgz", @@ -33687,9 +33473,9 @@ } }, "node_modules/update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, "funding": [ { @@ -33699,6 +33485,10 @@ { "type": "tidelift", "url": "https://tidelift.com/funding/github/npm/browserslist" + }, + { + "type": "github", + "url": "https://github.com/sponsors/ai" } ], "dependencies": { @@ -33706,7 +33496,7 @@ "picocolors": "^1.0.0" }, "bin": { - "browserslist-lint": "cli.js" + "update-browserslist-db": "cli.js" }, "peerDependencies": { "browserslist": ">= 4.21.0" @@ -33942,6 +33732,27 @@ "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", "integrity": "sha512-RofWgt/7fL5wP1Y7fxE7/EmTLzQVnB0ycyibJ0OOHIlJqTNzglYFxVwETOcIoJqJmpDXJ9xImDv+Fq34F/d4Dw==" }, + "node_modules/use-callback-ref": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz", + "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==", + "dev": true, + "dependencies": { + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.8.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, "node_modules/use-resize-observer": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", @@ -33955,6 +33766,28 @@ "react-dom": "16.8.0 - 18" } }, + "node_modules/use-sidecar": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", + "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", + "dev": true, + "dependencies": { + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" + }, + "engines": { + "node": ">=10" + }, + "peerDependencies": { + "@types/react": "^16.9.0 || ^17.0.0 || ^18.0.0", + "react": "^16.8.0 || ^17.0.0 || ^18.0.0" + }, + "peerDependenciesMeta": { + "@types/react": { + "optional": true + } + } + }, "node_modules/util": { "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", @@ -33997,12 +33830,6 @@ "uuid": "dist/bin/uuid" } }, - "node_modules/uuid-browser": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/uuid-browser/-/uuid-browser-3.1.0.tgz", - "integrity": "sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==", - "dev": true - }, "node_modules/v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", @@ -34330,40 +34157,6 @@ "webpack": "^4.0.0 || ^5.0.0" } }, - "node_modules/webpack-dev-middleware/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-middleware/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-middleware/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, "node_modules/webpack-dev-middleware/node_modules/schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -34434,40 +34227,6 @@ } } }, - "node_modules/webpack-dev-server/node_modules/ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - }, - "funding": { - "type": "github", - "url": "https://github.com/sponsors/epoberezkin" - } - }, - "node_modules/webpack-dev-server/node_modules/ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "dependencies": { - "fast-deep-equal": "^3.1.3" - }, - "peerDependencies": { - "ajv": "^8.8.2" - } - }, - "node_modules/webpack-dev-server/node_modules/json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, "node_modules/webpack-dev-server/node_modules/schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -34509,9 +34268,9 @@ } }, "node_modules/webpack-hot-middleware": { - "version": "2.25.3", - "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz", - "integrity": "sha512-IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA==", + "version": "2.26.1", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz", + "integrity": "sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==", "dev": true, "dependencies": { "ansi-html-community": "0.0.8", @@ -34546,9 +34305,40 @@ } }, "node_modules/webpack-virtual-modules": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", - "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==", + "dev": true + }, + "node_modules/webpack/node_modules/ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "dependencies": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + }, + "funding": { + "type": "github", + "url": "https://github.com/sponsors/epoberezkin" + } + }, + "node_modules/webpack/node_modules/ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "peerDependencies": { + "ajv": "^6.9.1" + } + }, + "node_modules/webpack/node_modules/json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "node_modules/webpack/node_modules/schema-utils": { @@ -34700,22 +34490,12 @@ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, + "optional": true, + "peer": true, "dependencies": { "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "node_modules/widest-line": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "dev": true, - "dependencies": { - "string-width": "^4.0.0" - }, - "engines": { - "node": ">=8" - } - }, "node_modules/wildcard": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", @@ -34797,6 +34577,39 @@ "url": "https://github.com/chalk/wrap-ansi?sponsor=1" } }, + "node_modules/wrap-ansi-cjs": { + "name": "wrap-ansi", + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "dependencies": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "engines": { + "node": ">=10" + }, + "funding": { + "url": "https://github.com/chalk/wrap-ansi?sponsor=1" + } + }, + "node_modules/wrap-ansi-cjs/node_modules/ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "dependencies": { + "color-convert": "^2.0.1" + }, + "engines": { + "node": ">=8" + }, + "funding": { + "url": "https://github.com/chalk/ansi-styles?sponsor=1" + } + }, "node_modules/wrap-ansi/node_modules/ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -35011,114 +34824,121 @@ } }, "@aw-web-design/x-default-browser": { - "version": "1.4.88", - "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.88.tgz", - "integrity": "sha512-AkEmF0wcwYC2QkhK703Y83fxWARttIWXDmQN8+cof8FmFZ5BRhnNXGymeb1S73bOCLfWjYELxtujL56idCN/XA==", + "version": "1.4.126", + "resolved": "https://registry.npmjs.org/@aw-web-design/x-default-browser/-/x-default-browser-1.4.126.tgz", + "integrity": "sha512-Xk1sIhyNC/esHGGVjL/niHLowM0csl/kFO5uawBy4IrWwy0o1G8LGt3jP6nmWGz+USxeeqbihAmp/oVZju6wug==", "dev": true, "requires": { "default-browser-id": "3.0.0" } }, "@babel/code-frame": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.18.6.tgz", - "integrity": "sha512-TDCmlK5eOvH+eH7cdAFlNXeVJqWIQ7gW9tY1GJIpUtFb6CmjVyq2VM3u71bOyR8CRihcCgMUYoDNyLXao3+70Q==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/code-frame/-/code-frame-7.24.2.tgz", + "integrity": "sha512-y5+tLQyV8pg3fsiln67BVLD1P13Eg4lh5RW9mF0zUuvLrv9uIQ4MCL+CRT+FTsBlBjcIan6PGsLcBN0m3ClUyQ==", "dev": true, "requires": { - "@babel/highlight": "^7.18.6" + "@babel/highlight": "^7.24.2", + "picocolors": "^1.0.0" } }, "@babel/compat-data": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.20.14.tgz", - "integrity": "sha512-0YpKHD6ImkWMEINCyDAD0HLLUH/lPCefG8ld9it8DJB2wnApraKuhgYTvTY1z7UFIfBTGy5LwncZ+5HWWGbhFw==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/compat-data/-/compat-data-7.24.4.tgz", + "integrity": "sha512-vg8Gih2MLK+kOkHJp4gBEIkyaIi00jgWot2D9QOmmfLC8jINSOzmCLta6Bvz/JSBCqnegV0L80jhxkol5GWNfQ==", "dev": true }, "@babel/core": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.20.12.tgz", - "integrity": "sha512-XsMfHovsUYHFMdrIHkZphTN/2Hzzi78R08NuHfDBehym2VsPDL6Zn/JAD/JQdnRvbSsbQc4mVaU1m6JgtTEElg==", - "dev": true, - "requires": { - "@ampproject/remapping": "^2.1.0", - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helpers": "^7.20.7", - "@babel/parser": "^7.20.7", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.12", - "@babel/types": "^7.20.7", - "convert-source-map": "^1.7.0", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/core/-/core-7.24.4.tgz", + "integrity": "sha512-MBVlMXP+kkl5394RBLSxxk/iLTeVGuXTV3cIDXavPpMMqnSnt6apKgan/U8O3USWZCWZT/TbgfEpKa4uMgN4Dg==", + "dev": true, + "requires": { + "@ampproject/remapping": "^2.2.0", + "@babel/code-frame": "^7.24.2", + "@babel/generator": "^7.24.4", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helpers": "^7.24.4", + "@babel/parser": "^7.24.4", + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0", + "convert-source-map": "^2.0.0", "debug": "^4.1.0", "gensync": "^1.0.0-beta.2", - "json5": "^2.2.2", - "semver": "^6.3.0" + "json5": "^2.2.3", + "semver": "^6.3.1" }, "dependencies": { + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true } } }, "@babel/generator": { - "version": "7.20.14", - "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.20.14.tgz", - "integrity": "sha512-AEmuXHdcD3A52HHXxaTmYlb8q/xMEhoRP67B3T4Oq7lbmSoqroMZzjnGj3+i1io3pdnF8iBYVu4Ilj+c4hBxYg==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/generator/-/generator-7.24.4.tgz", + "integrity": "sha512-Xd6+v6SnjWVx/nus+y0l1sxMOTOMBkyL4+BIdbALyatQnAe/SRVjANeDPSCYaX+i1iJmuGSKf3Z+E+V/va1Hvw==", "dev": true, "requires": { - "@babel/types": "^7.20.7", - "@jridgewell/gen-mapping": "^0.3.2", + "@babel/types": "^7.24.0", + "@jridgewell/gen-mapping": "^0.3.5", + "@jridgewell/trace-mapping": "^0.3.25", "jsesc": "^2.5.1" }, "dependencies": { "@jridgewell/gen-mapping": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.2.tgz", - "integrity": "sha512-mh65xKQAzI6iBcFzwv28KVWSmCkdRBWoOh+bYQGW3+6OZvbbN3TqMGo5hqYxQniRcH9F2VZIoJCm4pa3BPDK/A==", + "version": "0.3.5", + "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.3.5.tgz", + "integrity": "sha512-IzL8ZoEDIBRWEzlCcRhOaCupYyN5gdIK+Q6fbFdPDg6HqX6jpkItn7DFIpW9LQzXG6Df9sA7+OKnq0qlz/GaQg==", "dev": true, "requires": { - "@jridgewell/set-array": "^1.0.1", + "@jridgewell/set-array": "^1.2.1", "@jridgewell/sourcemap-codec": "^1.4.10", - "@jridgewell/trace-mapping": "^0.3.9" + "@jridgewell/trace-mapping": "^0.3.24" } } } }, "@babel/helper-annotate-as-pure": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.18.6.tgz", - "integrity": "sha512-duORpUiYrEpzKIop6iNbjnwKLAKnJ47csTyRACyEmWj0QdUrm5aqNJGHSSEQSUAvNW0ojX0dOmK9dZduvkfeXA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-annotate-as-pure/-/helper-annotate-as-pure-7.22.5.tgz", + "integrity": "sha512-LvBTxu8bQSQkcyKOU+a1btnNFQ1dMAd0R6PyW3arXes06F6QLWLIrd681bxRPIXlrMGR3XYnW9JyML7dP3qgxg==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" } }, "@babel/helper-builder-binary-assignment-operator-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.18.9.tgz", - "integrity": "sha512-yFQ0YCHoIqarl8BCRwBL8ulYUaZpz3bNsA7oFepAzee+8/+ImtADXNOmO5vJvsPff3qi+hvpkY/NYBTrBQgdNw==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-builder-binary-assignment-operator-visitor/-/helper-builder-binary-assignment-operator-visitor-7.22.15.tgz", + "integrity": "sha512-QkBXwGgaoC2GtGZRoma6kv7Szfv06khvhFav67ZExau2RaXzy8MpHSMO2PNoP2XtmQphJQRHFfg77Bq731Yizw==", "dev": true, "requires": { - "@babel/helper-explode-assignable-expression": "^7.18.6", - "@babel/types": "^7.18.9" + "@babel/types": "^7.22.15" } }, "@babel/helper-compilation-targets": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.20.7.tgz", - "integrity": "sha512-4tGORmfQcrc+bvrjb5y3dG9Mx1IOZjsHqQVUz7XCNHO+iTmqxWnVg3KRygjGmpRLJGdQSKuvFinbIb0CnZwHAQ==", + "version": "7.23.6", + "resolved": "https://registry.npmjs.org/@babel/helper-compilation-targets/-/helper-compilation-targets-7.23.6.tgz", + "integrity": "sha512-9JB548GZoQVmzrFgp8o7KxdgkTGm6xs9DW0o/Pim72UDjzr5ObUQ6ZzYPqA+g9OTS2bBQoctLJrky0RDCAWRgQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-validator-option": "^7.18.6", - "browserslist": "^4.21.3", + "@babel/compat-data": "^7.23.5", + "@babel/helper-validator-option": "^7.23.5", + "browserslist": "^4.22.2", "lru-cache": "^5.1.1", - "semver": "^6.3.0" + "semver": "^6.3.1" }, "dependencies": { "lru-cache": { @@ -35131,9 +34951,9 @@ } }, "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true }, "yallist": { @@ -35145,425 +34965,286 @@ } }, "@babel/helper-create-class-features-plugin": { - "version": "7.20.12", - "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.20.12.tgz", - "integrity": "sha512-9OunRkbT0JQcednL0UFvbfXpAsUXiGjUk0a7sN8fUXX7Mue79cUSMjHGDRRi/Vz9vYlpIhLV5fMD5dKoMhhsNQ==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helper-create-class-features-plugin/-/helper-create-class-features-plugin-7.24.4.tgz", + "integrity": "sha512-lG75yeuUSVu0pIcbhiYMXBXANHrpUPaOfu7ryAzskCgKUHuAxRQI5ssrtmF0X9UXldPlvT0XM/A4F44OXRt6iQ==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/helper-split-export-declaration": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5", + "@babel/helper-replace-supers": "^7.24.1", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, "@babel/helper-create-regexp-features-plugin": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.20.5.tgz", - "integrity": "sha512-m68B1lkg3XDGX5yCvGO0kPx3v9WIYLnzjKfPcQiwntEQa5ZeRkPmo2X/ISJc8qxWGfwUr+kvZAeEzAwLec2r2w==", + "version": "7.22.15", + "resolved": "https://registry.npmjs.org/@babel/helper-create-regexp-features-plugin/-/helper-create-regexp-features-plugin-7.22.15.tgz", + "integrity": "sha512-29FkPLFjn4TPEa3RE7GpW+qbE8tlsu3jntNYNfcGsc49LphF1PQIiD+vMZ1z1xVOKt+93khA9tc2JBs3kBjA7w==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "regexpu-core": "^5.2.1" + "@babel/helper-annotate-as-pure": "^7.22.5", + "regexpu-core": "^5.3.1", + "semver": "^6.3.1" + }, + "dependencies": { + "semver": { + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", + "dev": true + } } }, "@babel/helper-define-polyfill-provider": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.3.3.tgz", - "integrity": "sha512-z5aQKU4IzbqCC1XH0nAqfsFLMVSo22SBKUc0BxGrLkolTdPTructy0ToNnlO2zA4j9Q/7pjMZf0DSY+DSTYzww==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/@babel/helper-define-polyfill-provider/-/helper-define-polyfill-provider-0.6.1.tgz", + "integrity": "sha512-o7SDgTJuvx5vLKD6SFvkydkSMBvahDKGiNJzG22IZYXhiqoe9efY7zocICBgzHV4IRg5wdgl2nEL/tulKIEIbA==", "dev": true, "requires": { - "@babel/helper-compilation-targets": "^7.17.7", - "@babel/helper-plugin-utils": "^7.16.7", + "@babel/helper-compilation-targets": "^7.22.6", + "@babel/helper-plugin-utils": "^7.22.5", "debug": "^4.1.1", "lodash.debounce": "^4.0.8", - "resolve": "^1.14.2", - "semver": "^6.1.2" - }, - "dependencies": { - "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", - "dev": true - } + "resolve": "^1.14.2" } }, "@babel/helper-environment-visitor": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.18.9.tgz", - "integrity": "sha512-3r/aACDJ3fhQ/EVgFy0hpj8oHyHpQc+LPtJoY9SzTThAsStm4Ptegq92vqKoE3vD706ZVFWITnMnxucw+S9Ipg==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-environment-visitor/-/helper-environment-visitor-7.22.20.tgz", + "integrity": "sha512-zfedSIzFhat/gFhWfHtgWvlec0nqB9YEIVrpuwjruLlXfUSnA8cJB0miHKwqDnQ7d32aKo2xt88/xZptwxbfhA==", "dev": true }, - "@babel/helper-explode-assignable-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-explode-assignable-expression/-/helper-explode-assignable-expression-7.18.6.tgz", - "integrity": "sha512-eyAYAsQmB80jNfg4baAtLeWAQHfHFiR483rzFK+BhETlGZaQC9bsfrugfXDCbRHLQbIA7U5NxhhOxN7p/dWIcg==", - "dev": true, - "requires": { - "@babel/types": "^7.18.6" - } - }, "@babel/helper-function-name": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.19.0.tgz", - "integrity": "sha512-WAwHBINyrpqywkUH0nTnNgI5ina5TFn85HKS0pbPDfxFfhyR/aNQEn4hGi1P1JyT//I0t4OgXUlofzWILRvS5w==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-function-name/-/helper-function-name-7.23.0.tgz", + "integrity": "sha512-OErEqsrxjZTJciZ4Oo+eoZqeW9UIiOcuYKRJA4ZAgV9myA+pOXhhmpfNCKjEH/auVfEYVFJ6y1Tc4r0eIApqiw==", "dev": true, "requires": { - "@babel/template": "^7.18.10", - "@babel/types": "^7.19.0" + "@babel/template": "^7.22.15", + "@babel/types": "^7.23.0" } }, "@babel/helper-hoist-variables": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.18.6.tgz", - "integrity": "sha512-UlJQPkFqFULIcyW5sbzgbkxn2FKRgwWiRexcuaR8RNJRy8+LLveqPjwZV/bwrLZCN0eUHD/x8D0heK1ozuoo6Q==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-hoist-variables/-/helper-hoist-variables-7.22.5.tgz", + "integrity": "sha512-wGjk9QZVzvknA6yKIUURb8zY3grXCcOZt+/7Wcy8O2uctxhplmUPkOdlgoNhmdVee2c92JXbf1xpMtVNbfoxRw==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" } }, "@babel/helper-member-expression-to-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.20.7.tgz", - "integrity": "sha512-9J0CxJLq315fEdi4s7xK5TQaNYjZw+nDVpVqr1axNGKzdrdwYBD5b4uKv3n75aABG0rCCTK8Im8Ww7eYfMrZgw==", + "version": "7.23.0", + "resolved": "https://registry.npmjs.org/@babel/helper-member-expression-to-functions/-/helper-member-expression-to-functions-7.23.0.tgz", + "integrity": "sha512-6gfrPwh7OuT6gZyJZvd6WbTfrqAo7vm4xCzAXOusKqq/vWdKXphTpj5klHKNmRUU6/QRGlBsyU9mAIPaWHlqJA==", "dev": true, "requires": { - "@babel/types": "^7.20.7" + "@babel/types": "^7.23.0" } }, "@babel/helper-module-imports": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.18.6.tgz", - "integrity": "sha512-0NFvs3VkuSYbFi1x2Vd6tKrywq+z/cLeYC/RJNFrIX/30Bf5aiGYbtvGXolEktzJH8o5E5KJ3tT+nkxuuZFVlA==", + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-imports/-/helper-module-imports-7.24.3.tgz", + "integrity": "sha512-viKb0F9f2s0BCS22QSF308z/+1YWKV/76mwt61NBzS5izMzDPwdq1pTrzf+Li3npBWX9KdQbkeCt1jSAM7lZqg==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.24.0" } }, "@babel/helper-module-transforms": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.20.11.tgz", - "integrity": "sha512-uRy78kN4psmji1s2QtbtcCSaj/LILFDp0f/ymhpQH5QY3nljUZCaNWz9X1dEj/8MBdBEFECs7yRhKn8i7NjZgg==", - "dev": true, - "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-simple-access": "^7.20.2", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/helper-validator-identifier": "^7.19.1", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.10", - "@babel/types": "^7.20.7" + "version": "7.23.3", + "resolved": "https://registry.npmjs.org/@babel/helper-module-transforms/-/helper-module-transforms-7.23.3.tgz", + "integrity": "sha512-7bBs4ED9OmswdfDzpz4MpWgSrV7FXlc3zIagvLFjS5H+Mk7Snr21vQ6QwrsoCGMfNC4e4LQPdoULEt4ykz0SRQ==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-simple-access": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/helper-validator-identifier": "^7.22.20" } }, "@babel/helper-optimise-call-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.18.6.tgz", - "integrity": "sha512-HP59oD9/fEHQkdcbgFCnbmgH5vIQTJbxh2yf+CdM89/glUNnuzr87Q8GIjGEnOktTROemO0Pe0iPAYbqZuOUiA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-optimise-call-expression/-/helper-optimise-call-expression-7.22.5.tgz", + "integrity": "sha512-HBwaojN0xFRx4yIvpwGqxiV2tUfl7401jlok564NgB9EHS1y6QT17FmKWm4ztqjeVdXLuC4fSvHc5ePpQjoTbw==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" } }, "@babel/helper-plugin-utils": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.20.2.tgz", - "integrity": "sha512-8RvlJG2mj4huQ4pZ+rU9lqKi9ZKiRmuvGuM2HlWmkmgOhbs6zEAw6IEiJ5cQqGbDzGZOhwuOQNtZMi/ENLjZoQ==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/helper-plugin-utils/-/helper-plugin-utils-7.24.0.tgz", + "integrity": "sha512-9cUznXMG0+FxRuJfvL82QlTqIzhVW9sL0KjMPHhAOOvpQGL8QtdxnBKILjBqxlHyliz0yCa1G903ZXI/FuHy2w==", "dev": true }, "@babel/helper-remap-async-to-generator": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.18.9.tgz", - "integrity": "sha512-dI7q50YKd8BAv3VEfgg7PS7yD3Rtbi2J1XMXaalXO0W0164hYLnh8zpjRS0mte9MfVp/tltvr/cfdXPvJr1opA==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-remap-async-to-generator/-/helper-remap-async-to-generator-7.22.20.tgz", + "integrity": "sha512-pBGyV4uBqOns+0UvhsTO8qgl8hO89PmiDYv+/COyp1aeMcmfrfruz+/nCMFiYyFF/Knn0yfrC85ZzNFjembFTw==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-wrap-function": "^7.18.9", - "@babel/types": "^7.18.9" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-wrap-function": "^7.22.20" } }, "@babel/helper-replace-supers": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.20.7.tgz", - "integrity": "sha512-vujDMtB6LVfNW13jhlCrp48QNslK6JXi7lQG736HVbHz/mbf4Dc7tIRh1Xf5C0rF7BP8iiSxGMCmY6Ci1ven3A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-replace-supers/-/helper-replace-supers-7.24.1.tgz", + "integrity": "sha512-QCR1UqC9BzG5vZl8BMicmZ28RuUBnHhAMddD8yHFHDRH9lLTZ9uUPehX8ctVPT8l0TKblJidqcgUUKGVrePleQ==", "dev": true, "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-member-expression-to-functions": "^7.20.7", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-member-expression-to-functions": "^7.23.0", + "@babel/helper-optimise-call-expression": "^7.22.5" } }, "@babel/helper-simple-access": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.20.2.tgz", - "integrity": "sha512-+0woI/WPq59IrqDYbVGfshjT5Dmk/nnbdpcF8SnMhhXObpTq2KNBdLFRFrkVdbDOyUmHBCxzm5FHV1rACIkIbA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-simple-access/-/helper-simple-access-7.22.5.tgz", + "integrity": "sha512-n0H99E/K+Bika3++WNL17POvo4rKWZ7lZEp1Q+fStVbUi8nxPQEBOlTmCOxW/0JsS56SKKQ+ojAe2pHKJHN35w==", "dev": true, "requires": { - "@babel/types": "^7.20.2" + "@babel/types": "^7.22.5" } }, "@babel/helper-skip-transparent-expression-wrappers": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.20.0.tgz", - "integrity": "sha512-5y1JYeNKfvnT8sZcK9DVRtpTbGiomYIHviSP3OQWmDPU3DeH4a1ZlT/N2lyQ5P8egjcRaT/Y9aNqUxK0WsnIIg==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/helper-skip-transparent-expression-wrappers/-/helper-skip-transparent-expression-wrappers-7.22.5.tgz", + "integrity": "sha512-tK14r66JZKiC43p8Ki33yLBVJKlQDFoA8GYN67lWCDCqoL6EMMSuM9b+Iff2jHaM/RRFYl7K+iiru7hbRqNx8Q==", "dev": true, "requires": { - "@babel/types": "^7.20.0" + "@babel/types": "^7.22.5" } }, "@babel/helper-split-export-declaration": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.18.6.tgz", - "integrity": "sha512-bde1etTx6ZyTmobl9LLMMQsaizFVZrquTEHOqKeQESMKo4PlObf+8+JA25ZsIpZhT/WEd39+vOdLXAFG/nELpA==", + "version": "7.22.6", + "resolved": "https://registry.npmjs.org/@babel/helper-split-export-declaration/-/helper-split-export-declaration-7.22.6.tgz", + "integrity": "sha512-AsUnxuLhRYsisFiaJwvp1QF+I3KjD5FOxut14q/GzovUe6orHLesW2C7d754kRm53h5gqrz6sFl6sxc4BVtE/g==", "dev": true, "requires": { - "@babel/types": "^7.18.6" + "@babel/types": "^7.22.5" } }, "@babel/helper-string-parser": { - "version": "7.19.4", - "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.19.4.tgz", - "integrity": "sha512-nHtDoQcuqFmwYNYPz3Rah5ph2p8PFeFCsZk9A/48dPc/rGocJ5J3hAAZ7pb76VWX3fZKu+uEr/FhH5jLx7umrw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/helper-string-parser/-/helper-string-parser-7.24.1.tgz", + "integrity": "sha512-2ofRCjnnA9y+wk8b9IAREroeUP02KHp431N2mhKniy2yKIDKpbrHv9eXwm8cBeWQYcJmzv5qKCu65P47eCF7CQ==", "dev": true }, "@babel/helper-validator-identifier": { - "version": "7.19.1", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.19.1.tgz", - "integrity": "sha512-awrNfaMtnHUr653GgGEs++LlAvW6w+DcPrOliSMXWCKo597CwL5Acf/wWdNkf/tfEQE3mjkeD1YOVZOUV/od1w==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-identifier/-/helper-validator-identifier-7.22.20.tgz", + "integrity": "sha512-Y4OZ+ytlatR8AI+8KZfKuL5urKp7qey08ha31L8b3BwewJAoJamTzyvxPR/5D+KkdJCGPq/+8TukHBlY10FX9A==", "dev": true }, "@babel/helper-validator-option": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.18.6.tgz", - "integrity": "sha512-XO7gESt5ouv/LRJdrVjkShckw6STTaB7l9BrpBaAHDeF5YZT+01PCwmR0SJHnkW6i8OwW/EVWRShfi4j2x+KQw==", + "version": "7.23.5", + "resolved": "https://registry.npmjs.org/@babel/helper-validator-option/-/helper-validator-option-7.23.5.tgz", + "integrity": "sha512-85ttAOMLsr53VgXkTbkx8oA6YTfT4q7/HzXSLEYmjcSTJPMPQtvq1BD79Byep5xMUYbGRzEpDsjUf3dyp54IKw==", "dev": true }, "@babel/helper-wrap-function": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.20.5.tgz", - "integrity": "sha512-bYMxIWK5mh+TgXGVqAtnu5Yn1un+v8DDZtqyzKRLUzrh70Eal2O3aZ7aPYiMADO4uKlkzOiRiZ6GX5q3qxvW9Q==", + "version": "7.22.20", + "resolved": "https://registry.npmjs.org/@babel/helper-wrap-function/-/helper-wrap-function-7.22.20.tgz", + "integrity": "sha512-pms/UwkOpnQe/PDAEdV/d7dVCoBbB+R4FvYoHGZz+4VPcg7RtYy2KP7S2lbuWM6FCSgob5wshfGESbC/hzNXZw==", "dev": true, "requires": { - "@babel/helper-function-name": "^7.19.0", - "@babel/template": "^7.18.10", - "@babel/traverse": "^7.20.5", - "@babel/types": "^7.20.5" + "@babel/helper-function-name": "^7.22.5", + "@babel/template": "^7.22.15", + "@babel/types": "^7.22.19" } }, "@babel/helpers": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.20.13.tgz", - "integrity": "sha512-nzJ0DWCL3gB5RCXbUO3KIMMsBY2Eqbx8mBpKGE/02PgyRQFcPQLbkQ1vyy596mZLaP+dAfD+R4ckASzNVmW3jg==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/helpers/-/helpers-7.24.4.tgz", + "integrity": "sha512-FewdlZbSiwaVGlgT1DPANDuCHaDMiOo+D/IDYRFYjHOuv66xMSJ7fQwwODwRNAPkADIO/z1EoF/l2BCWlWABDw==", "dev": true, "requires": { - "@babel/template": "^7.20.7", - "@babel/traverse": "^7.20.13", - "@babel/types": "^7.20.7" + "@babel/template": "^7.24.0", + "@babel/traverse": "^7.24.1", + "@babel/types": "^7.24.0" } }, "@babel/highlight": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.18.6.tgz", - "integrity": "sha512-u7stbOuYjaPezCuLj29hNW1v64M2Md2qupEKP1fHc7WdOA3DgLh37suiSrZYY7haUB7iBeQZ9P1uiRF359do3g==", + "version": "7.24.2", + "resolved": "https://registry.npmjs.org/@babel/highlight/-/highlight-7.24.2.tgz", + "integrity": "sha512-Yac1ao4flkTxTteCDZLEvdxg2fZfz1v8M4QpaGypq/WPDqg3ijHYbDfs+LG5hvzSoqaSZ9/Z9lKSP3CjZjv+pA==", "dev": true, "requires": { - "@babel/helper-validator-identifier": "^7.18.6", - "chalk": "^2.0.0", - "js-tokens": "^4.0.0" + "@babel/helper-validator-identifier": "^7.22.20", + "chalk": "^2.4.2", + "js-tokens": "^4.0.0", + "picocolors": "^1.0.0" } }, "@babel/parser": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.20.15.tgz", - "integrity": "sha512-DI4a1oZuf8wC+oAJA9RW6ga3Zbe8RZFt7kD9i4qAspz3I/yHet1VvC3DiSy/fsUvv5pvJuNPh0LPOdCcqinDPg==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/parser/-/parser-7.24.4.tgz", + "integrity": "sha512-zTvEBcghmeBma9QIGunWevvBAp4/Qu9Bdq+2k0Ot4fVMD6v3dsC9WOcRSKk7tRRyBM/53yKMJko9xOatGQAwSg==", "dev": true }, - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.18.6.tgz", - "integrity": "sha512-Dgxsyg54Fx1d4Nge8UnvTrED63vrwOdPmyvPzlNN/boaliRP54pm3pGzZD1SJUwrBA+Cs/xdG8kXX6Mn/RfISQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.20.7.tgz", - "integrity": "sha512-sbr9+wNE5aXMBBFBICk01tt7sBf2Oc9ikRFEcem/ZORup9IMUdNhW7/wVLEbbtlWOsEubJet46mHAL2C8+2jKQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-proposal-optional-chaining": "^7.20.7" - } - }, - "@babel/plugin-proposal-async-generator-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-async-generator-functions/-/plugin-proposal-async-generator-functions-7.20.7.tgz", - "integrity": "sha512-xMbiLsn/8RK7Wq7VeVytytS2L6qE69bXPB10YCmMdDZbKF4okCqY74pI/jJQ/8U0b/F6NrT2+14b8/P9/3AMGA==", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-firefox-class-in-computed-class-key/-/plugin-bugfix-firefox-class-in-computed-class-key-7.24.4.tgz", + "integrity": "sha512-qpl6vOOEEzTLLcsuqYYo8yDtrTocmu2xkGvgNebvPjT9DTtfFYGmgDqY+rBYXNlqL4s9qLDn6xkrJv4RxAPiTA==", "dev": true, "requires": { - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9", - "@babel/plugin-syntax-async-generators": "^7.8.4" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0" } }, - "@babel/plugin-proposal-class-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-properties/-/plugin-proposal-class-properties-7.18.6.tgz", - "integrity": "sha512-cumfXOF0+nzZrrN8Rf0t7M+tF6sZc7vhQwYQck9q1/5w2OExlD+b4v4RpMJFaV1Z7WcDRgO6FqvxqxGlwo+RHQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } - }, - "@babel/plugin-proposal-class-static-block": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-class-static-block/-/plugin-proposal-class-static-block-7.20.7.tgz", - "integrity": "sha512-AveGOoi9DAjUYYuUAG//Ig69GlazLnoyzMw68VCDux+c1tsnnH/OkYcpz/5xzMkEFC6UxjR5Gw1c+iY2wOGVeQ==", - "dev": true, - "requires": { - "@babel/helper-create-class-features-plugin": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-class-static-block": "^7.14.5" - } - }, - "@babel/plugin-proposal-dynamic-import": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-dynamic-import/-/plugin-proposal-dynamic-import-7.18.6.tgz", - "integrity": "sha512-1auuwmK+Rz13SJj36R+jqFPMJWyKEDd7lLSdOj4oJK0UTgGueSAtkrCvz9ewmgyU/P941Rv2fQwZJN8s6QruXw==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-dynamic-import": "^7.8.3" - } - }, - "@babel/plugin-proposal-export-namespace-from": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-export-namespace-from/-/plugin-proposal-export-namespace-from-7.18.9.tgz", - "integrity": "sha512-k1NtHyOMvlDDFeb9G5PhUXuGj8m/wiwojgQVEhJ/fsVsMCpLyOP4h0uGEjYJKrRI+EVPlb5Jk+Gt9P97lOGwtA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.9", - "@babel/plugin-syntax-export-namespace-from": "^7.8.3" - } - }, - "@babel/plugin-proposal-json-strings": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-json-strings/-/plugin-proposal-json-strings-7.18.6.tgz", - "integrity": "sha512-lr1peyn9kOdbYc0xr0OdHTZ5FMqS6Di+H0Fz2I/JwMzGmzJETNeOFq2pBySw6X/KFL5EWDjlJuMsUGRFb8fQgQ==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-json-strings": "^7.8.3" - } - }, - "@babel/plugin-proposal-logical-assignment-operators": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-logical-assignment-operators/-/plugin-proposal-logical-assignment-operators-7.20.7.tgz", - "integrity": "sha512-y7C7cZgpMIjWlKE5T7eJwp+tnRYM89HmRvWM5EQuB5BoHEONjmQ8lSNmBUwOyy/GFRsohJED51YBF79hE1djug==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" - } - }, - "@babel/plugin-proposal-nullish-coalescing-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-nullish-coalescing-operator/-/plugin-proposal-nullish-coalescing-operator-7.18.6.tgz", - "integrity": "sha512-wQxQzxYeJqHcfppzBDnm1yAY0jSRkUXR2z8RePZYrKwMKgMlE8+Z6LUno+bd6LvbGh8Gltvy74+9pIYkr+XkKA==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" - } - }, - "@babel/plugin-proposal-numeric-separator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-numeric-separator/-/plugin-proposal-numeric-separator-7.18.6.tgz", - "integrity": "sha512-ozlZFogPqoLm8WBr5Z8UckIoE4YQ5KESVcNudyXOR8uqIkliTEgJ3RoketfG6pmzLdeZF0H/wjE9/cCEitBl7Q==", - "dev": true, - "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-numeric-separator": "^7.10.4" - } - }, - "@babel/plugin-proposal-object-rest-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-object-rest-spread/-/plugin-proposal-object-rest-spread-7.20.7.tgz", - "integrity": "sha512-d2S98yCiLxDVmBmE8UjGcfPvNEUbA1U5q5WxaWFUGRzJSVAZqm5W6MbPct0jxnegUZ0niLeNX+IOzEs7wYg9Dg==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.20.5", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-object-rest-spread": "^7.8.3", - "@babel/plugin-transform-parameters": "^7.20.7" - } - }, - "@babel/plugin-proposal-optional-catch-binding": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-catch-binding/-/plugin-proposal-optional-catch-binding-7.18.6.tgz", - "integrity": "sha512-Q40HEhs9DJQyaZfUjjn6vE8Cv4GmMHCYuMGIWUnlxH6400VGxOuwWsPt4FxXxJkC/5eOzgn0z21M9gMT4MOhbw==", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression/-/plugin-bugfix-safari-id-destructuring-collision-in-function-expression-7.24.1.tgz", + "integrity": "sha512-y4HqEnkelJIOQGd+3g1bTeKsA5c6qM7eOn7VggGVbBc0y8MLSKHacwcIE2PplNlQSj0PqS9rrXL/nkPVK+kUNg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + "@babel/helper-plugin-utils": "^7.24.0" } }, - "@babel/plugin-proposal-optional-chaining": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-optional-chaining/-/plugin-proposal-optional-chaining-7.20.7.tgz", - "integrity": "sha512-T+A7b1kfjtRM51ssoOfS1+wbyCVqorfyZhT99TvxxLMirPShD8CzKMRepMlCBGM5RpHMbn8s+5MMHnPstJH6mQ==", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining/-/plugin-bugfix-v8-spread-parameters-in-optional-chaining-7.24.1.tgz", + "integrity": "sha512-Hj791Ii4ci8HqnaKHAlLNs+zaLXb0EzSDhiAWp5VNlyvCNymYfacs64pxTxbH1znW/NcArSmwpmG9IKE/TUVVQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0", - "@babel/plugin-syntax-optional-chaining": "^7.8.3" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-transform-optional-chaining": "^7.24.1" } }, - "@babel/plugin-proposal-private-methods": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-methods/-/plugin-proposal-private-methods-7.18.6.tgz", - "integrity": "sha512-nutsvktDItsNn4rpGItSNV2sz1XwS+nfU0Rg8aCx3W3NOKVzdMjJRu0O5OkgDp3ZGICSTbgRpxZoWsxoKRvbeA==", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly/-/plugin-bugfix-v8-static-class-fields-redefine-readonly-7.24.1.tgz", + "integrity": "sha512-m9m/fXsXLiHfwdgydIFnpk+7jlVbnvlK5B2EKiPdLUb6WX654ZaaEWJUjk8TftRbZpK0XibovlLWX4KIZhV6jw==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-proposal-private-property-in-object": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.20.5.tgz", - "integrity": "sha512-Vq7b9dUA12ByzB4EjQTPo25sFhY+08pQDBSZRtUAkj7lb7jahaHR5igera16QZ+3my1nYR4dKsNdYj5IjPHilQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-create-class-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-private-property-in-object": "^7.14.5" - } - }, - "@babel/plugin-proposal-unicode-property-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-unicode-property-regex/-/plugin-proposal-unicode-property-regex-7.18.6.tgz", - "integrity": "sha512-2BShG/d5yoZyXZfVePH91urL5wTG6ASZU9M4o03lKK8u8UW1y08OMttBSOADTcJrnPMpvDXRG3G8fyLh4ovs8w==", + "version": "7.21.0-placeholder-for-preset-env.2", + "resolved": "https://registry.npmjs.org/@babel/plugin-proposal-private-property-in-object/-/plugin-proposal-private-property-in-object-7.21.0-placeholder-for-preset-env.2.tgz", + "integrity": "sha512-SOSkfJDddaM7mak6cPEpswyTRnuRltl429hMraQEglW+OkovnCzsiszTmsrlY//qLFjCpQDFRvjdm2wA5pPm9w==", "dev": true, - "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" - } + "requires": {} }, "@babel/plugin-syntax-async-generators": { "version": "7.8.4", @@ -35620,21 +35301,30 @@ } }, "@babel/plugin-syntax-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.18.6.tgz", - "integrity": "sha512-LUbR+KNTBWCUAqRG9ex5Gnzu2IOkt8jRJbHHXFT9q+L9zm7M/QQbEqXyw1n1pohYvOyWC8CjeyjrSaIwiYjK7A==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-flow/-/plugin-syntax-flow-7.24.1.tgz", + "integrity": "sha512-sxi2kLTI5DeW5vDtMUsk4mTPwvlUDbjOnoWayhynCwrw4QXRld4QEYwqzY8JmQXaJUtgUuCIurtSRH5sn4c7mA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-syntax-import-assertions": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.20.0.tgz", - "integrity": "sha512-IUh1vakzNoWalR8ch/areW7qFopR2AEw03JlG7BbrDqmQ4X3q9uuipQwSGrUn7oGiemKjtSLDhNtQHzMHr1JdQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-assertions/-/plugin-syntax-import-assertions-7.24.1.tgz", + "integrity": "sha512-IuwnI5XnuF189t91XbxmXeCDz3qs6iDRO7GJ++wcfgeXNs/8FmIlKcpDSXNVyuLQxlwvskmI3Ct73wUODkJBlQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-syntax-import-attributes": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-import-attributes/-/plugin-syntax-import-attributes-7.24.1.tgz", + "integrity": "sha512-zhQTMH0X2nVLnb04tz+s7AMuasX8U0FnpE+nHTOhSOINjWMnopoZTxtIKsd45n4GQ/HIZLyfIpoul8e2m0DnRA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-syntax-import-meta": { @@ -35656,12 +35346,12 @@ } }, "@babel/plugin-syntax-jsx": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.18.6.tgz", - "integrity": "sha512-6mmljtAedFGTWu2p/8WIORGwy+61PLgOMPOdazc7YoJ9ZCWUyFy3A6CpPkRKLKD1ToAesxX8KGEViAiLo9N+7Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-jsx/-/plugin-syntax-jsx-7.24.1.tgz", + "integrity": "sha512-2eCtxZXf+kbkMIsXS4poTvT4Yu5rXiRa+9xGVT56raghjmBTKMpFNc9R4IDiB4emao9eO22Ox7CxuJG7BgExqA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-syntax-logical-assignment-operators": { @@ -35737,424 +35427,593 @@ } }, "@babel/plugin-syntax-typescript": { - "version": "7.20.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.20.0.tgz", - "integrity": "sha512-rd9TkG+u1CExzS4SM1BlMEhMXwFLKVjOAFFCDx9PbX5ycJWDoWMcwdJH9RhkPu1dOgn5TrxLot/Gx6lWFuAUNQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-typescript/-/plugin-syntax-typescript-7.24.1.tgz", + "integrity": "sha512-Yhnmvy5HZEnHUty6i++gcfH1/l68AHnItFHnaCv6hn9dNh0hQvvQJsxpi4BMBFN5DLeHBuucT/0DgzXif/OyRw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-syntax-unicode-sets-regex": { + "version": "7.18.6", + "resolved": "https://registry.npmjs.org/@babel/plugin-syntax-unicode-sets-regex/-/plugin-syntax-unicode-sets-regex-7.18.6.tgz", + "integrity": "sha512-727YkEAPwSIQTv5im8QHz3upqp92JTWhidIC81Tdx4VJYIte/VndKf1qKrfnnhPLiPghStWfvC/iFaMCQu7Nqg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.19.0" + "@babel/helper-create-regexp-features-plugin": "^7.18.6", + "@babel/helper-plugin-utils": "^7.18.6" } }, "@babel/plugin-transform-arrow-functions": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.20.7.tgz", - "integrity": "sha512-3poA5E7dzDomxj9WXWwuD6A5F3kc7VXwIJO+E+J8qtDtS+pXPAhrgEyh+9GBwBgPq1Z+bB+/JD60lp5jsN7JPQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-arrow-functions/-/plugin-transform-arrow-functions-7.24.1.tgz", + "integrity": "sha512-ngT/3NkRhsaep9ck9uj2Xhv9+xB1zShY3tM3g6om4xxCELwCDN4g4Aq5dRn48+0hasAql7s2hdBOysCfNpr4fw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-async-generator-functions": { + "version": "7.24.3", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-generator-functions/-/plugin-transform-async-generator-functions-7.24.3.tgz", + "integrity": "sha512-Qe26CMYVjpQxJ8zxM1340JFNjZaF+ISWpr1Kt/jGo+ZTUzKkfw/pphEWbRCb+lmSM6k/TOgfYLvmbHkUQ0asIg==", + "dev": true, + "requires": { + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-remap-async-to-generator": "^7.22.20", + "@babel/plugin-syntax-async-generators": "^7.8.4" } }, "@babel/plugin-transform-async-to-generator": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.20.7.tgz", - "integrity": "sha512-Uo5gwHPT9vgnSXQxqGtpdufUiWp96gk7yiP4Mp5bm1QMkEmLXBO7PAGYbKoJ6DhAwiNkcHFBol/x5zZZkL/t0Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-async-to-generator/-/plugin-transform-async-to-generator-7.24.1.tgz", + "integrity": "sha512-AawPptitRXp1y0n4ilKcGbRYWfbbzFWz2NqNu7dacYDtFtz0CMjG64b3LQsb3KIgnf4/obcUL78hfaOS7iCUfw==", "dev": true, "requires": { - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-remap-async-to-generator": "^7.18.9" + "@babel/helper-module-imports": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-remap-async-to-generator": "^7.22.20" } }, "@babel/plugin-transform-block-scoped-functions": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.18.6.tgz", - "integrity": "sha512-ExUcOqpPWnliRcPqves5HJcJOvHvIIWfuS4sroBUenPuMdmW+SMHDakmtS7qOo13sVppmUijqeTv7qqGsvURpQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoped-functions/-/plugin-transform-block-scoped-functions-7.24.1.tgz", + "integrity": "sha512-TWWC18OShZutrv9C6mye1xwtam+uNi2bnTOCBUd5sZxyHOiWbU6ztSROofIMrK84uweEZC219POICK/sTYwfgg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-block-scoping": { - "version": "7.20.15", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.20.15.tgz", - "integrity": "sha512-Vv4DMZ6MiNOhu/LdaZsT/bsLRxgL94d269Mv4R/9sp6+Mp++X/JqypZYypJXLlM4mlL352/Egzbzr98iABH1CA==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-block-scoping/-/plugin-transform-block-scoping-7.24.4.tgz", + "integrity": "sha512-nIFUZIpGKDf9O9ttyRXpHFpKC+X3Y5mtshZONuEUYBomAKoM4y029Jr+uB1bHGPhNmK8YXHevDtKDOLmtRrp6g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-class-properties": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-properties/-/plugin-transform-class-properties-7.24.1.tgz", + "integrity": "sha512-OMLCXi0NqvJfORTaPQBwqLXHhb93wkBKZ4aNwMl6WtehO7ar+cmp+89iPEQPqxAnxsOKTaMcs3POz3rKayJ72g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-class-static-block": { + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-class-static-block/-/plugin-transform-class-static-block-7.24.4.tgz", + "integrity": "sha512-B8q7Pz870Hz/q9UgP8InNpY01CSLDSCyqX7zcRuv3FcPl87A2G17lASroHWaCtbdIcbYzOZ7kWmXFKbijMSmFg==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.4", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-class-static-block": "^7.14.5" } }, "@babel/plugin-transform-classes": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.20.7.tgz", - "integrity": "sha512-LWYbsiXTPKl+oBlXUGlwNlJZetXD5Am+CyBdqhPsDVjM9Jc8jwBJFrKhHf900Kfk2eZG1y9MAG3UNajol7A4VQ==", - "dev": true, - "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-compilation-targets": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-optimise-call-expression": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-replace-supers": "^7.20.7", - "@babel/helper-split-export-declaration": "^7.18.6", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-classes/-/plugin-transform-classes-7.24.1.tgz", + "integrity": "sha512-ZTIe3W7UejJd3/3R4p7ScyyOoafetUShSf4kCqV0O7F/RiHxVj/wRaRnQlrGwflvcehNA8M42HkAiEDYZu2F1Q==", + "dev": true, + "requires": { + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1", + "@babel/helper-split-export-declaration": "^7.22.6", "globals": "^11.1.0" } }, "@babel/plugin-transform-computed-properties": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.20.7.tgz", - "integrity": "sha512-Lz7MvBK6DTjElHAmfu6bfANzKcxpyNPeYBGEafyA6E5HtRpjpZwU+u7Qrgz/2OR0z+5TvKYbPdphfSaAcZBrYQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-computed-properties/-/plugin-transform-computed-properties-7.24.1.tgz", + "integrity": "sha512-5pJGVIUfJpOS+pAqBQd+QMaTD2vCL/HcePooON6pDpHgRp4gNRmzyHTPIkXntwKsq3ayUFVfJaIKPw2pOkOcTw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/template": "^7.20.7" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/template": "^7.24.0" } }, "@babel/plugin-transform-destructuring": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.20.7.tgz", - "integrity": "sha512-Xwg403sRrZb81IVB79ZPqNQME23yhugYVqgTxAhT99h485F4f+GMELFhhOsscDUB7HCswepKeCKLn/GZvUKoBA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-destructuring/-/plugin-transform-destructuring-7.24.1.tgz", + "integrity": "sha512-ow8jciWqNxR3RYbSNVuF4U2Jx130nwnBnhRw6N6h1bOejNkABmcI5X5oz29K4alWX7vf1C+o6gtKXikzRKkVdw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-dotall-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.18.6.tgz", - "integrity": "sha512-6S3jpun1eEbAxq7TdjLotAsl4WpQI9DxfkycRcKrjhQYzU87qpXdknpBg/e+TdcMehqGnLFi7tnFUBR02Vq6wg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dotall-regex/-/plugin-transform-dotall-regex-7.24.1.tgz", + "integrity": "sha512-p7uUxgSoZwZ2lPNMzUkqCts3xlp8n+o05ikjy7gbtFJSt9gdU88jAmtfmOxHM14noQXBxfgzf2yRWECiNVhTCw==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-duplicate-keys": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.18.9.tgz", - "integrity": "sha512-d2bmXCtZXYc59/0SanQKbiWINadaJXqtvIQIzd4+hNwkWBgyCd5F/2t1kXoUdvPMrxzPvhK6EMQRROxsue+mfw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-duplicate-keys/-/plugin-transform-duplicate-keys-7.24.1.tgz", + "integrity": "sha512-msyzuUnvsjsaSaocV6L7ErfNsa5nDWL1XKNnDePLgmz+WdU4w/J8+AxBMrWfi9m4IxfL5sZQKUPQKDQeeAT6lA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-dynamic-import": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-dynamic-import/-/plugin-transform-dynamic-import-7.24.1.tgz", + "integrity": "sha512-av2gdSTyXcJVdI+8aFZsCAtR29xJt0S5tas+Ef8NvBNmD1a+N/3ecMLeMBgfcK+xzsjdLDT6oHt+DFPyeqUbDA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-dynamic-import": "^7.8.3" } }, "@babel/plugin-transform-exponentiation-operator": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.18.6.tgz", - "integrity": "sha512-wzEtc0+2c88FVR34aQmiz56dxEkxr2g8DQb/KfaFa1JYXOFVsbhvAonFN6PwVWj++fKmku8NP80plJ5Et4wqHw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-exponentiation-operator/-/plugin-transform-exponentiation-operator-7.24.1.tgz", + "integrity": "sha512-U1yX13dVBSwS23DEAqU+Z/PkwE9/m7QQy8Y9/+Tdb8UWYaGNDYwTLi19wqIAiROr8sXVum9A/rtiH5H0boUcTw==", "dev": true, "requires": { - "@babel/helper-builder-binary-assignment-operator-visitor": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-builder-binary-assignment-operator-visitor": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-export-namespace-from": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-export-namespace-from/-/plugin-transform-export-namespace-from-7.24.1.tgz", + "integrity": "sha512-Ft38m/KFOyzKw2UaJFkWG9QnHPG/Q/2SkOrRk4pNBPg5IPZ+dOxcmkK5IyuBcxiNPyyYowPGUReyBvrvZs7IlQ==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-export-namespace-from": "^7.8.3" } }, "@babel/plugin-transform-flow-strip-types": { - "version": "7.19.0", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.19.0.tgz", - "integrity": "sha512-sgeMlNaQVbCSpgLSKP4ZZKfsJVnFnNQlUSk6gPYzR/q7tzCgQF2t8RBKAP6cKJeZdveei7Q7Jm527xepI8lNLg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-flow-strip-types/-/plugin-transform-flow-strip-types-7.24.1.tgz", + "integrity": "sha512-iIYPIWt3dUmUKKE10s3W+jsQ3icFkw0JyRVyY1B7G4yK/nngAOHLVx8xlhA6b/Jzl/Y0nis8gjqhqKtRDQqHWQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.19.0", - "@babel/plugin-syntax-flow": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-flow": "^7.24.1" } }, "@babel/plugin-transform-for-of": { - "version": "7.18.8", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.18.8.tgz", - "integrity": "sha512-yEfTRnjuskWYo0k1mHUqrVWaZwrdq8AYbfrpqULOJOaucGSp4mNMVps+YtA8byoevxS/urwU75vyhQIxcCgiBQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-for-of/-/plugin-transform-for-of-7.24.1.tgz", + "integrity": "sha512-OxBdcnF04bpdQdR3i4giHZNZQn7cm8RQKcSwA17wAAqEELo1ZOwp5FFgeptWUQXFyT9kwHo10aqqauYkRZPCAg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" } }, "@babel/plugin-transform-function-name": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.18.9.tgz", - "integrity": "sha512-WvIBoRPaJQ5yVHzcnJFor7oS5Ls0PYixlTYE63lCj2RtdQEl15M68FXQlxnG6wdraJIXRdR7KI+hQ7q/9QjrCQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-function-name/-/plugin-transform-function-name-7.24.1.tgz", + "integrity": "sha512-BXmDZpPlh7jwicKArQASrj8n22/w6iymRnvHYYd2zO30DbE277JO20/7yXJT3QxDPtiQiOxQBbZH4TpivNXIxA==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-json-strings": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-json-strings/-/plugin-transform-json-strings-7.24.1.tgz", + "integrity": "sha512-U7RMFmRvoasscrIFy5xA4gIp8iWnWubnKkKuUGJjsuOH7GfbMkB+XZzeslx2kLdEGdOJDamEmCqOks6e8nv8DQ==", "dev": true, "requires": { - "@babel/helper-compilation-targets": "^7.18.9", - "@babel/helper-function-name": "^7.18.9", - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-json-strings": "^7.8.3" } }, "@babel/plugin-transform-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.18.9.tgz", - "integrity": "sha512-IFQDSRoTPnrAIrI5zoZv73IFeZu2dhu6irxQjY9rNjTT53VmKg9fenjvoiOWOkJ6mm4jKVPtdMzBY98Fp4Z4cg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-literals/-/plugin-transform-literals-7.24.1.tgz", + "integrity": "sha512-zn9pwz8U7nCqOYIiBaOxoQOtYmMODXTJnkxG4AtX8fPmnCRYWBOHD0qcpwS9e2VDSp1zNJYpdnFMIKb8jmwu6g==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-logical-assignment-operators": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-logical-assignment-operators/-/plugin-transform-logical-assignment-operators-7.24.1.tgz", + "integrity": "sha512-OhN6J4Bpz+hIBqItTeWJujDOfNP+unqv/NJgyhlpSqgBTPm37KkMmZV6SYcOj+pnDbdcl1qRGV/ZiIjX9Iy34w==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4" } }, "@babel/plugin-transform-member-expression-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.18.6.tgz", - "integrity": "sha512-qSF1ihLGO3q+/g48k85tUjD033C29TNTVB2paCwZPVmOsjn9pClvYYrM2VeJpBY2bcNkuny0YUyTNRyRxJ54KA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-member-expression-literals/-/plugin-transform-member-expression-literals-7.24.1.tgz", + "integrity": "sha512-4ojai0KysTWXzHseJKa1XPNXKRbuUrhkOPY4rEGeR+7ChlJVKxFa3H3Bz+7tWaGKgJAXUWKOGmltN+u9B3+CVg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-modules-amd": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.20.11.tgz", - "integrity": "sha512-NuzCt5IIYOW0O30UvqktzHYR2ud5bOWbY0yaxWZ6G+aFzOMJvrs5YHNikrbdaT15+KNO31nPOy5Fim3ku6Zb5g==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-amd/-/plugin-transform-modules-amd-7.24.1.tgz", + "integrity": "sha512-lAxNHi4HVtjnHd5Rxg3D5t99Xm6H7b04hUS7EHIXcUl2EV4yl1gWdqZrNzXnSrHveL9qMdbODlLF55mvgjAfaQ==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-modules-commonjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.20.11.tgz", - "integrity": "sha512-S8e1f7WQ7cimJQ51JkAaDrEtohVEitXjgCGAS2N8S31Y42E+kWwfSz83LYz57QdBm7q9diARVqanIaH2oVgQnw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-commonjs/-/plugin-transform-modules-commonjs-7.24.1.tgz", + "integrity": "sha512-szog8fFTUxBfw0b98gEWPaEqF42ZUD/T3bkynW/wtgx2p/XCP55WEsb+VosKceRSd6njipdZvNogqdtI4Q0chw==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-simple-access": "^7.20.2" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-simple-access": "^7.22.5" } }, "@babel/plugin-transform-modules-systemjs": { - "version": "7.20.11", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.20.11.tgz", - "integrity": "sha512-vVu5g9BPQKSFEmvt2TA4Da5N+QVS66EX21d8uoOihC+OCpUoGvzVsXeqFdtAEfVa5BILAeFt+U7yVmLbQnAJmw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-systemjs/-/plugin-transform-modules-systemjs-7.24.1.tgz", + "integrity": "sha512-mqQ3Zh9vFO1Tpmlt8QPnbwGHzNz3lpNEMxQb1kAemn/erstyqw1r9KeOlOfo3y6xAnFEcOv2tSyrXfmMk+/YZA==", "dev": true, "requires": { - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-module-transforms": "^7.20.11", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-identifier": "^7.19.1" + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-identifier": "^7.22.20" } }, "@babel/plugin-transform-modules-umd": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.18.6.tgz", - "integrity": "sha512-dcegErExVeXcRqNtkRU/z8WlBLnvD4MRnHgNs3MytRO1Mn1sHRyhbcpYbVMGclAqOjdW+9cfkdZno9dFdfKLfQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-modules-umd/-/plugin-transform-modules-umd-7.24.1.tgz", + "integrity": "sha512-tuA3lpPj+5ITfcCluy6nWonSL7RvaG0AOTeAuvXqEKS34lnLzXpDb0dcP6K8jD0zWZFNDVly90AGFJPnm4fOYg==", "dev": true, "requires": { - "@babel/helper-module-transforms": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-module-transforms": "^7.23.3", + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-named-capturing-groups-regex": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.20.5.tgz", - "integrity": "sha512-mOW4tTzi5iTLnw+78iEq3gr8Aoq4WNRGpmSlrogqaiCBoR1HFhpU4JkpQFOHfeYx3ReVIFWOQJS4aZBRvuZ6mA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-named-capturing-groups-regex/-/plugin-transform-named-capturing-groups-regex-7.22.5.tgz", + "integrity": "sha512-YgLLKmS3aUBhHaxp5hi1WJTgOUb/NCuDHzGT9z9WTt3YG+CPRhJs6nprbStx6DnWM4dh6gt7SU3sZodbZ08adQ==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.20.5", - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-create-regexp-features-plugin": "^7.22.5", + "@babel/helper-plugin-utils": "^7.22.5" } }, "@babel/plugin-transform-new-target": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.18.6.tgz", - "integrity": "sha512-DjwFA/9Iu3Z+vrAn+8pBUGcjhxKguSMlsFqeCKbhb9BAV756v0krzVK04CRDi/4aqmk8BsHb4a/gFcaA5joXRw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-new-target/-/plugin-transform-new-target-7.24.1.tgz", + "integrity": "sha512-/rurytBM34hYy0HKZQyA0nHbQgQNFm4Q/BOc9Hflxi2X3twRof7NaE5W46j4kQitm7SvACVRXsa6N/tSZxvPug==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-nullish-coalescing-operator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-nullish-coalescing-operator/-/plugin-transform-nullish-coalescing-operator-7.24.1.tgz", + "integrity": "sha512-iQ+caew8wRrhCikO5DrUYx0mrmdhkaELgFa+7baMcVuhxIkN7oxt06CZ51D65ugIb1UWRQ8oQe+HXAVM6qHFjw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3" + } + }, + "@babel/plugin-transform-numeric-separator": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-numeric-separator/-/plugin-transform-numeric-separator-7.24.1.tgz", + "integrity": "sha512-7GAsGlK4cNL2OExJH1DzmDeKnRv/LXq0eLUSvudrehVA5Rgg4bIrqEUW29FbKMBRT0ztSqisv7kjP+XIC4ZMNw==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-numeric-separator": "^7.10.4" + } + }, + "@babel/plugin-transform-object-rest-spread": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-rest-spread/-/plugin-transform-object-rest-spread-7.24.1.tgz", + "integrity": "sha512-XjD5f0YqOtebto4HGISLNfiNMTTs6tbkFf2TOqJlYKYmbo+mN9Dnpl4SRoofiziuOWMIyq3sZEUqLo3hLITFEA==", + "dev": true, + "requires": { + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-object-rest-spread": "^7.8.3", + "@babel/plugin-transform-parameters": "^7.24.1" } }, "@babel/plugin-transform-object-super": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.18.6.tgz", - "integrity": "sha512-uvGz6zk+pZoS1aTZrOvrbj6Pp/kK2mp45t2B+bTDre2UgsZZ8EZLSJtUg7m/no0zOJUWgFONpB7Zv9W2tSaFlA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-object-super/-/plugin-transform-object-super-7.24.1.tgz", + "integrity": "sha512-oKJqR3TeI5hSLRxudMjFQ9re9fBVUU0GICqM3J1mi8MqlhVr6hC/ZN4ttAyMuQR6EZZIY6h/exe5swqGNNIkWQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-replace-supers": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-replace-supers": "^7.24.1" + } + }, + "@babel/plugin-transform-optional-catch-binding": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-catch-binding/-/plugin-transform-optional-catch-binding-7.24.1.tgz", + "integrity": "sha512-oBTH7oURV4Y+3EUrf6cWn1OHio3qG/PVwO5J03iSJmBg6m2EhKjkAu/xuaXaYwWW9miYtvbWv4LNf0AmR43LUA==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-optional-catch-binding": "^7.8.3" + } + }, + "@babel/plugin-transform-optional-chaining": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-optional-chaining/-/plugin-transform-optional-chaining-7.24.1.tgz", + "integrity": "sha512-n03wmDt+987qXwAgcBlnUUivrZBPZ8z1plL0YvgQalLm+ZE5BMhGm94jhxXtA1wzv1Cu2aaOv1BM9vbVttrzSg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5", + "@babel/plugin-syntax-optional-chaining": "^7.8.3" } }, "@babel/plugin-transform-parameters": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.20.7.tgz", - "integrity": "sha512-WiWBIkeHKVOSYPO0pWkxGPfKeWrCJyD3NJ53+Lrp/QMSZbsVPovrVl2aWZ19D/LTVnaDv5Ap7GJ/B2CTOZdrfA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-parameters/-/plugin-transform-parameters-7.24.1.tgz", + "integrity": "sha512-8Jl6V24g+Uw5OGPeWNKrKqXPDw2YDjLc53ojwfMcKwlEoETKU9rU0mHUtcg9JntWI/QYzGAXNWEcVHZ+fR+XXg==", + "dev": true, + "requires": { + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-private-methods": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-methods/-/plugin-transform-private-methods-7.24.1.tgz", + "integrity": "sha512-tGvisebwBO5em4PaYNqt4fkw56K2VALsAbAakY0FjTYqJp7gfdrgr7YX76Or8/cpik0W6+tj3rZ0uHU9Oil4tw==", + "dev": true, + "requires": { + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-private-property-in-object": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-private-property-in-object/-/plugin-transform-private-property-in-object-7.24.1.tgz", + "integrity": "sha512-pTHxDVa0BpUbvAgX3Gat+7cSciXqUcY9j2VZKTbSB6+VQGpNgNO9ailxTGHSXlqOnX1Hcx1Enme2+yv7VqP9bg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.1", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-private-property-in-object": "^7.14.5" } }, "@babel/plugin-transform-property-literals": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.18.6.tgz", - "integrity": "sha512-cYcs6qlgafTud3PAzrrRNbQtfpQ8+y/+M5tKmksS9+M1ckbH6kzY8MrexEM9mcA6JDsukE19iIRvAyYl463sMg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-property-literals/-/plugin-transform-property-literals-7.24.1.tgz", + "integrity": "sha512-LetvD7CrHmEx0G442gOomRr66d7q8HzzGGr4PMHGr+5YIm6++Yke+jxj246rpvsbyhJwCLxcTn6zW1P1BSenqA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-react-display-name": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.18.6.tgz", - "integrity": "sha512-TV4sQ+T013n61uMoygyMRm+xf04Bd5oqFpv2jAEQwSZ8NwQA7zeRPg1LMVg2PWi3zWBz+CLKD+v5bcpZ/BS0aA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-display-name/-/plugin-transform-react-display-name-7.24.1.tgz", + "integrity": "sha512-mvoQg2f9p2qlpDQRBC7M3c3XTr0k7cp/0+kFKKO/7Gtu0LSw16eKB+Fabe2bDT/UpsyasTBBkAnbdsLrkD5XMw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-react-jsx": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.20.13.tgz", - "integrity": "sha512-MmTZx/bkUrfJhhYAYt3Urjm+h8DQGrPrnKQ94jLo7NLuOU+T89a7IByhKmrb8SKhrIYIQ0FN0CHMbnFRen4qNw==", + "version": "7.23.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx/-/plugin-transform-react-jsx-7.23.4.tgz", + "integrity": "sha512-5xOpoPguCZCRbo/JeHlloSkTA8Bld1J/E1/kLfD1nsuiW1m8tduTA1ERCgIZokDflX/IBzKcqR3l7VlRgiIfHA==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-module-imports": "^7.18.6", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-jsx": "^7.18.6", - "@babel/types": "^7.20.7" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-module-imports": "^7.22.15", + "@babel/helper-plugin-utils": "^7.22.5", + "@babel/plugin-syntax-jsx": "^7.23.3", + "@babel/types": "^7.23.4" } }, "@babel/plugin-transform-react-jsx-development": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.18.6.tgz", - "integrity": "sha512-SA6HEjwYFKF7WDjWcMcMGUimmw/nhNRDWxr+KaLSCrkD/LMDBvWRmHAYgE1HDeF8KUuI8OAu+RT6EOtKxSW2qA==", + "version": "7.22.5", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-jsx-development/-/plugin-transform-react-jsx-development-7.22.5.tgz", + "integrity": "sha512-bDhuzwWMuInwCYeDeMzyi7TaBgRQei6DqxhbyniL7/VG4RSS7HtSL2QbY4eESy1KJqlWt8g3xeEBGPuo+XqC8A==", "dev": true, "requires": { - "@babel/plugin-transform-react-jsx": "^7.18.6" + "@babel/plugin-transform-react-jsx": "^7.22.5" } }, "@babel/plugin-transform-react-pure-annotations": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.18.6.tgz", - "integrity": "sha512-I8VfEPg9r2TRDdvnHgPepTKvuRomzA8+u+nhY7qSI1fR2hRNebasZEETLyM5mAUr0Ku56OkXJ0I7NHJnO6cJiQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-react-pure-annotations/-/plugin-transform-react-pure-annotations-7.24.1.tgz", + "integrity": "sha512-+pWEAaDJvSm9aFvJNpLiM2+ktl2Sn2U5DdyiWdZBxmLc6+xGt88dvFqsHiAiDS+8WqUwbDfkKz9jRxK3M0k+kA==", "dev": true, "requires": { - "@babel/helper-annotate-as-pure": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-regenerator": { - "version": "7.20.5", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.20.5.tgz", - "integrity": "sha512-kW/oO7HPBtntbsahzQ0qSE3tFvkFwnbozz3NWFhLGqH75vLEg+sCGngLlhVkePlCs3Jv0dBBHDzCHxNiFAQKCQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-regenerator/-/plugin-transform-regenerator-7.24.1.tgz", + "integrity": "sha512-sJwZBCzIBE4t+5Q4IGLaaun5ExVMRY0lYwos/jNecjMrVCygCdph3IKv0tkP5Fc87e/1+bebAmEAGBfnRD+cnw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "regenerator-transform": "^0.15.1" + "@babel/helper-plugin-utils": "^7.24.0", + "regenerator-transform": "^0.15.2" } }, "@babel/plugin-transform-reserved-words": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.18.6.tgz", - "integrity": "sha512-oX/4MyMoypzHjFrT1CdivfKZ+XvIPMFXwwxHp/r0Ddy2Vuomt4HDFGmft1TAY2yiTKiNSsh3kjBAzcM8kSdsjA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-reserved-words/-/plugin-transform-reserved-words-7.24.1.tgz", + "integrity": "sha512-JAclqStUfIwKN15HrsQADFgeZt+wexNQ0uLhuqvqAUFoqPMjEcFCYZBhq0LUdz6dZK/mD+rErhW71fbx8RYElg==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-shorthand-properties": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.18.6.tgz", - "integrity": "sha512-eCLXXJqv8okzg86ywZJbRn19YJHU4XUa55oz2wbHhaQVn/MM+XhukiT7SYqp/7o00dg52Rj51Ny+Ecw4oyoygw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-shorthand-properties/-/plugin-transform-shorthand-properties-7.24.1.tgz", + "integrity": "sha512-LyjVB1nsJ6gTTUKRjRWx9C1s9hE7dLfP/knKdrfeH9UPtAGjYGgxIbFfx7xyLIEWs7Xe1Gnf8EWiUqfjLhInZA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-spread": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.20.7.tgz", - "integrity": "sha512-ewBbHQ+1U/VnH1fxltbJqDeWBU1oNLG8Dj11uIv3xVf7nrQu0bPGe5Rf716r7K5Qz+SqtAOVswoVunoiBtGhxw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-spread/-/plugin-transform-spread-7.24.1.tgz", + "integrity": "sha512-KjmcIM+fxgY+KxPVbjelJC6hrH1CgtPmTvdXAfn3/a9CnWGSTY7nH4zm5+cjmWJybdcPSsD0++QssDsjcpe47g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-skip-transparent-expression-wrappers": "^7.20.0" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-skip-transparent-expression-wrappers": "^7.22.5" } }, "@babel/plugin-transform-sticky-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.18.6.tgz", - "integrity": "sha512-kfiDrDQ+PBsQDO85yj1icueWMfGfJFKN1KCkndygtu/C9+XUfydLC8Iv5UYJqRwy4zk8EcplRxEOeLyjq1gm6Q==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-sticky-regex/-/plugin-transform-sticky-regex-7.24.1.tgz", + "integrity": "sha512-9v0f1bRXgPVcPrngOQvLXeGNNVLc8UjMVfebo9ka0WF3/7+aVUHmaJVT3sa0XCzEFioPfPHZiOcYG9qOsH63cw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-template-literals": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.18.9.tgz", - "integrity": "sha512-S8cOWfT82gTezpYOiVaGHrCbhlHgKhQt8XH5ES46P2XWmX92yisoZywf5km75wv5sYcXDUCLMmMxOLCtthDgMA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-template-literals/-/plugin-transform-template-literals-7.24.1.tgz", + "integrity": "sha512-WRkhROsNzriarqECASCNu/nojeXCDTE/F2HmRgOzi7NGvyfYGq1NEjKBK3ckLfRgGc6/lPAqP0vDOSw3YtG34g==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-typeof-symbol": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.18.9.tgz", - "integrity": "sha512-SRfwTtF11G2aemAZWivL7PD+C9z52v9EvMqH9BuYbabyPuKUvSWks3oCg6041pT925L4zVFqaVBeECwsmlguEw==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typeof-symbol/-/plugin-transform-typeof-symbol-7.24.1.tgz", + "integrity": "sha512-CBfU4l/A+KruSUoW+vTQthwcAdwuqbpRNB8HQKlZABwHRhsdHZ9fezp4Sn18PeAlYxTNiLMlx4xUBV3AWfg1BA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-typescript": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.20.13.tgz", - "integrity": "sha512-O7I/THxarGcDZxkgWKMUrk7NK1/WbHAg3Xx86gqS6x9MTrNL6AwIluuZ96ms4xeDe6AVx6rjHbWHP7x26EPQBA==", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-typescript/-/plugin-transform-typescript-7.24.4.tgz", + "integrity": "sha512-79t3CQ8+oBGk/80SQ8MN3Bs3obf83zJ0YZjDmDaEZN8MqhMI760apl5z6a20kFeMXBwJX99VpKT8CKxEBp5H1g==", "dev": true, "requires": { - "@babel/helper-create-class-features-plugin": "^7.20.12", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/plugin-syntax-typescript": "^7.20.0" + "@babel/helper-annotate-as-pure": "^7.22.5", + "@babel/helper-create-class-features-plugin": "^7.24.4", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/plugin-syntax-typescript": "^7.24.1" } }, "@babel/plugin-transform-unicode-escapes": { - "version": "7.18.10", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.18.10.tgz", - "integrity": "sha512-kKAdAI+YzPgGY/ftStBFXTI1LZFju38rYThnfMykS+IXy8BVx+res7s2fxf1l8I35DV2T97ezo6+SGrXz6B3iQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-escapes/-/plugin-transform-unicode-escapes-7.24.1.tgz", + "integrity": "sha512-RlkVIcWT4TLI96zM660S877E7beKlQw7Ig+wqkKBiWfj0zH5Q4h50q6er4wzZKRNSYpfo6ILJ+hrJAGSX2qcNw==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.9" + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-unicode-property-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-property-regex/-/plugin-transform-unicode-property-regex-7.24.1.tgz", + "integrity": "sha512-Ss4VvlfYV5huWApFsF8/Sq0oXnGO+jB+rijFEFugTd3cwSObUSnUi88djgR5528Csl0uKlrI331kRqe56Ov2Ng==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/plugin-transform-unicode-regex": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.18.6.tgz", - "integrity": "sha512-gE7A6Lt7YLnNOL3Pb9BNeZvi+d8l7tcRrG4+pwJjK9hD2xX4mEvjlQW60G9EEmfXVYRPv9VRQcyegIVHCql/AA==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-regex/-/plugin-transform-unicode-regex-7.24.1.tgz", + "integrity": "sha512-2A/94wgZgxfTsiLaQ2E36XAOdcZmGAaEEgVmxQWwZXWkGhvoHbaqXcKnU8zny4ycpu3vNqg0L/PcCiYtHtA13g==", "dev": true, "requires": { - "@babel/helper-create-regexp-features-plugin": "^7.18.6", - "@babel/helper-plugin-utils": "^7.18.6" + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" + } + }, + "@babel/plugin-transform-unicode-sets-regex": { + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/plugin-transform-unicode-sets-regex/-/plugin-transform-unicode-sets-regex-7.24.1.tgz", + "integrity": "sha512-fqj4WuzzS+ukpgerpAoOnMfQXwUHFxXUZUE84oL2Kao2N8uSlvcpnAidKASgsNgzZHBsHWvcm8s9FPWUhAb8fA==", + "dev": true, + "requires": { + "@babel/helper-create-regexp-features-plugin": "^7.22.15", + "@babel/helper-plugin-utils": "^7.24.0" } }, "@babel/preset-env": { - "version": "7.20.2", - "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.20.2.tgz", - "integrity": "sha512-1G0efQEWR1EHkKvKHqbG+IN/QdgwfByUpM5V5QroDzGV2t3S/WXNQd693cHiHTlCFMpr9B6FkPFXDA2lQcKoDg==", - "dev": true, - "requires": { - "@babel/compat-data": "^7.20.1", - "@babel/helper-compilation-targets": "^7.20.0", - "@babel/helper-plugin-utils": "^7.20.2", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.18.6", - "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-async-generator-functions": "^7.20.1", - "@babel/plugin-proposal-class-properties": "^7.18.6", - "@babel/plugin-proposal-class-static-block": "^7.18.6", - "@babel/plugin-proposal-dynamic-import": "^7.18.6", - "@babel/plugin-proposal-export-namespace-from": "^7.18.9", - "@babel/plugin-proposal-json-strings": "^7.18.6", - "@babel/plugin-proposal-logical-assignment-operators": "^7.18.9", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.18.6", - "@babel/plugin-proposal-numeric-separator": "^7.18.6", - "@babel/plugin-proposal-object-rest-spread": "^7.20.2", - "@babel/plugin-proposal-optional-catch-binding": "^7.18.6", - "@babel/plugin-proposal-optional-chaining": "^7.18.9", - "@babel/plugin-proposal-private-methods": "^7.18.6", - "@babel/plugin-proposal-private-property-in-object": "^7.18.6", - "@babel/plugin-proposal-unicode-property-regex": "^7.18.6", + "version": "7.24.4", + "resolved": "https://registry.npmjs.org/@babel/preset-env/-/preset-env-7.24.4.tgz", + "integrity": "sha512-7Kl6cSmYkak0FK/FXjSEnLJ1N9T/WA2RkMhu17gZ/dsxKJUuTYNIylahPTzqpLyJN4WhDif8X0XK1R8Wsguo/A==", + "dev": true, + "requires": { + "@babel/compat-data": "^7.24.4", + "@babel/helper-compilation-targets": "^7.23.6", + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-bugfix-firefox-class-in-computed-class-key": "^7.24.4", + "@babel/plugin-bugfix-safari-id-destructuring-collision-in-function-expression": "^7.24.1", + "@babel/plugin-bugfix-v8-spread-parameters-in-optional-chaining": "^7.24.1", + "@babel/plugin-bugfix-v8-static-class-fields-redefine-readonly": "^7.24.1", + "@babel/plugin-proposal-private-property-in-object": "7.21.0-placeholder-for-preset-env.2", "@babel/plugin-syntax-async-generators": "^7.8.4", "@babel/plugin-syntax-class-properties": "^7.12.13", "@babel/plugin-syntax-class-static-block": "^7.14.5", "@babel/plugin-syntax-dynamic-import": "^7.8.3", "@babel/plugin-syntax-export-namespace-from": "^7.8.3", - "@babel/plugin-syntax-import-assertions": "^7.20.0", + "@babel/plugin-syntax-import-assertions": "^7.24.1", + "@babel/plugin-syntax-import-attributes": "^7.24.1", + "@babel/plugin-syntax-import-meta": "^7.10.4", "@babel/plugin-syntax-json-strings": "^7.8.3", "@babel/plugin-syntax-logical-assignment-operators": "^7.10.4", "@babel/plugin-syntax-nullish-coalescing-operator": "^7.8.3", @@ -36164,117 +36023,163 @@ "@babel/plugin-syntax-optional-chaining": "^7.8.3", "@babel/plugin-syntax-private-property-in-object": "^7.14.5", "@babel/plugin-syntax-top-level-await": "^7.14.5", - "@babel/plugin-transform-arrow-functions": "^7.18.6", - "@babel/plugin-transform-async-to-generator": "^7.18.6", - "@babel/plugin-transform-block-scoped-functions": "^7.18.6", - "@babel/plugin-transform-block-scoping": "^7.20.2", - "@babel/plugin-transform-classes": "^7.20.2", - "@babel/plugin-transform-computed-properties": "^7.18.9", - "@babel/plugin-transform-destructuring": "^7.20.2", - "@babel/plugin-transform-dotall-regex": "^7.18.6", - "@babel/plugin-transform-duplicate-keys": "^7.18.9", - "@babel/plugin-transform-exponentiation-operator": "^7.18.6", - "@babel/plugin-transform-for-of": "^7.18.8", - "@babel/plugin-transform-function-name": "^7.18.9", - "@babel/plugin-transform-literals": "^7.18.9", - "@babel/plugin-transform-member-expression-literals": "^7.18.6", - "@babel/plugin-transform-modules-amd": "^7.19.6", - "@babel/plugin-transform-modules-commonjs": "^7.19.6", - "@babel/plugin-transform-modules-systemjs": "^7.19.6", - "@babel/plugin-transform-modules-umd": "^7.18.6", - "@babel/plugin-transform-named-capturing-groups-regex": "^7.19.1", - "@babel/plugin-transform-new-target": "^7.18.6", - "@babel/plugin-transform-object-super": "^7.18.6", - "@babel/plugin-transform-parameters": "^7.20.1", - "@babel/plugin-transform-property-literals": "^7.18.6", - "@babel/plugin-transform-regenerator": "^7.18.6", - "@babel/plugin-transform-reserved-words": "^7.18.6", - "@babel/plugin-transform-shorthand-properties": "^7.18.6", - "@babel/plugin-transform-spread": "^7.19.0", - "@babel/plugin-transform-sticky-regex": "^7.18.6", - "@babel/plugin-transform-template-literals": "^7.18.9", - "@babel/plugin-transform-typeof-symbol": "^7.18.9", - "@babel/plugin-transform-unicode-escapes": "^7.18.10", - "@babel/plugin-transform-unicode-regex": "^7.18.6", - "@babel/preset-modules": "^0.1.5", - "@babel/types": "^7.20.2", - "babel-plugin-polyfill-corejs2": "^0.3.3", - "babel-plugin-polyfill-corejs3": "^0.6.0", - "babel-plugin-polyfill-regenerator": "^0.4.1", - "core-js-compat": "^3.25.1", - "semver": "^6.3.0" + "@babel/plugin-syntax-unicode-sets-regex": "^7.18.6", + "@babel/plugin-transform-arrow-functions": "^7.24.1", + "@babel/plugin-transform-async-generator-functions": "^7.24.3", + "@babel/plugin-transform-async-to-generator": "^7.24.1", + "@babel/plugin-transform-block-scoped-functions": "^7.24.1", + "@babel/plugin-transform-block-scoping": "^7.24.4", + "@babel/plugin-transform-class-properties": "^7.24.1", + "@babel/plugin-transform-class-static-block": "^7.24.4", + "@babel/plugin-transform-classes": "^7.24.1", + "@babel/plugin-transform-computed-properties": "^7.24.1", + "@babel/plugin-transform-destructuring": "^7.24.1", + "@babel/plugin-transform-dotall-regex": "^7.24.1", + "@babel/plugin-transform-duplicate-keys": "^7.24.1", + "@babel/plugin-transform-dynamic-import": "^7.24.1", + "@babel/plugin-transform-exponentiation-operator": "^7.24.1", + "@babel/plugin-transform-export-namespace-from": "^7.24.1", + "@babel/plugin-transform-for-of": "^7.24.1", + "@babel/plugin-transform-function-name": "^7.24.1", + "@babel/plugin-transform-json-strings": "^7.24.1", + "@babel/plugin-transform-literals": "^7.24.1", + "@babel/plugin-transform-logical-assignment-operators": "^7.24.1", + "@babel/plugin-transform-member-expression-literals": "^7.24.1", + "@babel/plugin-transform-modules-amd": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-modules-systemjs": "^7.24.1", + "@babel/plugin-transform-modules-umd": "^7.24.1", + "@babel/plugin-transform-named-capturing-groups-regex": "^7.22.5", + "@babel/plugin-transform-new-target": "^7.24.1", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.24.1", + "@babel/plugin-transform-numeric-separator": "^7.24.1", + "@babel/plugin-transform-object-rest-spread": "^7.24.1", + "@babel/plugin-transform-object-super": "^7.24.1", + "@babel/plugin-transform-optional-catch-binding": "^7.24.1", + "@babel/plugin-transform-optional-chaining": "^7.24.1", + "@babel/plugin-transform-parameters": "^7.24.1", + "@babel/plugin-transform-private-methods": "^7.24.1", + "@babel/plugin-transform-private-property-in-object": "^7.24.1", + "@babel/plugin-transform-property-literals": "^7.24.1", + "@babel/plugin-transform-regenerator": "^7.24.1", + "@babel/plugin-transform-reserved-words": "^7.24.1", + "@babel/plugin-transform-shorthand-properties": "^7.24.1", + "@babel/plugin-transform-spread": "^7.24.1", + "@babel/plugin-transform-sticky-regex": "^7.24.1", + "@babel/plugin-transform-template-literals": "^7.24.1", + "@babel/plugin-transform-typeof-symbol": "^7.24.1", + "@babel/plugin-transform-unicode-escapes": "^7.24.1", + "@babel/plugin-transform-unicode-property-regex": "^7.24.1", + "@babel/plugin-transform-unicode-regex": "^7.24.1", + "@babel/plugin-transform-unicode-sets-regex": "^7.24.1", + "@babel/preset-modules": "0.1.6-no-external-plugins", + "babel-plugin-polyfill-corejs2": "^0.4.10", + "babel-plugin-polyfill-corejs3": "^0.10.4", + "babel-plugin-polyfill-regenerator": "^0.6.1", + "core-js-compat": "^3.31.0", + "semver": "^6.3.1" }, "dependencies": { "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true } } }, "@babel/preset-flow": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.18.6.tgz", - "integrity": "sha512-E7BDhL64W6OUqpuyHnSroLnqyRTcG6ZdOBl1OKI/QK/HJfplqK/S3sq1Cckx7oTodJ5yOXyfw7rEADJ6UjoQDQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/preset-flow/-/preset-flow-7.24.1.tgz", + "integrity": "sha512-sWCV2G9pcqZf+JHyv/RyqEIpFypxdCSxWIxQjpdaQxenNog7cN1pr76hg8u0Fz8Qgg0H4ETkGcJnXL8d4j0PPA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-flow-strip-types": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-transform-flow-strip-types": "^7.24.1" } }, "@babel/preset-modules": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.5.tgz", - "integrity": "sha512-A57th6YRG7oR3cq/yt/Y84MvGgE0eJG2F1JLhKuyG+jFxEgrd/HAMJatiFtmOiZurz+0DkrvbheCLaV5f2JfjA==", + "version": "0.1.6-no-external-plugins", + "resolved": "https://registry.npmjs.org/@babel/preset-modules/-/preset-modules-0.1.6-no-external-plugins.tgz", + "integrity": "sha512-HrcgcIESLm9aIR842yhJ5RWan/gebQUJ6E/E5+rf0y9o6oj7w0Br+sWuL6kEQ/o/AdfvR1Je9jG18/gnpwjEyA==", "dev": true, "requires": { "@babel/helper-plugin-utils": "^7.0.0", - "@babel/plugin-proposal-unicode-property-regex": "^7.4.4", - "@babel/plugin-transform-dotall-regex": "^7.4.4", "@babel/types": "^7.4.4", "esutils": "^2.0.2" } }, "@babel/preset-react": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.18.6.tgz", - "integrity": "sha512-zXr6atUmyYdiWRVLOZahakYmOBHtWc2WGCkP8PYTgZi0iJXDY2CN180TdrIW4OGOAdLc7TifzDIvtx6izaRIzg==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/preset-react/-/preset-react-7.24.1.tgz", + "integrity": "sha512-eFa8up2/8cZXLIpkafhaADTXSnl7IsUFCYenRWrARBz0/qZwcT0RBXpys0LJU4+WfPoF2ZG6ew6s2V6izMCwRA==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-react-display-name": "^7.18.6", - "@babel/plugin-transform-react-jsx": "^7.18.6", - "@babel/plugin-transform-react-jsx-development": "^7.18.6", - "@babel/plugin-transform-react-pure-annotations": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-transform-react-display-name": "^7.24.1", + "@babel/plugin-transform-react-jsx": "^7.23.4", + "@babel/plugin-transform-react-jsx-development": "^7.22.5", + "@babel/plugin-transform-react-pure-annotations": "^7.24.1" } }, "@babel/preset-typescript": { - "version": "7.18.6", - "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.18.6.tgz", - "integrity": "sha512-s9ik86kXBAnD760aybBucdpnLsAt0jK1xqJn2juOn9lkOvSHV60os5hxoVJsPzMQxvnUJFAlkont2DvvaYEBtQ==", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/preset-typescript/-/preset-typescript-7.24.1.tgz", + "integrity": "sha512-1DBaMmRDpuYQBPWD8Pf/WEwCrtgRHxsZnP4mIy9G/X+hFfbI47Q2G4t1Paakld84+qsk2fSsUPMKg71jkoOOaQ==", "dev": true, "requires": { - "@babel/helper-plugin-utils": "^7.18.6", - "@babel/helper-validator-option": "^7.18.6", - "@babel/plugin-transform-typescript": "^7.18.6" + "@babel/helper-plugin-utils": "^7.24.0", + "@babel/helper-validator-option": "^7.23.5", + "@babel/plugin-syntax-jsx": "^7.24.1", + "@babel/plugin-transform-modules-commonjs": "^7.24.1", + "@babel/plugin-transform-typescript": "^7.24.1" } }, "@babel/register": { - "version": "7.18.9", - "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.18.9.tgz", - "integrity": "sha512-ZlbnXDcNYHMR25ITwwNKT88JiaukkdVj/nG7r3wnuXkOTHc60Uy05PwMCPre0hSkY68E6zK3xz+vUJSP2jWmcw==", + "version": "7.23.7", + "resolved": "https://registry.npmjs.org/@babel/register/-/register-7.23.7.tgz", + "integrity": "sha512-EjJeB6+kvpk+Y5DAkEAmbOBEFkh9OASx0huoEkqYTFxAZHzOAX2Oh5uwAUuL2rUddqfM0SA+KPXV2TbzoZ2kvQ==", "dev": true, "requires": { "clone-deep": "^4.0.1", "find-cache-dir": "^2.0.0", "make-dir": "^2.1.0", - "pirates": "^4.0.5", + "pirates": "^4.0.6", "source-map-support": "^0.5.16" }, "dependencies": { + "find-cache-dir": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", + "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "dev": true, + "requires": { + "commondir": "^1.0.1", + "make-dir": "^2.0.0", + "pkg-dir": "^3.0.0" + } + }, + "find-up": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", + "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", + "dev": true, + "requires": { + "locate-path": "^3.0.0" + } + }, + "locate-path": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", + "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", + "dev": true, + "requires": { + "p-locate": "^3.0.0", + "path-exists": "^3.0.0" + } + }, "make-dir": { "version": "2.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", @@ -36285,10 +36190,34 @@ "semver": "^5.6.0" } }, + "p-locate": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", + "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", + "dev": true, + "requires": { + "p-limit": "^2.0.0" + } + }, + "path-exists": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", + "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", + "dev": true + }, + "pkg-dir": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", + "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", + "dev": true, + "requires": { + "find-up": "^3.0.0" + } + }, "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", + "version": "5.7.2", + "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.2.tgz", + "integrity": "sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g==", "dev": true } } @@ -36318,42 +36247,42 @@ } }, "@babel/template": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.20.7.tgz", - "integrity": "sha512-8SegXApWe6VoNw0r9JHpSteLKTpTiLZ4rMlGIm9JQ18KiCtyQiAMEazujAHrUS5flrcqYZa75ukev3P6QmUwUw==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/template/-/template-7.24.0.tgz", + "integrity": "sha512-Bkf2q8lMB0AFpX0NFEqSbx1OkTHf0f+0j82mkw+ZpzBnkk7e9Ql0891vlfgi+kHwOk8tQjiQHpqh4LaSa0fKEA==", "dev": true, "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/parser": "^7.20.7", - "@babel/types": "^7.20.7" + "@babel/code-frame": "^7.23.5", + "@babel/parser": "^7.24.0", + "@babel/types": "^7.24.0" } }, "@babel/traverse": { - "version": "7.20.13", - "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.20.13.tgz", - "integrity": "sha512-kMJXfF0T6DIS9E8cgdLCSAL+cuCK+YEZHWiLK0SXpTo8YRj5lpJu3CDNKiIBCne4m9hhTIqUg6SYTAI39tAiVQ==", - "dev": true, - "requires": { - "@babel/code-frame": "^7.18.6", - "@babel/generator": "^7.20.7", - "@babel/helper-environment-visitor": "^7.18.9", - "@babel/helper-function-name": "^7.19.0", - "@babel/helper-hoist-variables": "^7.18.6", - "@babel/helper-split-export-declaration": "^7.18.6", - "@babel/parser": "^7.20.13", - "@babel/types": "^7.20.7", - "debug": "^4.1.0", + "version": "7.24.1", + "resolved": "https://registry.npmjs.org/@babel/traverse/-/traverse-7.24.1.tgz", + "integrity": "sha512-xuU6o9m68KeqZbQuDt2TcKSxUw/mrsvavlEqQ1leZ/B+C9tk6E4sRWy97WaXgvq5E+nU3cXMxv3WKOCanVMCmQ==", + "dev": true, + "requires": { + "@babel/code-frame": "^7.24.1", + "@babel/generator": "^7.24.1", + "@babel/helper-environment-visitor": "^7.22.20", + "@babel/helper-function-name": "^7.23.0", + "@babel/helper-hoist-variables": "^7.22.5", + "@babel/helper-split-export-declaration": "^7.22.6", + "@babel/parser": "^7.24.1", + "@babel/types": "^7.24.0", + "debug": "^4.3.1", "globals": "^11.1.0" } }, "@babel/types": { - "version": "7.20.7", - "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.20.7.tgz", - "integrity": "sha512-69OnhBxSSgK0OzTJai4kyPDiKTIe3j+ctaHdIGVbRahTLAT7L3R9oeXHC2aVSuGYt3cVnoAMDmOCgJ2yaiLMvg==", + "version": "7.24.0", + "resolved": "https://registry.npmjs.org/@babel/types/-/types-7.24.0.tgz", + "integrity": "sha512-+j7a5c253RfKh8iABBhywc8NSfP5LURe7Uh4qpsh6jc+aLJguvmIUBdjSdEMQv2bENrCR5MfRdjGo7vzS/ob7w==", "dev": true, "requires": { - "@babel/helper-string-parser": "^7.19.4", - "@babel/helper-validator-identifier": "^7.19.1", + "@babel/helper-string-parser": "^7.23.4", + "@babel/helper-validator-identifier": "^7.22.20", "to-fast-properties": "^2.0.0" } }, @@ -36491,9 +36420,9 @@ "dev": true }, "@emotion/use-insertion-effect-with-fallbacks": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.0.tgz", - "integrity": "sha512-1eEgUGmkaljiBnRMTdksDV1W4kUnmwgp7X9G8B++9GYwl1lUdqSndSriIrTJ0N7LQaoauY9JJ2yhiOYK5+NI4A==", + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@emotion/use-insertion-effect-with-fallbacks/-/use-insertion-effect-with-fallbacks-1.0.1.tgz", + "integrity": "sha512-jT/qyKZ9rzLErtrjGgdkMBn2OP8wl0G3sQlBb3YPryvKHsjvINUhVaPFfP+fpBcOkmrVOVEEHQFJ7nbj2TH2gw==", "dev": true, "requires": {} }, @@ -36505,156 +36434,156 @@ "optional": true }, "@esbuild/android-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.16.17.tgz", - "integrity": "sha512-N9x1CMXVhtWEAMS7pNNONyA14f71VPQN9Cnavj1XQh6T7bskqiLLrSca4O0Vr8Wdcga943eThxnVp3JLnBMYtw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.18.20.tgz", + "integrity": "sha512-fyi7TDI/ijKKNZTUJAQqiG5T7YjJXgnzkURqmGj13C6dCqckZBLdl4h7bkhHt/t0WP+zO9/zwroDvANaOqO5Sw==", "dev": true, "optional": true }, "@esbuild/android-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.16.17.tgz", - "integrity": "sha512-MIGl6p5sc3RDTLLkYL1MyL8BMRN4tLMRCn+yRJJmEDvYZ2M7tmAf80hx1kbNEUX2KJ50RRtxZ4JHLvCfuB6kBg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.18.20.tgz", + "integrity": "sha512-Nz4rJcchGDtENV0eMKUNa6L12zz2zBDXuhj/Vjh18zGqB44Bi7MBMSXjgunJgjRhCmKOjnPuZp4Mb6OKqtMHLQ==", "dev": true, "optional": true }, "@esbuild/android-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.16.17.tgz", - "integrity": "sha512-a3kTv3m0Ghh4z1DaFEuEDfz3OLONKuFvI4Xqczqx4BqLyuFaFkuaG4j2MtA6fuWEFeC5x9IvqnX7drmRq/fyAQ==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.18.20.tgz", + "integrity": "sha512-8GDdlePJA8D6zlZYJV/jnrRAi6rOiNaCC/JclcXpB+KIuvfBN4owLtgzY2bsxnx666XjJx2kDPUmnTtR8qKQUg==", "dev": true, "optional": true }, "@esbuild/darwin-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.16.17.tgz", - "integrity": "sha512-/2agbUEfmxWHi9ARTX6OQ/KgXnOWfsNlTeLcoV7HSuSTv63E4DqtAc+2XqGw1KHxKMHGZgbVCZge7HXWX9Vn+w==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.18.20.tgz", + "integrity": "sha512-bxRHW5kHU38zS2lPTPOyuyTm+S+eobPUnTNkdJEfAddYgEcll4xkT8DB9d2008DtTbl7uJag2HuE5NZAZgnNEA==", "dev": true, "optional": true }, "@esbuild/darwin-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.16.17.tgz", - "integrity": "sha512-2By45OBHulkd9Svy5IOCZt376Aa2oOkiE9QWUK9fe6Tb+WDr8hXL3dpqi+DeLiMed8tVXspzsTAvd0jUl96wmg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.18.20.tgz", + "integrity": "sha512-pc5gxlMDxzm513qPGbCbDukOdsGtKhfxD1zJKXjCCcU7ju50O7MeAZ8c4krSJcOIJGFR+qx21yMMVYwiQvyTyQ==", "dev": true, "optional": true }, "@esbuild/freebsd-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.16.17.tgz", - "integrity": "sha512-mt+cxZe1tVx489VTb4mBAOo2aKSnJ33L9fr25JXpqQqzbUIw/yzIzi+NHwAXK2qYV1lEFp4OoVeThGjUbmWmdw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.18.20.tgz", + "integrity": "sha512-yqDQHy4QHevpMAaxhhIwYPMv1NECwOvIpGCZkECn8w2WFHXjEwrBn3CeNIYsibZ/iZEUemj++M26W3cNR5h+Tw==", "dev": true, "optional": true }, "@esbuild/freebsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.16.17.tgz", - "integrity": "sha512-8ScTdNJl5idAKjH8zGAsN7RuWcyHG3BAvMNpKOBaqqR7EbUhhVHOqXRdL7oZvz8WNHL2pr5+eIT5c65kA6NHug==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.18.20.tgz", + "integrity": "sha512-tgWRPPuQsd3RmBZwarGVHZQvtzfEBOreNuxEMKFcd5DaDn2PbBxfwLcj4+aenoh7ctXcbXmOQIn8HI6mCSw5MQ==", "dev": true, "optional": true }, "@esbuild/linux-arm": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.16.17.tgz", - "integrity": "sha512-iihzrWbD4gIT7j3caMzKb/RsFFHCwqqbrbH9SqUSRrdXkXaygSZCZg1FybsZz57Ju7N/SHEgPyaR0LZ8Zbe9gQ==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.18.20.tgz", + "integrity": "sha512-/5bHkMWnq1EgKr1V+Ybz3s1hWXok7mDFUMQ4cG10AfW3wL02PSZi5kFpYKrptDsgb2WAJIvRcDm+qIvXf/apvg==", "dev": true, "optional": true }, "@esbuild/linux-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.16.17.tgz", - "integrity": "sha512-7S8gJnSlqKGVJunnMCrXHU9Q8Q/tQIxk/xL8BqAP64wchPCTzuM6W3Ra8cIa1HIflAvDnNOt2jaL17vaW+1V0g==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.18.20.tgz", + "integrity": "sha512-2YbscF+UL7SQAVIpnWvYwM+3LskyDmPhe31pE7/aoTMFKKzIc9lLbyGUpmmb8a8AixOL61sQ/mFh3jEjHYFvdA==", "dev": true, "optional": true }, "@esbuild/linux-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.16.17.tgz", - "integrity": "sha512-kiX69+wcPAdgl3Lonh1VI7MBr16nktEvOfViszBSxygRQqSpzv7BffMKRPMFwzeJGPxcio0pdD3kYQGpqQ2SSg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.18.20.tgz", + "integrity": "sha512-P4etWwq6IsReT0E1KHU40bOnzMHoH73aXp96Fs8TIT6z9Hu8G6+0SHSw9i2isWrD2nbx2qo5yUqACgdfVGx7TA==", "dev": true, "optional": true }, "@esbuild/linux-loong64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.16.17.tgz", - "integrity": "sha512-dTzNnQwembNDhd654cA4QhbS9uDdXC3TKqMJjgOWsC0yNCbpzfWoXdZvp0mY7HU6nzk5E0zpRGGx3qoQg8T2DQ==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.18.20.tgz", + "integrity": "sha512-nXW8nqBTrOpDLPgPY9uV+/1DjxoQ7DoB2N8eocyq8I9XuqJ7BiAMDMf9n1xZM9TgW0J8zrquIb/A7s3BJv7rjg==", "dev": true, "optional": true }, "@esbuild/linux-mips64el": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.16.17.tgz", - "integrity": "sha512-ezbDkp2nDl0PfIUn0CsQ30kxfcLTlcx4Foz2kYv8qdC6ia2oX5Q3E/8m6lq84Dj/6b0FrkgD582fJMIfHhJfSw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.18.20.tgz", + "integrity": "sha512-d5NeaXZcHp8PzYy5VnXV3VSd2D328Zb+9dEq5HE6bw6+N86JVPExrA6O68OPwobntbNJ0pzCpUFZTo3w0GyetQ==", "dev": true, "optional": true }, "@esbuild/linux-ppc64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.16.17.tgz", - "integrity": "sha512-dzS678gYD1lJsW73zrFhDApLVdM3cUF2MvAa1D8K8KtcSKdLBPP4zZSLy6LFZ0jYqQdQ29bjAHJDgz0rVbLB3g==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.18.20.tgz", + "integrity": "sha512-WHPyeScRNcmANnLQkq6AfyXRFr5D6N2sKgkFo2FqguP44Nw2eyDlbTdZwd9GYk98DZG9QItIiTlFLHJHjxP3FA==", "dev": true, "optional": true }, "@esbuild/linux-riscv64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.16.17.tgz", - "integrity": "sha512-ylNlVsxuFjZK8DQtNUwiMskh6nT0vI7kYl/4fZgV1llP5d6+HIeL/vmmm3jpuoo8+NuXjQVZxmKuhDApK0/cKw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.18.20.tgz", + "integrity": "sha512-WSxo6h5ecI5XH34KC7w5veNnKkju3zBRLEQNY7mv5mtBmrP/MjNBCAlsM2u5hDBlS3NGcTQpoBvRzqBcRtpq1A==", "dev": true, "optional": true }, "@esbuild/linux-s390x": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.16.17.tgz", - "integrity": "sha512-gzy7nUTO4UA4oZ2wAMXPNBGTzZFP7mss3aKR2hH+/4UUkCOyqmjXiKpzGrY2TlEUhbbejzXVKKGazYcQTZWA/w==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.18.20.tgz", + "integrity": "sha512-+8231GMs3mAEth6Ja1iK0a1sQ3ohfcpzpRLH8uuc5/KVDFneH6jtAJLFGafpzpMRO6DzJ6AvXKze9LfFMrIHVQ==", "dev": true, "optional": true }, "@esbuild/linux-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.16.17.tgz", - "integrity": "sha512-mdPjPxfnmoqhgpiEArqi4egmBAMYvaObgn4poorpUaqmvzzbvqbowRllQ+ZgzGVMGKaPkqUmPDOOFQRUFDmeUw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.18.20.tgz", + "integrity": "sha512-UYqiqemphJcNsFEskc73jQ7B9jgwjWrSayxawS6UVFZGWrAAtkzjxSqnoclCXxWtfwLdzU+vTpcNYhpn43uP1w==", "dev": true, "optional": true }, "@esbuild/netbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.16.17.tgz", - "integrity": "sha512-/PzmzD/zyAeTUsduZa32bn0ORug+Jd1EGGAUJvqfeixoEISYpGnAezN6lnJoskauoai0Jrs+XSyvDhppCPoKOA==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.18.20.tgz", + "integrity": "sha512-iO1c++VP6xUBUmltHZoMtCUdPlnPGdBom6IrO4gyKPFFVBKioIImVooR5I83nTew5UOYrk3gIJhbZh8X44y06A==", "dev": true, "optional": true }, "@esbuild/openbsd-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.16.17.tgz", - "integrity": "sha512-2yaWJhvxGEz2RiftSk0UObqJa/b+rIAjnODJgv2GbGGpRwAfpgzyrg1WLK8rqA24mfZa9GvpjLcBBg8JHkoodg==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.18.20.tgz", + "integrity": "sha512-e5e4YSsuQfX4cxcygw/UCPIEP6wbIL+se3sxPdCiMbFLBWu0eiZOJ7WoD+ptCLrmjZBK1Wk7I6D/I3NglUGOxg==", "dev": true, "optional": true }, "@esbuild/sunos-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.16.17.tgz", - "integrity": "sha512-xtVUiev38tN0R3g8VhRfN7Zl42YCJvyBhRKw1RJjwE1d2emWTVToPLNEQj/5Qxc6lVFATDiy6LjVHYhIPrLxzw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.18.20.tgz", + "integrity": "sha512-kDbFRFp0YpTQVVrqUd5FTYmWo45zGaXe0X8E1G/LKFC0v8x0vWrhOWSLITcCn63lmZIxfOMXtCfti/RxN/0wnQ==", "dev": true, "optional": true }, "@esbuild/win32-arm64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.16.17.tgz", - "integrity": "sha512-ga8+JqBDHY4b6fQAmOgtJJue36scANy4l/rL97W+0wYmijhxKetzZdKOJI7olaBaMhWt8Pac2McJdZLxXWUEQw==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.18.20.tgz", + "integrity": "sha512-ddYFR6ItYgoaq4v4JmQQaAI5s7npztfV4Ag6NrhiaW0RrnOXqBkgwZLofVTlq1daVTQNhtI5oieTvkRPfZrePg==", "dev": true, "optional": true }, "@esbuild/win32-ia32": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.16.17.tgz", - "integrity": "sha512-WnsKaf46uSSF/sZhwnqE4L/F89AYNMiD4YtEcYekBt9Q7nj0DiId2XH2Ng2PHM54qi5oPrQ8luuzGszqi/veig==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.18.20.tgz", + "integrity": "sha512-Wv7QBi3ID/rROT08SABTS7eV4hX26sVduqDOTe1MvGMjNd3EjOz4b7zeexIR62GTIEKrfJXKL9LFxTYgkyeu7g==", "dev": true, "optional": true }, "@esbuild/win32-x64": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.16.17.tgz", - "integrity": "sha512-y+EHuSchhL7FjHgvQL/0fnnFmO4T1bhvWANX6gcnqTjtnKWbTvUMCpGnv2+t+31d7RzyEAYAd4u2fnIhHL6N/Q==", + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.18.20.tgz", + "integrity": "sha512-kTdfRcSiDfQca/y9QIkng02avJ+NCaQvrMejlsB3RRv5sE9rRoeBPISaZpKxHELzRxZyLvNts1P27W3wV+8geQ==", "dev": true, "optional": true }, @@ -36690,11 +36619,17 @@ "strip-json-comments": "^3.1.1" }, "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } }, "globals": { "version": "13.24.0", @@ -36705,14 +36640,11 @@ "type-fest": "^0.20.2" } }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "type-fest": { "version": "0.20.2", @@ -36734,6 +36666,40 @@ "integrity": "sha512-cEee/Z+I12mZcFJshKcCqC8tuX5hG3s+d+9nZ3LabqKF1vKdF41B92pJVCBggjAGORAeOzyyDDKrZwIkLffeOQ==", "dev": true }, + "@floating-ui/core": { + "version": "1.6.0", + "resolved": "https://registry.npmjs.org/@floating-ui/core/-/core-1.6.0.tgz", + "integrity": "sha512-PcF++MykgmTj3CIyOQbKA/hDzOAiqI3mhuoN44WRCopIs1sgoDoU4oty4Jtqaj/y3oDU6fnVSm4QG0a3t5i0+g==", + "dev": true, + "requires": { + "@floating-ui/utils": "^0.2.1" + } + }, + "@floating-ui/dom": { + "version": "1.6.3", + "resolved": "https://registry.npmjs.org/@floating-ui/dom/-/dom-1.6.3.tgz", + "integrity": "sha512-RnDthu3mzPlQ31Ss/BTwQ1zjzIhr3lk1gZB1OC56h/1vEtaXkESrOqL5fQVMfXpwGtRwX+YsZBdyHtJMQnkArw==", + "dev": true, + "requires": { + "@floating-ui/core": "^1.0.0", + "@floating-ui/utils": "^0.2.0" + } + }, + "@floating-ui/react-dom": { + "version": "2.0.8", + "resolved": "https://registry.npmjs.org/@floating-ui/react-dom/-/react-dom-2.0.8.tgz", + "integrity": "sha512-HOdqOt3R3OGeTKidaLvJKcgg75S6tibQ3Tif4eyd91QnIJWr0NLvoXFpJA/j8HqkFSL68GDca9AuyWEHlhyClw==", + "dev": true, + "requires": { + "@floating-ui/dom": "^1.6.1" + } + }, + "@floating-ui/utils": { + "version": "0.2.1", + "resolved": "https://registry.npmjs.org/@floating-ui/utils/-/utils-0.2.1.tgz", + "integrity": "sha512-9TANp6GPoMtYzQdt54kfAyMmz1+osLlXdg2ENroU7zzrtflTLrrC/lgrIfaSe+Wu0b89GKccT7vxXA0MoAIO+Q==", + "dev": true + }, "@fxts/core": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/@fxts/core/-/core-0.9.0.tgz", @@ -36785,6 +36751,65 @@ "integrity": "sha512-trnsAYxU3xnS1gPHPyU961coFyLkh4gAD/0zQ5mymY4yOZ+CYvsPqUbOFSw0aDM4y0tV7tiFxL/1XfXPNC6IPg==", "dev": true }, + "@isaacs/cliui": { + "version": "8.0.2", + "resolved": "https://registry.npmjs.org/@isaacs/cliui/-/cliui-8.0.2.tgz", + "integrity": "sha512-O8jcjabXaleOG9DQ0+ARXWZBTfnP4WNAqzuiJK7ll44AmxGKv/J2M4TPjxjY3znBCfvBXFzucm1twdyFybFqEA==", + "dev": true, + "requires": { + "string-width": "^5.1.2", + "string-width-cjs": "npm:string-width@^4.2.0", + "strip-ansi": "^7.0.1", + "strip-ansi-cjs": "npm:strip-ansi@^6.0.1", + "wrap-ansi": "^8.1.0", + "wrap-ansi-cjs": "npm:wrap-ansi@^7.0.0" + }, + "dependencies": { + "ansi-regex": { + "version": "6.0.1", + "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-6.0.1.tgz", + "integrity": "sha512-n5M855fKb2SsfMIiFFoVrABHJC8QtHwVx+mHWP3QcEqBHYienj5dHSgjbxtC0WEZXYt4wcD6zrQElDPhFuZgfA==", + "dev": true + }, + "ansi-styles": { + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-6.2.1.tgz", + "integrity": "sha512-bN798gFfQX+viw3R7yrGWRqnrN2oRkEkUjjl4JNn4E8GxxbjtG3FbrEIIY3l8/hrwUwIeCZvi4QuOTP4MErVug==", + "dev": true + }, + "string-width": { + "version": "5.1.2", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-5.1.2.tgz", + "integrity": "sha512-HnLOCR3vjcY8beoNLtcjZ5/nxn2afmME6lhrDrebokqMap+XbeW8n9TXpPDOqdGK5qcI3oT0GKTW6wC7EMiVqA==", + "dev": true, + "requires": { + "eastasianwidth": "^0.2.0", + "emoji-regex": "^9.2.2", + "strip-ansi": "^7.0.1" + } + }, + "strip-ansi": { + "version": "7.1.0", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-7.1.0.tgz", + "integrity": "sha512-iq6eVVI64nQQTRYq2KtEg2d2uU7LElhTJwsH4YzIHZshxlgZms/wIc4VoDQTlG/IvVIrBKG06CrZnp0qv7hkcQ==", + "dev": true, + "requires": { + "ansi-regex": "^6.0.1" + } + }, + "wrap-ansi": { + "version": "8.1.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-8.1.0.tgz", + "integrity": "sha512-si7QWI6zUMq56bESFvagtmzMdGOtoxfR+Sez11Mobfc7tm+VkUckk9bW2UeffTGVUbOksxmSw0AA2gs8g71NCQ==", + "dev": true, + "requires": { + "ansi-styles": "^6.1.0", + "string-width": "^5.0.1", + "strip-ansi": "^7.0.1" + } + } + } + }, "@istanbuljs/load-nyc-config": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/@istanbuljs/load-nyc-config/-/load-nyc-config-1.1.0.tgz", @@ -36796,6 +36821,27 @@ "get-package-type": "^0.1.0", "js-yaml": "^3.13.1", "resolve-from": "^5.0.0" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + } } }, "@istanbuljs/schema": { @@ -37449,12 +37495,12 @@ } }, "@jest/schemas": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.4.3.tgz", - "integrity": "sha512-VLYKXQmtmuEz6IxJsrZwzG9NvtkQsWNnWMsKxqWNu3+CnfzJQhp0WDDKWLVV9hLKr0l3SLLFRqcYHjhtyuDVxg==", + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/schemas/-/schemas-29.6.3.tgz", + "integrity": "sha512-mo5j5X+jIZmJQveBKeS/clAueipV7KgiX1vMgCxam1RNYiqE1w62n0/tJJnHtjW8ZHcQco5gY85jA3mi0L+nSA==", "dev": true, "requires": { - "@sinclair/typebox": "^0.25.16" + "@sinclair/typebox": "^0.27.8" } }, "@jest/source-map": { @@ -37659,6 +37705,131 @@ } } }, + "@jest/transform": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.7.0.tgz", + "integrity": "sha512-ok/BTPFzFKVMwO5eOHRrvnBVHdRy9IrsrW1GpMaQ9MCnilNLXQKmAX8s1YXDFaai9xJpac2ySzV0YeRRECr2Vw==", + "dev": true, + "requires": { + "@babel/core": "^7.11.6", + "@jest/types": "^29.6.3", + "@jridgewell/trace-mapping": "^0.3.18", + "babel-plugin-istanbul": "^6.1.1", + "chalk": "^4.0.0", + "convert-source-map": "^2.0.0", + "fast-json-stable-stringify": "^2.1.0", + "graceful-fs": "^4.2.9", + "jest-haste-map": "^29.7.0", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "micromatch": "^4.0.4", + "pirates": "^4.0.4", + "slash": "^3.0.0", + "write-file-atomic": "^4.0.2" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "convert-source-map": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", + "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", + "dev": true + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + }, + "write-file-atomic": { + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", + "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", + "dev": true, + "requires": { + "imurmurhash": "^0.1.4", + "signal-exit": "^3.0.7" + } + } + } + }, + "@jest/types": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.6.3.tgz", + "integrity": "sha512-u3UPsIilWKOM3F9CXtrG8LEJmNxwoCQC/XVj4IKYXvvpx7QIi/Kg1LI5uDmDpKlac62NUtX7eLjRh+jVZcLOzw==", + "dev": true, + "requires": { + "@jest/schemas": "^29.6.3", + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^17.0.8", + "chalk": "^4.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, "@jridgewell/gen-mapping": { "version": "0.1.1", "resolved": "https://registry.npmjs.org/@jridgewell/gen-mapping/-/gen-mapping-0.1.1.tgz", @@ -37676,9 +37847,9 @@ "dev": true }, "@jridgewell/set-array": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.1.1.tgz", - "integrity": "sha512-Ct5MqZkLGEXTVmQYbGtx9SVqD2fqwvdubdps5D3djjAkgkKwT918VNOz65pEHFaYTeWcukmJmH5SwsA9Tn2ObQ==", + "version": "1.2.1", + "resolved": "https://registry.npmjs.org/@jridgewell/set-array/-/set-array-1.2.1.tgz", + "integrity": "sha512-R8gLRTZeyp03ymzP/6Lil/28tGeGEzhx1q2k703KGWRAI1VdvPIXdG70VJc2pAMw3NA6JKL5hhFu1sJX0Mnn/A==", "dev": true }, "@jridgewell/source-map": { @@ -37705,19 +37876,19 @@ } }, "@jridgewell/sourcemap-codec": { - "version": "1.4.14", - "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.14.tgz", - "integrity": "sha512-XPSJHWmi394fuUuzDnGz1wiKqWfo1yXecHQMRf2l6hztTO+nPru658AyDngaBe7isIxEkRsPR3FZh+s7iVa4Uw==", + "version": "1.4.15", + "resolved": "https://registry.npmjs.org/@jridgewell/sourcemap-codec/-/sourcemap-codec-1.4.15.tgz", + "integrity": "sha512-eF2rxCRulEKXHTRiDrDy6erMYWqNw4LPdQ8UQA4huuxaQsVeRPFl2oM8oDGxMFhJUWZf9McpLtJasDDZb/Bpeg==", "dev": true }, "@jridgewell/trace-mapping": { - "version": "0.3.17", - "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.17.tgz", - "integrity": "sha512-MCNzAp77qzKca9+W/+I0+sEpaUnZoeasnghNeVc41VZCEKaCH73Vq3BZZ/SzWIgrqE4H4ceI+p+b6C0mHf9T4g==", + "version": "0.3.25", + "resolved": "https://registry.npmjs.org/@jridgewell/trace-mapping/-/trace-mapping-0.3.25.tgz", + "integrity": "sha512-vNk6aEwybGtawWmy/PzwnGDOjCkLWSD2wqvjGGAgOAwCGWySYXfYoxt00IJkTF+8Lb57DwOb3Aa0o9CApepiYQ==", "dev": true, "requires": { - "@jridgewell/resolve-uri": "3.1.0", - "@jridgewell/sourcemap-codec": "1.4.14" + "@jridgewell/resolve-uri": "^3.1.0", + "@jridgewell/sourcemap-codec": "^1.4.14" } }, "@juggle/resize-observer": { @@ -37761,6 +37932,17 @@ "@types/react": ">=16" } }, + "@ndelangen/get-tarball": { + "version": "3.0.9", + "resolved": "https://registry.npmjs.org/@ndelangen/get-tarball/-/get-tarball-3.0.9.tgz", + "integrity": "sha512-9JKTEik4vq+yGosHYhZ1tiH/3WpUS0Nh0kej4Agndhox8pAdWhEx5knFVRcb/ya9knCRCs1rPxNrSXTDdfVqpA==", + "dev": true, + "requires": { + "gunzip-maybe": "^1.4.2", + "pump": "^3.0.0", + "tar-fs": "^2.1.1" + } + }, "@nodelib/fs.scandir": { "version": "2.1.5", "resolved": "https://registry.npmjs.org/@nodelib/fs.scandir/-/fs.scandir-2.1.5.tgz", @@ -38096,10 +38278,17 @@ "url": "^0.11.0" } }, + "@pkgjs/parseargs": { + "version": "0.11.0", + "resolved": "https://registry.npmjs.org/@pkgjs/parseargs/-/parseargs-0.11.0.tgz", + "integrity": "sha512-+1VkjdD0QBLPodGrJUeqarH8VAIvQODIbwh9XpP5Syisf7YoQgsJKPNFoqqLQlu+VQ/tVSshMR6loPMn8U+dPg==", + "dev": true, + "optional": true + }, "@pmmmwh/react-refresh-webpack-plugin": { - "version": "0.5.10", - "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.10.tgz", - "integrity": "sha512-j0Ya0hCFZPd4x40qLzbhGsh9TMtdb+CJQiso+WxLOPNasohq9cc5SNUcwsZaRH6++Xh91Xkm/xHCkuIiIu0LUA==", + "version": "0.5.11", + "resolved": "https://registry.npmjs.org/@pmmmwh/react-refresh-webpack-plugin/-/react-refresh-webpack-plugin-0.5.11.tgz", + "integrity": "sha512-7j/6vdTym0+qZ6u4XbSAxrWBGYSdCfTzySkj7WAFgDLmSyWlOrWvpyzxlFh5jtw9dn0oL/jtW+06XfFiisN3JQ==", "dev": true, "requires": { "ansi-html-community": "^0.0.8", @@ -38113,6 +38302,25 @@ "source-map": "^0.7.3" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, "find-up": { "version": "5.0.0", "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", @@ -38123,6 +38331,12 @@ "path-exists": "^4.0.0" } }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "locate-path": { "version": "6.0.0", "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", @@ -38151,9 +38365,9 @@ } }, "schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "requires": { "@types/json-schema": "^7.0.8", @@ -38201,10 +38415,360 @@ "integrity": "sha512-P1st0aksCrn9sGZhp8GMYwBnQsbvAWsZAX44oXNNvLHGqAOcoVxmjZiohstwQ7SqKnbR47akdNi+uleWD8+g6A==", "peer": true }, + "@radix-ui/number": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/number/-/number-1.0.1.tgz", + "integrity": "sha512-T5gIdVO2mmPW3NNhjNgEP3cqMXjXL9UbO0BzWcXfvdBs+BohbQxvd/K5hSVKmn9/lbTdsQVKbUcP5WLCwvUbBg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/primitive": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/primitive/-/primitive-1.0.1.tgz", + "integrity": "sha512-yQ8oGX2GVsEYMWGxcovu1uGWPCxV5BFfeeYxqPmuAzUyLT9qmaMXSAhXpb0WrspIeqYzdJpkh2vHModJPgRIaw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-arrow": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-arrow/-/react-arrow-1.0.3.tgz", + "integrity": "sha512-wSP+pHsB/jQRaL6voubsQ/ZlrGBHHrOjmBnr19hxYgtS0WvAFwZhK2WP/YY5yF9uKECCEEDGxuLxq1NBK51wFA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + } + }, + "@radix-ui/react-collection": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-collection/-/react-collection-1.0.3.tgz", + "integrity": "sha512-3SzW+0PW7yBBoQlT8wNcGtaxaD0XSu0uLUFgrtHY08Acx05TaHaOmVLR73c0j/cqpDy53KBMO7s0dx2wmOIDIA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2" + } + }, + "@radix-ui/react-compose-refs": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-compose-refs/-/react-compose-refs-1.0.1.tgz", + "integrity": "sha512-fDSBgd44FKHa1FRMU59qBMPFcl2PZE+2nmqunj+BWFyYYjnhIDWL2ItDs3rrbJDQOtzt5nIebLCQc4QRfz6LJw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-context": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-context/-/react-context-1.0.1.tgz", + "integrity": "sha512-ebbrdFoYTcuZ0v4wG5tedGnp9tzcV8awzsxYph7gXUyvnNLuTIcCk1q17JEbnVhXAKG9oX3KtchwiMIAYp9NLg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-direction": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-direction/-/react-direction-1.0.1.tgz", + "integrity": "sha512-RXcvnXgyvYvBEOhCBuddKecVkoMiI10Jcm5cTI7abJRAHYfFxeu+FBQs/DvdxSYucxR5mna0dNsL6QFlds5TMA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-dismissable-layer": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-dismissable-layer/-/react-dismissable-layer-1.0.4.tgz", + "integrity": "sha512-7UpBa/RKMoHJYjie1gkF1DlK8l1fdU/VKDpoS3rCCo8YBJR294GwcEHyxHw72yvphJ7ld0AXEcSLAzY2F/WyCg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-escape-keydown": "1.0.3" + } + }, + "@radix-ui/react-focus-guards": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-guards/-/react-focus-guards-1.0.1.tgz", + "integrity": "sha512-Rect2dWbQ8waGzhMavsIbmSVCgYxkXLxxR3ZvCX79JOglzdEy4JXMb98lq4hPxUbLr77nP0UOGf4rcMU+s1pUA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-focus-scope": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-focus-scope/-/react-focus-scope-1.0.3.tgz", + "integrity": "sha512-upXdPfqI4islj2CslyfUBNlaJCPybbqRHAi1KER7Isel9Q2AtSJ0zRBZv8mWQiFXD2nyAJ4BhC3yXgZ6kMBSrQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1" + } + }, + "@radix-ui/react-id": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-id/-/react-id-1.0.1.tgz", + "integrity": "sha512-tI7sT/kqYp8p96yGWY1OAnLHrqDgzHefRBKQ2YAkBS5ja7QLcZ9Z/uY7bEjPUatf8RomoXM8/1sMj1IJaE5UzQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" + } + }, + "@radix-ui/react-popper": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-popper/-/react-popper-1.1.2.tgz", + "integrity": "sha512-1CnGGfFi/bbqtJZZ0P/NQY20xdG3E0LALJaLUEoKwPLwl6PPPfbeiCqMVQnhoFRAxjJj4RpBRJzDmUgsex2tSg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@floating-ui/react-dom": "^2.0.0", + "@radix-ui/react-arrow": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-rect": "1.0.1", + "@radix-ui/react-use-size": "1.0.1", + "@radix-ui/rect": "1.0.1" + } + }, + "@radix-ui/react-portal": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-portal/-/react-portal-1.0.3.tgz", + "integrity": "sha512-xLYZeHrWoPmA5mEKEfZZevoVRK/Q43GfzRXkWV6qawIWWK8t6ifIiLQdd7rmQ4Vk1bmI21XhqF9BN3jWf+phpA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + } + }, + "@radix-ui/react-primitive": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-primitive/-/react-primitive-1.0.3.tgz", + "integrity": "sha512-yi58uVyoAcK/Nq1inRY56ZSjKypBNKTa/1mcL8qdl6oJeEaDbOldlzrGn7P6Q3Id5d+SYNGc5AJgc4vGhjs5+g==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-slot": "1.0.2" + } + }, + "@radix-ui/react-roving-focus": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-roving-focus/-/react-roving-focus-1.0.4.tgz", + "integrity": "sha512-2mUg5Mgcu001VkGy+FfzZyzbmuUWzgWkj3rvv4yu+mLw03+mTzbxZHvfcGyFp2b8EkQeMkpRQ5FiA2Vr2O6TeQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-collection": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-controllable-state": "1.0.1" + } + }, + "@radix-ui/react-select": { + "version": "1.2.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-select/-/react-select-1.2.2.tgz", + "integrity": "sha512-zI7McXr8fNaSrUY9mZe4x/HC0jTLY9fWNhO1oLWYMQGDXuV4UCivIGTxwioSzO0ZCYX9iSLyWmAh/1TOmX3Cnw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/number": "1.0.1", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-collection": "1.0.3", + "@radix-ui/react-compose-refs": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-dismissable-layer": "1.0.4", + "@radix-ui/react-focus-guards": "1.0.1", + "@radix-ui/react-focus-scope": "1.0.3", + "@radix-ui/react-id": "1.0.1", + "@radix-ui/react-popper": "1.1.2", + "@radix-ui/react-portal": "1.0.3", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-slot": "1.0.2", + "@radix-ui/react-use-callback-ref": "1.0.1", + "@radix-ui/react-use-controllable-state": "1.0.1", + "@radix-ui/react-use-layout-effect": "1.0.1", + "@radix-ui/react-use-previous": "1.0.1", + "@radix-ui/react-visually-hidden": "1.0.3", + "aria-hidden": "^1.1.1", + "react-remove-scroll": "2.5.5" + } + }, + "@radix-ui/react-separator": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-separator/-/react-separator-1.0.3.tgz", + "integrity": "sha512-itYmTy/kokS21aiV5+Z56MZB54KrhPgn6eHDKkFeOLR34HMN2s8PaN47qZZAGnvupcjxHaFZnW4pQEh0BvvVuw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + } + }, + "@radix-ui/react-slot": { + "version": "1.0.2", + "resolved": "https://registry.npmjs.org/@radix-ui/react-slot/-/react-slot-1.0.2.tgz", + "integrity": "sha512-YeTpuq4deV+6DusvVUW4ivBgnkHwECUu0BiN43L5UCDFgdhsRUWAghhTF5MbvNTPzmiFOx90asDSUjWuCNapwg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-compose-refs": "1.0.1" + } + }, + "@radix-ui/react-toggle": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle/-/react-toggle-1.0.3.tgz", + "integrity": "sha512-Pkqg3+Bc98ftZGsl60CLANXQBBQ4W3mTFS9EJvNxKMZ7magklKV69/id1mlAlOFDDfHvlCms0fx8fA4CMKDJHg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-use-controllable-state": "1.0.1" + } + }, + "@radix-ui/react-toggle-group": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toggle-group/-/react-toggle-group-1.0.4.tgz", + "integrity": "sha512-Uaj/M/cMyiyT9Bx6fOZO0SAG4Cls0GptBWiBmBxofmDbNVnYYoyRWj/2M/6VCi/7qcXFWnHhRUfdfZFvvkuu8A==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-roving-focus": "1.0.4", + "@radix-ui/react-toggle": "1.0.3", + "@radix-ui/react-use-controllable-state": "1.0.1" + } + }, + "@radix-ui/react-toolbar": { + "version": "1.0.4", + "resolved": "https://registry.npmjs.org/@radix-ui/react-toolbar/-/react-toolbar-1.0.4.tgz", + "integrity": "sha512-tBgmM/O7a07xbaEkYJWYTXkIdU/1pW4/KZORR43toC/4XWyBCURK0ei9kMUdp+gTPPKBgYLxXmRSH1EVcIDp8Q==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/primitive": "1.0.1", + "@radix-ui/react-context": "1.0.1", + "@radix-ui/react-direction": "1.0.1", + "@radix-ui/react-primitive": "1.0.3", + "@radix-ui/react-roving-focus": "1.0.4", + "@radix-ui/react-separator": "1.0.3", + "@radix-ui/react-toggle-group": "1.0.4" + } + }, + "@radix-ui/react-use-callback-ref": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-callback-ref/-/react-use-callback-ref-1.0.1.tgz", + "integrity": "sha512-D94LjX4Sp0xJFVaoQOd3OO9k7tpBYNOXdVhkltUbGv2Qb9OXdrg/CpsjlZv7ia14Sylv398LswWBVVu5nqKzAQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-use-controllable-state": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-controllable-state/-/react-use-controllable-state-1.0.1.tgz", + "integrity": "sha512-Svl5GY5FQeN758fWKrjM6Qb7asvXeiZltlT4U2gVfl8Gx5UAv2sMR0LWo8yhsIZh2oQ0eFdZ59aoOOMV7b47VA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" + } + }, + "@radix-ui/react-use-escape-keydown": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-escape-keydown/-/react-use-escape-keydown-1.0.3.tgz", + "integrity": "sha512-vyL82j40hcFicA+M4Ex7hVkB9vHgSse1ZWomAqV2Je3RleKGO5iM8KMOEtfoSB0PnIelMd2lATjTGMYqN5ylTg==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-callback-ref": "1.0.1" + } + }, + "@radix-ui/react-use-layout-effect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-layout-effect/-/react-use-layout-effect-1.0.1.tgz", + "integrity": "sha512-v/5RegiJWYdoCvMnITBkNNx6bCj20fiaJnWtRkU18yITptraXjffz5Qbn05uOiQnOvi+dbkznkoaMltz1GnszQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-use-previous": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-previous/-/react-use-previous-1.0.1.tgz", + "integrity": "sha512-cV5La9DPwiQ7S0gf/0qiD6YgNqM5Fk97Kdrlc5yBcrF3jyEZQwm7vYFqMo4IfeHgJXsRaMvLABFtd0OVEmZhDw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, + "@radix-ui/react-use-rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-rect/-/react-use-rect-1.0.1.tgz", + "integrity": "sha512-Cq5DLuSiuYVKNU8orzJMbl15TXilTnJKUCltMVQg53BQOF1/C5toAaGrowkgksdBQ9H+SRL23g0HDmg9tvmxXw==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/rect": "1.0.1" + } + }, + "@radix-ui/react-use-size": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/react-use-size/-/react-use-size-1.0.1.tgz", + "integrity": "sha512-ibay+VqrgcaI6veAojjofPATwledXiSmX+C0KrBk/xgpX9rBzPV3OsfwlhQdUOFbh+LKQorLYT+xTXW9V8yd0g==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-use-layout-effect": "1.0.1" + } + }, + "@radix-ui/react-visually-hidden": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/@radix-ui/react-visually-hidden/-/react-visually-hidden-1.0.3.tgz", + "integrity": "sha512-D4w41yN5YRKtu464TLnByKzMDG/JlMPHtfZgQAu9v6mNakUqGUI9vUrfQKz8NK41VMm/xbZbh76NUTVtIYqOMA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10", + "@radix-ui/react-primitive": "1.0.3" + } + }, + "@radix-ui/rect": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/@radix-ui/rect/-/rect-1.0.1.tgz", + "integrity": "sha512-fyrgCaedtvMg9NK3en0pnOYJdtfwxUcNolezkNPUsoX57X8oQk+NkqcvzHXD2uKNij6GXmWU9NDru2IWjrO4BQ==", + "dev": true, + "requires": { + "@babel/runtime": "^7.13.10" + } + }, "@sinclair/typebox": { - "version": "0.25.24", - "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.25.24.tgz", - "integrity": "sha512-XJfwUVUKDHF5ugKwIcxEgc9k8b7HbznCp6eUfWgu710hMPNIO4aw4/zB5RogDQz8nd6gyCDpU9O/m6qYEWY6yQ==", + "version": "0.27.8", + "resolved": "https://registry.npmjs.org/@sinclair/typebox/-/typebox-0.27.8.tgz", + "integrity": "sha512-+Fj43pSMwJs4KRrH/938Uf+uAELIgVBmQzg/q1YG10djyfA3TnrU8N8XzqCh/okZdszqBQTZf96idMfE5lnwTA==", "dev": true }, "@sindresorhus/is": { @@ -38238,84 +38802,19 @@ } }, "@storybook/addon-actions": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.9.tgz", - "integrity": "sha512-xEO/Ekj6m6p1l4CXGh75BNBD/sqF7TqnUA/f2T3UCtLf9xVMoGEczxNi28iZq2RHoIAaV2aKArqjM+qTwoLjZw==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.6.17.tgz", + "integrity": "sha512-TBphs4v6LRfyTpFo/WINF0TkMaE3rrNog7wW5mbz6n0j8o53kDN4o9ZEcygSL5zQX43CAaghQTeDCss7ueG7ZQ==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.9", - "@storybook/components": "7.0.9", - "@storybook/core-events": "7.0.9", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.9", - "@storybook/preview-api": "7.0.9", - "@storybook/theming": "7.0.9", - "@storybook/types": "7.0.9", + "@types/uuid": "^9.0.1", "dequal": "^2.0.2", - "lodash": "^4.17.21", "polished": "^4.2.2", - "prop-types": "^15.7.2", - "react-inspector": "^6.0.0", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0", "uuid": "^9.0.0" }, "dependencies": { - "@storybook/channel-postmessage": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.9.tgz", - "integrity": "sha512-6zsUPlsD3GVhKNq4UZ5MePJPjiMcPs/K02mH5/uVTN2JSgLdWgbLhZ4VYit4HgwE+d98bd9zWbgNgSOXpTArag==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/global": "^5.0.0", - "qs": "^6.10.0", - "telejson": "^7.0.3" - } - }, - "@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", - "dev": true - }, - "@storybook/preview-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.9.tgz", - "integrity": "sha512-cLyhq2nk0eiMOUwIIKhgDgZoS1ecRGojl92hR0agZDzNJrb1lvXK6uIkJh/Anl2Jbir28lAjQGU54voPODwTUA==", - "dev": true, - "requires": { - "@storybook/channel-postmessage": "7.0.9", - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", - "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.9", - "@types/qs": "^6.9.5", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "qs": "^6.10.0", - "synchronous-promise": "^2.0.15", - "ts-dedent": "^2.0.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.9", - "@types/babel__core": "^7.0.0", - "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" - } - }, "uuid": { "version": "9.0.0", "resolved": "https://registry.npmjs.org/uuid/-/uuid-9.0.0.tgz", @@ -38325,1182 +38824,300 @@ } }, "@storybook/addon-backgrounds": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.0.0-beta.45.tgz", - "integrity": "sha512-X7AHUgAwRRa2eehc7RuIk2MjBnY/OpYIdywrh93ZGoQmEjY2OpFjxJ2Onf+Wb0MMMMXkUYUJqauoIjAxfMcURw==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-backgrounds/-/addon-backgrounds-7.6.17.tgz", + "integrity": "sha512-7dize7x8+37PH77kmt69b0xSaeDqOcZ4fpzW6+hk53hIaCVU26eGs4+j+743Xva31eOgZWNLupUhOpUDc6SqZw==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", "memoizerific": "^1.11.3", "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } } }, "@storybook/addon-controls": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.0.0-beta.45.tgz", - "integrity": "sha512-bRwUBN96nVgp15NFObs+cgnUzsVV6WTJfY4dF+G+FWKm9g79qrZFqfgBPdSu8lKiew9Ctv93zxRzFAzFOaSDMg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-controls/-/addon-controls-7.6.17.tgz", + "integrity": "sha512-zR0aLaUF7FtV/nMRyfniFbCls/e0DAAoXACuOAUAwNAv0lbIS8AyZZiHSmKucCvziUQ6WceeCC7+du3C+9y0rQ==", "dev": true, "requires": { - "@storybook/blocks": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/blocks": "7.6.17", "lodash": "^4.17.21", "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } } }, "@storybook/addon-docs": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.0.0-beta.45.tgz", - "integrity": "sha512-fUlsTEkiAOQWXTtUxDVLFOp80t8f0M3y8dJLrSf35/Y5YAHjolTLL+l6f4AJrr4PlrgVWJPhayW7OZgaR0g5Tg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-docs/-/addon-docs-7.6.17.tgz", + "integrity": "sha512-FKa4Mdy7nhgvEVZJHpMkHriDzpVHbohn87zv9NCL+Ctjs1iAmzGwxEm0culszyDS1HN2ToVoY0h8CSi2RSSZqA==", "dev": true, "requires": { - "@babel/core": "^7.20.2", - "@babel/plugin-transform-react-jsx": "^7.19.0", "@jest/transform": "^29.3.1", "@mdx-js/react": "^2.1.5", - "@storybook/blocks": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/csf-plugin": "7.0.0-beta.45", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/mdx2-csf": "next", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/postinstall": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "fs-extra": "^11.1.0", - "remark-external-links": "^8.0.0", - "remark-slug": "^6.0.0", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@jest/transform": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/transform/-/transform-29.5.0.tgz", - "integrity": "sha512-8vbeZWqLJOvHaDfeMuoHITGKSz5qWc9u04lnWrQE3VyuSw604PzQM824ZeX9XSjUCeDiE3GuxZe5UKa8J61NQw==", - "dev": true, - "requires": { - "@babel/core": "^7.11.6", - "@jest/types": "^29.5.0", - "@jridgewell/trace-mapping": "^0.3.15", - "babel-plugin-istanbul": "^6.1.1", - "chalk": "^4.0.0", - "convert-source-map": "^2.0.0", - "fast-json-stable-stringify": "^2.1.0", - "graceful-fs": "^4.2.9", - "jest-haste-map": "^29.5.0", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "micromatch": "^4.0.4", - "pirates": "^4.0.4", - "slash": "^3.0.0", - "write-file-atomic": "^4.0.2" - } - }, - "@jest/types": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-29.5.0.tgz", - "integrity": "sha512-qbu7kN6czmVRc3xWFQcAN03RAUamgppVUdXrvl1Wr3jlNF93o9mJbGcDWrwGB6ht44u7efB1qCFgVQmca24Uog==", - "dev": true, - "requires": { - "@jest/schemas": "^29.4.3", - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^17.0.8", - "chalk": "^4.0.0" - } - }, - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - }, - "@types/yargs": { - "version": "17.0.24", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.24.tgz", - "integrity": "sha512-6i0aC7jV6QzQB8ne1joVZ0eSFIstHsCrobmOtghM11yGlH0j43FKL2UhWdELkyps0zuf7qVTUVCCR+tgSlyLLw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "convert-source-map": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/convert-source-map/-/convert-source-map-2.0.0.tgz", - "integrity": "sha512-Kvp459HrV2FEJ1CAsi1Ku+MY3kasH19TFykTz2xWmMeq6bk2NU3XXvfJ+Q61m0xktWwt+1HSYf3JZsTms3aRJg==", - "dev": true - }, - "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "jest-haste-map": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.5.0.tgz", - "integrity": "sha512-IspOPnnBro8YfVYSw6yDRKh/TiCdRngjxeacCps1cQ9cgVN6+10JUcuJ1EabrgYLOATsIAigxA0rLR9x/YlrSA==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/graceful-fs": "^4.1.3", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^29.4.3", - "jest-util": "^29.5.0", - "jest-worker": "^29.5.0", - "micromatch": "^4.0.4", - "walker": "^1.0.8" - } - }, - "jest-regex-util": { - "version": "29.4.3", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.4.3.tgz", - "integrity": "sha512-O4FglZaMmWXbGHSQInfXewIsd1LMn9p3ZXB/6r4FOkyhX2/iP/soMG98jGvk/A3HAN78+5VWcBGO0BJAPRh4kg==", - "dev": true - }, - "jest-util": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.5.0.tgz", - "integrity": "sha512-RYMgG/MTadOr5t8KdhejfvUU82MxsCu5MF6KuDUHl+NuwzUt+Sm6jJWxTJVrDR1j5M/gJVCPKQEpWXY+yIQ6lQ==", - "dev": true, - "requires": { - "@jest/types": "^29.5.0", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "jest-worker": { - "version": "29.5.0", - "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.5.0.tgz", - "integrity": "sha512-NcrQnevGoSp4b5kg+akIpthoAFHxPBcb5P6mYPY0fUNT+sSvmtu6jlkEle3anczUKIKEbMxFimk9oTP/tpIPgA==", - "dev": true, - "requires": { - "@types/node": "*", - "jest-util": "^29.5.0", - "merge-stream": "^2.0.0", - "supports-color": "^8.0.0" - }, - "dependencies": { - "supports-color": { - "version": "8.1.1", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", - "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "write-file-atomic": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/write-file-atomic/-/write-file-atomic-4.0.2.tgz", - "integrity": "sha512-7KxauUdBmSdWnmpaGFg+ppNjKF8uNLry8LyzjauQDOVONfFLNKrKvQOxZ/VuTIcS/gge/YNahf5RIIQWTSarlg==", - "dev": true, - "requires": { - "imurmurhash": "^0.1.4", - "signal-exit": "^3.0.7" - } - } - } - }, - "@storybook/addon-essentials": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.0.0-beta.45.tgz", - "integrity": "sha512-ZKckeBsbdgGkeZen2FCQU8bji3XReA8YxFuknpt7GWEQ6Le3uHQ30VbSPEfdjF0p2plcTjtH3VLtkfuxxAVn5Q==", - "dev": true, - "requires": { - "@storybook/addon-actions": "7.0.0-beta.45", - "@storybook/addon-backgrounds": "7.0.0-beta.45", - "@storybook/addon-controls": "7.0.0-beta.45", - "@storybook/addon-docs": "7.0.0-beta.45", - "@storybook/addon-highlight": "7.0.0-beta.45", - "@storybook/addon-measure": "7.0.0-beta.45", - "@storybook/addon-outline": "7.0.0-beta.45", - "@storybook/addon-toolbars": "7.0.0-beta.45", - "@storybook/addon-viewport": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@storybook/addon-actions": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-actions/-/addon-actions-7.0.0-beta.45.tgz", - "integrity": "sha512-08XKNWhhjuBbM3NFkxwhAbMkePNgSzQU58dK4i4JL7jvzY6ubED6LYpMD7xBjhzkFQuWmra8sWHEfL2/3O/CdA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "polished": "^4.2.2", - "prop-types": "^15.7.2", - "react-inspector": "^6.0.0", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0", - "uuid-browser": "^3.1.0" - } - }, - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } - } - }, - "@storybook/addon-highlight": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.0.0-beta.45.tgz", - "integrity": "sha512-h1ctbEKrOoXBRv35qm6RZODUT39tdt/zwazqeF+T3fi3/hKdBxNjj/IcIXf32vNZhL2UlAgYdbT5qPOrZaRF7g==", - "dev": true, - "requires": { - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.45" - }, - "dependencies": { - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - } - } - }, - "@storybook/addon-interactions": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.0.0-beta.45.tgz", - "integrity": "sha512-4MvZjaV14CRVzfqDBA0ec2Ku57IJXlBpJTxp71hXQJbYCKYo7pATD8yXrovPxibKOdiA/TdJ4SG9sCyjeNAbTg==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/instrumenter": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "jest-mock": "^27.0.6", - "polished": "^4.2.2", - "ts-dedent": "^2.2.0" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } - } - }, - "@storybook/addon-links": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.0.0-beta.45.tgz", - "integrity": "sha512-mfyugfvUvZe+h3mUioiAB1WJg2AwsLqpjpTLalI9s+3T8xaY8bwpox+e27VrEiA4nMLr6ht7AADPyPd9UTyaGg==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/router": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "prop-types": "^15.7.2", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } - } - }, - "@storybook/addon-measure": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.0.0-beta.45.tgz", - "integrity": "sha512-bzUmtgM6IKn4z/NhfGT7H2ATsK6xArhA+oJCXzm+iwjqCWUvqwzMX8G1bVZ0x72BCV1q5GwoKl1c+rmCcbQ6vw==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } - } - }, - "@storybook/addon-outline": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.0.0-beta.45.tgz", - "integrity": "sha512-MQGcHcrD/AwYFg67G6EPTlY6dlDltoKKmOAmFVf/WGXnTGcFtEJ9fk3/bCbCfePtnRX5r05nhoye1V/f9tpazA==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "ts-dedent": "^2.0.0" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } - } - }, - "@storybook/addon-toolbars": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.0.0-beta.45.tgz", - "integrity": "sha512-CQAm505NZgkwZeA5YqzBhiHbW4jLe+nrD7eRE5LbO4S82DyyBD1pAYoYFz7u+DdlamXyWuqq7JDubaD8Onrm6A==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", - "dev": true, - "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" - } - } - } - }, - "@storybook/addon-viewport": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.0.0-beta.45.tgz", - "integrity": "sha512-cL/90Xk+FF0+Vje9SK8BhOntdlahTHsZULqGs30b6VgYRMiH1VDghA2kcGJKxTiwIdKlogZ/usKoFUxmD8VECQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", + "@storybook/blocks": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/components": "7.6.17", + "@storybook/csf-plugin": "7.6.17", + "@storybook/csf-tools": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "prop-types": "^15.7.2" + "@storybook/mdx2-csf": "^1.0.0", + "@storybook/node-logger": "7.6.17", + "@storybook/postinstall": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/react-dom-shim": "7.6.17", + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", + "fs-extra": "^11.1.0", + "remark-external-links": "^8.0.0", + "remark-slug": "^6.0.0", + "ts-dedent": "^2.0.0" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/global": "^5.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" } }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" } }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "fs-extra": { + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "graceful-fs": "^4.2.0", + "jsonfile": "^6.0.1", + "universalify": "^2.0.0" } } } }, - "@storybook/addons": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/addons/-/addons-7.0.0-beta.45.tgz", - "integrity": "sha512-AzFLgG1+MsbiyrAh6SDr1lZJtXBMhxdpYDBJN5yRr1xzt+xqp77dPLW5opaNK5G+4R4+fW0jP+qjG07qR+vJaw==", - "dev": true, - "requires": { - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45" + "@storybook/addon-essentials": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-essentials/-/addon-essentials-7.6.17.tgz", + "integrity": "sha512-qlSpamxuYfT2taF953nC9QijGF2pSbg1ewMNpdwLTj16PTZvR/d8NCDMTJujI1bDwM2m18u8Yc43ibh5LEmxCw==", + "dev": true, + "requires": { + "@storybook/addon-actions": "7.6.17", + "@storybook/addon-backgrounds": "7.6.17", + "@storybook/addon-controls": "7.6.17", + "@storybook/addon-docs": "7.6.17", + "@storybook/addon-highlight": "7.6.17", + "@storybook/addon-measure": "7.6.17", + "@storybook/addon-outline": "7.6.17", + "@storybook/addon-toolbars": "7.6.17", + "@storybook/addon-viewport": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/manager-api": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/preview-api": "7.6.17", + "ts-dedent": "^2.0.0" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/global": "^5.0.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" } }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" } } } }, - "@storybook/api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/api/-/api-7.0.0-beta.45.tgz", - "integrity": "sha512-VDOGSKCu1/7Iql64I8T4LFY824im8i2Dyf88BRG7X6CPraLqExgDIT1ZwsGTgmhfGPqQgwCFKYEeUNIfFSWsPg==", + "@storybook/addon-highlight": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-highlight/-/addon-highlight-7.6.17.tgz", + "integrity": "sha512-R1yBPUUqGn+60aJakn8q+5Zt34E/gU3n3VmgPdryP0LJUdZ5q1/RZShoVDV+yYQ40htMH6oaCv3OyyPzFAGJ6A==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/manager-api": "7.0.0-beta.45" + "@storybook/global": "^5.0.0" + } + }, + "@storybook/addon-interactions": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-interactions/-/addon-interactions-7.6.17.tgz", + "integrity": "sha512-6zlX+RDQ1PlA6fp7C+hun8t7h2RXfCGs5dGrhEenp2lqnR/rYuUJRC0tmKpkZBb8kZVcbSChzkB/JYkBjBCzpQ==", + "dev": true, + "requires": { + "@storybook/global": "^5.0.0", + "@storybook/types": "7.6.17", + "jest-mock": "^27.0.6", + "polished": "^4.2.2", + "ts-dedent": "^2.2.0" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "dequal": "^2.0.2", - "lodash": "^4.17.21", - "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" } } } }, + "@storybook/addon-links": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-links/-/addon-links-7.6.17.tgz", + "integrity": "sha512-iFUwKObRn0EKI0zMETsil2p9a/81rCuSMEWECsi+khkCAs1FUnD2cT6Ag5ydcNcBXsdtdfDJdtXQrkw+TSoStQ==", + "dev": true, + "requires": { + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "ts-dedent": "^2.0.0" + } + }, + "@storybook/addon-measure": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-measure/-/addon-measure-7.6.17.tgz", + "integrity": "sha512-O5vnHZNkduvZ95jf1UssbOl6ivIxzl5tv+4EpScPYId7w700bxWsJH+QX7ip6KlrCf2o3iUhmPe8bm05ghG2KA==", + "dev": true, + "requires": { + "@storybook/global": "^5.0.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/addon-outline": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-outline/-/addon-outline-7.6.17.tgz", + "integrity": "sha512-9o9JXDsYjNaDgz/cY5+jv694+aik/1aiRGGvsCv68e1p/ob0glkGKav4lnJe2VJqD+gCmaARoD8GOJlhoQl8JQ==", + "dev": true, + "requires": { + "@storybook/global": "^5.0.0", + "ts-dedent": "^2.0.0" + } + }, + "@storybook/addon-toolbars": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-toolbars/-/addon-toolbars-7.6.17.tgz", + "integrity": "sha512-UMrchbUHiyWrh6WuGnpy34Jqzkx/63B+MSgb3CW7YsQaXz64kE0Rol0TNSznnB+mYXplcqH+ndI4r4kFsmgwDg==", + "dev": true + }, + "@storybook/addon-viewport": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/addon-viewport/-/addon-viewport-7.6.17.tgz", + "integrity": "sha512-sA0QCcf4QAMixWvn8uvRYPfkKCSl6JajJaAspoPqXSxHEpK7uwOlpg3kqFU5XJJPXD0X957M+ONgNvBzYqSpEw==", + "dev": true, + "requires": { + "memoizerific": "^1.11.3" + } + }, "@storybook/blocks": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.0.0-beta.45.tgz", - "integrity": "sha512-xCFnoPhFZfkTC4kKZNyWHB89TBYX5J4OcpOWf4ehm0c524L8xXOy+sKveoBzs2LdjvMYEr4hmLrhEEv6dedumw==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/blocks/-/blocks-7.6.17.tgz", + "integrity": "sha512-PsNVoe0bX1mMn4Kk3nbKZ0ItDZZ0YJnYAFJ6toAbsyBAbgzg1sce88sQinzvbn58/RT9MPKeWMPB45ZS7ggiNg==", "dev": true, "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/docs-tools": "7.0.0-beta.45", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/components": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/docs-tools": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/manager-api": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", "@types/lodash": "^4.14.167", "color-convert": "^2.0.1", "dequal": "^2.0.2", @@ -39509,148 +39126,120 @@ "memoizerific": "^1.11.3", "polished": "^4.2.2", "react-colorful": "^5.1.2", + "telejson": "^7.2.0", + "tocbot": "^4.20.1", "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" } }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" } } } }, "@storybook/builder-manager": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.0.0-beta.45.tgz", - "integrity": "sha512-etNprDOuRbZbIbMhxNWxLR7WBHS5f/GgOcSr4j4p23UQTIL/2s5gXyI9Y94cEV0Wkw7UjG290HWIuD2RlTBz8w==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/builder-manager/-/builder-manager-7.6.17.tgz", + "integrity": "sha512-Sj8hcDYiPCCMfeLzus37czl0zdrAxAz4IyYam2jBjVymrIrcDAFyL1OCZvnq33ft179QYQWhUs9qwzVmlR/ZWg==", "dev": true, "requires": { "@fal-works/esbuild-plugin-global-externals": "^2.1.2", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/manager": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", + "@storybook/core-common": "7.6.17", + "@storybook/manager": "7.6.17", + "@storybook/node-logger": "7.6.17", "@types/ejs": "^3.1.1", "@types/find-cache-dir": "^3.2.1", "@yarnpkg/esbuild-plugin-pnp": "^3.0.0-rc.10", "browser-assert": "^1.2.1", "ejs": "^3.1.8", - "esbuild": "^0.16.4", + "esbuild": "^0.18.0", "esbuild-plugin-alias": "^0.2.1", "express": "^4.17.3", "find-cache-dir": "^3.0.0", "fs-extra": "^11.1.0", "process": "^0.11.10", - "slash": "^3.0.0", "util": "^0.12.4" }, "dependencies": { "esbuild": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", - "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.16.17", - "@esbuild/android-arm64": "0.16.17", - "@esbuild/android-x64": "0.16.17", - "@esbuild/darwin-arm64": "0.16.17", - "@esbuild/darwin-x64": "0.16.17", - "@esbuild/freebsd-arm64": "0.16.17", - "@esbuild/freebsd-x64": "0.16.17", - "@esbuild/linux-arm": "0.16.17", - "@esbuild/linux-arm64": "0.16.17", - "@esbuild/linux-ia32": "0.16.17", - "@esbuild/linux-loong64": "0.16.17", - "@esbuild/linux-mips64el": "0.16.17", - "@esbuild/linux-ppc64": "0.16.17", - "@esbuild/linux-riscv64": "0.16.17", - "@esbuild/linux-s390x": "0.16.17", - "@esbuild/linux-x64": "0.16.17", - "@esbuild/netbsd-x64": "0.16.17", - "@esbuild/openbsd-x64": "0.16.17", - "@esbuild/sunos-x64": "0.16.17", - "@esbuild/win32-arm64": "0.16.17", - "@esbuild/win32-ia32": "0.16.17", - "@esbuild/win32-x64": "0.16.17" - } - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" } }, "fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -39661,128 +39250,107 @@ } }, "@storybook/builder-webpack5": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.0.0-beta.45.tgz", - "integrity": "sha512-TeFkBolegUrqNQsxFURGyOa5GUryrkpQWND3NHdBmr3a0HO79dnjauSYdj511Vz5I3/5ced7vUtb1L/GI/KfMw==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@storybook/addons": "7.0.0-beta.45", - "@storybook/api": "7.0.0-beta.45", - "@storybook/channel-postmessage": "7.0.0-beta.45", - "@storybook/channel-websocket": "7.0.0-beta.45", - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-api": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/components": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/core-webpack": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/manager-api": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/router": "7.0.0-beta.45", - "@storybook/store": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@types/node": "^16.0.0", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/builder-webpack5/-/builder-webpack5-7.6.17.tgz", + "integrity": "sha512-GMaBd8/RzivuAmWrYSt9Rga3j8WLcu5LCMYiPVs+XKXsKAC8lTkV0WRWh8Nk6wTmfzsRQ2acwFjSG5oE4ClZKA==", + "dev": true, + "requires": { + "@babel/core": "^7.23.2", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/core-webpack": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/preview": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@swc/core": "^1.3.82", + "@types/node": "^18.0.0", "@types/semver": "^7.3.4", "babel-loader": "^9.0.0", - "babel-plugin-named-exports-order": "^0.0.2", "browser-assert": "^1.2.1", "case-sensitive-paths-webpack-plugin": "^2.4.0", + "cjs-module-lexer": "^1.2.3", + "constants-browserify": "^1.0.0", "css-loader": "^6.7.1", + "es-module-lexer": "^1.4.1", "express": "^4.17.3", - "fork-ts-checker-webpack-plugin": "^7.2.8", + "fork-ts-checker-webpack-plugin": "^8.0.0", "fs-extra": "^11.1.0", "html-webpack-plugin": "^5.5.0", + "magic-string": "^0.30.5", "path-browserify": "^1.0.1", "process": "^0.11.10", "semver": "^7.3.7", - "slash": "^3.0.0", "style-loader": "^3.3.1", + "swc-loader": "^0.2.3", "terser-webpack-plugin": "^5.3.1", "ts-dedent": "^2.0.0", + "url": "^0.11.0", "util": "^0.12.4", "util-deprecate": "^1.0.2", "webpack": "5", - "webpack-dev-middleware": "^5.3.1", + "webpack-dev-middleware": "^6.1.1", "webpack-hot-middleware": "^2.25.1", - "webpack-virtual-modules": "^0.4.3" + "webpack-virtual-modules": "^0.5.0" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/components": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.0-beta.45.tgz", - "integrity": "sha512-+7opTaYdl3hkkYZ+mcicFLo7PI2Abs5gvYSSxjGhBWL4cb8H385Fj6R1mNcDKGqSyppxsfaJ4dI8MBjL/8PRmQ==", + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "memoizerific": "^1.11.3", - "use-resize-observer": "^9.1.0", - "util-deprecate": "^1.0.2" + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true - }, - "@storybook/manager-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.0-beta.45.tgz", - "integrity": "sha512-hG5mcD+a+8/q6VZ5HX5rZjhHO1hwBVv5L8V7Jlu1YbfmeUo+kM9Sb763bpKxo2OwUC0iwaYglHDUL0urFgknUg==", + "@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.0-beta.45", - "@storybook/theming": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "semver": "^7.3.7", - "store2": "^2.14.2", - "telejson": "^7.0.3", - "ts-dedent": "^2.0.0" + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" } }, - "@storybook/theming": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.0-beta.45.tgz", - "integrity": "sha512-jMtXy5jhU/dy02vzXbyJ1jbqdTzleydXQ+/rtzWuaMr4k/Sv+XzvPqOIkGoSAxdOuuxns95mZWIIq/s8JeZukg==", + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "memoizerific": "^1.11.3" + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" } }, "@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } }, "ansi-styles": { "version": "4.3.0", @@ -39794,13 +39362,83 @@ } }, "babel-loader": { - "version": "9.1.2", - "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.2.tgz", - "integrity": "sha512-mN14niXW43tddohGl8HPu5yfQq70iUThvFL/4QzESA7GcZoC0eVOhvWdQ8+3UlSjaDE9MVtsW9mxDY07W7VpVA==", + "version": "9.1.3", + "resolved": "https://registry.npmjs.org/babel-loader/-/babel-loader-9.1.3.tgz", + "integrity": "sha512-xG3ST4DglodGf8qSwv0MdeWLhrDsw/32QMdTO5T1ZIp9gQur0HkCyFs7Awskr10JKXFXwpAhiCuYX5oGXnRGbw==", "dev": true, "requires": { - "find-cache-dir": "^3.3.2", + "find-cache-dir": "^4.0.0", "schema-utils": "^4.0.0" + }, + "dependencies": { + "find-cache-dir": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-4.0.0.tgz", + "integrity": "sha512-9ZonPT4ZAK4a+1pUPVPZJapbi7O5qbbJPdYw/NOQWZZbVLdDTYM3A4R9z/DpAM08IDaFGsvPgiGZ82WEwUDWjg==", + "dev": true, + "requires": { + "common-path-prefix": "^3.0.0", + "pkg-dir": "^7.0.0" + } + }, + "find-up": { + "version": "6.3.0", + "resolved": "https://registry.npmjs.org/find-up/-/find-up-6.3.0.tgz", + "integrity": "sha512-v2ZsoEuVHYy8ZIlYqwPe/39Cy+cFDzp4dXPaxNvkEuouymu+2Jbz0PxpKarJHYJTmv2HWT3O382qY8l4jMWthw==", + "dev": true, + "requires": { + "locate-path": "^7.1.0", + "path-exists": "^5.0.0" + } + }, + "locate-path": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-7.2.0.tgz", + "integrity": "sha512-gvVijfZvn7R+2qyPX8mAuKcFGDf6Nc61GdvGafQsHL0sBIxfKzA+usWn4GFC/bk+QdwPUD4kWFJLhElipq+0VA==", + "dev": true, + "requires": { + "p-locate": "^6.0.0" + } + }, + "p-limit": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-4.0.0.tgz", + "integrity": "sha512-5b0R4txpzjPWVw/cXXUResoD4hb6U/x9BH08L7nw+GN1sezDzPdxeRvpc9c433fZhBan/wusjbCsqwqm4EIBIQ==", + "dev": true, + "requires": { + "yocto-queue": "^1.0.0" + } + }, + "p-locate": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-6.0.0.tgz", + "integrity": "sha512-wPrq66Llhl7/4AGC6I+cqxT07LhXvWL08LNXz1fENOw0Ap4sRZZ/gZpTTJ5jpurzzzfS2W/Ge9BY3LgLjCShcw==", + "dev": true, + "requires": { + "p-limit": "^4.0.0" + } + }, + "path-exists": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-5.0.0.tgz", + "integrity": "sha512-RjhtfwJOxzcFmNOi6ltcbcu4Iu+FL3zEj83dk4kAS+fVpTxXLO1b38RvJgT/0QwvV/L3aY9TAnyv0EOqW4GoMQ==", + "dev": true + }, + "pkg-dir": { + "version": "7.0.0", + "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-7.0.0.tgz", + "integrity": "sha512-Ie9z/WINcxxLp27BKOCHGde4ITq9UklYKDzVo1nhk5sqGEXU3FpkwP5GM2voTGJkGd9B3Otl+Q4uwSOeSUtOBA==", + "dev": true, + "requires": { + "find-up": "^6.3.0" + } + }, + "yocto-queue": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/yocto-queue/-/yocto-queue-1.0.0.tgz", + "integrity": "sha512-9bnSc/HEW2uRy67wc+T8UwauLuPJVn28jb+GtJY16iiKWyvmYJRXVT4UamsAEGQfPohgr2q4Tq0sQbQlxTfi1g==", + "dev": true + } } }, "chalk": { @@ -39826,21 +39464,16 @@ "yaml": "^1.10.0" } }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } + "es-module-lexer": { + "version": "1.5.0", + "resolved": "https://registry.npmjs.org/es-module-lexer/-/es-module-lexer-1.5.0.tgz", + "integrity": "sha512-pqrTKmwEIgafsYZAGw9kszYzmagcE/n4dbgwGWLEXg7J4QFJVQRBld8j3Q3GNez79jzxZshq0bcT962QHOghjw==", + "dev": true }, "fork-ts-checker-webpack-plugin": { - "version": "7.3.0", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-7.3.0.tgz", - "integrity": "sha512-IN+XTzusCjR5VgntYFgxbxVx3WraPRnKehBFrf00cMSrtUuW9MsG9dhL6MWpY6MkjC3wVwoujfCDgZZCQwbswA==", + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-8.0.0.tgz", + "integrity": "sha512-mX3qW3idpueT2klaQXBzrIM/pHw+T0B/V9KHEvNrqijTq9NFnMZU6oreVxDYcf33P8a5cW+67PjodNHthGnNVg==", "dev": true, "requires": { "@babel/code-frame": "^7.16.7", @@ -39857,6 +39490,25 @@ "tapable": "^2.2.1" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, "fs-extra": { "version": "10.1.0", "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-10.1.0.tgz", @@ -39869,9 +39521,9 @@ } }, "schema-utils": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.2.tgz", - "integrity": "sha512-pvjEHOgWc9OWA/f/DE3ohBWTD6EleVLf7iFUkoSwAxttdBhB9QUebQgxER2kWueOvRJXPHNnyrvvh9eZINB8Eg==", + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", + "integrity": "sha512-pN/yOAvcC+5rQ5nERGuwrjLlYvLTbCibnZ1I7B1LaiAz9BRBlE9GMgE/eqV30P7aJQUf7Ddimy/RsbYO/GrVGg==", "dev": true, "requires": { "@types/json-schema": "^7.0.8", @@ -39882,9 +39534,9 @@ } }, "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -39899,44 +39551,21 @@ "dev": true }, "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", "dev": true }, "schema-utils": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.1.tgz", - "integrity": "sha512-lELhBAAly9NowEsX0yZBlw9ahZG+sK/1RJ21EpzdYHKEs13Vku3LJ+MIPhh4sMs0oCCeufZQEQbMekiA4vuVIQ==", + "version": "4.2.0", + "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.2.0.tgz", + "integrity": "sha512-L0jRsrPpjdckP3oPug3/VxNKt2trR8TcabrM6FOAAlvC/9Phcmm+cuAgTlxBqdBR1WJx7Naj9WHw+aOmheSVbw==", "dev": true, "requires": { "@types/json-schema": "^7.0.9", "ajv": "^8.9.0", "ajv-formats": "^2.1.1", "ajv-keywords": "^5.1.0" - }, - "dependencies": { - "ajv": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", - "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - } } }, "supports-color": { @@ -39947,6 +39576,19 @@ "requires": { "has-flag": "^4.0.0" } + }, + "webpack-dev-middleware": { + "version": "6.1.3", + "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-6.1.3.tgz", + "integrity": "sha512-A4ChP0Qj8oGociTs6UdlRUGANIGrCDL3y+pmQMc+dSsraXHCatFpmMey4mYELA+juqwUqwQsUgJJISXl1KWmiw==", + "dev": true, + "requires": { + "colorette": "^2.0.10", + "memfs": "^3.4.12", + "mime-types": "^2.1.31", + "range-parser": "^1.2.1", + "schema-utils": "^4.0.0" + } } } }, @@ -39981,29 +39623,6 @@ } } }, - "@storybook/channel-websocket": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/channel-websocket/-/channel-websocket-7.0.0-beta.45.tgz", - "integrity": "sha512-+jXf16R35KzA+0M4tJ5qxJTbfWCd2D2KMil6xr83NNS+MvkvU5if+vBWgzkhkrUTxoIDfbX/qBxUL0pgFScm6g==", - "dev": true, - "requires": { - "@storybook/channels": "7.0.0-beta.45", - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "telejson": "^7.0.3" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - } - } - }, "@storybook/channels": { "version": "7.0.0-beta.45", "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.0-beta.45.tgz", @@ -40011,22 +39630,26 @@ "dev": true }, "@storybook/cli": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.0.0-beta.45.tgz", - "integrity": "sha512-dfcfar7Fi41EgsupTYimA/dZsTSHlT3c5m5bLM/uiPcRtPCTSjp/S3c5ePPFV8NuxtRn+vp6MD1izZfd7cNIUw==", - "dev": true, - "requires": { - "@babel/core": "^7.20.2", - "@babel/preset-env": "^7.20.2", - "@storybook/codemod": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-server": "7.0.0-beta.45", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/telemetry": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/cli/-/cli-7.6.17.tgz", + "integrity": "sha512-1sCo+nCqyR+nKfTcEidVu8XzNoECC7Y1l+uW38/r7s2f/TdDorXaIGAVrpjbSaXSoQpx5DxYJVaKCcQuOgqwcA==", + "dev": true, + "requires": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/types": "^7.23.0", + "@ndelangen/get-tarball": "^3.0.7", + "@storybook/codemod": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/core-server": "7.6.17", + "@storybook/csf-tools": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/telemetry": "7.6.17", + "@storybook/types": "7.6.17", "@types/semver": "^7.3.4", - "boxen": "^5.1.2", + "@yarnpkg/fslib": "2.10.3", + "@yarnpkg/libzip": "2.3.0", "chalk": "^4.1.0", "commander": "^6.2.1", "cross-spawn": "^7.0.3", @@ -40036,23 +39659,50 @@ "express": "^4.17.3", "find-up": "^5.0.0", "fs-extra": "^11.1.0", + "get-npm-tarball-url": "^2.0.3", "get-port": "^5.1.1", "giget": "^1.0.0", "globby": "^11.0.2", - "jscodeshift": "^0.14.0", + "jscodeshift": "^0.15.1", "leven": "^3.1.0", + "ora": "^5.4.1", + "prettier": "^2.8.0", "prompts": "^2.4.0", "puppeteer-core": "^2.1.1", "read-pkg-up": "^7.0.1", "semver": "^7.3.7", - "shelljs": "^0.8.5", - "simple-update-notifier": "^1.0.0", "strip-json-comments": "^3.0.1", "tempy": "^1.0.1", "ts-dedent": "^2.0.0", "util-deprecate": "^1.0.2" }, "dependencies": { + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + } + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -40089,9 +39739,9 @@ } }, "fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -40143,137 +39793,147 @@ } } }, - "@storybook/client-api": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-api/-/client-api-7.0.0-beta.45.tgz", - "integrity": "sha512-caRNv0Gw3MlO51vs3KAAkGtoyVSAV+4LwWbxMDHYLhO9l74PLUd6BX7WUNuIBp9+X6uyqYuZ+g+tYPjdKmauYg==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - } - } - }, "@storybook/client-logger": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.9.tgz", - "integrity": "sha512-EJnXWvpTFEj462ixZbDouTN9X/FinRgaKKN6zXdhSSZUnm5PcZBtnoX5S+982z3LiAjdNIuAdZE/4vwBIAF88A==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.6.17.tgz", + "integrity": "sha512-6WBYqixAXNAXlSaBWwgljWpAu10tPRBJrcFvx2gPUne58EeMM20Gi/iHYBz2kMCY+JLAgeIH7ZxInqwO8vDwiQ==", "dev": true, "requires": { "@storybook/global": "^5.0.0" } }, "@storybook/codemod": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.0.0-beta.45.tgz", - "integrity": "sha512-1NuQtcvJ+kMZ01XOuTczyIESFeLqBXSDF68FsJSCc1BgbvGEq9uIzbYLZAoB6oIpmjIWN1sUlT5NuEV+ofekGw==", - "dev": true, - "requires": { - "@babel/core": "^7.20.2", - "@babel/preset-env": "^7.20.2", - "@babel/types": "^7.20.7", - "@storybook/csf": "next", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/codemod/-/codemod-7.6.17.tgz", + "integrity": "sha512-JuTmf2u3C4fCnjO7o3dqRgrq3ozNYfWlrRP8xuIdvT7niMap7a396hJtSKqS10FxCgKFcMAOsRgrCalH1dWxUg==", + "dev": true, + "requires": { + "@babel/core": "^7.23.2", + "@babel/preset-env": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/cross-spawn": "^6.0.2", "cross-spawn": "^7.0.3", "globby": "^11.0.2", - "jscodeshift": "^0.14.0", + "jscodeshift": "^0.15.1", "lodash": "^4.17.21", "prettier": "^2.8.0", - "recast": "^0.23.1", - "util": "^0.12.4" + "recast": "^0.23.1" + }, + "dependencies": { + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + } + } } }, "@storybook/components": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.0.9.tgz", - "integrity": "sha512-60TcZSHYjHkJ6YyheL5SQ8zWi4zmefUKzjcRdIJwMQ57PyEK0LL7wKv63xD3ePbKHTZaQaIB3yOJSF/HQ1BHcQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/components/-/components-7.6.17.tgz", + "integrity": "sha512-lbh7GynMidA+CZcJnstVku6Nhs+YkqjYaZ+mKPugvlVhGVWv0DaaeQFVuZ8cJtUGJ/5FFU4Y+n+gylYUHkGBMA==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.9", - "@storybook/csf": "^0.1.0", + "@radix-ui/react-select": "^1.2.2", + "@radix-ui/react-toolbar": "^1.0.4", + "@storybook/client-logger": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/theming": "7.0.9", - "@storybook/types": "7.0.9", + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", "memoizerific": "^1.11.3", "use-resize-observer": "^9.1.0", "util-deprecate": "^1.0.2" }, "dependencies": { "@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", - "dev": true + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } }, "@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@storybook/channels": "7.0.9", + "@storybook/channels": "7.6.17", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "file-system-cache": "2.3.0" } } } }, "@storybook/core-client": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.9.tgz", - "integrity": "sha512-gBZnwh+YgFVBdwyYX4SKQyjVq56WyJU3l2s5on6im2SjxKLZXFfeOpl6XtAgbP2eIU8oaV9txY2hURsUJRkEoA==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.6.17.tgz", + "integrity": "sha512-LuDbADK+DPNAOOCXOlvY09hdGVueXlDetsdOJ/DgYnSa9QSWv9Uv+F8QcEgR3QckZJbPlztKJIVLgP2n/Xkijw==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.9", - "@storybook/preview-api": "7.0.9" + "@storybook/client-logger": "7.6.17", + "@storybook/preview-api": "7.6.17" }, "dependencies": { - "@storybook/channel-postmessage": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.9.tgz", - "integrity": "sha512-6zsUPlsD3GVhKNq4UZ5MePJPjiMcPs/K02mH5/uVTN2JSgLdWgbLhZ4VYit4HgwE+d98bd9zWbgNgSOXpTArag==", + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", "qs": "^6.10.0", - "telejson": "^7.0.3" + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, - "@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", - "dev": true - }, "@storybook/preview-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.9.tgz", - "integrity": "sha512-cLyhq2nk0eiMOUwIIKhgDgZoS1ecRGojl92hR0agZDzNJrb1lvXK6uIkJh/Anl2Jbir28lAjQGU54voPODwTUA==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "requires": { - "@storybook/channel-postmessage": "7.0.9", - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.9", + "@storybook/types": "7.6.17", "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", @@ -40285,56 +39945,84 @@ } }, "@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@storybook/channels": "7.0.9", + "@storybook/channels": "7.6.17", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "file-system-cache": "2.3.0" } } } }, "@storybook/core-common": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.0-beta.45.tgz", - "integrity": "sha512-NG95uCQyF4wWC/o7gZi7dJ+huUrESLR1MO0jUgEEZbbTUeimFudT3CIEogqeIK1JsLRD19rfjEpb7QBeYsYNSg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.6.17.tgz", + "integrity": "sha512-me2TP3Q9/qzqCLoDHUSsUF+VS1MHxfHbTVF6vAz0D/COTxzsxLpu9TxTbzJoBCxse6XRb6wWI1RgF1mIcjic7g==", "dev": true, "requires": { - "@babel/core": "^7.20.2", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/babel__core": "^7.1.20", - "@types/express": "^4.7.0", - "@types/node": "^16.0.0", + "@storybook/core-events": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/find-cache-dir": "^3.2.1", + "@types/node": "^18.0.0", + "@types/node-fetch": "^2.6.4", "@types/pretty-hrtime": "^1.0.0", "chalk": "^4.1.0", - "esbuild": "^0.16.4", - "esbuild-register": "^3.3.3", - "express": "^4.17.3", - "file-system-cache": "^2.0.0", + "esbuild": "^0.18.0", + "esbuild-register": "^3.5.0", + "file-system-cache": "2.3.0", + "find-cache-dir": "^3.0.0", "find-up": "^5.0.0", "fs-extra": "^11.1.0", - "glob": "^8.1.0", - "glob-promise": "^6.0.2", + "glob": "^10.0.0", "handlebars": "^4.7.7", "lazy-universal-dotenv": "^4.0.0", + "node-fetch": "^2.0.0", "picomatch": "^2.3.0", "pkg-dir": "^5.0.0", "pretty-hrtime": "^1.0.3", "resolve-from": "^5.0.0", - "slash": "^3.0.0", "ts-dedent": "^2.0.0" }, "dependencies": { + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + } + }, "@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } }, "ansi-styles": { "version": "4.3.0", @@ -40365,33 +40053,33 @@ } }, "esbuild": { - "version": "0.16.17", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.16.17.tgz", - "integrity": "sha512-G8LEkV0XzDMNwXKgM0Jwu3nY3lSTwSGY6XbxM9cr9+s0T/qSV1q1JVPBGzm3dcjhCic9+emZDmMffkwgPeOeLg==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.16.17", - "@esbuild/android-arm64": "0.16.17", - "@esbuild/android-x64": "0.16.17", - "@esbuild/darwin-arm64": "0.16.17", - "@esbuild/darwin-x64": "0.16.17", - "@esbuild/freebsd-arm64": "0.16.17", - "@esbuild/freebsd-x64": "0.16.17", - "@esbuild/linux-arm": "0.16.17", - "@esbuild/linux-arm64": "0.16.17", - "@esbuild/linux-ia32": "0.16.17", - "@esbuild/linux-loong64": "0.16.17", - "@esbuild/linux-mips64el": "0.16.17", - "@esbuild/linux-ppc64": "0.16.17", - "@esbuild/linux-riscv64": "0.16.17", - "@esbuild/linux-s390x": "0.16.17", - "@esbuild/linux-x64": "0.16.17", - "@esbuild/netbsd-x64": "0.16.17", - "@esbuild/openbsd-x64": "0.16.17", - "@esbuild/sunos-x64": "0.16.17", - "@esbuild/win32-arm64": "0.16.17", - "@esbuild/win32-ia32": "0.16.17", - "@esbuild/win32-x64": "0.16.17" + "version": "0.18.20", + "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.18.20.tgz", + "integrity": "sha512-ceqxoedUrcayh7Y7ZX6NdbbDzGROiyVBgC4PriJThBKSVPWnnFHZAkfI1lJT8QFkOwH4qOS2SJkS4wvpGl8BpA==", + "dev": true, + "requires": { + "@esbuild/android-arm": "0.18.20", + "@esbuild/android-arm64": "0.18.20", + "@esbuild/android-x64": "0.18.20", + "@esbuild/darwin-arm64": "0.18.20", + "@esbuild/darwin-x64": "0.18.20", + "@esbuild/freebsd-arm64": "0.18.20", + "@esbuild/freebsd-x64": "0.18.20", + "@esbuild/linux-arm": "0.18.20", + "@esbuild/linux-arm64": "0.18.20", + "@esbuild/linux-ia32": "0.18.20", + "@esbuild/linux-loong64": "0.18.20", + "@esbuild/linux-mips64el": "0.18.20", + "@esbuild/linux-ppc64": "0.18.20", + "@esbuild/linux-riscv64": "0.18.20", + "@esbuild/linux-s390x": "0.18.20", + "@esbuild/linux-x64": "0.18.20", + "@esbuild/netbsd-x64": "0.18.20", + "@esbuild/openbsd-x64": "0.18.20", + "@esbuild/sunos-x64": "0.18.20", + "@esbuild/win32-arm64": "0.18.20", + "@esbuild/win32-ia32": "0.18.20", + "@esbuild/win32-x64": "0.18.20" } }, "find-up": { @@ -40405,9 +40093,9 @@ } }, "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -40416,25 +40104,16 @@ } }, "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - } - }, - "glob-promise": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz", - "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==", + "version": "10.3.12", + "resolved": "https://registry.npmjs.org/glob/-/glob-10.3.12.tgz", + "integrity": "sha512-TCNv8vJ+xz4QiqTpfOJA7HvYv+tNIRHKfUWw/q+v2jdgN4ebz+KY9tGx5J4rHP0o84mNP+ApH66HRX8us3Khqg==", "dev": true, "requires": { - "@types/glob": "^8.0.0" + "foreground-child": "^3.1.0", + "jackspeak": "^2.3.6", + "minimatch": "^9.0.1", + "minipass": "^7.0.4", + "path-scurry": "^1.10.2" } }, "has-flag": { @@ -40453,14 +40132,20 @@ } }, "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", + "version": "9.0.4", + "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-9.0.4.tgz", + "integrity": "sha512-KqWh+VchfxcMNRAJjj2tnsSJdNbHsVgnkBhTNrW7AjVo6OvLtxw8zfT9oLw1JSohlFzJ8jCoTgaoXvJ+kHt6fw==", "dev": true, "requires": { "brace-expansion": "^2.0.1" } }, + "minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true + }, "p-limit": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", @@ -40500,38 +40185,40 @@ } }, "@storybook/core-events": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.9.tgz", - "integrity": "sha512-xJiyX7Gq/TgDdBv+8KbfTJ4Sc7fCMeIEUqWTtnYCHWB7Mp6Iui37+caDX3aGQRTz7FVgb7aL5QkQES9Ihc1+dg==", - "dev": true + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.6.17.tgz", + "integrity": "sha512-AriWMCm/k1cxlv10f+jZ1wavThTRpLaN3kY019kHWbYT9XgaSuLU67G7GPr3cGnJ6HuA6uhbzu8qtqVCd6OfXA==", + "dev": true, + "requires": { + "ts-dedent": "^2.0.0" + } }, "@storybook/core-server": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.0.0-beta.45.tgz", - "integrity": "sha512-mR7ijKJmmOTa+YS1uxfaYBQfEZunRfCDCtthZiM7z77FOF7WK5mZbR+mK8tlqDE9FZsMDRNDtIaZLa+nnKpmvg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-server/-/core-server-7.6.17.tgz", + "integrity": "sha512-KWGhTTaL1Q14FolcoKKZgytlPJUbH6sbJ1Ptj/84EYWFewcnEgVs0Zlnh1VStRZg+Rd1WC1V4yVd/bbDzxrvQA==", "dev": true, "requires": { - "@aw-web-design/x-default-browser": "1.4.88", + "@aw-web-design/x-default-browser": "1.4.126", "@discoveryjs/json-ext": "^0.5.3", - "@storybook/builder-manager": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/core-events": "7.0.0-beta.45", - "@storybook/csf": "next", - "@storybook/csf-tools": "7.0.0-beta.45", - "@storybook/docs-mdx": "next", + "@storybook/builder-manager": "7.6.17", + "@storybook/channels": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/csf-tools": "7.6.17", + "@storybook/docs-mdx": "^0.1.0", "@storybook/global": "^5.0.0", - "@storybook/manager": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/telemetry": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/manager": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/telemetry": "7.6.17", + "@storybook/types": "7.6.17", "@types/detect-port": "^1.3.0", - "@types/node": "^16.0.0", - "@types/node-fetch": "^2.5.7", + "@types/node": "^18.0.0", "@types/pretty-hrtime": "^1.0.0", "@types/semver": "^7.3.4", - "better-opn": "^2.1.1", - "boxen": "^5.1.2", + "better-opn": "^3.0.2", "chalk": "^4.1.0", "cli-table3": "^0.6.1", "compression": "^1.7.4", @@ -40539,34 +40226,78 @@ "express": "^4.17.3", "fs-extra": "^11.1.0", "globby": "^11.0.2", - "ip": "^2.0.0", + "ip": "^2.0.1", "lodash": "^4.17.21", - "node-fetch": "^2.6.7", "open": "^8.4.0", "pretty-hrtime": "^1.0.3", "prompts": "^2.4.0", "read-pkg-up": "^7.0.1", "semver": "^7.3.7", - "serve-favicon": "^2.5.0", - "slash": "^3.0.0", - "telejson": "^7.0.3", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1", "ts-dedent": "^2.0.0", + "util": "^0.12.4", "util-deprecate": "^1.0.2", "watchpack": "^2.2.0", "ws": "^8.2.3" }, "dependencies": { - "@storybook/core-events": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-events/-/core-events-7.0.0-beta.45.tgz", - "integrity": "sha512-nS1MX1fGHkMdAkbmRZrsU5RV1G3y/43YqJ51L6D2KmUkCam8oC2br0EgGoKsHtzcdgdsbElCATqa9XqtxVFbDg==", - "dev": true + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + } + }, + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + } }, "@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==", - "dev": true + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } }, "ansi-styles": { "version": "4.3.0", @@ -40588,9 +40319,9 @@ } }, "fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -40614,39 +40345,68 @@ } }, "ws": { - "version": "8.12.0", - "resolved": "https://registry.npmjs.org/ws/-/ws-8.12.0.tgz", - "integrity": "sha512-kU62emKIdKVeEIOIKVegvqpXMSTAMLJozpHZaJNDYqBjzlSYXQGviYwN1osDLJ9av68qHd4a2oSjd7yD4pacig==", + "version": "8.16.0", + "resolved": "https://registry.npmjs.org/ws/-/ws-8.16.0.tgz", + "integrity": "sha512-HS0c//TP7Ina87TfiPUz1rQzMhHrl/SG2guqRcTOIUYD2q8uhUdNHZYJUaQ8aTGPzCh+c6oawMKW35nFl1dxyQ==", "dev": true, "requires": {} } } }, "@storybook/core-webpack": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-7.0.0-beta.45.tgz", - "integrity": "sha512-L0mb2Afo+Px/FXq9b5ReZP83SOSDA+gIGPEykr+nddhfw96qzZazoNtb1EEDGCz5IZK7rdSYlnyXHzmoNtZCQA==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/core-webpack/-/core-webpack-7.6.17.tgz", + "integrity": "sha512-PyGrFhRM8sTONGwwLWLqBQ1HO+LBnVZ+5TOQO7ejQfdV2FWyNOzjBXm2e5jL/C6XlqiEhmL5pyHEyDBaQJQ3KA==", "dev": true, "requires": { - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/node": "^16.0.0", + "@storybook/core-common": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/types": "7.6.17", + "@types/node": "^18.0.0", "ts-dedent": "^2.0.0" }, "dependencies": { + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + } + }, "@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==", - "dev": true + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } } } }, "@storybook/csf": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.0.tgz", - "integrity": "sha512-uk+jMXCZ8t38jSTHk2o5btI+aV2Ksbvl6DoOv3r6VaCM1KZqeuMwtwywIQdflkA8/6q/dKT8z8L+g8hC4GC3VQ==", + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@storybook/csf/-/csf-0.1.3.tgz", + "integrity": "sha512-IPZvXXo4b3G+gpmgBSBqVM81jbp2ePOKsvhgJdhyZJtkYQCII7rg9KKLQhvBQM5sLaF1eU6r0iuwmyynC9d9SA==", "dev": true, "requires": { "type-fest": "^2.19.0" @@ -40661,33 +40421,62 @@ } }, "@storybook/csf-plugin": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.0.0-beta.45.tgz", - "integrity": "sha512-epFppRrY0A3uNp/rIiHvoCnahu69Sq4+Z/5YcROTUPBZsragImd3HuWWvMlsrsqHVv7UnNzTfsHAKb+zvpkNSQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/csf-plugin/-/csf-plugin-7.6.17.tgz", + "integrity": "sha512-xTHv9BUh3bkDVCvcbmdfVF0/e96BdrEgqPJ3G3RmKbSzWLOkQ2U9yiPfHzT0KJWPhVwj12fjfZp0zunu+pcS6Q==", "dev": true, "requires": { - "@storybook/csf-tools": "7.0.0-beta.45", - "unplugin": "^0.10.2" + "@storybook/csf-tools": "7.6.17", + "unplugin": "^1.3.1" } }, "@storybook/csf-tools": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.0.0-beta.45.tgz", - "integrity": "sha512-pQznSfpPht8IZQvmRjAjieQ1Y3B9wGryvNJ7asDMGVPbfZCIR8/9m+9QrvOKqBmlRJ1NzwoxHORG/RShBCPTcQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/csf-tools/-/csf-tools-7.6.17.tgz", + "integrity": "sha512-dAQtam0EBPeTJYcQPLxXgz4L9JFqD+HWbLFG9CmNIhMMjticrB0mpk1EFIS6vPXk/VsVWpBgMLD7dZlD6YMKcQ==", "dev": true, "requires": { - "@babel/types": "^7.20.2", - "@storybook/csf": "next", - "@storybook/types": "7.0.0-beta.45", + "@babel/generator": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/traverse": "^7.23.2", + "@babel/types": "^7.23.0", + "@storybook/csf": "^0.1.2", + "@storybook/types": "7.6.17", "fs-extra": "^11.1.0", "recast": "^0.23.1", "ts-dedent": "^2.0.0" }, "dependencies": { + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + } + }, "fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -40698,24 +40487,74 @@ } }, "@storybook/docs-mdx": { - "version": "0.0.1-next.6", - "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.0.1-next.6.tgz", - "integrity": "sha512-DjoSIXADmLJtdroXAjUotFiZlcZ2usWhqrS7aeOtZs0DVR0Ws5WQjnwtpDUXt8gryTSd+OZJ0cNsDcqg4JDEvQ==", + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/@storybook/docs-mdx/-/docs-mdx-0.1.0.tgz", + "integrity": "sha512-JDaBR9lwVY4eSH5W8EGHrhODjygPd6QImRbwjAuJNEnY0Vw4ie3bPkeGfnacB3OBW6u/agqPv2aRlR46JcAQLg==", "dev": true }, "@storybook/docs-tools": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.0-beta.45.tgz", - "integrity": "sha512-EYHg9GiE6PiAi0BhFq5dKrMOvrEFCiZAQQgZVXOU8aVQOiLBMbWqcOfPPdlZq0Ef+1dHae2sqe5qCaxCagFL6A==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.6.17.tgz", + "integrity": "sha512-bYrLoj06adqklyLkEwD32C0Ww6t+9ZVvrJHiVT42bIhTRpFiFPAetl1a9KPHtFLnfduh4n2IxIr1jv32ThPDTA==", "dev": true, "requires": { - "@babel/core": "^7.12.10", - "@storybook/core-common": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", + "@storybook/core-common": "7.6.17", + "@storybook/preview-api": "7.6.17", + "@storybook/types": "7.6.17", "@types/doctrine": "^0.0.3", + "assert": "^2.1.0", "doctrine": "^3.0.0", "lodash": "^4.17.21" + }, + "dependencies": { + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", + "dev": true, + "requires": { + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" + } + }, + "@storybook/preview-api": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", + "@storybook/global": "^5.0.0", + "@storybook/types": "7.6.17", + "@types/qs": "^6.9.5", + "dequal": "^2.0.2", + "lodash": "^4.17.21", + "memoizerific": "^1.11.3", + "qs": "^6.10.0", + "synchronous-promise": "^2.0.15", + "ts-dedent": "^2.0.0", + "util-deprecate": "^1.0.2" + } + }, + "@storybook/types": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", + "dev": true, + "requires": { + "@storybook/channels": "7.6.17", + "@types/babel__core": "^7.0.0", + "@types/express": "^4.7.0", + "file-system-cache": "2.3.0" + } + } } }, "@storybook/global": { @@ -40755,263 +40594,130 @@ } }, "@storybook/manager": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.0.0-beta.45.tgz", - "integrity": "sha512-iMaJ1Wn26OxIW4vbHx3MFXTDIkJVGmJNl/D7UgXTHKRlUzAj497SVhT/2jv+dIRC/3CZsQySGMgl6RdFRd7VPQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/manager/-/manager-7.6.17.tgz", + "integrity": "sha512-A1LDDIqMpwRzq/dqkbbiza0QI04o4ZHCl2a3UMDZUV/+QLc2nsr2DAaLk4CVL4/cIc5zGqmIcaOTvprx2YKVBw==", "dev": true }, "@storybook/manager-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.0.9.tgz", - "integrity": "sha512-x3sbSkf1HPSTVci2N/uaRr7Hdc7dOwk4YUO37jWLi1aWeaoawgLJS6w0qWsgFNE8Yn7mSMybdvI+1IIhj69ghg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/manager-api/-/manager-api-7.6.17.tgz", + "integrity": "sha512-IJIV1Yc6yw1dhCY4tReHCfBnUKDqEBnMyHp3mbXpsaHxnxJZrXO45WjRAZIKlQKhl/Ge1CrnznmHRCmYgqmrWg==", "dev": true, "requires": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/router": "7.0.9", - "@storybook/theming": "7.0.9", - "@storybook/types": "7.0.9", + "@storybook/router": "7.6.17", + "@storybook/theming": "7.6.17", + "@storybook/types": "7.6.17", "dequal": "^2.0.2", "lodash": "^4.17.21", "memoizerific": "^1.11.3", - "semver": "^7.3.7", "store2": "^2.14.2", - "telejson": "^7.0.3", + "telejson": "^7.2.0", "ts-dedent": "^2.0.0" }, "dependencies": { "@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", - "dev": true - }, - "@storybook/router": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.9.tgz", - "integrity": "sha512-1htgfqGuQxMB258ErNfShpJQncbY4/EL/5qhVB//7Ph98ZeJkaXzdVM9N8MYME5htuoVX43Jpg5hf3W6FB9jIg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.9", - "memoizerific": "^1.11.3", - "qs": "^6.10.0" + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/global": "^5.0.0", + "qs": "^6.10.0", + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, "@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@storybook/channels": "7.0.9", + "@storybook/channels": "7.6.17", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "file-system-cache": "2.3.0" } } } }, "@storybook/mdx2-csf": { - "version": "1.1.0-next.1", - "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0-next.1.tgz", - "integrity": "sha512-ONvFBZySHsBIkUYGrUM8FCG2tDKf663TIErztPSOghOpmBGyFLjSsXJHkNWiRi4c740PoemLqJd2XZZVlXRVLQ==", + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/@storybook/mdx2-csf/-/mdx2-csf-1.1.0.tgz", + "integrity": "sha512-TXJJd5RAKakWx4BtpwvSNdgTDkKM6RkXU8GK34S/LhidQ5Pjz3wcnqb0TxEkfhK/ztbP8nKHqXFwLfa2CYkvQw==", "dev": true }, "@storybook/node-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-U9xCgJp0WHgpsSQkkGqqHcHr6krs+xjOxdMf31MdW94M4Po5qKJFpUF0k/Wf277pr3BTiNR/ci0tulAfUE+LLw==", - "dev": true, - "requires": { - "@types/npmlog": "^4.1.2", - "chalk": "^4.1.0", - "npmlog": "^5.0.1", - "pretty-hrtime": "^1.0.3" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.6.17.tgz", + "integrity": "sha512-w59MQuXhhUNrUVmVkXhMwIg2nvFWjdDczLTwYLorhfsE36CWeUOY5QCZWQy0Qf/h+jz8Uo7Evy64qn18v9C4wA==", + "dev": true }, "@storybook/postinstall": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.0.0-beta.45.tgz", - "integrity": "sha512-+iC3Cu8bqiTMcGHXtQF78dRcP6hlbcPeMG2ZLccofpWwCt6wUb/vCuWF4E1wdsQ6cVcA4TmVZZvQ+SAQV/tMiw==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/postinstall/-/postinstall-7.6.17.tgz", + "integrity": "sha512-WaWqB8o9vUc9aaVls+povQSVirf1Xd1LZcVhUKfAocAF3mzYUsnJsVqvnbjRj/F96UFVihOyDt9Zjl/9OvrCvQ==", "dev": true }, "@storybook/preset-react-webpack": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-7.0.0-beta.45.tgz", - "integrity": "sha512-JDRAizbr+M8+S7hDX1YVfrsf1C8oFj/IoLCT9c7oqGDntI0h4TOOhNd4DA2ub0XugvTVgWuso1HDDOnEire+CQ==", - "dev": true, - "requires": { - "@babel/preset-flow": "^7.18.6", - "@babel/preset-react": "^7.18.6", - "@pmmmwh/react-refresh-webpack-plugin": "^0.5.5", - "@storybook/core-webpack": "7.0.0-beta.45", - "@storybook/docs-tools": "7.0.0-beta.45", - "@storybook/node-logger": "7.0.0-beta.45", - "@storybook/react": "7.0.0-beta.45", - "@storybook/react-docgen-typescript-plugin": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", - "@types/node": "^16.0.0", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preset-react-webpack/-/preset-react-webpack-7.6.17.tgz", + "integrity": "sha512-gn/LvIbll9loOkzwbFlxzOZGmJ6t1vF2/gfi+p/N/AifDYe8+LVM1QV4KRVKt6UEJwsQd79lKf7vPH92AQaKKQ==", + "dev": true, + "requires": { + "@babel/preset-flow": "^7.22.15", + "@babel/preset-react": "^7.22.15", + "@pmmmwh/react-refresh-webpack-plugin": "^0.5.11", + "@storybook/core-webpack": "7.6.17", + "@storybook/docs-tools": "7.6.17", + "@storybook/node-logger": "7.6.17", + "@storybook/react": "7.6.17", + "@storybook/react-docgen-typescript-plugin": "1.0.6--canary.9.0c3f3b7.0", + "@types/node": "^18.0.0", "@types/semver": "^7.3.4", "babel-plugin-add-react-displayname": "^0.0.5", - "babel-plugin-react-docgen": "^4.2.1", "fs-extra": "^11.1.0", - "react-refresh": "^0.11.0", - "semver": "^7.3.7" + "magic-string": "^0.30.5", + "react-docgen": "^7.0.0", + "react-refresh": "^0.14.0", + "semver": "^7.3.7", + "webpack": "5" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-client": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.0-beta.45.tgz", - "integrity": "sha512-KojSCerPbKrX/rq7I0G2RqiKRID8IDyp+HRGjvp1a/iGNT7j5fB+wLXC8MuJPwFXImI3XSxhhbXW8BDu83H0uQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" - } - }, - "@storybook/react": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.0-beta.45.tgz", - "integrity": "sha512-Z2ShzXat5dQM2nGVezcnGZumf/3mC8kyfCZ+4ss5kZRWH3Lsl+GKfQQKzONyP9ebnxPEvz6dQLYoLOCO9JlPEg==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-client": "7.0.0-beta.45", - "@storybook/docs-tools": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^16.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.0.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "^2.19.0", - "util-deprecate": "^1.0.2" - } - }, - "@storybook/react-docgen-typescript-plugin": { - "version": "1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0", - "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.2-canary.6.9d540b91e815f8fc2f8829189deb00553559ff63.0.tgz", - "integrity": "sha512-eVg3BxlOm2P+chijHBTByr90IZVUtgRW56qEOLX7xlww2NBuKrcavBlcmn+HH7GIUktquWkMPtvy6e0W0NgA5w==", - "dev": true, - "requires": { - "debug": "^4.1.1", - "endent": "^2.0.1", - "find-cache-dir": "^3.3.1", - "flat-cache": "^3.0.4", - "micromatch": "^4.0.2", - "react-docgen-typescript": "^2.1.1", - "tslib": "^2.0.0" - } - }, "@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true - }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", "dev": true, "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" + "undici-types": "~5.26.4" } }, "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", "jsonfile": "^6.0.1", "universalify": "^2.0.0" } - }, - "react-docgen-typescript": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", - "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", - "dev": true, - "requires": {} - }, - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true } } }, "@storybook/preview": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.0.0-beta.45.tgz", - "integrity": "sha512-fofDdHtkj7dSSzrtuetBZe4QcSG/igzN+ZponBOBq09okFG5kdFeSBuMcwNRsyFByFwSTa95QHVEfvIdoZulGQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview/-/preview-7.6.17.tgz", + "integrity": "sha512-LvkMYK/y6alGjwRVNDIKL1lFlbyZ0H0c8iAbcQkiMoaFiujMQyVswMDKlWcj42Upfr/B1igydiruomc+eUt0mw==", "dev": true }, "@storybook/preview-api": { @@ -41056,275 +40762,60 @@ } }, "@storybook/react": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.9.tgz", - "integrity": "sha512-wYrtyk6qVqgqODgBh/vWO31SrjzFER0NfnrZy6FvwR4AAHhM0u2qMs8ZXCJFXFIgwjkgGwpD9/EwjRuYHUqDTQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.6.17.tgz", + "integrity": "sha512-lVqzQSU03rRJWYW+gK2gq6mSo3/qtnVICY8B8oP7gc36jVu4ksDIu45bTfukM618ODkUZy0vZe6T4engK3azjA==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.9", - "@storybook/core-client": "7.0.9", - "@storybook/docs-tools": "7.0.9", + "@storybook/client-logger": "7.6.17", + "@storybook/core-client": "7.6.17", + "@storybook/docs-tools": "7.6.17", "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.9", - "@storybook/react-dom-shim": "7.0.9", - "@storybook/types": "7.0.9", + "@storybook/preview-api": "7.6.17", + "@storybook/react-dom-shim": "7.6.17", + "@storybook/types": "7.6.17", "@types/escodegen": "^0.0.6", "@types/estree": "^0.0.51", - "@types/node": "^16.0.0", + "@types/node": "^18.0.0", "acorn": "^7.4.1", "acorn-jsx": "^5.3.1", "acorn-walk": "^7.2.0", - "escodegen": "^2.0.0", + "escodegen": "^2.1.0", "html-tags": "^3.1.0", "lodash": "^4.17.21", "prop-types": "^15.7.2", "react-element-to-jsx-string": "^15.0.0", "ts-dedent": "^2.0.0", - "type-fest": "^2.19.0", + "type-fest": "~2.19", "util-deprecate": "^1.0.2" }, "dependencies": { - "@esbuild/android-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm/-/android-arm-0.17.18.tgz", - "integrity": "sha512-EmwL+vUBZJ7mhFCs5lA4ZimpUH3WMAoqvOIYhVQwdIgSpHC8ImHdsRyhHAVxpDYUSm0lWvd63z0XH1IlImS2Qw==", - "dev": true, - "optional": true - }, - "@esbuild/android-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-arm64/-/android-arm64-0.17.18.tgz", - "integrity": "sha512-/iq0aK0eeHgSC3z55ucMAHO05OIqmQehiGay8eP5l/5l+iEr4EIbh4/MI8xD9qRFjqzgkc0JkX0LculNC9mXBw==", - "dev": true, - "optional": true - }, - "@esbuild/android-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/android-x64/-/android-x64-0.17.18.tgz", - "integrity": "sha512-x+0efYNBF3NPW2Xc5bFOSFW7tTXdAcpfEg2nXmxegm4mJuVeS+i109m/7HMiOQ6M12aVGGFlqJX3RhNdYM2lWg==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-arm64/-/darwin-arm64-0.17.18.tgz", - "integrity": "sha512-6tY+djEAdF48M1ONWnQb1C+6LiXrKjmqjzPNPWXhu/GzOHTHX2nh8Mo2ZAmBFg0kIodHhciEgUBtcYCAIjGbjQ==", - "dev": true, - "optional": true - }, - "@esbuild/darwin-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/darwin-x64/-/darwin-x64-0.17.18.tgz", - "integrity": "sha512-Qq84ykvLvya3dO49wVC9FFCNUfSrQJLbxhoQk/TE1r6MjHo3sFF2tlJCwMjhkBVq3/ahUisj7+EpRSz0/+8+9A==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-arm64/-/freebsd-arm64-0.17.18.tgz", - "integrity": "sha512-fw/ZfxfAzuHfaQeMDhbzxp9mc+mHn1Y94VDHFHjGvt2Uxl10mT4CDavHm+/L9KG441t1QdABqkVYwakMUeyLRA==", - "dev": true, - "optional": true - }, - "@esbuild/freebsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/freebsd-x64/-/freebsd-x64-0.17.18.tgz", - "integrity": "sha512-FQFbRtTaEi8ZBi/A6kxOC0V0E9B/97vPdYjY9NdawyLd4Qk5VD5g2pbWN2VR1c0xhzcJm74HWpObPszWC+qTew==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm/-/linux-arm-0.17.18.tgz", - "integrity": "sha512-jW+UCM40LzHcouIaqv3e/oRs0JM76JfhHjCavPxMUti7VAPh8CaGSlS7cmyrdpzSk7A+8f0hiedHqr/LMnfijg==", - "dev": true, - "optional": true - }, - "@esbuild/linux-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-arm64/-/linux-arm64-0.17.18.tgz", - "integrity": "sha512-R7pZvQZFOY2sxUG8P6A21eq6q+eBv7JPQYIybHVf1XkQYC+lT7nDBdC7wWKTrbvMXKRaGudp/dzZCwL/863mZQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ia32/-/linux-ia32-0.17.18.tgz", - "integrity": "sha512-ygIMc3I7wxgXIxk6j3V00VlABIjq260i967Cp9BNAk5pOOpIXmd1RFQJQX9Io7KRsthDrQYrtcx7QCof4o3ZoQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-loong64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-loong64/-/linux-loong64-0.17.18.tgz", - "integrity": "sha512-bvPG+MyFs5ZlwYclCG1D744oHk1Pv7j8psF5TfYx7otCVmcJsEXgFEhQkbhNW8otDHL1a2KDINW20cfCgnzgMQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-mips64el": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-mips64el/-/linux-mips64el-0.17.18.tgz", - "integrity": "sha512-oVqckATOAGuiUOa6wr8TXaVPSa+6IwVJrGidmNZS1cZVx0HqkTMkqFGD2HIx9H1RvOwFeWYdaYbdY6B89KUMxA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-ppc64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-ppc64/-/linux-ppc64-0.17.18.tgz", - "integrity": "sha512-3dLlQO+b/LnQNxgH4l9rqa2/IwRJVN9u/bK63FhOPB4xqiRqlQAU0qDU3JJuf0BmaH0yytTBdoSBHrb2jqc5qQ==", - "dev": true, - "optional": true - }, - "@esbuild/linux-riscv64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-riscv64/-/linux-riscv64-0.17.18.tgz", - "integrity": "sha512-/x7leOyDPjZV3TcsdfrSI107zItVnsX1q2nho7hbbQoKnmoeUWjs+08rKKt4AUXju7+3aRZSsKrJtaRmsdL1xA==", - "dev": true, - "optional": true - }, - "@esbuild/linux-s390x": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-s390x/-/linux-s390x-0.17.18.tgz", - "integrity": "sha512-cX0I8Q9xQkL/6F5zWdYmVf5JSQt+ZfZD2bJudZrWD+4mnUvoZ3TDDXtDX2mUaq6upMFv9FlfIh4Gfun0tbGzuw==", - "dev": true, - "optional": true - }, - "@esbuild/linux-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/linux-x64/-/linux-x64-0.17.18.tgz", - "integrity": "sha512-66RmRsPlYy4jFl0vG80GcNRdirx4nVWAzJmXkevgphP1qf4dsLQCpSKGM3DUQCojwU1hnepI63gNZdrr02wHUA==", - "dev": true, - "optional": true - }, - "@esbuild/netbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/netbsd-x64/-/netbsd-x64-0.17.18.tgz", - "integrity": "sha512-95IRY7mI2yrkLlTLb1gpDxdC5WLC5mZDi+kA9dmM5XAGxCME0F8i4bYH4jZreaJ6lIZ0B8hTrweqG1fUyW7jbg==", - "dev": true, - "optional": true - }, - "@esbuild/openbsd-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/openbsd-x64/-/openbsd-x64-0.17.18.tgz", - "integrity": "sha512-WevVOgcng+8hSZ4Q3BKL3n1xTv5H6Nb53cBrtzzEjDbbnOmucEVcZeGCsCOi9bAOcDYEeBZbD2SJNBxlfP3qiA==", - "dev": true, - "optional": true - }, - "@esbuild/sunos-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/sunos-x64/-/sunos-x64-0.17.18.tgz", - "integrity": "sha512-Rzf4QfQagnwhQXVBS3BYUlxmEbcV7MY+BH5vfDZekU5eYpcffHSyjU8T0xucKVuOcdCsMo+Ur5wmgQJH2GfNrg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-arm64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-arm64/-/win32-arm64-0.17.18.tgz", - "integrity": "sha512-Kb3Ko/KKaWhjeAm2YoT/cNZaHaD1Yk/pa3FTsmqo9uFh1D1Rfco7BBLIPdDOozrObj2sahslFuAQGvWbgWldAg==", - "dev": true, - "optional": true - }, - "@esbuild/win32-ia32": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-ia32/-/win32-ia32-0.17.18.tgz", - "integrity": "sha512-0/xUMIdkVHwkvxfbd5+lfG7mHOf2FRrxNbPiKWg9C4fFrB8H0guClmaM3BFiRUYrznVoyxTIyC/Ou2B7QQSwmw==", - "dev": true, - "optional": true - }, - "@esbuild/win32-x64": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/@esbuild/win32-x64/-/win32-x64-0.17.18.tgz", - "integrity": "sha512-qU25Ma1I3NqTSHJUOKi9sAH1/Mzuvlke0ioMJRthLXKm7JiSKVwFghlGbDLOO2sARECGhja4xYfRAZNPAkooYg==", - "dev": true, - "optional": true - }, - "@storybook/channel-postmessage": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channel-postmessage/-/channel-postmessage-7.0.9.tgz", - "integrity": "sha512-6zsUPlsD3GVhKNq4UZ5MePJPjiMcPs/K02mH5/uVTN2JSgLdWgbLhZ4VYit4HgwE+d98bd9zWbgNgSOXpTArag==", + "@storybook/channels": { + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.6.17.tgz", + "integrity": "sha512-GFG40pzaSxk1hUr/J/TMqW5AFDDPUSu+HkeE/oqSWJbOodBOLJzHN6CReJS6y1DjYSZLNFt1jftPWZZInG/XUA==", "dev": true, "requires": { - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", "@storybook/global": "^5.0.0", "qs": "^6.10.0", - "telejson": "^7.0.3" - } - }, - "@storybook/channels": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/channels/-/channels-7.0.9.tgz", - "integrity": "sha512-LF/Mkr0/+VOawEAospLGUcfZIPak3yV/ZjEAe/lubvLPJ6s2FFOjDUsyDIa2oM4ZE9TI6AGVN51kddVToelM8A==", - "dev": true - }, - "@storybook/core-common": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/core-common/-/core-common-7.0.9.tgz", - "integrity": "sha512-IchifM372HCKfhqSIL9uShSNBHEGoPaDnKky3XfAz4IeI/iepFVWUtJ95znnhfRj4lzMenA6/Ng7TWWuQj5Q8w==", - "dev": true, - "requires": { - "@storybook/node-logger": "7.0.9", - "@storybook/types": "7.0.9", - "@types/node": "^16.0.0", - "@types/pretty-hrtime": "^1.0.0", - "chalk": "^4.1.0", - "esbuild": "^0.17.0", - "esbuild-register": "^3.4.0", - "file-system-cache": "^2.0.0", - "find-up": "^5.0.0", - "fs-extra": "^11.1.0", - "glob": "^8.1.0", - "glob-promise": "^6.0.2", - "handlebars": "^4.7.7", - "lazy-universal-dotenv": "^4.0.0", - "picomatch": "^2.3.0", - "pkg-dir": "^5.0.0", - "pretty-hrtime": "^1.0.3", - "resolve-from": "^5.0.0", - "ts-dedent": "^2.0.0" - } - }, - "@storybook/docs-tools": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/docs-tools/-/docs-tools-7.0.9.tgz", - "integrity": "sha512-E/4aIDDGbSReqggPDVp+TchxnwKKZ7AmODV0N0yYi/srHuunZ8SgpshF5t0EQmoy8UpxzURU1VeSoZvzVIrLQw==", - "dev": true, - "requires": { - "@babel/core": "^7.12.10", - "@storybook/core-common": "7.0.9", - "@storybook/preview-api": "7.0.9", - "@storybook/types": "7.0.9", - "@types/doctrine": "^0.0.3", - "doctrine": "^3.0.0", - "lodash": "^4.17.21" - } - }, - "@storybook/node-logger": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/node-logger/-/node-logger-7.0.9.tgz", - "integrity": "sha512-aD3OxqnXxDDx3yPoUhoQ863cTfALWhx5i8wKDECb2LWZBAMsh21wJk/CB/fW5FPd9YwzJ8nbvQxlaNpfsM4N7w==", - "dev": true, - "requires": { - "@types/npmlog": "^4.1.2", - "chalk": "^4.1.0", - "npmlog": "^5.0.1", - "pretty-hrtime": "^1.0.3" + "telejson": "^7.2.0", + "tiny-invariant": "^1.3.1" } }, "@storybook/preview-api": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.0.9.tgz", - "integrity": "sha512-cLyhq2nk0eiMOUwIIKhgDgZoS1ecRGojl92hR0agZDzNJrb1lvXK6uIkJh/Anl2Jbir28lAjQGU54voPODwTUA==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/preview-api/-/preview-api-7.6.17.tgz", + "integrity": "sha512-wLfDdI9RWo1f2zzFe54yRhg+2YWyxLZvqdZnSQ45mTs4/7xXV5Wfbv3QNTtcdw8tT3U5KRTrN1mTfTCiRJc0Kw==", "dev": true, "requires": { - "@storybook/channel-postmessage": "7.0.9", - "@storybook/channels": "7.0.9", - "@storybook/client-logger": "7.0.9", - "@storybook/core-events": "7.0.9", - "@storybook/csf": "^0.1.0", + "@storybook/channels": "7.6.17", + "@storybook/client-logger": "7.6.17", + "@storybook/core-events": "7.6.17", + "@storybook/csf": "^0.1.2", "@storybook/global": "^5.0.0", - "@storybook/types": "7.0.9", + "@storybook/types": "7.6.17", "@types/qs": "^6.9.5", "dequal": "^2.0.2", "lodash": "^4.17.21", @@ -41336,22 +40827,25 @@ } }, "@storybook/types": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.0.9.tgz", - "integrity": "sha512-6aKrrsX3wgPMg9Nu3AK1GYmCZQiHqHv7l24ywNxZPv0T63rcpS86kWK4qVAywoaXGFc9GtRT+dz1rK8Fx50J9Q==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/types/-/types-7.6.17.tgz", + "integrity": "sha512-GRY0xEJQ0PrL7DY2qCNUdIfUOE0Gsue6N+GBJw9ku1IUDFLJRDOF+4Dx2BvYcVCPI5XPqdWKlEyZdMdKjiQN7Q==", "dev": true, "requires": { - "@storybook/channels": "7.0.9", + "@storybook/channels": "7.6.17", "@types/babel__core": "^7.0.0", "@types/express": "^4.7.0", - "file-system-cache": "^2.0.0" + "file-system-cache": "2.3.0" } }, "@types/node": { - "version": "16.18.26", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.26.tgz", - "integrity": "sha512-pCNBzNQqCXE4A6FWDmrn/o1Qu+qBf8tnorBlNoPNSBQJF+jXzvTKNI/aMiE+hGJbK5sDAD65g7OS/YwSHIEJdw==", - "dev": true + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", + "dev": true, + "requires": { + "undici-types": "~5.26.4" + } }, "acorn": { "version": "7.4.1", @@ -41359,167 +40853,6 @@ "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", "dev": true }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "brace-expansion": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-2.0.1.tgz", - "integrity": "sha512-XnAIvQ8eM+kC6aULx6wuQiwVsnzsi9d3WxzV3FpWTGA19F621kwdbsAcFKXgKUHZWsy+mY6iL1sHTxWEFCytDA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "esbuild": { - "version": "0.17.18", - "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.17.18.tgz", - "integrity": "sha512-z1lix43jBs6UKjcZVKOw2xx69ffE2aG0PygLL5qJ9OS/gy0Ewd1gW/PUQIOIQGXBHWNywSc0floSKoMFF8aK2w==", - "dev": true, - "requires": { - "@esbuild/android-arm": "0.17.18", - "@esbuild/android-arm64": "0.17.18", - "@esbuild/android-x64": "0.17.18", - "@esbuild/darwin-arm64": "0.17.18", - "@esbuild/darwin-x64": "0.17.18", - "@esbuild/freebsd-arm64": "0.17.18", - "@esbuild/freebsd-x64": "0.17.18", - "@esbuild/linux-arm": "0.17.18", - "@esbuild/linux-arm64": "0.17.18", - "@esbuild/linux-ia32": "0.17.18", - "@esbuild/linux-loong64": "0.17.18", - "@esbuild/linux-mips64el": "0.17.18", - "@esbuild/linux-ppc64": "0.17.18", - "@esbuild/linux-riscv64": "0.17.18", - "@esbuild/linux-s390x": "0.17.18", - "@esbuild/linux-x64": "0.17.18", - "@esbuild/netbsd-x64": "0.17.18", - "@esbuild/openbsd-x64": "0.17.18", - "@esbuild/sunos-x64": "0.17.18", - "@esbuild/win32-arm64": "0.17.18", - "@esbuild/win32-ia32": "0.17.18", - "@esbuild/win32-x64": "0.17.18" - } - }, - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "fs-extra": { - "version": "11.1.1", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.1.tgz", - "integrity": "sha512-MGIE4HOvQCeUCzmlHs0vXpih4ysz4wg9qiSAu6cd42lVwPbTM1TjV7RusoyQqMmk/95gdQZX72u+YW+c3eEpFQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.2.0", - "jsonfile": "^6.0.1", - "universalify": "^2.0.0" - } - }, - "glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-r8hpEjiQEYlF2QU0df3dS+nxxSIreXQS1qRhMJM0Q5NDdR386C7jb7Hwwod8Fgiuex+k0GFjgft18yvxm5XoCQ==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^5.0.1", - "once": "^1.3.0" - } - }, - "glob-promise": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/glob-promise/-/glob-promise-6.0.2.tgz", - "integrity": "sha512-Ni2aDyD1ekD6x8/+K4hDriRDbzzfuK4yKpqSymJ4P7IxbtARiOOuU+k40kbHM0sLIlbf1Qh0qdMkAHMZYE6XJQ==", - "dev": true, - "requires": { - "@types/glob": "^8.0.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "minimatch": { - "version": "5.1.6", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-5.1.6.tgz", - "integrity": "sha512-lKwV/1brpG6mBUFHtb7NUmtABCb2WZZmm2wNiOA5hAb8VdCS4B3dtMWyvcoViccwAW/COERjXLt0zP1zXUN26g==", - "dev": true, - "requires": { - "brace-expansion": "^2.0.1" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "pkg-dir": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-5.0.0.tgz", - "integrity": "sha512-NPE8TDbzl/3YQYY7CSS228s3g2ollTFnc+Qi3tqmqJp9Vg2ovUpixcJEo2HJScN2Ez+kEaal6y70c0ehqJBJeA==", - "dev": true, - "requires": { - "find-up": "^5.0.0" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, "type-fest": { "version": "2.19.0", "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", @@ -41528,161 +40861,78 @@ } } }, + "@storybook/react-docgen-typescript-plugin": { + "version": "1.0.6--canary.9.0c3f3b7.0", + "resolved": "https://registry.npmjs.org/@storybook/react-docgen-typescript-plugin/-/react-docgen-typescript-plugin-1.0.6--canary.9.0c3f3b7.0.tgz", + "integrity": "sha512-KUqXC3oa9JuQ0kZJLBhVdS4lOneKTOopnNBK4tUAgoxWQ3u/IjzdueZjFr7gyBrXMoU6duutk3RQR9u8ZpYJ4Q==", + "dev": true, + "requires": { + "debug": "^4.1.1", + "endent": "^2.0.1", + "find-cache-dir": "^3.3.1", + "flat-cache": "^3.0.4", + "micromatch": "^4.0.2", + "react-docgen-typescript": "^2.2.2", + "tslib": "^2.0.0" + } + }, "@storybook/react-dom-shim": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.0.9.tgz", - "integrity": "sha512-3S+zJtC0L7yBwLItF3GHn3dZ3T3/9chuzpKU36K+h+oNde/JEBMi8xNh00qXjr/wyl4kJgMhktczCLFgS23dOQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/react-dom-shim/-/react-dom-shim-7.6.17.tgz", + "integrity": "sha512-32Sa/G+WnvaPiQ1Wvjjw5UM9rr2c4GDohwCcWVv3/LJuiFPqNS6zglAtmnsrlIBnUwRBMLMh/ekCTdqMiUmfDw==", "dev": true, "requires": {} }, "@storybook/react-webpack5": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-7.0.0-beta.45.tgz", - "integrity": "sha512-mHJBq2j+j8Ae5j/gsjGCHsay7iDyE7jssZCqlBAnWNLjsSxdAfveHcVA2rL+DlNdz1brT6mTmff9FCBHv+o1Wg==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/react-webpack5/-/react-webpack5-7.6.17.tgz", + "integrity": "sha512-qGc2JxaSmvPXV7ndxA/8qPtPLK7lAwejL/QdrzLXhxEmVdZLMew640FBYgOV/zWnehV3BnivThln/8PsQyst/g==", "dev": true, "requires": { - "@storybook/builder-webpack5": "7.0.0-beta.45", - "@storybook/preset-react-webpack": "7.0.0-beta.45", - "@storybook/react": "7.0.0-beta.45", - "@types/node": "^16.0.0" + "@storybook/builder-webpack5": "7.6.17", + "@storybook/preset-react-webpack": "7.6.17", + "@storybook/react": "7.6.17", + "@types/node": "^18.0.0" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, - "@storybook/core-client": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/core-client/-/core-client-7.0.0-beta.45.tgz", - "integrity": "sha512-KojSCerPbKrX/rq7I0G2RqiKRID8IDyp+HRGjvp1a/iGNT7j5fB+wLXC8MuJPwFXImI3XSxhhbXW8BDu83H0uQ==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" - } - }, - "@storybook/react": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/react/-/react-7.0.0-beta.45.tgz", - "integrity": "sha512-Z2ShzXat5dQM2nGVezcnGZumf/3mC8kyfCZ+4ss5kZRWH3Lsl+GKfQQKzONyP9ebnxPEvz6dQLYoLOCO9JlPEg==", + "@types/node": { + "version": "18.19.29", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.19.29.tgz", + "integrity": "sha512-5pAX7ggTmWZdhUrhRWLPf+5oM7F80bcKVCBbr0zwEkTNzTJL2CWQjznpFgHYy6GrzkYi2Yjy7DHKoynFxqPV8g==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-client": "7.0.0-beta.45", - "@storybook/docs-tools": "7.0.0-beta.45", - "@storybook/global": "^5.0.0", - "@storybook/preview-api": "7.0.0-beta.45", - "@storybook/types": "7.0.0-beta.45", - "@types/escodegen": "^0.0.6", - "@types/estree": "^0.0.51", - "@types/node": "^16.0.0", - "acorn": "^7.4.1", - "acorn-jsx": "^5.3.1", - "acorn-walk": "^7.2.0", - "escodegen": "^2.0.0", - "html-tags": "^3.1.0", - "lodash": "^4.17.21", - "prop-types": "^15.7.2", - "react-element-to-jsx-string": "^15.0.0", - "ts-dedent": "^2.0.0", - "type-fest": "^2.19.0", - "util-deprecate": "^1.0.2" + "undici-types": "~5.26.4" } - }, - "@types/node": { - "version": "16.18.12", - "resolved": "https://registry.npmjs.org/@types/node/-/node-16.18.12.tgz", - "integrity": "sha512-vzLe5NaNMjIE3mcddFVGlAXN1LEWueUsMsOJWaT6wWMJGyljHAWHznqfnKUQWGzu7TLPrGvWdNAsvQYW+C0xtw==", - "dev": true - }, - "acorn": { - "version": "7.4.1", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-7.4.1.tgz", - "integrity": "sha512-nQyp0o1/mNdbTO1PO6kHkwSrmgZ0MT/jCCpNiwbUjGoRN4dlBhqJtoQuCnEOKzgTVwg0ZWiCoQy6SxMebQVh8A==", - "dev": true - }, - "type-fest": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-2.19.0.tgz", - "integrity": "sha512-RAH822pAdBgcNMAfWnCBU3CFZcfZ/i1eZjwFU/dsLKumyuuP3niueg2UAukXYF0E2AAoc82ZSSf9J0WQBinzHA==", - "dev": true } } }, "@storybook/router": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.0.0-beta.45.tgz", - "integrity": "sha512-WRDlAMD2SQ2qX7TCNVuDQVSq4cvrjvNoFPxvtDLM7GjhnVk2+4Yw2AlKaRYed65ItzkvHMvBg/wXM5GpgdRvfQ==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/router/-/router-7.6.17.tgz", + "integrity": "sha512-GnyC0j6Wi5hT4qRhSyT8NPtJfGmf82uZw97LQRWeyYu5gWEshUdM7aj40XlNiScd5cZDp0owO1idduVF2k2l2A==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", + "@storybook/client-logger": "7.6.17", "memoizerific": "^1.11.3", "qs": "^6.10.0" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - } - } - }, - "@storybook/store": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/store/-/store-7.0.0-beta.45.tgz", - "integrity": "sha512-2ceV9/n9hYWpM/NHX/NTSWHGI0IFfZ2Xa4rO4IpzXO6PtDfXvr6g9RH4Hhnakckez9RD20az75DioRb63sEQ/A==", - "dev": true, - "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/preview-api": "7.0.0-beta.45" - }, - "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - } } }, "@storybook/telemetry": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.0.0-beta.45.tgz", - "integrity": "sha512-xbDcRHqAXFHt6kJSkRviN0KvUjw69c8yk6cEA/xuzxSYNmfpfmuL5i1sflIYWnAKKGn7tDQwmXc/PIdoi0N7Ug==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/telemetry/-/telemetry-7.6.17.tgz", + "integrity": "sha512-WOcOAmmengYnGInH98Px44F47DSpLyk20BM+Z/IIQDzfttGOLlxNqBBG1XTEhNRn+AYuk4aZ2JEed2lCjVIxcA==", "dev": true, "requires": { - "@storybook/client-logger": "7.0.0-beta.45", - "@storybook/core-common": "7.0.0-beta.45", + "@storybook/client-logger": "7.6.17", + "@storybook/core-common": "7.6.17", + "@storybook/csf-tools": "7.6.17", "chalk": "^4.1.0", "detect-package-manager": "^2.0.1", "fetch-retry": "^5.0.2", "fs-extra": "^11.1.0", - "isomorphic-unfetch": "^3.1.0", - "nanoid": "^3.3.1", "read-pkg-up": "^7.0.1" }, "dependencies": { - "@storybook/client-logger": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/@storybook/client-logger/-/client-logger-7.0.0-beta.45.tgz", - "integrity": "sha512-9qNiKOcCam8b3csgRbA8REiyuE9+lNQAeWZLogAbAjaXJMM9Vanc4ir2rQuxOVgWxd0Ansi1LtgteqFlNCMXaQ==", - "dev": true, - "requires": { - "@storybook/global": "^5.0.0" - } - }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -41703,9 +40953,9 @@ } }, "fs-extra": { - "version": "11.1.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.1.0.tgz", - "integrity": "sha512-0rcTq621PD5jM/e0a3EJoGC/1TC5ZBCERW82LQuwfGnCa1V8w7dpYH1yNu+SLb6E5dkeCBzKEyLGlFrnr+dUyw==", + "version": "11.2.0", + "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-11.2.0.tgz", + "integrity": "sha512-PmDi3uwK5nFuXh7XDTlVnS17xJS7vW36is2+w3xcv8SVxiB4NyATf4ctkVY5bkSjX0Y4nbvZCq1/EjtEyr9ktw==", "dev": true, "requires": { "graceful-fs": "^4.2.0", @@ -41744,13 +40994,13 @@ } }, "@storybook/theming": { - "version": "7.0.9", - "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.0.9.tgz", - "integrity": "sha512-HVbl4ljFRe5VIcg/HGUdZP7Vc8k9rPhWhE4K98MbuSdxnaU+uvHUhj0fE1umoCn39N9/Ws8Lm596+PKoTE3D1g==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/@storybook/theming/-/theming-7.6.17.tgz", + "integrity": "sha512-ZbaBt3KAbmBtfjNqgMY7wPMBshhSJlhodyMNQypv+95xLD/R+Az6aBYbpVAOygLaUQaQk4ar7H/Ww6lFIoiFbA==", "dev": true, "requires": { "@emotion/use-insertion-effect-with-fallbacks": "^1.0.0", - "@storybook/client-logger": "7.0.9", + "@storybook/client-logger": "7.6.17", "@storybook/global": "^5.0.0", "memoizerific": "^1.11.3" } @@ -41769,6 +41019,111 @@ "file-system-cache": "^2.0.0" } }, + "@swc/core": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core/-/core-1.4.12.tgz", + "integrity": "sha512-QljRxTaUajSLB9ui93cZ38/lmThwIw/BPxjn+TphrYN6LPU3vu9/ykjgHtlpmaXDDcngL4K5i396E7iwwEUxYg==", + "dev": true, + "requires": { + "@swc/core-darwin-arm64": "1.4.12", + "@swc/core-darwin-x64": "1.4.12", + "@swc/core-linux-arm-gnueabihf": "1.4.12", + "@swc/core-linux-arm64-gnu": "1.4.12", + "@swc/core-linux-arm64-musl": "1.4.12", + "@swc/core-linux-x64-gnu": "1.4.12", + "@swc/core-linux-x64-musl": "1.4.12", + "@swc/core-win32-arm64-msvc": "1.4.12", + "@swc/core-win32-ia32-msvc": "1.4.12", + "@swc/core-win32-x64-msvc": "1.4.12", + "@swc/counter": "^0.1.2", + "@swc/types": "^0.1.5" + } + }, + "@swc/core-darwin-arm64": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-arm64/-/core-darwin-arm64-1.4.12.tgz", + "integrity": "sha512-BZUUq91LGJsLI2BQrhYL3yARkcdN4TS3YGNS6aRYUtyeWrGCTKHL90erF2BMU2rEwZLLkOC/U899R4o4oiSHfA==", + "dev": true, + "optional": true + }, + "@swc/core-darwin-x64": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-darwin-x64/-/core-darwin-x64-1.4.12.tgz", + "integrity": "sha512-Wkk8rq1RwCOgg5ybTlfVtOYXLZATZ+QjgiBNM7pIn03A5/zZicokNTYd8L26/mifly2e74Dz34tlIZBT4aTGDA==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm-gnueabihf": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm-gnueabihf/-/core-linux-arm-gnueabihf-1.4.12.tgz", + "integrity": "sha512-8jb/SN67oTQ5KSThWlKLchhU6xnlAlnmnLCCOKK1xGtFS6vD+By9uL+qeEY2krV98UCRTf68WSmC0SLZhVoz5A==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm64-gnu": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-gnu/-/core-linux-arm64-gnu-1.4.12.tgz", + "integrity": "sha512-DhW47DQEZKCdSq92v5F03rqdpjRXdDMqxfu4uAlZ9Uo1wJEGvY23e1SNmhji2sVHsZbBjSvoXoBLk0v00nSG8w==", + "dev": true, + "optional": true + }, + "@swc/core-linux-arm64-musl": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-arm64-musl/-/core-linux-arm64-musl-1.4.12.tgz", + "integrity": "sha512-PR57pT3TssnCRvdsaKNsxZy9N8rFg9AKA1U7W+LxbZ/7Z7PHc5PjxF0GgZpE/aLmU6xOn5VyQTlzjoamVkt05g==", + "dev": true, + "optional": true + }, + "@swc/core-linux-x64-gnu": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-gnu/-/core-linux-x64-gnu-1.4.12.tgz", + "integrity": "sha512-HLZIWNHWuFIlH+LEmXr1lBiwGQeCshKOGcqbJyz7xpqTh7m2IPAxPWEhr/qmMTMsjluGxeIsLrcsgreTyXtgNA==", + "dev": true, + "optional": true + }, + "@swc/core-linux-x64-musl": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-linux-x64-musl/-/core-linux-x64-musl-1.4.12.tgz", + "integrity": "sha512-M5fBAtoOcpz2YQAFtNemrPod5BqmzAJc8pYtT3dVTn1MJllhmLHlphU8BQytvoGr1PHgJL8ZJBlBGdt70LQ7Mw==", + "dev": true, + "optional": true + }, + "@swc/core-win32-arm64-msvc": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-win32-arm64-msvc/-/core-win32-arm64-msvc-1.4.12.tgz", + "integrity": "sha512-K8LjjgZ7VQFtM+eXqjfAJ0z+TKVDng3r59QYn7CL6cyxZI2brLU3lNknZcUFSouZD+gsghZI/Zb8tQjVk7aKDQ==", + "dev": true, + "optional": true + }, + "@swc/core-win32-ia32-msvc": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-win32-ia32-msvc/-/core-win32-ia32-msvc-1.4.12.tgz", + "integrity": "sha512-hflO5LCxozngoOmiQbDPyvt6ODc5Cu9AwTJP9uH/BSMPdEQ6PCnefuUOJLAKew2q9o+NmDORuJk+vgqQz9Uzpg==", + "dev": true, + "optional": true + }, + "@swc/core-win32-x64-msvc": { + "version": "1.4.12", + "resolved": "https://registry.npmjs.org/@swc/core-win32-x64-msvc/-/core-win32-x64-msvc-1.4.12.tgz", + "integrity": "sha512-3A4qMtddBDbtprV5edTB/SgJn9L+X5TL7RGgS3eWtEgn/NG8gA80X/scjf1v2MMeOsrcxiYhnemI2gXCKuQN2g==", + "dev": true, + "optional": true + }, + "@swc/counter": { + "version": "0.1.3", + "resolved": "https://registry.npmjs.org/@swc/counter/-/counter-0.1.3.tgz", + "integrity": "sha512-e2BR4lsJkkRlKZ/qCHPw9ZaSxc0MVUd7gtbtaB7aMvHeJVYe8sOB8DBZkP2DtISHGSku9sCK6T6cnY0CtXrOCQ==", + "dev": true + }, + "@swc/types": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/@swc/types/-/types-0.1.6.tgz", + "integrity": "sha512-/JLo/l2JsT/LRd80C3HfbmVpxOAJ11FO2RCEslFrgzLltoP9j8XIbsyDcfCt2WWyX+CM96rBoNM+IToAkFOugg==", + "dev": true, + "requires": { + "@swc/counter": "^0.1.3" + } + }, "@szmarczak/http-timer": { "version": "5.0.1", "resolved": "https://registry.npmjs.org/@szmarczak/http-timer/-/http-timer-5.0.1.tgz", @@ -41923,12 +41278,12 @@ } }, "@types/babel__traverse": { - "version": "7.17.1", - "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.17.1.tgz", - "integrity": "sha512-kVzjari1s2YVi77D3w1yuvohV2idweYXMCDzqBiVNN63TcDWrIlTVOYpqVrvbbyOE/IyzBoTKF0fdnLPEORFxA==", + "version": "7.20.5", + "resolved": "https://registry.npmjs.org/@types/babel__traverse/-/babel__traverse-7.20.5.tgz", + "integrity": "sha512-WXCyOcRtH37HAUkpXhUduaxdm82b4GSlyTqajXviN4EfiuPgNYR109xMCKvpl6zPIpua0DGlMEDCq+g8EdoheQ==", "dev": true, "requires": { - "@babel/types": "^7.3.0" + "@babel/types": "^7.20.7" } }, "@types/body-parser": { @@ -41990,15 +41345,24 @@ "@types/node": "*" } }, + "@types/cross-spawn": { + "version": "6.0.6", + "resolved": "https://registry.npmjs.org/@types/cross-spawn/-/cross-spawn-6.0.6.tgz", + "integrity": "sha512-fXRhhUkG4H3TQk5dBhQ7m/JDdSNHKwR2BBia62lhwEIq9xGiQKLxd6LymNhn47SjXhsUEPmxi+PKw2OkW4LLjA==", + "dev": true, + "requires": { + "@types/node": "*" + } + }, "@types/css-font-loading-module": { "version": "0.0.7", "resolved": "https://registry.npmjs.org/@types/css-font-loading-module/-/css-font-loading-module-0.0.7.tgz", "integrity": "sha512-nl09VhutdjINdWyXxHWN/w9zlNCfr60JUqJbd24YXUuCwgeL0TpFSdElCwb6cxfB6ybE19Gjj4g0jsgkXxKv1Q==" }, "@types/detect-port": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.2.tgz", - "integrity": "sha512-xxgAGA2SAU4111QefXPSp5eGbDm/hW6zhvYl9IeEPZEry9F4d66QAHm5qpUXjb6IsevZV/7emAEx5MhP6O192g==", + "version": "1.3.5", + "resolved": "https://registry.npmjs.org/@types/detect-port/-/detect-port-1.3.5.tgz", + "integrity": "sha512-Rf3/lB9WkDfIL9eEKaSYKc+1L/rNVYBjThk22JTqQw0YozXarX8YljFAz+HCoC6h4B4KwCMsBPZHaFezwT4BNA==", "dev": true }, "@types/doctrine": { @@ -42013,9 +41377,15 @@ "integrity": "sha512-w8oigUCDjElRHRRrMvn/spybSMyX8MTkKA5Dv+tS1IE/TgmNZPqUYtvYBXGY8cieSE66gm+szeK+bnbxC2xHTQ==" }, "@types/ejs": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.1.tgz", - "integrity": "sha512-RQul5wEfY7BjWm0sYY86cmUN/pcXWGyVxWX93DFFJvcrxax5zKlieLwA3T77xJGwNcZW0YW6CYG70p1m8xPFmA==", + "version": "3.1.5", + "resolved": "https://registry.npmjs.org/@types/ejs/-/ejs-3.1.5.tgz", + "integrity": "sha512-nv+GSx77ZtXiJzwKdsASqi+YQ5Z7vwHsTP0JY2SiQgjGckkBRKZnk8nIM+7oUZ1VCtuTz0+By4qVR7fqzp/Dfg==", + "dev": true + }, + "@types/emscripten": { + "version": "1.39.10", + "resolved": "https://registry.npmjs.org/@types/emscripten/-/emscripten-1.39.10.tgz", + "integrity": "sha512-TB/6hBkYQJxsZHSqyeuO1Jt0AB/bW6G7rHt9g7lML7SOF6lbgcHvw/Lr+69iqN0qxgXLhWKScAon73JNnptuDw==", "dev": true }, "@types/escodegen": { @@ -42079,16 +41449,6 @@ "integrity": "sha512-frsJrz2t/CeGifcu/6uRo4b+SzAwT4NYCVPu1GN8IB9XTzrpPkGuV0tmh9mN+/L0PklAlsC3u5Fxt0ju00LXIw==", "dev": true }, - "@types/glob": { - "version": "8.1.0", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-8.1.0.tgz", - "integrity": "sha512-IO+MJPVhoqz+28h1qLAcBEH2+xHMK6MTyHJc7MTnnYb6wsoLR29POVGJ7LycmVXIqyy/4/2ShP5sUwTXuOwb/w==", - "dev": true, - "requires": { - "@types/minimatch": "^5.1.2", - "@types/node": "*" - } - }, "@types/graceful-fs": { "version": "4.1.5", "resolved": "https://registry.npmjs.org/@types/graceful-fs/-/graceful-fs-4.1.5.tgz", @@ -42165,6 +41525,12 @@ "pretty-format": "^27.0.0" } }, + "@types/js-yaml": { + "version": "4.0.9", + "resolved": "https://registry.npmjs.org/@types/js-yaml/-/js-yaml-4.0.9.tgz", + "integrity": "sha512-k4MGaQl5TGo/iipqb2UDG2UwjXziSWkh0uysQelTlJpX1qGlpUZYm8PnO4DxG1qBomtJUdYJ6qR6xdIah10JLg==", + "dev": true + }, "@types/json-schema": { "version": "7.0.15", "resolved": "https://registry.npmjs.org/@types/json-schema/-/json-schema-7.0.15.tgz", @@ -42182,10 +41548,18 @@ "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.182.tgz", "integrity": "sha512-/THyiqyQAP9AfARo4pF+aCGcyiQ94tX/Is2I7HofNRqoYLgN1PBoOWu2/zTA5zMxzP5EFutMtWtGAFRKUe961Q==" }, + "@types/lodash-es": { + "version": "4.17.12", + "resolved": "https://registry.npmjs.org/@types/lodash-es/-/lodash-es-4.17.12.tgz", + "integrity": "sha512-0NgftHUcV4v34VhXm8QBSftKVXtbkBG3ViCjs6+eJ5a6y6Mi/jiFGPc1sC7QK+9BFhWrURE3EOggmWaSxL9OzQ==", + "requires": { + "@types/lodash": "*" + } + }, "@types/mdx": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.5.tgz", - "integrity": "sha512-76CqzuD6Q7LC+AtbPqrvD9AqsN0k8bsYo2bM2J8pmNldP1aIPAbzUQ7QbobyXL4eLr1wK5x8FZFe8eF/ubRuBg==", + "version": "2.0.12", + "resolved": "https://registry.npmjs.org/@types/mdx/-/mdx-2.0.12.tgz", + "integrity": "sha512-H9VZ9YqE+H28FQVchC83RCs5xQ2J7mAAv6qdDEaWmXEVl3OpdH+xfrSUzQ1lp7U7oSTRZ0RvW08ASPJsYBi7Cw==", "dev": true }, "@types/mime": { @@ -42195,15 +41569,9 @@ "dev": true }, "@types/mime-types": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.1.tgz", - "integrity": "sha512-vXOTGVSLR2jMw440moWTC7H19iUyLtP3Z1YTj7cSsubOICinjMxFeb/V57v9QdyyPGbbWolUFSSmSiRSn94tFw==", - "dev": true - }, - "@types/minimatch": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-5.1.2.tgz", - "integrity": "sha512-K0VQKziLUWkVKiRVrx4a40iPaxTUefQmjtkQofBkYRcoaaL/8rhwDWww9qWbrgicNOgnpIsMxyNIUM4+n6dUIA==", + "version": "2.1.4", + "resolved": "https://registry.npmjs.org/@types/mime-types/-/mime-types-2.1.4.tgz", + "integrity": "sha512-lfU4b34HOri+kAY5UheuFMWPDOI+OPceBSHZKp69gEyTL/mmJ4cnU6Y/rlme3UL3GyOn6Y42hyIEw0/q8sWx5w==", "dev": true }, "@types/minimist": { @@ -42225,13 +41593,26 @@ "dev": true }, "@types/node-fetch": { - "version": "2.6.2", - "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.2.tgz", - "integrity": "sha512-DHqhlq5jeESLy19TYhLakJ07kNumXWjcDdxXsLUMJZ6ue8VZJj4kLPQVE/2mdHh3xZziNF1xppu5lwmS53HR+A==", + "version": "2.6.11", + "resolved": "https://registry.npmjs.org/@types/node-fetch/-/node-fetch-2.6.11.tgz", + "integrity": "sha512-24xFj9R5+rfQJLRyM56qh+wnVSYhyXC2tkoBndtY0U+vubqNsYXGjufB2nn8Q6gt0LrARwL6UBtMCSVCwl4B1g==", "dev": true, "requires": { "@types/node": "*", - "form-data": "^3.0.0" + "form-data": "^4.0.0" + }, + "dependencies": { + "form-data": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/form-data/-/form-data-4.0.0.tgz", + "integrity": "sha512-ETEklSGi5t0QMZuiXoA/Q6vcnxcLQP5vdugSpuAyi6SVGi2clPPp+xgEhuMaHC+zGgn31Kd235W35f7Hykkaww==", + "dev": true, + "requires": { + "asynckit": "^0.4.0", + "combined-stream": "^1.0.8", + "mime-types": "^2.1.12" + } + } } }, "@types/normalize-package-data": { @@ -42240,21 +41621,15 @@ "integrity": "sha512-Gj7cI7z+98M282Tqmp2K5EIsoouUEzbBJhQQzDE3jSIRk6r9gsz0oUokqIUR4u1R3dMHo0pDHM7sNOHyhulypw==", "dev": true }, - "@types/npmlog": { - "version": "4.1.4", - "resolved": "https://registry.npmjs.org/@types/npmlog/-/npmlog-4.1.4.tgz", - "integrity": "sha512-WKG4gTr8przEZBiJ5r3s8ZIAoMXNbOgQ+j/d5O4X3x6kZJRLNvyUJuUK/KoG3+8BaOHPhp2m7WC6JKKeovDSzQ==", - "dev": true - }, "@types/offscreencanvas": { "version": "2019.7.0", "resolved": "https://registry.npmjs.org/@types/offscreencanvas/-/offscreencanvas-2019.7.0.tgz", "integrity": "sha512-PGcyveRIpL1XIqK8eBsmRBt76eFgtzuPiSTyKHZxnGemp2yzGzWpjYKAfK3wIMiU7eH+851yEpiuP8JZerTmWg==" }, "@types/parse-json": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.0.tgz", - "integrity": "sha512-//oorEZjL6sbPcKUaCdIGlIUeH26mgzimjBB77G6XRgnDl/L5wOnpyBGRe/Mmf5CVW3PwEBE1NjiMZ/ssFh4wA==", + "version": "4.0.2", + "resolved": "https://registry.npmjs.org/@types/parse-json/-/parse-json-4.0.2.tgz", + "integrity": "sha512-dISoDXWWQwUquiKsyZ4Ng+HX2KsPL7LyHKHQwgGFEA3IaKac4Obd+h2a/a6waisAoepJlBcx9paWqjA8/HVjCw==", "dev": true }, "@types/prettier": { @@ -42337,6 +41712,12 @@ "@types/react-router": "*" } }, + "@types/resolve": { + "version": "1.20.6", + "resolved": "https://registry.npmjs.org/@types/resolve/-/resolve-1.20.6.tgz", + "integrity": "sha512-A4STmOXPhMUtHH+S6ymgE2GiBSMqf4oTvcQZMcHzokuTLVYzXTB8ttjcgxOVaAp2lGwEdzZ0J+cRbbeevQj1UQ==", + "dev": true + }, "@types/retry": { "version": "0.12.0", "resolved": "https://registry.npmjs.org/@types/retry/-/retry-0.12.0.tgz", @@ -42395,11 +41776,28 @@ "integrity": "sha512-F5DIZ36YVLE+PN+Zwws4kJogq47hNgX3Nx6WyDJ3kcplxyke3XIzB8uK5n/Lpm1HBsbGzd6nmGehL8cPekP+Tg==" }, "@types/unist": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.6.tgz", - "integrity": "sha512-PBjIUxZHOuj0R15/xuwJYjFi+KZdNFrehocChv4g5hu6aFroHue8m0lBP0POdK2nKzbw0cgV1mws8+V/JAcEkQ==", + "version": "2.0.10", + "resolved": "https://registry.npmjs.org/@types/unist/-/unist-2.0.10.tgz", + "integrity": "sha512-IfYcSBWE3hLpBg8+X2SEa8LVkJdJEkT2Ese2aaLs3ptGdVtABxndrMaxuFlQ1qdFf9Q5rDvDpxI3WwgvKFAsQA==", "dev": true }, + "@types/uuid": { + "version": "9.0.8", + "resolved": "https://registry.npmjs.org/@types/uuid/-/uuid-9.0.8.tgz", + "integrity": "sha512-jg+97EGIcY9AGHJJRaaPVgetKDsrTgbRjQ5Msgjh/DQKEFl0DtyRr/VCOyD1T2R1MNeWPK/u7JoGhlDZnKBAfA==", + "dev": true + }, + "@types/webpack": { + "version": "5.28.5", + "resolved": "https://registry.npmjs.org/@types/webpack/-/webpack-5.28.5.tgz", + "integrity": "sha512-wR87cgvxj3p6D0Crt1r5avwqffqPXUkNlnQ1mjU93G7gCuFjufZR4I6j8cz5g1F1tTYpfOOFvly+cmIQwL9wvw==", + "dev": true, + "requires": { + "@types/node": "*", + "tapable": "^2.2.0", + "webpack": "^5" + } + }, "@types/ws": { "version": "8.5.3", "resolved": "https://registry.npmjs.org/@types/ws/-/ws-8.5.3.tgz", @@ -42409,6 +41807,15 @@ "@types/node": "*" } }, + "@types/yargs": { + "version": "17.0.32", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-17.0.32.tgz", + "integrity": "sha512-xQ67Yc/laOG5uMfX/093MRlGGCIBzZMarVa+gfNKJxWAIgykYpVGkBdbqEzGDDfCrVUj6Hiff4mTZ5BA6TmAog==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, "@types/yargs-parser": { "version": "21.0.0", "resolved": "https://registry.npmjs.org/@types/yargs-parser/-/yargs-parser-21.0.0.tgz", @@ -42732,6 +42139,42 @@ "tslib": "^2.4.0" } }, + "@yarnpkg/fslib": { + "version": "2.10.3", + "resolved": "https://registry.npmjs.org/@yarnpkg/fslib/-/fslib-2.10.3.tgz", + "integrity": "sha512-41H+Ga78xT9sHvWLlFOZLIhtU6mTGZ20pZ29EiZa97vnxdohJD2AF42rCoAoWfqUz486xY6fhjMH+DYEM9r14A==", + "dev": true, + "requires": { + "@yarnpkg/libzip": "^2.3.0", + "tslib": "^1.13.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, + "@yarnpkg/libzip": { + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/@yarnpkg/libzip/-/libzip-2.3.0.tgz", + "integrity": "sha512-6xm38yGVIa6mKm/DUCF2zFFJhERh/QWp1ufm4cNUvxsONBmfPg8uZ9pZBdOmF6qFGr/HlT6ABBkCSx/dlEtvWg==", + "dev": true, + "requires": { + "@types/emscripten": "^1.39.6", + "tslib": "^1.13.0" + }, + "dependencies": { + "tslib": { + "version": "1.14.1", + "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.14.1.tgz", + "integrity": "sha512-Xni35NKzjgMrwevysHTCArtLDpPvye8zV/0E4EyYn43P7/7qvQwPh9BGkHewbMulVntbigmcT7rdX3BNo9wRJg==", + "dev": true + } + } + }, "abab": { "version": "2.0.6", "resolved": "https://registry.npmjs.org/abab/-/abab-2.0.6.tgz", @@ -42857,13 +42300,14 @@ } }, "ajv": { - "version": "6.12.6", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", - "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "version": "8.12.0", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.12.0.tgz", + "integrity": "sha512-sRu1kpcO9yLtYxBKvqfTeh9KzZEwO3STyX1HT+4CaDzC6HpTGYhIhPIzj9XuKU7KYDwnaeh5hcOwjy1QuJzBPA==", + "dev": true, "requires": { "fast-deep-equal": "^3.1.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", + "json-schema-traverse": "^1.0.0", + "require-from-string": "^2.0.2", "uri-js": "^4.2.2" } }, @@ -42874,34 +42318,16 @@ "dev": true, "requires": { "ajv": "^8.0.0" - }, - "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - } } }, "ajv-keywords": { - "version": "3.5.2", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", - "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "version": "5.1.0", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", + "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", "dev": true, - "requires": {} + "requires": { + "fast-deep-equal": "^3.1.3" + } }, "ansi-align": { "version": "3.0.1", @@ -42985,13 +42411,17 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/aproba/-/aproba-2.0.0.tgz", "integrity": "sha512-lYe4Gx7QT+MKGbDsA+Z+he/Wtef0BiwDOlK/XkBrdfsh9J/jPPXbX0tE9x9cl27Tmu5gg3QUbUrQYa/y+KOHPQ==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "are-we-there-yet": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-2.0.0.tgz", "integrity": "sha512-Ci/qENmwHnsYo9xKIcUJN5LeDKdJ6R1Z1j9V/J5wyq8nh/mYPEpIKJbBZXtZjG04HiK7zV/p6Vs9952MrMeUIw==", "dev": true, + "optional": true, + "peer": true, "requires": { "delegates": "^1.0.0", "readable-stream": "^3.6.0" @@ -43004,12 +42434,18 @@ "dev": true }, "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", + "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", + "dev": true + }, + "aria-hidden": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/aria-hidden/-/aria-hidden-1.2.4.tgz", + "integrity": "sha512-y+CcFFwelSXpLZk/7fMB2mUbGtX9lKycf1MWJ7CaTIERyitVlyQx6C+sxcROU2BAJ24OiZyK+8wj2i8AlBoS3A==", "dev": true, "requires": { - "sprintf-js": "~1.0.2" + "tslib": "^2.0.0" } }, "aria-query": { @@ -43144,6 +42580,19 @@ "safer-buffer": "~2.1.0" } }, + "assert": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/assert/-/assert-2.1.0.tgz", + "integrity": "sha512-eLHpSK/Y4nhMJ07gDaAzoX/XAKS8PSaojml3M0DM4JpV1LAi5JOJ/p6H/XWrl8L+DzVEvVCW1z3vWAaB9oTsQw==", + "dev": true, + "requires": { + "call-bind": "^1.0.2", + "is-nan": "^1.3.2", + "object-is": "^1.1.5", + "object.assign": "^4.1.4", + "util": "^0.12.5" + } + }, "assert-plus": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", @@ -43310,19 +42759,6 @@ "loader-utils": "^2.0.0", "make-dir": "^3.1.0", "schema-utils": "^2.6.5" - }, - "dependencies": { - "find-cache-dir": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", - "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", - "dev": true, - "requires": { - "commondir": "^1.0.1", - "make-dir": "^3.0.2", - "pkg-dir": "^4.1.0" - } - } } }, "babel-plugin-add-react-displayname": { @@ -43344,70 +42780,42 @@ "test-exclude": "^6.0.0" } }, - "babel-plugin-named-exports-order": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/babel-plugin-named-exports-order/-/babel-plugin-named-exports-order-0.0.2.tgz", - "integrity": "sha512-OgOYHOLoRK+/mvXU9imKHlG6GkPLYrUCvFXG/CM93R/aNNO8pOOF4aS+S8CCHMDQoNSeiOYEZb/G6RwL95Jktw==", - "dev": true - }, "babel-plugin-polyfill-corejs2": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.3.3.tgz", - "integrity": "sha512-8hOdmFYFSZhqg2C/JgLUQ+t52o5nirNwaWM2B9LWteozwIvM14VSwdsCAUET10qT+kmySAlseadmfeeSWFCy+Q==", + "version": "0.4.10", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs2/-/babel-plugin-polyfill-corejs2-0.4.10.tgz", + "integrity": "sha512-rpIuu//y5OX6jVU+a5BCn1R5RSZYWAl2Nar76iwaOdycqb6JPxediskWFMMl7stfwNJR4b7eiQvh5fB5TEQJTQ==", "dev": true, "requires": { - "@babel/compat-data": "^7.17.7", - "@babel/helper-define-polyfill-provider": "^0.3.3", - "semver": "^6.1.1" + "@babel/compat-data": "^7.22.6", + "@babel/helper-define-polyfill-provider": "^0.6.1", + "semver": "^6.3.1" }, "dependencies": { "semver": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.0.tgz", - "integrity": "sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw==", + "version": "6.3.1", + "resolved": "https://registry.npmjs.org/semver/-/semver-6.3.1.tgz", + "integrity": "sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA==", "dev": true } } }, "babel-plugin-polyfill-corejs3": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.6.0.tgz", - "integrity": "sha512-+eHqR6OPcBhJOGgsIar7xoAB1GcSwVUA3XjAd7HJNzOXT4wv6/H7KIdA/Nc60cvUlDbKApmqNvD1B1bzOt4nyA==", + "version": "0.10.4", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-corejs3/-/babel-plugin-polyfill-corejs3-0.10.4.tgz", + "integrity": "sha512-25J6I8NGfa5YkCDogHRID3fVCadIR8/pGl1/spvCkzb6lVn6SR3ojpx9nOn9iEBcUsjY24AmdKm5khcfKdylcg==", "dev": true, "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3", - "core-js-compat": "^3.25.1" + "@babel/helper-define-polyfill-provider": "^0.6.1", + "core-js-compat": "^3.36.1" } }, "babel-plugin-polyfill-regenerator": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.4.1.tgz", - "integrity": "sha512-NtQGmyQDXjQqQ+IzRkBVwEOz9lQ4zxAQZgoAYEtU9dJjnl1Oc98qnN7jcp+bE7O7aYzVpavXE3/VKXNzUbh7aw==", + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/babel-plugin-polyfill-regenerator/-/babel-plugin-polyfill-regenerator-0.6.1.tgz", + "integrity": "sha512-JfTApdE++cgcTWjsiCQlLyFBMbTUft9ja17saCc93lgV33h4tuCVj7tlvu//qpLwaG+3yEz7/KhahGrUMkVq9g==", "dev": true, "requires": { - "@babel/helper-define-polyfill-provider": "^0.3.3" - } - }, - "babel-plugin-react-docgen": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/babel-plugin-react-docgen/-/babel-plugin-react-docgen-4.2.1.tgz", - "integrity": "sha512-UQ0NmGHj/HAqi5Bew8WvNfCk8wSsmdgNd8ZdMjBCICtyCJCq9LiqgqvjCYe570/Wg7AQArSq1VQ60Dd/CHN7mQ==", - "dev": true, - "requires": { - "ast-types": "^0.14.2", - "lodash": "^4.17.15", - "react-docgen": "^5.0.0" - }, - "dependencies": { - "ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", - "dev": true, - "requires": { - "tslib": "^2.0.1" - } - } + "@babel/helper-define-polyfill-provider": "^0.6.1" } }, "babel-preset-current-node-syntax": { @@ -43486,30 +42894,18 @@ "dev": true }, "better-opn": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-2.1.1.tgz", - "integrity": "sha512-kIPXZS5qwyKiX/HcRvDYfmBQUa8XP17I0mYZZ0y4UhpYOSvtsLHDYqmomS+Mj20aDvD3knEiQ0ecQy2nhio3yA==", + "version": "3.0.2", + "resolved": "https://registry.npmjs.org/better-opn/-/better-opn-3.0.2.tgz", + "integrity": "sha512-aVNobHnJqLiUelTaHat9DZ1qM2w0C0Eym4LPI/3JxOnSokGVdsl1T1kN7TFvsEAD8G47A6VKQ0TVHqbBnYMJlQ==", "dev": true, "requires": { - "open": "^7.0.3" - }, - "dependencies": { - "open": { - "version": "7.4.2", - "resolved": "https://registry.npmjs.org/open/-/open-7.4.2.tgz", - "integrity": "sha512-MVHddDVweXZF3awtlAS+6pgKLlm/JgxZ90+/NBurBoQctVOOB/zDdVjcyPzQ+0laDGbsWgrRkflI65sQeOgT9Q==", - "dev": true, - "requires": { - "is-docker": "^2.0.0", - "is-wsl": "^2.1.1" - } - } + "open": "^8.0.4" } }, "big-integer": { - "version": "1.6.51", - "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.51.tgz", - "integrity": "sha512-GPEid2Y9QU1Exl1rpO9B2IPJGHPSupF5GnVIP0blYvNOMer2bTvSWs1jGOUg04hTmu67nmLsQ9TBo1puaotBHg==", + "version": "1.6.52", + "resolved": "https://registry.npmjs.org/big-integer/-/big-integer-1.6.52.tgz", + "integrity": "sha512-QxD8cf2eVqJOOz63z6JIN9BzvVs/dlySa5HGSBH5xtR8dPteIRQnBxxKqkNTiT6jbDTF6jAfrd4oMcND9RGbQg==", "dev": true }, "big.js": { @@ -43600,70 +42996,6 @@ "integrity": "sha512-JZOSA7Mo9sNGB8+UjSgzdLtokWAky1zbztM3WRLCbZ70/3cTANmQmOdR7y2g+J0e2WXywy1yS468tY+IruqEww==", "dev": true }, - "boxen": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/boxen/-/boxen-5.1.2.tgz", - "integrity": "sha512-9gYgQKXx+1nP8mP7CzFyaUARhg7D3n1dF/FnErWmu9l6JvGpNUN278h0aSb+QjoiKSWG+iZ3uHrcqk0qrY9RQQ==", - "dev": true, - "requires": { - "ansi-align": "^3.0.0", - "camelcase": "^6.2.0", - "chalk": "^4.1.0", - "cli-boxes": "^2.2.1", - "string-width": "^4.2.2", - "type-fest": "^0.20.2", - "widest-line": "^3.1.0", - "wrap-ansi": "^7.0.0" - }, - "dependencies": { - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "camelcase": { - "version": "6.3.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-6.3.0.tgz", - "integrity": "sha512-Gmy6FhYlCY7uOElZUSbxo2UCDH8owEk996gkbrpsgGtrJLM3J7jGxl9Ic7Qwwj4ivOE5AWZWRMecDdF7hqGjFA==", - "dev": true - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - }, - "type-fest": { - "version": "0.20.2", - "resolved": "https://registry.npmjs.org/type-fest/-/type-fest-0.20.2.tgz", - "integrity": "sha512-Ne+eE4r0/iWnpAxD852z3A+N0Bt5RN//NjJwRd2VFHEmrywxf5vsZlh4R6lixl6B+wz/8d+maTSAkN1FIkI3LQ==", - "dev": true - } - } - }, "bplist-parser": { "version": "0.2.0", "resolved": "https://registry.npmjs.org/bplist-parser/-/bplist-parser-0.2.0.tgz", @@ -43704,16 +43036,25 @@ "integrity": "sha512-9o5UecI3GhkpM6DrXr69PblIuWxPKk9Y0jHBRhdocZ2y7YECBFCsHm79Pr3OyR2AvjhDkabFJaDJMYRazHgsow==", "dev": true }, + "browserify-zlib": { + "version": "0.1.4", + "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.1.4.tgz", + "integrity": "sha512-19OEpq7vWgsH6WkvkBJQDFvJS1uPcbFOQ4v9CU839dO+ZZXUZO6XpE6hNCqvlIIj+4fZvRiJ6DsAQ382GwiyTQ==", + "dev": true, + "requires": { + "pako": "~0.2.0" + } + }, "browserslist": { - "version": "4.21.5", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.21.5.tgz", - "integrity": "sha512-tUkiguQGW7S3IhB7N+c2MV/HZPSCPAAiYBZXLsBhFB/PCy6ZKKsZrmBayHV9fdGV/ARIfJ14NkxKzRDjvp7L6w==", + "version": "4.23.0", + "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-4.23.0.tgz", + "integrity": "sha512-QW8HiM1shhT2GuzkvklfjcKDiWFXHOeFCIA/huJPwHsslwcydgk7X+z2zXpEijP98UCY7HbubZt5J2Zgvf0CaQ==", "dev": true, "requires": { - "caniuse-lite": "^1.0.30001449", - "electron-to-chromium": "^1.4.284", - "node-releases": "^2.0.8", - "update-browserslist-db": "^1.0.10" + "caniuse-lite": "^1.0.30001587", + "electron-to-chromium": "^1.4.668", + "node-releases": "^2.0.14", + "update-browserslist-db": "^1.0.13" } }, "bser": { @@ -43842,82 +43183,6 @@ "integrity": "sha512-pMhOfFDPiv9t5jjIXkHosWmkSyQbvsgEVNkz0ERHbuLh2T/7j4Mqqpz523Fe8MVY89KC6Sh/QfS2sM+SjgFDcw==", "dev": true }, - "c8": { - "version": "7.13.0", - "resolved": "https://registry.npmjs.org/c8/-/c8-7.13.0.tgz", - "integrity": "sha512-/NL4hQTv1gBL6J6ei80zu3IiTrmePDKXKXOTLpHvcIWZTVYQlDhVWjjWvkhICylE8EwwnMVzDZugCvdx0/DIIA==", - "dev": true, - "requires": { - "@bcoe/v8-coverage": "^0.2.3", - "@istanbuljs/schema": "^0.1.3", - "find-up": "^5.0.0", - "foreground-child": "^2.0.0", - "istanbul-lib-coverage": "^3.2.0", - "istanbul-lib-report": "^3.0.0", - "istanbul-reports": "^3.1.4", - "rimraf": "^3.0.2", - "test-exclude": "^6.0.0", - "v8-to-istanbul": "^9.0.0", - "yargs": "^16.2.0", - "yargs-parser": "^20.2.9" - }, - "dependencies": { - "find-up": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-5.0.0.tgz", - "integrity": "sha512-78/PXT1wlLLDgTzDs7sjq9hzz0vXD+zn+7wypEe4fXQxCmdmqfGsEPQxmiCSQI3ajFV91bVSsvNtrJRiW6nGng==", - "dev": true, - "requires": { - "locate-path": "^6.0.0", - "path-exists": "^4.0.0" - } - }, - "locate-path": { - "version": "6.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-6.0.0.tgz", - "integrity": "sha512-iPZK6eYjbxRu3uB4/WZ3EsEIMJFMqAoopl3R+zuq0UjcAm/MO6KCweDgPfP3elTztoKP3KtnVHxTn2NHBSDVUw==", - "dev": true, - "requires": { - "p-locate": "^5.0.0" - } - }, - "p-limit": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/p-limit/-/p-limit-3.1.0.tgz", - "integrity": "sha512-TYOanM3wGwNGsZN2cVTYPArw454xnXj5qmWF1bEoAc4+cU/ol7GVh7odevjp1FNHduHc3KZMcFduxU5Xc6uJRQ==", - "dev": true, - "requires": { - "yocto-queue": "^0.1.0" - } - }, - "p-locate": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-5.0.0.tgz", - "integrity": "sha512-LaNjtRWUBY++zB5nE/NwcaoMylSPk+S+ZHNB1TzdbMJMny6dynpAGt7X/tl/QYq3TIeE6nxHppbo2LGymrG5Pw==", - "dev": true, - "requires": { - "p-limit": "^3.0.2" - } - }, - "v8-to-istanbul": { - "version": "9.1.0", - "resolved": "https://registry.npmjs.org/v8-to-istanbul/-/v8-to-istanbul-9.1.0.tgz", - "integrity": "sha512-6z3GW9x8G1gd+JIIgQQQxXuiJtCXeAjp6RaPEPLv62mH3iPHPxV6W3robxtCzNErRo6ZwTmzWhsbNvjyEBKzKA==", - "dev": true, - "requires": { - "@jridgewell/trace-mapping": "^0.3.12", - "@types/istanbul-lib-coverage": "^2.0.1", - "convert-source-map": "^1.6.0" - } - }, - "yargs-parser": { - "version": "20.2.9", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-20.2.9.tgz", - "integrity": "sha512-y11nGElTIV+CT3Zv9t7VKl+Q3hTQoT9a1Qzezhhl6Rp21gJ/IVTW7Z3y9EWXhuUBC2Shnf+DX0antecpAwSP8w==", - "dev": true - } - } - }, "cacache": { "version": "15.3.0", "resolved": "https://registry.npmjs.org/cacache/-/cacache-15.3.0.tgz", @@ -44048,10 +43313,15 @@ "quick-lru": "^4.0.1" } }, + "can-use-dom": { + "version": "0.1.0", + "resolved": "https://registry.npmjs.org/can-use-dom/-/can-use-dom-0.1.0.tgz", + "integrity": "sha512-ceOhN1DL7Y4O6M0j9ICgmTYziV89WMd96SvSl0REd8PMgrY0B/WBOPoed5S1KUmJqXgUXh8gzSe6E3ae27upsQ==" + }, "caniuse-lite": { - "version": "1.0.30001451", - "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001451.tgz", - "integrity": "sha512-XY7UbUpGRatZzoRft//5xOa69/1iGJRBlrieH6QYrkKLIFn3m7OVEJ81dSrKoy2BnKsdbX5cLrOispZNYo9v2w==", + "version": "1.0.30001605", + "resolved": "https://registry.npmjs.org/caniuse-lite/-/caniuse-lite-1.0.30001605.tgz", + "integrity": "sha512-nXwGlFWo34uliI9z3n6Qc0wZaf7zaZWA1CPZ169La5mV3I/gem7bst0vr5XQH5TJXZIMfDeZyOrZnSlVzKxxHQ==", "dev": true }, "case-sensitive-paths-webpack-plugin": { @@ -44154,9 +43424,9 @@ } }, "chokidar": { - "version": "3.5.3", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.5.3.tgz", - "integrity": "sha512-Dr3sfKRP6oTcjf2JmUmFJfeVMvXBdegxB0iVQ5eb2V10uFJUCAS8OByZdVAyVb8xXNz3GjjTgj9kLWsZTqE6kw==", + "version": "3.6.0", + "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-3.6.0.tgz", + "integrity": "sha512-7VT13fmjotKpGipCW9JEQAusEPE+Ei8nl6/g4FBAmIm0GOOLMua9NDDo/DWp0ZAxCr3cPq5ZpBqmPAQgDda2Pw==", "dev": true, "requires": { "anymatch": "~3.1.2", @@ -44204,10 +43474,27 @@ "integrity": "sha512-UZK3NBx2Mca+b5LsG7bY183pHWt5Y1xts4P3Pz7ENTwGVnJOUWbRb3ocjvX7hx9tq/yTAdclXm9sZ38gNuem4A==", "dev": true }, + "citty": { + "version": "0.1.6", + "resolved": "https://registry.npmjs.org/citty/-/citty-0.1.6.tgz", + "integrity": "sha512-tskPPKEs8D2KPafUypv2gxwJP8h/OaJmC82QQGGDQcHvXX43xF2VDACcJVmZ0EuSxkpO9Kc4MlrA3q0+FG58AQ==", + "dev": true, + "requires": { + "consola": "^3.2.3" + }, + "dependencies": { + "consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true + } + } + }, "cjs-module-lexer": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.2.tgz", - "integrity": "sha512-cOU9usZw8/dXIXKtwa8pM0OTJQuJkxMN6w30csNRUerHfeQ5R6U3kkU/FtJeIf3M202OHfY2U8ccInBG7/xogA==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/cjs-module-lexer/-/cjs-module-lexer-1.2.3.tgz", + "integrity": "sha512-0TNiGstbQmCFwt4akjjBg5pLRTSyj/PkWQ1ZoO2zntmg9yLqSRxwEa4iCfQLGjqhiqBfOJa7W/E8wfGrTDmlZQ==", "dev": true }, "class-transformer": { @@ -44230,12 +43517,6 @@ "integrity": "sha512-4diC9HaTE+KRAMWhDhrGOECgWZxoevMc5TlkObMqNSsVU62PYzXZ/SMTjzyGAFF1YusgxGcSWTEXBhp0CPwQ1A==", "dev": true }, - "cli-boxes": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/cli-boxes/-/cli-boxes-2.2.1.tgz", - "integrity": "sha512-y4coMcylgSCdVinjiDBuR8PCC2bLjyGTwEmPb9NHR/QaNU6EUOXcTY/s6VjGMD6ENSEaeQYHCY0GNGS5jfMwPw==", - "dev": true - }, "cli-cursor": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/cli-cursor/-/cli-cursor-3.1.0.tgz", @@ -44252,9 +43533,9 @@ "dev": true }, "cli-table3": { - "version": "0.6.3", - "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.3.tgz", - "integrity": "sha512-w5Jac5SykAeZJKntOxJCrm63Eg5/4dhMWIcuTbo9rpE+brgaSZo0RuNJZeOyMgsUdhDeojvgyQLmjI+K50ZGyg==", + "version": "0.6.4", + "resolved": "https://registry.npmjs.org/cli-table3/-/cli-table3-0.6.4.tgz", + "integrity": "sha512-Lm3L0p+/npIQWNIiyF/nAn7T5dnOwR3xNTHXYEBFBFVPXzCVNZ5lqEC/1eo/EVfpDsQ1I+TX4ORPQgp+UI0CRw==", "dev": true, "requires": { "@colors/colors": "1.5.0", @@ -44411,7 +43692,9 @@ "version": "1.1.3", "resolved": "https://registry.npmjs.org/color-support/-/color-support-1.1.3.tgz", "integrity": "sha512-qiBjkpbMLO/HL68y+lh4q0/O1MZFj2RX6X/KmMa3+gJD3z+WwI1ZzDHysvqHGS3mP6mznPckpXmw1nI9cJjyRg==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "colord": { "version": "2.9.3", @@ -44655,7 +43938,9 @@ "version": "1.1.0", "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", "integrity": "sha512-ty/fTekppD2fIwRvnZAVdeOiGd1c7YXEixbgJTNzqcxJWKQnjJ/V1bNEEE6hygpM3WjwHFUVK6HTjWSzV4a8sQ==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "constant-case": { "version": "2.0.0", @@ -44667,6 +43952,12 @@ "upper-case": "^1.1.1" } }, + "constants-browserify": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", + "integrity": "sha512-xFxOwqIzR/e1k1gLiWEophSCMqXcwVHIH7akf7b/vxcUeGunlj3hvZaaqxwHsTgn+IndtkQJgSztIDWeumWJDQ==", + "dev": true + }, "content-disposition": { "version": "0.5.4", "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.4.tgz", @@ -44749,12 +44040,12 @@ "dev": true }, "core-js-compat": { - "version": "3.27.2", - "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.27.2.tgz", - "integrity": "sha512-welaYuF7ZtbYKGrIy7y3eb40d37rG1FvzEOfe7hSLd2iD6duMDqUhRfSvCGyC46HhR6Y8JXXdZ2lnRUMkPBpvg==", + "version": "3.36.1", + "resolved": "https://registry.npmjs.org/core-js-compat/-/core-js-compat-3.36.1.tgz", + "integrity": "sha512-Dk997v9ZCt3X/npqzyGdTlq6t7lDBhZwGvV94PKzDArjp7BTRm7WlDAXYd/OWdeFHO8OChQYRJNJvUCqCbrtKA==", "dev": true, "requires": { - "browserslist": "^4.21.4" + "browserslist": "^4.23.0" } }, "core-js-pure": { @@ -44778,23 +44069,6 @@ "js-yaml": "^4.1.0", "parse-json": "^5.2.0", "path-type": "^4.0.0" - }, - "dependencies": { - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - } } }, "create-require": { @@ -45159,9 +44433,9 @@ } }, "defu": { - "version": "6.1.2", - "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.2.tgz", - "integrity": "sha512-+uO4+qr7msjNNWKYPHqN/3+Dx3NFkmIzayk2L1MyZQlvgZb/J1A0fo410dpKrN2SnqFjt8n4JL8fDJE0wIgjFQ==", + "version": "6.1.4", + "resolved": "https://registry.npmjs.org/defu/-/defu-6.1.4.tgz", + "integrity": "sha512-mEQCMmwJu317oSz8CwdIOdwf3xMif1ttiM8LTufzc3g6kR+9Pe236twL8j3IYT1F7GfRgGcW6MWxzZjLIkuHIg==", "dev": true }, "degenerator": { @@ -45217,7 +44491,9 @@ "version": "1.0.0", "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", "integrity": "sha512-bd2L678uiWATM6m5Z1VzNCErI3jiGzt6HGY8OVICs40JQq/HALfbyNJmp0UDakEY4pMMaN0Ly5om/B1VI/+xfQ==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "depd": { "version": "2.0.0", @@ -45266,6 +44542,12 @@ "integrity": "sha512-T0NIuQpnTvFDATNuHN5roPwSBG83rFsuO+MXXH9/3N1eFbn4wcPjttvjMLEPWJ0RGUYgQE7cGgS3tNxbqCGM7g==", "dev": true }, + "detect-node-es": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/detect-node-es/-/detect-node-es-1.1.0.tgz", + "integrity": "sha512-ypdmJU/TbBby2Dxibuv7ZLW3Bs1QEmM7nHjEANfohJLvE0XVujisn1qPJcZxg+qDucsr+bP6fLD1rPS3AhJ7EQ==", + "dev": true + }, "detect-package-manager": { "version": "2.0.1", "resolved": "https://registry.npmjs.org/detect-package-manager/-/detect-package-manager-2.0.1.tgz", @@ -45442,6 +44724,44 @@ "dev": true, "requires": {} }, + "duplexify": { + "version": "3.7.1", + "resolved": "https://registry.npmjs.org/duplexify/-/duplexify-3.7.1.tgz", + "integrity": "sha512-07z8uv2wMyS51kKhD1KsdXJg5WQ6t93RneqRxUHnskXVtlYYkLqM0gqStQZ3pj073g687jPCHrqNfCzawLYh5g==", + "dev": true, + "requires": { + "end-of-stream": "^1.0.0", + "inherits": "^2.0.1", + "readable-stream": "^2.0.0", + "stream-shift": "^1.0.0" + }, + "dependencies": { + "readable-stream": { + "version": "2.3.8", + "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.8.tgz", + "integrity": "sha512-8p0AUk4XODgIewSi0l8Epjs+EVnWiK7NoDIEGU0HhE7+ZyY8D1IMY7odu5lRrFXGg71L15KG8QrPmum45RTtdA==", + "dev": true, + "requires": { + "core-util-is": "~1.0.0", + "inherits": "~2.0.3", + "isarray": "~1.0.0", + "process-nextick-args": "~2.0.0", + "safe-buffer": "~5.1.1", + "string_decoder": "~1.1.1", + "util-deprecate": "~1.0.1" + } + }, + "string_decoder": { + "version": "1.1.1", + "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", + "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", + "dev": true, + "requires": { + "safe-buffer": "~5.1.0" + } + } + } + }, "earcut": { "version": "2.2.4", "resolved": "https://registry.npmjs.org/earcut/-/earcut-2.2.4.tgz", @@ -45478,9 +44798,9 @@ } }, "electron-to-chromium": { - "version": "1.4.293", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.293.tgz", - "integrity": "sha512-h7vBlhC83NsgC9UO3LOZx91xgstIrHk5iqMbZgnEArL5rHTM6HfsUZhnwb3oRnNetXM1741kB9SO7x9jLshz5A==", + "version": "1.4.726", + "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.4.726.tgz", + "integrity": "sha512-xtjfBXn53RORwkbyKvDfTajtnTp0OJoPOIBzXvkNbb7+YYvCHJflba3L7Txyx/6Fov3ov2bGPr/n5MTixmPhdQ==", "dev": true }, "emittery": { @@ -45758,12 +45078,6 @@ "is-symbol": "^1.0.2" } }, - "es6-object-assign": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/es6-object-assign/-/es6-object-assign-1.1.0.tgz", - "integrity": "sha512-MEl9uirslVwqQU369iHNWZXsI8yaZYGg/D65aOgZkeyFJwHYSxilf7rQzXKI7DdDuBPrBXbfk3sl9hJhmd5AUw==", - "dev": true - }, "esbuild": { "version": "0.20.2", "resolved": "https://registry.npmjs.org/esbuild/-/esbuild-0.20.2.tgz", @@ -46142,9 +45456,9 @@ "dev": true }, "esbuild-register": { - "version": "3.4.2", - "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.4.2.tgz", - "integrity": "sha512-kG/XyTDyz6+YDuyfB9ZoSIOOmgyFCH+xPRtsCa8W85HLRV5Csp+o3jWVbOSHgSLfyLc5DmP+KFDNwty4mEjC+Q==", + "version": "3.5.0", + "resolved": "https://registry.npmjs.org/esbuild-register/-/esbuild-register-3.5.0.tgz", + "integrity": "sha512-+4G/XmakeBAsvJuDugJvtyF1x+XJT4FMocynNpxrvEBViirpfUn2PgNpCHedfWhF4WokNsO/OvMKrmJOIJsI5A==", "dev": true, "requires": { "debug": "^4.3.4" @@ -46237,6 +45551,18 @@ "text-table": "^0.2.0" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -46246,12 +45572,6 @@ "color-convert": "^2.0.1" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -46303,14 +45623,11 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true }, "locate-path": { "version": "6.0.0", @@ -46834,17 +46151,6 @@ "integrity": "sha512-MMdARuVEQziNTeJD8DgMqmhwR11BRQ/cBP+pLtYdSTnf3MIO8fFeiINEbX36ZdNlfU/7A9f3gUw49B3oQsvwBA==", "dev": true }, - "estree-to-babel": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/estree-to-babel/-/estree-to-babel-3.2.1.tgz", - "integrity": "sha512-YNF+mZ/Wu2FU/gvmzuWtYc8rloubL7wfXCTgouFrnjGVXPA/EeYYA7pupXWrb3Iv1cTBeSSxxJIbK23l4MRNqg==", - "dev": true, - "requires": { - "@babel/traverse": "^7.1.6", - "@babel/types": "^7.2.0", - "c8": "^7.6.0" - } - }, "esutils": { "version": "2.0.3", "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", @@ -47205,9 +46511,9 @@ } }, "fetch-retry": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.3.tgz", - "integrity": "sha512-uJQyMrX5IJZkhoEUBQ3EjxkeiZkppBd5jS/fMTJmfZxLSiaQjv2zD0kTvuvkSH89uFvgSlB6ueGpjD3HWN7Bxw==", + "version": "5.0.6", + "resolved": "https://registry.npmjs.org/fetch-retry/-/fetch-retry-5.0.6.tgz", + "integrity": "sha512-3yurQZ2hD9VISAhJJP9bpYFNQrHHBXE2JxxjY5aLEcDi46RmAzJE2OC9FAde0yis5ElW0jTTzs0zfg/Cca4XqQ==", "dev": true }, "figures": { @@ -47229,13 +46535,13 @@ } }, "file-system-cache": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.1.1.tgz", - "integrity": "sha512-vgZ1uDsK29DM4pptUOv47zdJO2tYM5M/ERyAE9Jk0QBN6e64Md+a+xJSOp68dCCDH4niFMVD8nC8n8A5ic0bmg==", + "version": "2.3.0", + "resolved": "https://registry.npmjs.org/file-system-cache/-/file-system-cache-2.3.0.tgz", + "integrity": "sha512-l4DMNdsIPsVnKrgEXbJwDJsA5mB8rGwHYERMgqQx/xAUtChPJMre1bXBzDEqqVbWv9AIbFezXMxeEkZDSrXUOQ==", "dev": true, "requires": { - "fs-extra": "^11.1.0", - "ramda": "^0.28.0" + "fs-extra": "11.1.1", + "ramda": "0.29.0" }, "dependencies": { "fs-extra": { @@ -47322,75 +46628,14 @@ } }, "find-cache-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-2.1.0.tgz", - "integrity": "sha512-Tq6PixE0w/VMFfCgbONnkiQIVol/JJL7nRMi20fqzA4NRs9AfeqMGeRdPi3wIhYkxjeBaWh2rxwapn5Tu3IqOQ==", + "version": "3.3.2", + "resolved": "https://registry.npmjs.org/find-cache-dir/-/find-cache-dir-3.3.2.tgz", + "integrity": "sha512-wXZV5emFEjrridIgED11OoUKLxiYjAcqot/NJdAkOhlJ+vGzwhOAfcG5OX1jP+S0PcjEn8bdMJv+g2jwQ3Onig==", "dev": true, "requires": { "commondir": "^1.0.1", - "make-dir": "^2.0.0", - "pkg-dir": "^3.0.0" - }, - "dependencies": { - "find-up": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-3.0.0.tgz", - "integrity": "sha512-1yD6RmLI1XBfxugvORwlck6f75tYL+iR0jqwsOrOxMZyGYqUuDhJ0l4AXdO1iX/FTs9cBAMEk1gWSEx1kSbylg==", - "dev": true, - "requires": { - "locate-path": "^3.0.0" - } - }, - "locate-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/locate-path/-/locate-path-3.0.0.tgz", - "integrity": "sha512-7AO748wWnIhNqAuaty2ZWHkQHRSNfPVIsPIfwEOWO22AmaoVrWavlOcMR5nzTLNYvp36X220/maaRsrec1G65A==", - "dev": true, - "requires": { - "p-locate": "^3.0.0", - "path-exists": "^3.0.0" - } - }, - "make-dir": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-2.1.0.tgz", - "integrity": "sha512-LS9X+dc8KLxXCb8dni79fLIIUA5VyZoyjSMCwTluaXA0o27cCK0bhXkpgw+sTXVpPy/lSO57ilRixqk0vDmtRA==", - "dev": true, - "requires": { - "pify": "^4.0.1", - "semver": "^5.6.0" - } - }, - "p-locate": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/p-locate/-/p-locate-3.0.0.tgz", - "integrity": "sha512-x+12w/To+4GFfgJhBEpiDcLozRJGegY+Ei7/z0tSLkMmxGZNybVMSfWj9aJn8Z5Fc7dBUNJOOVgPv2H7IwulSQ==", - "dev": true, - "requires": { - "p-limit": "^2.0.0" - } - }, - "path-exists": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-3.0.0.tgz", - "integrity": "sha512-bpC7GYwiDYQ4wYLe+FA8lhRjhQCMcQGuSgGGqDkg/QerRWw9CmGRT0iSOVRSZJ29NMLZgIzqaljJ63oaL4NIJQ==", - "dev": true - }, - "pkg-dir": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pkg-dir/-/pkg-dir-3.0.0.tgz", - "integrity": "sha512-/E57AYkoeQ25qkxMj5PBOVgF8Kiu/h7cYS30Z5+R7WaiCCBfLq58ZI/dSeaEKb9WVJV5n/03QwrN3IeWIFllvw==", - "dev": true, - "requires": { - "find-up": "^3.0.0" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - } + "make-dir": "^3.0.2", + "pkg-dir": "^4.1.0" } }, "find-nearest-file": { @@ -47446,9 +46691,9 @@ "dev": true }, "flow-parser": { - "version": "0.199.1", - "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.199.1.tgz", - "integrity": "sha512-Mt+GFUQYij3miM7Z6o8E3aHTGXZKSOhvlCFgdQRoi6fkWfhyijnoX51zpOxM5PmZuiV6gallWhDZzwOsWxRutg==", + "version": "0.233.0", + "resolved": "https://registry.npmjs.org/flow-parser/-/flow-parser-0.233.0.tgz", + "integrity": "sha512-E/mv51GYJfLuRX6fZnw4M52gBxYa8pkHUOgNEZOcQK2RTXS8YXeU5rlalkTcY99UpwbeNVCSUFKaavpOksi/pQ==", "dev": true }, "follow-redirects": { @@ -47467,13 +46712,21 @@ } }, "foreground-child": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-2.0.0.tgz", - "integrity": "sha512-dCIq9FpEcyQyXKCkyzmlPTFNgrCzPudOe+mhvJU5zAtlBnGVy2yKxtfsxK2tQBThwq225jcvBjpw1Gr40uzZCA==", + "version": "3.1.1", + "resolved": "https://registry.npmjs.org/foreground-child/-/foreground-child-3.1.1.tgz", + "integrity": "sha512-TMKDUnIte6bfb5nWv7V/caI169OHgvwjb7V4WkeUvbQQdjr5rWKqHFiKWb/fcOwB+CzBT+qbWjvj+DVwRskpIg==", "dev": true, "requires": { "cross-spawn": "^7.0.0", - "signal-exit": "^3.0.2" + "signal-exit": "^4.0.1" + }, + "dependencies": { + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + } } }, "forever-agent": { @@ -47501,6 +46754,25 @@ "tapable": "^2.2.1" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, "ansi-styles": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", @@ -47526,6 +46798,12 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "schema-utils": { "version": "3.3.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.3.0.tgz", @@ -47598,6 +46876,27 @@ "dev": true, "requires": { "js-yaml": "^3.13.1" + }, + "dependencies": { + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + } } }, "fs-constants": { @@ -47626,9 +46925,9 @@ } }, "fs-monkey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.3.tgz", - "integrity": "sha512-cybjIfiiE+pTWicSCLFHSrXZ6EilF30oh91FDP9S2B051prEa7QWfrVTQm10/dDpswBDXZugPa1Ogu8Yh+HV0Q==", + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/fs-monkey/-/fs-monkey-1.0.5.tgz", + "integrity": "sha512-8uMbBjrhzW76TYgEV27Y5E//W2f/lTFmx78P2w19FZSxarhI/798APGQyuGCwmkNxgwGRhrLfvWyLBvNtuOmew==", "dev": true }, "fs.realpath": { @@ -47679,6 +46978,8 @@ "resolved": "https://registry.npmjs.org/gauge/-/gauge-3.0.2.tgz", "integrity": "sha512-+5J6MS/5XksCuXq++uFRsnUd7Ovu1XenbeuIuNRJxYWjgQbPuFhT14lAvsWfqfAmnwluf1OwMjz39HjfLPci0Q==", "dev": true, + "optional": true, + "peer": true, "requires": { "aproba": "^1.0.3 || ^2.0.0", "color-support": "^1.1.2", @@ -47733,6 +47034,18 @@ "hasown": "^2.0.0" } }, + "get-nonce": { + "version": "1.0.1", + "resolved": "https://registry.npmjs.org/get-nonce/-/get-nonce-1.0.1.tgz", + "integrity": "sha512-FJhYRoDaiatfEkUK8HKlicmu/3SGFD51q3itKDGoSTysQJBnfOcxU5GxnhE1E6soB76MbT0MBtnKJuXyAx+96Q==", + "dev": true + }, + "get-npm-tarball-url": { + "version": "2.1.0", + "resolved": "https://registry.npmjs.org/get-npm-tarball-url/-/get-npm-tarball-url-2.1.0.tgz", + "integrity": "sha512-ro+DiMu5DXgRBabqXupW38h7WPZ9+Ad8UjwhvsmmN8w1sU7ab0nzAXvVZ4kqYg57OrqomRtJvepX5/xvFKNtjA==", + "dev": true + }, "get-package-type": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/get-package-type/-/get-package-type-0.1.0.tgz", @@ -47859,18 +47172,27 @@ } }, "giget": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/giget/-/giget-1.0.0.tgz", - "integrity": "sha512-KWELZn3Nxq5+0So485poHrFriK9Bn3V/x9y+wgqrHkbmnGbjfLmZ685/SVA/ovW+ewoqW0gVI47pI4yW/VNobQ==", + "version": "1.2.3", + "resolved": "https://registry.npmjs.org/giget/-/giget-1.2.3.tgz", + "integrity": "sha512-8EHPljDvs7qKykr6uw8b+lqLiUc/vUg+KVTI0uND4s63TdsZM2Xus3mflvF0DDG9SiM4RlCkFGL+7aAjRmV7KA==", "dev": true, "requires": { - "colorette": "^2.0.19", - "defu": "^6.1.1", - "https-proxy-agent": "^5.0.1", - "mri": "^1.2.0", - "node-fetch-native": "^1.0.1", - "pathe": "^1.0.0", - "tar": "^6.1.12" + "citty": "^0.1.6", + "consola": "^3.2.3", + "defu": "^6.1.4", + "node-fetch-native": "^1.6.3", + "nypm": "^0.3.8", + "ohash": "^1.1.3", + "pathe": "^1.1.2", + "tar": "^6.2.0" + }, + "dependencies": { + "consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true + } } }, "git-up": { @@ -48067,6 +47389,20 @@ "lodash": "^4.17.15" } }, + "gunzip-maybe": { + "version": "1.4.2", + "resolved": "https://registry.npmjs.org/gunzip-maybe/-/gunzip-maybe-1.4.2.tgz", + "integrity": "sha512-4haO1M4mLO91PW57BMsDFf75UmwoRX0GkdD+Faw+Lr+r/OZrOCS0pIBwOL1xCKQqnQzbNFGgK2V2CpBUPeFNTw==", + "dev": true, + "requires": { + "browserify-zlib": "^0.1.4", + "is-deflate": "^1.0.0", + "is-gzip": "^1.0.0", + "peek-stream": "^1.1.0", + "pumpify": "^1.3.3", + "through2": "^2.0.3" + } + }, "hamt_plus": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/hamt_plus/-/hamt_plus-1.0.2.tgz", @@ -48103,6 +47439,24 @@ "requires": { "ajv": "^6.12.3", "har-schema": "^2.0.0" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + } } }, "hard-rejection": { @@ -48183,7 +47537,9 @@ "version": "2.0.1", "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", "integrity": "sha512-8Rf9Y83NBReMnx0gFzA8JImQACstCYWUplepDa9xprwwtmgEZUF0h/i5xSA625zB/I37EtrswSST6OXxwaaIJQ==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "hasown": { "version": "2.0.2", @@ -48758,15 +48114,24 @@ "integrity": "sha512-Ju0Bz/cEia55xDwUWEa8+olFpCiQoypjnQySseKtmjNrnps3P+xfpUmGr90T7yjlVJmOtybRvPXhKMbHr+fWnw==", "dev": true }, + "invariant": { + "version": "2.2.4", + "resolved": "https://registry.npmjs.org/invariant/-/invariant-2.2.4.tgz", + "integrity": "sha512-phJfQVBuaJM5raOpJjSfkiD6BpbCE4Ns//LaXl6wGYtUBY83nWS6Rf9tXm2e8VaK60JEjYldbPif/A2B1C2gNA==", + "dev": true, + "requires": { + "loose-envify": "^1.0.0" + } + }, "iota-array": { "version": "1.0.0", "resolved": "https://registry.npmjs.org/iota-array/-/iota-array-1.0.0.tgz", "integrity": "sha512-pZ2xT+LOHckCatGQ3DcG/a+QuEqvoxqkiL7tvE8nn3uuu+f6i1TtpB5/FtWFbxUuVr5PZCx8KskuGatbJDXOWA==" }, "ip": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.0.tgz", - "integrity": "sha512-WKa+XuLG1A1R0UWhl2+1XQSi+fZWMsYKffMZTTYsiZaUD8k2yDAj5atimTUD2TZkyCkNEeYE5NhFZmupOGtjYQ==", + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/ip/-/ip-2.0.1.tgz", + "integrity": "sha512-lJUL9imLTNi1ZfXT+DU6rBBdbiKGBuay9B6xGSPVjUeQwaH1RIGqef8RZkUtHioLmSNpPR5M4HVKJGm1j8FWVQ==", "dev": true }, "ipaddr.js": { @@ -48882,6 +48247,12 @@ "has-tostringtag": "^1.0.0" } }, + "is-deflate": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-deflate/-/is-deflate-1.0.0.tgz", + "integrity": "sha512-YDoFpuZWu1VRXlsnlYMzKyVRITXj7Ej/V9gXQ2/pAe7X1J7M/RNOqaIYi6qUn+B7nGyB9pDXrv02dsB58d2ZAQ==", + "dev": true + }, "is-docker": { "version": "2.2.1", "resolved": "https://registry.npmjs.org/is-docker/-/is-docker-2.2.1.tgz", @@ -48924,6 +48295,12 @@ "is-extglob": "^2.1.1" } }, + "is-gzip": { + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/is-gzip/-/is-gzip-1.0.0.tgz", + "integrity": "sha512-rcfALRIb1YewtnksfRIHGcIY93QnK8BIQ/2c9yDYcG/Y6+vRoJuTWBmmSEbyLLYtXm7q35pHOHbZFQBaLrhlWQ==", + "dev": true + }, "is-in-ci": { "version": "0.1.0", "resolved": "https://registry.npmjs.org/is-in-ci/-/is-in-ci-0.1.0.tgz", @@ -49221,16 +48598,6 @@ "integrity": "sha512-WhB9zCku7EGTj/HQQRz5aUQEUeoQZH2bWcltRErOpymJ4boYE6wL9Tbr23krRPSZ+C5zqNSrSw+Cc7sZZ4b7vg==", "dev": true }, - "isomorphic-unfetch": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/isomorphic-unfetch/-/isomorphic-unfetch-3.1.0.tgz", - "integrity": "sha512-geDJjpoZ8N0kWexiwkX8F9NkTsXhetLPVbZFQ+JTW239QNOwvB0gniuR1Wc6f0AMTn7/mFGyXvHTifrCp/GH8Q==", - "dev": true, - "requires": { - "node-fetch": "^2.6.1", - "unfetch": "^4.2.0" - } - }, "isstream": { "version": "0.1.2", "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", @@ -49341,6 +48708,16 @@ "iterate-iterator": "^1.0.1" } }, + "jackspeak": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/jackspeak/-/jackspeak-2.3.6.tgz", + "integrity": "sha512-N3yCS/NegsOBokc8GAdM8UcmfsKiSS8cipheD/nivzr700H+nsMOxJjQnvwOcRYVuFkdH0wGUvW2WbXGmrZGbQ==", + "dev": true, + "requires": { + "@isaacs/cliui": "^8.0.2", + "@pkgjs/parseargs": "^0.11.0" + } + }, "jake": { "version": "10.8.5", "resolved": "https://registry.npmjs.org/jake/-/jake-10.8.5.tgz", @@ -50019,172 +49396,227 @@ } } }, - "jest-environment-jsdom": { + "jest-environment-jsdom": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", + "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1", + "jsdom": "^16.6.0" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-environment-node": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", + "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "dev": true, + "requires": { + "@jest/environment": "^27.5.1", + "@jest/fake-timers": "^27.5.1", + "@jest/types": "^27.5.1", + "@types/node": "*", + "jest-mock": "^27.5.1", + "jest-util": "^27.5.1" + }, + "dependencies": { + "@jest/types": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", + "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", + "dev": true, + "requires": { + "@types/istanbul-lib-coverage": "^2.0.0", + "@types/istanbul-reports": "^3.0.0", + "@types/node": "*", + "@types/yargs": "^16.0.0", + "chalk": "^4.0.0" + } + }, + "@types/yargs": { + "version": "16.0.4", + "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", + "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", + "dev": true, + "requires": { + "@types/yargs-parser": "*" + } + }, + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-get-type": { "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-jsdom/-/jest-environment-jsdom-27.5.1.tgz", - "integrity": "sha512-TFBvkTC1Hnnnrka/fUb56atfDtJ9VMZ94JkjTbggl1PEpwrYtUBKMezB3inLmWqQsXYLcMwNoDQwoBTAvFfsfw==", - "dev": true, - "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", - "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1", - "jsdom": "^16.6.0" - }, - "dependencies": { - "@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, - "has-flag": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", - "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", - "dev": true - }, - "jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, - "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", - "dev": true, - "requires": { - "has-flag": "^4.0.0" - } - } - } + "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", + "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", + "dev": true }, - "jest-environment-node": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-environment-node/-/jest-environment-node-27.5.1.tgz", - "integrity": "sha512-Jt4ZUnxdOsTGwSRAfKEnE6BcwsSPNOijjwifq5sDFSA2kesnXTvNqKHYgM0hDq3549Uf/KzdXNYn4wMZJPlFLw==", + "jest-haste-map": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-29.7.0.tgz", + "integrity": "sha512-fP8u2pyfqx0K1rGn1R9pyE0/KTn+G7PxktWidOBTqFPLYX0b9ksaMFkhK5vrS3DVun09pckLdlx90QthlW7AmA==", "dev": true, "requires": { - "@jest/environment": "^27.5.1", - "@jest/fake-timers": "^27.5.1", - "@jest/types": "^27.5.1", + "@jest/types": "^29.6.3", + "@types/graceful-fs": "^4.1.3", "@types/node": "*", - "jest-mock": "^27.5.1", - "jest-util": "^27.5.1" + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^29.6.3", + "jest-util": "^29.7.0", + "jest-worker": "^29.7.0", + "micromatch": "^4.0.4", + "walker": "^1.0.8" }, "dependencies": { - "@jest/types": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/@jest/types/-/types-27.5.1.tgz", - "integrity": "sha512-Cx46iJ9QpwQTjIdq5VJu2QTMMs3QlEjI0x1QbBP5W1+nMzyc2XmimiRR/CbX9TO0cPTeUlxWMOu8mslYsJ8DEw==", - "dev": true, - "requires": { - "@types/istanbul-lib-coverage": "^2.0.0", - "@types/istanbul-reports": "^3.0.0", - "@types/node": "*", - "@types/yargs": "^16.0.0", - "chalk": "^4.0.0" - } - }, - "@types/yargs": { - "version": "16.0.4", - "resolved": "https://registry.npmjs.org/@types/yargs/-/yargs-16.0.4.tgz", - "integrity": "sha512-T8Yc9wt/5LbJyCaLiHPReJa0kApcIgJ7Bn735GjItUfh08Z1pJvu8QZqb9s+mMvKV6WUQRV7K2R46YbjMXTTJw==", - "dev": true, - "requires": { - "@types/yargs-parser": "*" - } - }, - "ansi-styles": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", - "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", - "dev": true, - "requires": { - "color-convert": "^2.0.1" - } - }, - "chalk": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", - "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", - "dev": true, - "requires": { - "ansi-styles": "^4.1.0", - "supports-color": "^7.1.0" - } - }, "has-flag": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "jest-worker": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-worker/-/jest-worker-29.7.0.tgz", + "integrity": "sha512-eIz2msL/EzL9UFTFFx7jBTkeZfku0yUAyZZZmJ93H2TYEiroIx2PQjEXcwYtYl8zXCxb+PAmA2hLIt/6ZEkPHw==", "dev": true, "requires": { - "@jest/types": "^27.5.1", "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" + "jest-util": "^29.7.0", + "merge-stream": "^2.0.0", + "supports-color": "^8.0.0" } }, "supports-color": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", - "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "version": "8.1.1", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-8.1.1.tgz", + "integrity": "sha512-MpUEN2OodtUzxvKQl72cUF7RQ5EiHsGvSsVG0ia9c5RbWGL2CI4C7EpPS8UTBIplnlzZiNuV56w+FuNxy3ty2Q==", "dev": true, "requires": { "has-flag": "^4.0.0" @@ -50192,12 +49624,6 @@ } } }, - "jest-get-type": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-get-type/-/jest-get-type-27.5.1.tgz", - "integrity": "sha512-2KY95ksYSaK7DMBWQn6dQz3kqAf3BB64y2udeG+hv4KfSOb9qwcYQstTJc1KCbsix+wLZWZYN8t7nwX3GOBLRw==", - "dev": true - }, "jest-jasmine2": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-jasmine2/-/jest-jasmine2-27.5.1.tgz", @@ -50503,6 +49929,12 @@ "dev": true, "requires": {} }, + "jest-regex-util": { + "version": "29.6.3", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-29.6.3.tgz", + "integrity": "sha512-KJJBsRCyyLNWCNBOvZyRDnAIfUiRJ8v+hOBQYGn8gDyF3UegwiP4gwRR3/SDa42g1YbVycTidUF3rKjyLFDWbg==", + "dev": true + }, "jest-resolve": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-resolve/-/jest-resolve-27.5.1.tgz", @@ -51128,57 +50560,113 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "jest-haste-map": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", - "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/graceful-fs": "^4.1.2", - "@types/node": "*", - "anymatch": "^3.0.3", - "fb-watchman": "^2.0.0", - "fsevents": "^2.3.2", - "graceful-fs": "^4.2.9", - "jest-regex-util": "^27.5.1", - "jest-serializer": "^27.5.1", - "jest-util": "^27.5.1", - "jest-worker": "^27.5.1", - "micromatch": "^4.0.4", - "walker": "^1.0.7" - } - }, - "jest-regex-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", - "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", - "dev": true - }, - "jest-serializer": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", - "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", - "dev": true, - "requires": { - "@types/node": "*", - "graceful-fs": "^4.2.9" - } - }, - "jest-util": { - "version": "27.5.1", - "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", - "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", - "dev": true, - "requires": { - "@jest/types": "^27.5.1", - "@types/node": "*", - "chalk": "^4.0.0", - "ci-info": "^3.2.0", - "graceful-fs": "^4.2.9", - "picomatch": "^2.2.3" - } - }, + "jest-haste-map": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-haste-map/-/jest-haste-map-27.5.1.tgz", + "integrity": "sha512-7GgkZ4Fw4NFbMSDSpZwXeBiIbx+t/46nJ2QitkOjvwPYyZmqttu2TDSimMHP1EkPOi4xUZAN1doE5Vd25H4Jng==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/graceful-fs": "^4.1.2", + "@types/node": "*", + "anymatch": "^3.0.3", + "fb-watchman": "^2.0.0", + "fsevents": "^2.3.2", + "graceful-fs": "^4.2.9", + "jest-regex-util": "^27.5.1", + "jest-serializer": "^27.5.1", + "jest-util": "^27.5.1", + "jest-worker": "^27.5.1", + "micromatch": "^4.0.4", + "walker": "^1.0.7" + } + }, + "jest-regex-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-regex-util/-/jest-regex-util-27.5.1.tgz", + "integrity": "sha512-4bfKq2zie+x16okqDXjXn9ql2B0dScQu+vcwe4TvFVhkVyuWLqpZrZtXxLLWoXYgn0E87I6r6GRYHF7wFZBUvg==", + "dev": true + }, + "jest-serializer": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-serializer/-/jest-serializer-27.5.1.tgz", + "integrity": "sha512-jZCyo6iIxO1aqUxpuBlwTDMkzOAJS4a3eYz3YzgxxVQFwLeSA7Jfq5cbqCY+JLvTDrWirgusI/0KwxKMgrdf7w==", + "dev": true, + "requires": { + "@types/node": "*", + "graceful-fs": "^4.2.9" + } + }, + "jest-util": { + "version": "27.5.1", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-27.5.1.tgz", + "integrity": "sha512-Kv2o/8jNvX1MQ0KGtw480E/w4fBCDOnH6+6DmeKi6LZUIlKA5kwY0YNdlzaWTiVgxqAqik11QyxDOKk543aKXw==", + "dev": true, + "requires": { + "@jest/types": "^27.5.1", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + } + }, + "supports-color": { + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", + "integrity": "sha512-qpCAvRl9stuOHveKsn7HncJRvv501qIacKzQlO/+Lwxc9+0q2wLyv4Dfvt80/DPn2pqOBsJdDiogXGR9+OvwRw==", + "dev": true, + "requires": { + "has-flag": "^4.0.0" + } + } + } + }, + "jest-transform-stub": { + "version": "2.0.0", + "resolved": "https://registry.npmjs.org/jest-transform-stub/-/jest-transform-stub-2.0.0.tgz", + "integrity": "sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==", + "dev": true + }, + "jest-util": { + "version": "29.7.0", + "resolved": "https://registry.npmjs.org/jest-util/-/jest-util-29.7.0.tgz", + "integrity": "sha512-z6EbKajIpqGKU56y5KBUgy1dt1ihhQJgWzUlZHArA/+X2ad7Cb5iF+AK1EWVL/Bo7Rz9uurpqw6SiBCefUbCGA==", + "dev": true, + "requires": { + "@jest/types": "^29.6.3", + "@types/node": "*", + "chalk": "^4.0.0", + "ci-info": "^3.2.0", + "graceful-fs": "^4.2.9", + "picomatch": "^2.2.3" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + }, + "chalk": { + "version": "4.1.2", + "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", + "integrity": "sha512-oKnbhFyRIXpUuez8iBMmyEa4nbj4IOQyuhc/wy9kY7/WVPcwIO9VA668Pu8RkO7+0G76SLROeyw9CpQ061i4mA==", + "dev": true, + "requires": { + "ansi-styles": "^4.1.0", + "supports-color": "^7.1.0" + } + }, + "has-flag": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-4.0.0.tgz", + "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", + "dev": true + }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -51190,12 +50678,6 @@ } } }, - "jest-transform-stub": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/jest-transform-stub/-/jest-transform-stub-2.0.0.tgz", - "integrity": "sha512-lspHaCRx/mBbnm3h4uMMS3R5aZzMwyNpNIJLXj4cEsV0mIUtS4IjYJLSoyjRCtnxb6RIGJ4NL2quZzfIeNhbkg==", - "dev": true - }, "jest-validate": { "version": "27.5.1", "resolved": "https://registry.npmjs.org/jest-validate/-/jest-validate-27.5.1.tgz", @@ -51414,13 +50896,12 @@ "integrity": "sha512-RdJUflcE3cUzKiMqQgsCu06FPu9UdIJO0beYbPhHN4k6apgJtifcoCtT9bcxOpYBtpD2kCM6Sbzg4CausW/PKQ==" }, "js-yaml": { - "version": "3.14.1", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", - "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", + "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", "dev": true, "requires": { - "argparse": "^1.0.7", - "esprima": "^4.0.0" + "argparse": "^2.0.1" } }, "jsbn": { @@ -51429,20 +50910,21 @@ "integrity": "sha512-UVU9dibq2JcFWxQPA6KCqj5O42VOmAY3zQUfEKxU0KpTGXwNoCjkX1e13eHNvw/xPynt6pU0rZ1htjWTNTSXsg==" }, "jscodeshift": { - "version": "0.14.0", - "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.14.0.tgz", - "integrity": "sha512-7eCC1knD7bLUPuSCwXsMZUH51O8jIcoVyKtI6P0XM0IVzlGjckPy3FIwQlorzbN0Sg79oK+RlohN32Mqf/lrYA==", - "dev": true, - "requires": { - "@babel/core": "^7.13.16", - "@babel/parser": "^7.13.16", - "@babel/plugin-proposal-class-properties": "^7.13.0", - "@babel/plugin-proposal-nullish-coalescing-operator": "^7.13.8", - "@babel/plugin-proposal-optional-chaining": "^7.13.12", - "@babel/plugin-transform-modules-commonjs": "^7.13.8", - "@babel/preset-flow": "^7.13.13", - "@babel/preset-typescript": "^7.13.0", - "@babel/register": "^7.13.16", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/jscodeshift/-/jscodeshift-0.15.2.tgz", + "integrity": "sha512-FquR7Okgmc4Sd0aEDwqho3rEiKR3BdvuG9jfdHjLJ6JQoWSMpavug3AoIfnfWhxFlf+5pzQh8qjqz0DWFrNQzA==", + "dev": true, + "requires": { + "@babel/core": "^7.23.0", + "@babel/parser": "^7.23.0", + "@babel/plugin-transform-class-properties": "^7.22.5", + "@babel/plugin-transform-modules-commonjs": "^7.23.0", + "@babel/plugin-transform-nullish-coalescing-operator": "^7.22.11", + "@babel/plugin-transform-optional-chaining": "^7.23.0", + "@babel/plugin-transform-private-methods": "^7.22.5", + "@babel/preset-flow": "^7.22.15", + "@babel/preset-typescript": "^7.23.0", + "@babel/register": "^7.22.15", "babel-core": "^7.0.0-bridge.0", "chalk": "^4.1.2", "flow-parser": "0.*", @@ -51450,7 +50932,7 @@ "micromatch": "^4.0.4", "neo-async": "^2.5.0", "node-dir": "^0.1.17", - "recast": "^0.21.0", + "recast": "^0.23.3", "temp": "^0.8.4", "write-file-atomic": "^2.3.0" }, @@ -51464,15 +50946,6 @@ "color-convert": "^2.0.1" } }, - "ast-types": { - "version": "0.15.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.15.2.tgz", - "integrity": "sha512-c27loCv9QkZinsa5ProX751khO9DJl/AcB5c2KNtA6NRvHKS0PgLfcftz72KVq504vB0Gku5s2kUZzDBvQWvHg==", - "dev": true, - "requires": { - "tslib": "^2.0.1" - } - }, "chalk": { "version": "4.1.2", "resolved": "https://registry.npmjs.org/chalk/-/chalk-4.1.2.tgz", @@ -51489,18 +50962,6 @@ "integrity": "sha512-EykJT/Q1KjTWctppgIAgfSO0tKVuZUjhgMr17kqTumMl6Afv3EISleU7qZUzoXDFTAHTDC4NOoG/ZxU3EvlMPQ==", "dev": true }, - "recast": { - "version": "0.21.5", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.21.5.tgz", - "integrity": "sha512-hjMmLaUXAm1hIuTqOdeYObMslq/q+Xff6QE3Y2P+uoHAg2nmVlLBps2hzh1UJDdMtDTMXOFewK6ky51JQIeECg==", - "dev": true, - "requires": { - "ast-types": "0.15.2", - "esprima": "~4.0.0", - "source-map": "~0.6.1", - "tslib": "^2.0.1" - } - }, "supports-color": { "version": "7.2.0", "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-7.2.0.tgz", @@ -51582,9 +51043,10 @@ "integrity": "sha512-es94M3nTIfsEPisRafak+HDLfHXnKBhV3vU5eqPcS3flIWqcxJWgXHXiey3YrpaNsanY5ei1VoYEbOzijuq9BA==" }, "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==" + "version": "1.0.0", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", + "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", + "dev": true }, "json-stable-stringify-without-jsonify": { "version": "1.0.1", @@ -51952,6 +51414,11 @@ "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.21.tgz", "integrity": "sha512-v2kDEe57lecTulaDIuNTPy3Ry4gLGJ6Z1O3vE1krgXZNrsQ+LFTGHVxVjcXPs17LhbZVGedAJv8XZ1tvj5FvSg==" }, + "lodash-es": { + "version": "4.17.21", + "resolved": "https://registry.npmjs.org/lodash-es/-/lodash-es-4.17.21.tgz", + "integrity": "sha512-mKnC+QJ9pWVzv+C4/U3rRsHapFfHvQFoFB92e52xeyGMcX6/OlIl78je1u8vePzYZSkkogMPJ2yjxxsb89cxyw==" + }, "lodash.camelcase": { "version": "4.3.0", "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", @@ -52203,6 +51670,15 @@ "integrity": "sha512-fSErXALFNsnowREYZ49XCdOHF8wOPWuFOGQrAhP7x5J/BqQv+B02cNsTykGpDgRVx43EKg++6ANmTaGTtW+hUA==", "dev": true }, + "magic-string": { + "version": "0.30.9", + "resolved": "https://registry.npmjs.org/magic-string/-/magic-string-0.30.9.tgz", + "integrity": "sha512-S1+hd+dIrC8EZqKyT9DstTH/0Z+f76kmmvZnkfQVmOpDEF9iVgdYif3Q/pIWHmCoo59bQVGW0kVL3e2nl+9+Sw==", + "dev": true, + "requires": { + "@jridgewell/sourcemap-codec": "^1.4.15" + } + }, "make-dir": { "version": "3.1.0", "resolved": "https://registry.npmjs.org/make-dir/-/make-dir-3.1.0.tgz", @@ -52274,9 +51750,9 @@ "dev": true }, "markdown-to-jsx": { - "version": "7.2.0", - "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.2.0.tgz", - "integrity": "sha512-3l4/Bigjm4bEqjCR6Xr+d4DtM1X6vvtGsMGSjJYyep8RjjIvcWtrXBS8Wbfe1/P+atKNMccpsraESIaWVplzVg==", + "version": "7.4.5", + "resolved": "https://registry.npmjs.org/markdown-to-jsx/-/markdown-to-jsx-7.4.5.tgz", + "integrity": "sha512-c8NB0H/ig+FOWssE9be0PKsYbCDhcWEkicxMnpdfUuHbFljnen4LAdgUShOyR/PgO3/qKvt9cwfQ0U/zQvZ44A==", "dev": true, "requires": {} }, @@ -52318,12 +51794,12 @@ "dev": true }, "memfs": { - "version": "3.4.4", - "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.4.4.tgz", - "integrity": "sha512-W4gHNUE++1oSJVn8Y68jPXi+mkx3fXR5ITE/Ubz6EQ3xRpCN5k2CQ4AUR8094Z7211F876TyoBACGsIveqgiGA==", + "version": "3.5.3", + "resolved": "https://registry.npmjs.org/memfs/-/memfs-3.5.3.tgz", + "integrity": "sha512-UERzLsxzllchadvbPs5aolHh65ISpKpM+ccLbOJ8/vvpBKmAWf+la7dXFy7Mr0ySHbdHrFv5kGFCUHHe6GFEmw==", "dev": true, "requires": { - "fs-monkey": "1.0.3" + "fs-monkey": "^1.0.4" } }, "memoizerific": { @@ -52584,12 +52060,6 @@ "color-name": "^1.1.4" } }, - "mri": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/mri/-/mri-1.2.0.tgz", - "integrity": "sha512-tzzskb3bG8LvYGFF/mDTpq3jpI6Q9wc3LEmBaghu+DdCssd1FakN7Bc0hVNmEyGq1bq3RgfkCb3cmQLpNPOroA==", - "dev": true - }, "ms": { "version": "2.1.2", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", @@ -52785,9 +52255,9 @@ } }, "node-fetch-native": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.0.1.tgz", - "integrity": "sha512-VzW+TAk2wE4X9maiKMlT+GsPU4OMmR1U9CrHSmd3DFLn2IcZ9VJ6M6BBugGfYUnPCLSYxXdZy17M0BEJyhUTwg==", + "version": "1.6.4", + "resolved": "https://registry.npmjs.org/node-fetch-native/-/node-fetch-native-1.6.4.tgz", + "integrity": "sha512-IhOigYzAKHd244OC0JIMIUrjzctirCmPkaIfhDeGcEETWof5zKYUW7e7MYvChGWh/4CJeXEgsRyGzuF334rOOQ==", "dev": true }, "node-forge": { @@ -52869,9 +52339,9 @@ "dev": true }, "node-releases": { - "version": "2.0.10", - "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.10.tgz", - "integrity": "sha512-5GFldHPXVG/YZmFzJvKK2zDSzPKhEp0+ZR5SVaoSag9fsL5YgHbUHDfnG5494ISANDcK4KwPXAx2xqVEydmd7w==", + "version": "2.0.14", + "resolved": "https://registry.npmjs.org/node-releases/-/node-releases-2.0.14.tgz", + "integrity": "sha512-y10wOWt8yZpqXmOgRo77WaHEmhYQYGNA6y421PKsKYWEK8aW+cqAphborZDhqfyKrbZEN92CN1X2KbafY2s7Yw==", "dev": true }, "node-sass": { @@ -54495,6 +53965,8 @@ "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-5.0.1.tgz", "integrity": "sha512-AqZtDUWOMKs1G/8lwylVjrdYgqA4d9nu8hc+0gzRxlDb1I10+FHBGMXs6aiQHFdCUUlqH99MUMuLfzWDNDtfxw==", "dev": true, + "optional": true, + "peer": true, "requires": { "are-we-there-yet": "^2.0.0", "console-control-strings": "^1.1.0", @@ -54517,6 +53989,104 @@ "integrity": "sha512-h2AatdwYH+JHiZpv7pt/gSX1XoRGb7L/qSIeuqA6GwYoF9w1vP1cw42TO0aI2pNyshRK5893hNSl+1//vHK7hQ==", "dev": true }, + "nypm": { + "version": "0.3.8", + "resolved": "https://registry.npmjs.org/nypm/-/nypm-0.3.8.tgz", + "integrity": "sha512-IGWlC6So2xv6V4cIDmoV0SwwWx7zLG086gyqkyumteH2fIgCAM4nDVFB2iDRszDvmdSVW9xb1N+2KjQ6C7d4og==", + "dev": true, + "requires": { + "citty": "^0.1.6", + "consola": "^3.2.3", + "execa": "^8.0.1", + "pathe": "^1.1.2", + "ufo": "^1.4.0" + }, + "dependencies": { + "consola": { + "version": "3.2.3", + "resolved": "https://registry.npmjs.org/consola/-/consola-3.2.3.tgz", + "integrity": "sha512-I5qxpzLv+sJhTVEoLYNcTW+bThDCPsit0vLNKShZx6rLtpilNpmmeTPaeqJb9ZE9dV3DGaeby6Vuhrw38WjeyQ==", + "dev": true + }, + "execa": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/execa/-/execa-8.0.1.tgz", + "integrity": "sha512-VyhnebXciFV2DESc+p6B+y0LjSm0krU4OgJN44qFAhBY0TJ+1V61tYD2+wHusZ6F9n5K+vl8k0sTy7PEfV4qpg==", + "dev": true, + "requires": { + "cross-spawn": "^7.0.3", + "get-stream": "^8.0.1", + "human-signals": "^5.0.0", + "is-stream": "^3.0.0", + "merge-stream": "^2.0.0", + "npm-run-path": "^5.1.0", + "onetime": "^6.0.0", + "signal-exit": "^4.1.0", + "strip-final-newline": "^3.0.0" + } + }, + "get-stream": { + "version": "8.0.1", + "resolved": "https://registry.npmjs.org/get-stream/-/get-stream-8.0.1.tgz", + "integrity": "sha512-VaUJspBffn/LMCJVoMvSAdmscJyS1auj5Zulnn5UoYcY531UWmdwhRWkcGKnGU93m5HSXP9LP2usOryrBtQowA==", + "dev": true + }, + "human-signals": { + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/human-signals/-/human-signals-5.0.0.tgz", + "integrity": "sha512-AXcZb6vzzrFAUE61HnN4mpLqd/cSIwNQjtNWR0euPm6y0iqx3G4gOXaIDdtdDwZmhwe82LA6+zinmW4UBWVePQ==", + "dev": true + }, + "is-stream": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/is-stream/-/is-stream-3.0.0.tgz", + "integrity": "sha512-LnQR4bZ9IADDRSkvpqMGvt/tEJWclzklNgSw48V5EAaAeDd6qGvN8ei6k5p0tvxSR171VmGyHuTiAOfxAbr8kA==", + "dev": true + }, + "mimic-fn": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", + "integrity": "sha512-vqiC06CuhBTUdZH+RYl8sFrL096vA45Ok5ISO6sE/Mr1jRbGH4Csnhi8f3wKVl7x8mO4Au7Ir9D3Oyv1VYMFJw==", + "dev": true + }, + "npm-run-path": { + "version": "5.3.0", + "resolved": "https://registry.npmjs.org/npm-run-path/-/npm-run-path-5.3.0.tgz", + "integrity": "sha512-ppwTtiJZq0O/ai0z7yfudtBpWIoxM8yE6nHi1X47eFR2EWORqfbu6CnPlNsjeN683eT0qG6H/Pyf9fCcvjnnnQ==", + "dev": true, + "requires": { + "path-key": "^4.0.0" + } + }, + "onetime": { + "version": "6.0.0", + "resolved": "https://registry.npmjs.org/onetime/-/onetime-6.0.0.tgz", + "integrity": "sha512-1FlR+gjXK7X+AsAHso35MnyN5KqGwJRi/31ft6x0M194ht7S+rWAvd7PHss9xSKMzE0asv1pyIHaJYq+BbacAQ==", + "dev": true, + "requires": { + "mimic-fn": "^4.0.0" + } + }, + "path-key": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/path-key/-/path-key-4.0.0.tgz", + "integrity": "sha512-haREypq7xkM7ErfgIyA0z+Bj4AGKlMSdlQE2jvJo6huWD1EdkKYV+G/T4nq0YEF2vgTT8kqMFKo1uHn950r4SQ==", + "dev": true + }, + "signal-exit": { + "version": "4.1.0", + "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-4.1.0.tgz", + "integrity": "sha512-bzyZ1e88w9O1iNJbKnOlvYTrWPDl46O1bG0D3XInv+9tkPrxrN8jUUTiFlDkkmKWgn1M6CfIA13SuGqOa9Korw==", + "dev": true + }, + "strip-final-newline": { + "version": "3.0.0", + "resolved": "https://registry.npmjs.org/strip-final-newline/-/strip-final-newline-3.0.0.tgz", + "integrity": "sha512-dOESqjYr96iWYylGObzd39EuNTa5VJxyvVAEm5Jnh7KGo75V43Hk1odPQkNDyXNmUR6k+gEiDVXnjB8HJ3crXw==", + "dev": true + } + } + }, "oauth-sign": { "version": "0.9.0", "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", @@ -54623,6 +54193,12 @@ "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", "dev": true }, + "ohash": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/ohash/-/ohash-1.1.3.tgz", + "integrity": "sha512-zuHHiGTYTA1sYJ/wZN+t5HKZaH23i4yI1HMwbuXm24Nid7Dv0KcuRlKoNKS9UNfAVSBlnGLcuQrnOKWOZoEGaw==", + "dev": true + }, "omggif": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/omggif/-/omggif-1.0.10.tgz", @@ -54904,6 +54480,12 @@ } } }, + "pako": { + "version": "0.2.9", + "resolved": "https://registry.npmjs.org/pako/-/pako-0.2.9.tgz", + "integrity": "sha512-NUcwaKxUxWrZLpDG+z/xZaCgQITkA/Dv4V/T6bw7VON6l1Xz/VnrBqrYjZQ12TamKHzITTfOEIYUj48y2KXImA==", + "dev": true + }, "param-case": { "version": "3.0.4", "resolved": "https://registry.npmjs.org/param-case/-/param-case-3.0.4.tgz", @@ -55080,6 +54662,30 @@ "integrity": "sha512-LDJzPVEEEPR+y48z93A0Ed0yXb8pAByGWo/k5YYdYgpY2/2EsOsksJrq7lOHxryrVOn1ejG6oAp8ahvOIQD8sw==", "dev": true }, + "path-scurry": { + "version": "1.10.2", + "resolved": "https://registry.npmjs.org/path-scurry/-/path-scurry-1.10.2.tgz", + "integrity": "sha512-7xTavNy5RQXnsjANvVvMkEjvloOinkAjv/Z6Ildz9v2RinZ4SBKTWFOVRbaF8p0vpHnyjV/UwNDdKuUv6M5qcA==", + "dev": true, + "requires": { + "lru-cache": "^10.2.0", + "minipass": "^5.0.0 || ^6.0.2 || ^7.0.0" + }, + "dependencies": { + "lru-cache": { + "version": "10.2.0", + "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-10.2.0.tgz", + "integrity": "sha512-2bIM8x+VAf6JT4bKAljS1qUWgMsqZRPGJS6FSahIMPVvctcNhyVp7AJu7quxOW9jwkryBReKZY5tY5JYv2n/7Q==", + "dev": true + }, + "minipass": { + "version": "7.0.4", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-7.0.4.tgz", + "integrity": "sha512-jYofLM5Dam9279rdkWzqHozUo4ybjdZmCsDHePy5V/PbBcVMiSZR97gmAy45aqi8CK1lG2ECd356FU86avfwUQ==", + "dev": true + } + } + }, "path-to-regexp": { "version": "0.1.7", "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", @@ -55093,11 +54699,22 @@ "dev": true }, "pathe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.0.tgz", - "integrity": "sha512-ODbEPR0KKHqECXW1GoxdDb+AZvULmXjVPy4rt+pGo2+TnjJTIPJQSVS6N63n8T2Ip+syHhbn52OewKicV0373w==", + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/pathe/-/pathe-1.1.2.tgz", + "integrity": "sha512-whLdWMYL2TwI08hn8/ZqAbrVemu0LNaNNJZX73O6qaIdCTfXutsLhMkjdENX0qhsQ9uIimo4/aQOmXkoon2nDQ==", "dev": true }, + "peek-stream": { + "version": "1.1.3", + "resolved": "https://registry.npmjs.org/peek-stream/-/peek-stream-1.1.3.tgz", + "integrity": "sha512-FhJ+YbOSBb9/rIl2ZeE/QHEsWn7PqNYt8ARAY3kIgNGOk13g9FGyIY6JIl/xB/3TFRVoTv5as0l11weORrTekA==", + "dev": true, + "requires": { + "buffer-from": "^1.0.0", + "duplexify": "^3.5.0", + "through2": "^2.0.3" + } + }, "pend": { "version": "1.2.0", "resolved": "https://registry.npmjs.org/pend/-/pend-1.2.0.tgz", @@ -55156,9 +54773,9 @@ "dev": true }, "pirates": { - "version": "4.0.5", - "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.5.tgz", - "integrity": "sha512-8V9+HQPupnaXMA23c5hvl69zXvTwTzyAYasnkb0Tts4XvO4CliqONMOnvlq26rkhLC3nWDFBJf73LU1e1VZLaQ==", + "version": "4.0.6", + "resolved": "https://registry.npmjs.org/pirates/-/pirates-4.0.6.tgz", + "integrity": "sha512-saLsH7WeYYPiD25LDuLRRY/i+6HaPYr6G1OUlN39otzkSTxKnubR9RTxS3/Kk50s1g2JTgFwWQDQyplC5/SHZg==", "dev": true }, "pixelsmith": { @@ -55547,6 +55164,15 @@ "integrity": "sha512-+O9Jct8wf++lXxxFc4hc8LsjaSq0HFzzL7cVsw8pRDIPdjKD2mT4ytDZlLuSBZ4cLKZFXIrMGO7DbQCtMJJMKw==", "dev": true }, + "argparse": { + "version": "1.0.10", + "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", + "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", + "dev": true, + "requires": { + "sprintf-js": "~1.0.2" + } + }, "cross-spawn": { "version": "5.1.0", "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-5.1.0.tgz", @@ -55688,6 +55314,16 @@ "integrity": "sha512-Pgs951kaMm5GXP7MOvxERINe3gsaVjUWFm+UZPSq9xYriQAksyhg0csnS0KXSNRD5NmNdapXEpjxG49+AKh/ug==", "dev": true }, + "js-yaml": { + "version": "3.14.1", + "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.14.1.tgz", + "integrity": "sha512-okMH7OXXJ7YrN9Ok3/SXrnu4iX9yOk+25nqX4imS2npuvTYDmo/QEZoqwZkYaIDk3jVvBOTOIEgEhaLOynBS9g==", + "dev": true, + "requires": { + "argparse": "^1.0.7", + "esprima": "^4.0.0" + } + }, "json-schema-traverse": { "version": "0.3.1", "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.3.1.tgz", @@ -56117,6 +55753,29 @@ "once": "^1.3.1" } }, + "pumpify": { + "version": "1.5.1", + "resolved": "https://registry.npmjs.org/pumpify/-/pumpify-1.5.1.tgz", + "integrity": "sha512-oClZI37HvuUJJxSKKrC17bZ9Cu0ZYhEAGPsPUy9KlMUmv9dKX2o77RUmq7f3XjIxbwyGwYzbzQ1L2Ks8sIradQ==", + "dev": true, + "requires": { + "duplexify": "^3.6.0", + "inherits": "^2.0.3", + "pump": "^2.0.0" + }, + "dependencies": { + "pump": { + "version": "2.0.1", + "resolved": "https://registry.npmjs.org/pump/-/pump-2.0.1.tgz", + "integrity": "sha512-ruPMNRkN3MHP1cWJc9OWr+T/xDP0jhXYCLfJcBuX54hhfIBnaQmAUMfDcG4DM5UMWByBbJY69QSphm3jtDKIkA==", + "dev": true, + "requires": { + "end-of-stream": "^1.1.0", + "once": "^1.3.1" + } + } + } + }, "punycode": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", @@ -56227,9 +55886,9 @@ "dev": true }, "ramda": { - "version": "0.28.0", - "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.28.0.tgz", - "integrity": "sha512-9QnLuG/kPVgWvMQ4aODhsBUFKOUmnbUnsSXACv+NCQZcHbeb+v8Lodp8OVxtRULN1/xOyYLLaL6npE6dMq5QTA==", + "version": "0.29.0", + "resolved": "https://registry.npmjs.org/ramda/-/ramda-0.29.0.tgz", + "integrity": "sha512-BBea6L67bYLtdbOqfp8f58fPMqEwx0doL+pAi8TZyp2YWz8R9G8z9x75CZI8W+ftqhFHCpEX2cRnUUXK130iKA==", "dev": true }, "randombytes": { @@ -56307,40 +55966,47 @@ "requires": {} }, "react-docgen": { - "version": "5.4.3", - "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-5.4.3.tgz", - "integrity": "sha512-xlLJyOlnfr8lLEEeaDZ+X2J/KJoe6Nr9AzxnkdQWush5hz2ZSu66w6iLMOScMmxoSHWpWMn+k3v5ZiyCfcWsOA==", + "version": "7.0.3", + "resolved": "https://registry.npmjs.org/react-docgen/-/react-docgen-7.0.3.tgz", + "integrity": "sha512-i8aF1nyKInZnANZ4uZrH49qn1paRgBZ7wZiCNBMnenlPzEv0mRl+ShpTVEI6wZNl8sSc79xZkivtgLKQArcanQ==", "dev": true, "requires": { - "@babel/core": "^7.7.5", - "@babel/generator": "^7.12.11", - "@babel/runtime": "^7.7.6", - "ast-types": "^0.14.2", - "commander": "^2.19.0", + "@babel/core": "^7.18.9", + "@babel/traverse": "^7.18.9", + "@babel/types": "^7.18.9", + "@types/babel__core": "^7.18.0", + "@types/babel__traverse": "^7.18.0", + "@types/doctrine": "^0.0.9", + "@types/resolve": "^1.20.2", "doctrine": "^3.0.0", - "estree-to-babel": "^3.1.0", - "neo-async": "^2.6.1", - "node-dir": "^0.1.10", - "strip-indent": "^3.0.0" + "resolve": "^1.22.1", + "strip-indent": "^4.0.0" }, "dependencies": { - "ast-types": { - "version": "0.14.2", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.14.2.tgz", - "integrity": "sha512-O0yuUDnZeQDL+ncNGlJ78BiO4jnYI3bvMsD5prT0/nsgijG/LpNBIr63gTjVTNsiGkgQhiyCShTgxt8oXOrklA==", + "@types/doctrine": { + "version": "0.0.9", + "resolved": "https://registry.npmjs.org/@types/doctrine/-/doctrine-0.0.9.tgz", + "integrity": "sha512-eOIHzCUSH7SMfonMG1LsC2f8vxBFtho6NGBznK41R84YzPuvSBzrhEps33IsQiOW9+VL6NQ9DbjQJznk/S4uRA==", + "dev": true + }, + "strip-indent": { + "version": "4.0.0", + "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-4.0.0.tgz", + "integrity": "sha512-mnVSV2l+Zv6BLpSD/8V87CW/y9EmmbYzGCIavsnsI6/nwn26DwffM/yztm30Z/I2DY9wdS3vXVCMnHDgZaVNoA==", "dev": true, "requires": { - "tslib": "^2.0.1" + "min-indent": "^1.0.1" } - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==", - "dev": true } } }, + "react-docgen-typescript": { + "version": "2.2.2", + "resolved": "https://registry.npmjs.org/react-docgen-typescript/-/react-docgen-typescript-2.2.2.tgz", + "integrity": "sha512-tvg2ZtOpOi6QDwsb3GZhOjDkkX0h8Z2gipvTg6OVMUyoYoURhEiRNePT8NZItTVCDh39JJHnLdfCOkzoLbFnTg==", + "dev": true, + "requires": {} + }, "react-dom": { "version": "18.2.0", "resolved": "https://registry.npmjs.org/react-dom/-/react-dom-18.2.0.tgz", @@ -56403,13 +56069,6 @@ } } }, - "react-inspector": { - "version": "6.0.1", - "resolved": "https://registry.npmjs.org/react-inspector/-/react-inspector-6.0.1.tgz", - "integrity": "sha512-cxKSeFTf7jpSSVddm66sKdolG90qURAX3g1roTeaN6x0YEbtWc8JpmFN9+yIqLNH2uEkYerWLtJZIXRIFuBKrg==", - "dev": true, - "requires": {} - }, "react-is": { "version": "17.0.2", "resolved": "https://registry.npmjs.org/react-is/-/react-is-17.0.2.tgz", @@ -56442,11 +56101,34 @@ } }, "react-refresh": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.11.0.tgz", - "integrity": "sha512-F27qZr8uUqwhWZboondsPx8tnC3Ct3SxZA3V5WyEvujRyyNv0VYPhoBg1gZ8/MV5tubQp76Trw8lTv9hzRBa+A==", + "version": "0.14.0", + "resolved": "https://registry.npmjs.org/react-refresh/-/react-refresh-0.14.0.tgz", + "integrity": "sha512-wViHqhAd8OHeLS/IRMJjTSDHF3U9eWi62F/MledQGPdJGDhodXJ9PBLNGr6WWL7qlH12Mt3TyTpbS+hGXMjCzQ==", "dev": true }, + "react-remove-scroll": { + "version": "2.5.5", + "resolved": "https://registry.npmjs.org/react-remove-scroll/-/react-remove-scroll-2.5.5.tgz", + "integrity": "sha512-ImKhrzJJsyXJfBZ4bzu8Bwpka14c/fQt0k+cyFp/PBhTfyDnU5hjOtM4AG/0AMyy8oKzOTR0lDgJIM7pYXI0kw==", + "dev": true, + "requires": { + "react-remove-scroll-bar": "^2.3.3", + "react-style-singleton": "^2.2.1", + "tslib": "^2.1.0", + "use-callback-ref": "^1.3.0", + "use-sidecar": "^1.1.2" + } + }, + "react-remove-scroll-bar": { + "version": "2.3.6", + "resolved": "https://registry.npmjs.org/react-remove-scroll-bar/-/react-remove-scroll-bar-2.3.6.tgz", + "integrity": "sha512-DtSYaao4mBmX+HDo5YWYdBWQwYIQQshUV/dVxFxK+KM26Wjwp1gZ6rv6OC3oujI6Bfu6Xyg3TwK533AQutsn/g==", + "dev": true, + "requires": { + "react-style-singleton": "^2.2.1", + "tslib": "^2.0.0" + } + }, "react-router": { "version": "6.3.0", "resolved": "https://registry.npmjs.org/react-router/-/react-router-6.3.0.tgz", @@ -56464,6 +56146,17 @@ "react-router": "6.3.0" } }, + "react-style-singleton": { + "version": "2.2.1", + "resolved": "https://registry.npmjs.org/react-style-singleton/-/react-style-singleton-2.2.1.tgz", + "integrity": "sha512-ZWj0fHEMyWkHzKYUr2Bs/4zU6XLmq9HsgBURm7g5pAVfyn49DgUiNgY2d4lXRlYSiCif9YBGpQleewkcqddc7g==", + "dev": true, + "requires": { + "get-nonce": "^1.0.0", + "invariant": "^2.2.4", + "tslib": "^2.0.0" + } + }, "read-pkg": { "version": "5.2.0", "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-5.2.0.tgz", @@ -56547,30 +56240,16 @@ } }, "recast": { - "version": "0.23.1", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.1.tgz", - "integrity": "sha512-RokaBcoxSjXUDzz1TXSZmZsSW6ZpLmlA3GGqJ8uuTrQ9hZhEz+4Tpsc+gRvYRJ2BU4H+ZyUlg91eSGDw7bwy7g==", + "version": "0.23.6", + "resolved": "https://registry.npmjs.org/recast/-/recast-0.23.6.tgz", + "integrity": "sha512-9FHoNjX1yjuesMwuthAmPKabxYQdOgihFYmT5ebXfYGBcnqXZf3WOVz+5foEZ8Y83P4ZY6yQD5GMmtV+pgCCAQ==", "dev": true, "requires": { - "assert": "^2.0.0", "ast-types": "^0.16.1", "esprima": "~4.0.0", "source-map": "~0.6.1", + "tiny-invariant": "^1.3.3", "tslib": "^2.0.1" - }, - "dependencies": { - "assert": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-2.0.0.tgz", - "integrity": "sha512-se5Cd+js9dXJnu6Ag2JFc00t+HmHOen+8Q+L7O9zI0PqQXr20uk2J0XQqMxZEeo5U50o8Nvmmx7dZrl+Ufr35A==", - "dev": true, - "requires": { - "es6-object-assign": "^1.1.0", - "is-nan": "^1.2.1", - "object-is": "^1.0.1", - "util": "^0.12.0" - } - } } }, "rechoir": { @@ -56626,9 +56305,9 @@ "dev": true }, "regenerate-unicode-properties": { - "version": "10.1.0", - "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.0.tgz", - "integrity": "sha512-d1VudCLoIGitcU/hEg2QqvyGZQmdC0Lf8BqdOMXGFSvJP4bNV1+XqbPQeHHLD51Jh4QJJ225dlIFvY4Ly6MXmQ==", + "version": "10.1.1", + "resolved": "https://registry.npmjs.org/regenerate-unicode-properties/-/regenerate-unicode-properties-10.1.1.tgz", + "integrity": "sha512-X007RyZLsCJVVrjgEFVpLUTZwyOZk3oiL75ZcuYjlIWd6rNJtOjkBwQc5AsRrpbKVkxN6sklw/k/9m2jJYOf8Q==", "dev": true, "requires": { "regenerate": "^1.4.2" @@ -56640,9 +56319,9 @@ "integrity": "sha512-p3VT+cOEgxFsRRA9X4lkI1E+k2/CtnKtU4gcxyaCUreilL/vqI6CdZ3wxVUx3UOUg+gnUOQQcRI7BmSI656MYA==" }, "regenerator-transform": { - "version": "0.15.1", - "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.1.tgz", - "integrity": "sha512-knzmNAcuyxV+gQCufkYcvOqX/qIIfHLv0u5x79kRxuGojfYVky1f15TzZEu2Avte8QGepvUNTnLskf8E6X6Vyg==", + "version": "0.15.2", + "resolved": "https://registry.npmjs.org/regenerator-transform/-/regenerator-transform-0.15.2.tgz", + "integrity": "sha512-hfMp2BoF0qOk3uc5V20ALGDS2ddjQaLrdl7xrGXvAIow7qeWRM2VA2HuCHkUKk9slq3VwEwLNK3DFBqDfPGYtg==", "dev": true, "requires": { "@babel/runtime": "^7.8.4" @@ -56661,9 +56340,9 @@ } }, "regexpu-core": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.0.tgz", - "integrity": "sha512-ZdhUQlng0RoscyW7jADnUZ25F5eVtHdMyXSb2PiwafvteRAOJUjFoUPEYZSIfP99fBIs3maLIRfpEddT78wAAQ==", + "version": "5.3.2", + "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-5.3.2.tgz", + "integrity": "sha512-RAM5FlZz+Lhmo7db9L298p2vHP5ZywrVXmVXpmAD9GuL5MPH6t9ROw1iA/wfHkQ76Qe7AaPF0nGuim96/IrQMQ==", "dev": true, "requires": { "@babel/regjsgen": "^0.8.0", @@ -56765,12 +56444,6 @@ "color-convert": "^2.0.1" } }, - "argparse": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-2.0.1.tgz", - "integrity": "sha512-8+9WqebbFzpX9OR+Wa6O29asIogeRMzcGtAINdpMHHyAg10f05aSFVBbcEqGf/PXw1EjAZ+q2/bEBg3DvurK3Q==", - "dev": true - }, "chalk": { "version": "5.3.0", "resolved": "https://registry.npmjs.org/chalk/-/chalk-5.3.0.tgz", @@ -56957,15 +56630,6 @@ "is-inside-container": "^1.0.0" } }, - "js-yaml": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-4.1.0.tgz", - "integrity": "sha512-wpxZs9NoxZaJESJGIZTyDEaYpl0FKSA+FB9aJiyemKhMwkxQg63h4T1KJgUGHpTqPDNRcmmYLugrRjJlBtWvRA==", - "dev": true, - "requires": { - "argparse": "^2.0.1" - } - }, "mimic-fn": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/mimic-fn/-/mimic-fn-4.0.0.tgz", @@ -57622,6 +57286,33 @@ "@types/json-schema": "^7.0.4", "ajv": "^6.12.2", "ajv-keywords": "^3.4.1" + }, + "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + } } }, "scss-tokenizer": { @@ -57748,33 +57439,6 @@ "randombytes": "^2.1.0" } }, - "serve-favicon": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/serve-favicon/-/serve-favicon-2.5.0.tgz", - "integrity": "sha512-FMW2RvqNr03x+C0WxTyu6sOv21oOjkq5j8tjquWccwa6ScNyGFOGJVpuS1NmTVGBAHS07xnSKotgf2ehQmf9iA==", - "dev": true, - "requires": { - "etag": "~1.8.1", - "fresh": "0.5.2", - "ms": "2.1.1", - "parseurl": "~1.3.2", - "safe-buffer": "5.1.1" - }, - "dependencies": { - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - }, - "safe-buffer": { - "version": "5.1.1", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.1.tgz", - "integrity": "sha512-kKvNJn6Mm93gAczWVJg7wH+wGYWNrDHdWvpUmHyEsgCtIwwo3bqPtV4tR5tuPaUhTOo/kvhVwd8XwwOllGYkbg==", - "dev": true - } - } - }, "serve-index": { "version": "1.9.1", "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", @@ -57859,7 +57523,9 @@ "version": "2.0.0", "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", "integrity": "sha512-KiKBS8AnWGEyLzofFfmvKwpdPzqiy16LvQfK3yv/fVH7Bj13/wl3JSR1J+rfgRE9q7xUJK4qvgS8raSOeLUehw==", - "dev": true + "dev": true, + "optional": true, + "peer": true }, "set-function-length": { "version": "1.2.2", @@ -58007,21 +57673,23 @@ } } }, - "simple-update-notifier": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/simple-update-notifier/-/simple-update-notifier-1.1.0.tgz", - "integrity": "sha512-VpsrsJSUcJEseSbMHkrsrAVSdvVS5I96Qo1QAQ4FxQ9wXFcB+pjj7FB7/us9+GcgfW4ziHtYMc1J0PLczb55mg==", - "dev": true, + "simplebar-core": { + "version": "1.2.4", + "resolved": "https://registry.npmjs.org/simplebar-core/-/simplebar-core-1.2.4.tgz", + "integrity": "sha512-P+Sqshef4fq3++gQ82TgNYcgl3qZFSCP5jS2/8NMmw18oagXOijMzs1G+vm6RUY3oMvpwH3wGoqh9u6SyDjHfQ==", "requires": { - "semver": "~7.0.0" - }, - "dependencies": { - "semver": { - "version": "7.0.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-7.0.0.tgz", - "integrity": "sha512-+GB6zVA9LWh6zovYQLALHwv5rb2PHGlJi3lfiqIHxR0uuwCgefcOJc59v9fv1w8GbStwxuuqqAjI9NMAOOgq1A==", - "dev": true - } + "@types/lodash-es": "^4.17.6", + "can-use-dom": "^0.1.0", + "lodash": "^4.17.21", + "lodash-es": "^4.17.21" + } + }, + "simplebar-react": { + "version": "3.2.4", + "resolved": "https://registry.npmjs.org/simplebar-react/-/simplebar-react-3.2.4.tgz", + "integrity": "sha512-ogLN79e7JUm82wJChD7NSUB+4EHCFvDkjXpiu8hT1Alk7DnCekUWds61NXcsP9jC97KOgF5To/AVjYFbX0olgg==", + "requires": { + "simplebar-core": "^1.2.4" } }, "sisteransi": { @@ -58207,7 +57875,7 @@ "sprintf-js": { "version": "1.0.3", "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", + "integrity": "sha512-D9cPgkvLlV3t3IzL0D0YLvGA9Ahk4PcvVwUbN0dSGr1aP0Nrt4AEnTUbuGvquEC0mA64Gqt1fzirlRs5ibXx8g==", "dev": true }, "spritesmith": { @@ -58382,20 +58050,26 @@ } }, "store2": { - "version": "2.14.2", - "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.2.tgz", - "integrity": "sha512-siT1RiqlfQnGqgT/YzXVUNsom9S0H1OX+dpdGN1xkyYATo4I6sep5NmsRD/40s3IIOvlCq6akxkqG82urIZW1w==", + "version": "2.14.3", + "resolved": "https://registry.npmjs.org/store2/-/store2-2.14.3.tgz", + "integrity": "sha512-4QcZ+yx7nzEFiV4BMLnr/pRa5HYzNITX2ri0Zh6sT9EyQHbBHacC6YigllUPU9X3D0f/22QCgfokpKs52YRrUg==", "dev": true }, "storybook": { - "version": "7.0.0-beta.45", - "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.0.0-beta.45.tgz", - "integrity": "sha512-NWemhdhfELg5tLIigh+G8UYq1kpANqeEbtNVTscNy4XtO/4V7rVez4MiHA9tajNFIcx9m+OVRfFUi59NV01Sxw==", + "version": "7.6.17", + "resolved": "https://registry.npmjs.org/storybook/-/storybook-7.6.17.tgz", + "integrity": "sha512-8+EIo91bwmeFWPg1eysrxXlhIYv3OsXrznTr4+4Eq0NikqAoq6oBhtlN5K2RGS2lBVF537eN+9jTCNbR+WrzDA==", "dev": true, "requires": { - "@storybook/cli": "7.0.0-beta.45" + "@storybook/cli": "7.6.17" } }, + "stream-shift": { + "version": "1.0.3", + "resolved": "https://registry.npmjs.org/stream-shift/-/stream-shift-1.0.3.tgz", + "integrity": "sha512-76ORR0DO1o1hlKwTbi/DM3EXWGf3ZJYO8cXX5RJwnul2DEg2oyoZyjLNoQM8WsvZiFKCRfC1O0J7iCvie3RZmQ==", + "dev": true + }, "string_decoder": { "version": "1.3.0", "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.3.0.tgz", @@ -58437,6 +58111,31 @@ "schema-utils": "^3.0.0" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", @@ -58469,6 +58168,25 @@ } } }, + "string-width-cjs": { + "version": "npm:string-width@4.2.3", + "resolved": "https://registry.npmjs.org/string-width/-/string-width-4.2.3.tgz", + "integrity": "sha512-wKyQRQpjJ0sIp62ErSZdGsjMJWsap5oRNihHhu6G7JVO/9jIB6UyevL+tXuOqrng8j/cxKTWyWUwvSTriiZz/g==", + "dev": true, + "requires": { + "emoji-regex": "^8.0.0", + "is-fullwidth-code-point": "^3.0.0", + "strip-ansi": "^6.0.1" + }, + "dependencies": { + "emoji-regex": { + "version": "8.0.0", + "resolved": "https://registry.npmjs.org/emoji-regex/-/emoji-regex-8.0.0.tgz", + "integrity": "sha512-MSjYzcWNOA0ewAHpz0MxpYFvwg6yjy1NG3xteoqz644VCo/RPgnr1/GGt+ic3iJTzQ8Eu3TdM14SawnVUmGE6A==", + "dev": true + } + } + }, "string.prototype.matchall": { "version": "4.0.8", "resolved": "https://registry.npmjs.org/string.prototype.matchall/-/string.prototype.matchall-4.0.8.tgz", @@ -58529,6 +58247,15 @@ "ansi-regex": "^5.0.1" } }, + "strip-ansi-cjs": { + "version": "npm:strip-ansi@6.0.1", + "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-6.0.1.tgz", + "integrity": "sha512-Y38VPSHcqkFrCpFnQ9vuSXmquuv5oXOKpGeT6aGrr3o3Gc9AlVa6JBfUSOCnbxGGZF+/0ooI7KrPuUSztUdU5A==", + "dev": true, + "requires": { + "ansi-regex": "^5.0.1" + } + }, "strip-bom": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-4.0.0.tgz", @@ -58634,6 +58361,15 @@ "upper-case": "^1.1.1" } }, + "swc-loader": { + "version": "0.2.6", + "resolved": "https://registry.npmjs.org/swc-loader/-/swc-loader-0.2.6.tgz", + "integrity": "sha512-9Zi9UP2YmDpgmQVbyOPJClY0dwf58JDyDMQ7uRc4krmc72twNI2fvlBWHLqVekBpPc7h5NJkGVT1zNDxFrqhvg==", + "dev": true, + "requires": { + "@swc/counter": "^0.1.3" + } + }, "symbol-tree": { "version": "3.2.4", "resolved": "https://registry.npmjs.org/symbol-tree/-/symbol-tree-3.2.4.tgz", @@ -58757,23 +58493,23 @@ "dev": true }, "tar": { - "version": "6.1.13", - "resolved": "https://registry.npmjs.org/tar/-/tar-6.1.13.tgz", - "integrity": "sha512-jdIBIN6LTIe2jqzay/2vtYLlBHa3JF42ot3h1dW8Q0PaAG4v8rm0cvpVePtau5C6OKXGGcgO9q2AMNSWxiLqKw==", + "version": "6.2.1", + "resolved": "https://registry.npmjs.org/tar/-/tar-6.2.1.tgz", + "integrity": "sha512-DZ4yORTwrbTj/7MZYq2w+/ZFdI6OZ/f9SFHR+71gIVUZhOQPHzVCLpvRnPgyaMpfWxxk/4ONva3GQSyNIKRv6A==", "dev": true, "requires": { "chownr": "^2.0.0", "fs-minipass": "^2.0.0", - "minipass": "^4.0.0", + "minipass": "^5.0.0", "minizlib": "^2.1.1", "mkdirp": "^1.0.3", "yallist": "^4.0.0" }, "dependencies": { "minipass": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/minipass/-/minipass-4.0.3.tgz", - "integrity": "sha512-OW2r4sQ0sI+z5ckEt5c1Tri4xTgZwYDxpE54eqWlQloQRoWtXjqt9udJ5Z4dSv7wK+nfFI7FRXyCpBSft+gpFw==", + "version": "5.0.0", + "resolved": "https://registry.npmjs.org/minipass/-/minipass-5.0.0.tgz", + "integrity": "sha512-3FnjYuehv9k6ovOEbyOswadCDPX1piCfhV8ncmYtHOjuPwylVWsghTLo7rabjC3Rx5xD4HDx8Wm1xnMF7S5qFQ==", "dev": true }, "mkdirp": { @@ -58815,9 +58551,9 @@ } }, "telejson": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.1.0.tgz", - "integrity": "sha512-jFJO4P5gPebZAERPkJsqMAQ0IMA1Hi0AoSfxpnUaV6j6R2SZqlpkbS20U6dEUtA3RUYt2Ak/mTlkQzHH9Rv/hA==", + "version": "7.2.0", + "resolved": "https://registry.npmjs.org/telejson/-/telejson-7.2.0.tgz", + "integrity": "sha512-1QTEcJkJEhc8OnStBx/ILRu5J2p0GjvWsBx56bmZRqnrkdBMUe+nX92jxV+p3dB4CP6PZCdJMQJwCggkNBMzkQ==", "dev": true, "requires": { "memoizerific": "^1.11.3" @@ -58913,6 +58649,31 @@ "terser": "^5.7.2" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", @@ -58998,6 +58759,12 @@ "resolved": "https://registry.npmjs.org/tiny-emitter/-/tiny-emitter-2.1.0.tgz", "integrity": "sha512-NB6Dk1A9xgQPMoGqC5CVXn123gWyte215ONT5Pp5a0yt4nlEoO1ZWeCwpncaekPHXO60i47ihFnZPiRPjRMq4Q==" }, + "tiny-invariant": { + "version": "1.3.3", + "resolved": "https://registry.npmjs.org/tiny-invariant/-/tiny-invariant-1.3.3.tgz", + "integrity": "sha512-+FbBPE1o9QAYvviau/qC5SE3caw21q3xkvWKBtja5vgqOWIHHJ3ioaq1VPfn/Szqctz2bU/oYeKd9/z5BL+PVg==", + "dev": true + }, "title-case": { "version": "2.1.1", "resolved": "https://registry.npmjs.org/title-case/-/title-case-2.1.1.tgz", @@ -59038,6 +58805,12 @@ "is-number": "^7.0.0" } }, + "tocbot": { + "version": "4.25.0", + "resolved": "https://registry.npmjs.org/tocbot/-/tocbot-4.25.0.tgz", + "integrity": "sha512-kE5wyCQJ40hqUaRVkyQ4z5+4juzYsv/eK+aqD97N62YH0TxFhzJvo22RUQQZdO3YnXAk42ZOfOpjVdy+Z0YokA==", + "dev": true + }, "toidentifier": { "version": "1.0.1", "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.1.tgz", @@ -59346,6 +59119,12 @@ "integrity": "sha512-VAH4IvQ7BDFYglMd7BPRDfLgxZZX4O4TFcRDA6EN5X7erNJJq+McIEp8np9aVtxrCJ6qx4GTYVfOWNjcqwZgRw==", "dev": true }, + "ufo": { + "version": "1.5.3", + "resolved": "https://registry.npmjs.org/ufo/-/ufo-1.5.3.tgz", + "integrity": "sha512-Y7HYmWaFwPUmkoQCUIAYpKqkOf+SbVj/2fJJZ4RJMCfZp0rTGwRbzQD+HghfnhKOjL9E01okqz+ncJskGYfBNw==", + "dev": true + }, "uglify-js": { "version": "3.17.4", "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.17.4.tgz", @@ -59365,10 +59144,10 @@ "which-boxed-primitive": "^1.0.2" } }, - "unfetch": { - "version": "4.2.0", - "resolved": "https://registry.npmjs.org/unfetch/-/unfetch-4.2.0.tgz", - "integrity": "sha512-F9p7yYCn6cIW9El1zi0HI6vqpeIvBsr3dSuRO6Xuppb1u5rXpCPmMvLSyECLhybr9isec8Ohl0hPekMVrEinDA==", + "undici-types": { + "version": "5.26.5", + "resolved": "https://registry.npmjs.org/undici-types/-/undici-types-5.26.5.tgz", + "integrity": "sha512-JlCMO+ehdEIKqlFxk6IfVoAUVmgz7cU7zD/h9XZ0qzeosSHmUJVOzSQvvYSYWXkFXC+IfLKSIffhv0sVZup6pA==", "dev": true }, "unicode-canonical-property-names-ecmascript": { @@ -59487,15 +59266,15 @@ "dev": true }, "unplugin": { - "version": "0.10.2", - "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-0.10.2.tgz", - "integrity": "sha512-6rk7GUa4ICYjae5PrAllvcDeuT8pA9+j5J5EkxbMFaV+SalHhxZ7X2dohMzu6C3XzsMT+6jwR/+pwPNR3uK9MA==", + "version": "1.10.1", + "resolved": "https://registry.npmjs.org/unplugin/-/unplugin-1.10.1.tgz", + "integrity": "sha512-d6Mhq8RJeGA8UfKCu54Um4lFA0eSaRa3XxdAJg8tIdxbu1ubW0hBCZUL7yI2uGyYCRndvbK8FLHzqy2XKfeMsg==", "dev": true, "requires": { - "acorn": "^8.8.0", - "chokidar": "^3.5.3", + "acorn": "^8.11.3", + "chokidar": "^3.6.0", "webpack-sources": "^3.2.3", - "webpack-virtual-modules": "^0.4.5" + "webpack-virtual-modules": "^0.6.1" }, "dependencies": { "webpack-sources": { @@ -59503,6 +59282,12 @@ "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-3.2.3.tgz", "integrity": "sha512-/DyMEOrDgLKKIG0fmvtz+4dUX/3Ghozwgm6iPp8KRhvn+eQf9+Q7GWxVNMk3+uCPWfdXYC4ExGBckIXdFEfH1w==", "dev": true + }, + "webpack-virtual-modules": { + "version": "0.6.1", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.6.1.tgz", + "integrity": "sha512-poXpCylU7ExuvZK8z+On3kX+S8o/2dQ/SVYueKA0D4WEMXROXgY8Ez50/bQEUmvoSMMrWcrJqCHuhAbsiwg7Dg==", + "dev": true } } }, @@ -59513,9 +59298,9 @@ "dev": true }, "update-browserslist-db": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.10.tgz", - "integrity": "sha512-OztqDenkfFkbSG+tRxBeAnCVPckDBcvibKd35yDONx6OU8N7sqgwc7rCbkJ/WcYtVRZ4ba68d6byhC21GFh7sQ==", + "version": "1.0.13", + "resolved": "https://registry.npmjs.org/update-browserslist-db/-/update-browserslist-db-1.0.13.tgz", + "integrity": "sha512-xebP81SNcPuNpPP3uzeW1NYXxI3rxyJzF3pD6sH4jE7o/IX+WtSpwnVU+qIsDPyk0d3hmFQ7mjqc6AtV604hbg==", "dev": true, "requires": { "escalade": "^3.1.1", @@ -59681,6 +59466,15 @@ "integrity": "sha512-n2huDr9h9yzd6exQVnH/jU5mr+Pfx08LRXXZhkLLetAMESRj+anQsTAh940iMrIetKAmry9coFuZQ2jY8/p3WA==", "dev": true }, + "use-callback-ref": { + "version": "1.3.2", + "resolved": "https://registry.npmjs.org/use-callback-ref/-/use-callback-ref-1.3.2.tgz", + "integrity": "sha512-elOQwe6Q8gqZgDA8mrh44qRTQqpIHDcZ3hXTLjBe1i4ph8XpNJnO+aQf3NaG+lriLopI4HMx9VjQLfPQ6vhnoA==", + "dev": true, + "requires": { + "tslib": "^2.0.0" + } + }, "use-resize-observer": { "version": "9.1.0", "resolved": "https://registry.npmjs.org/use-resize-observer/-/use-resize-observer-9.1.0.tgz", @@ -59690,6 +59484,16 @@ "@juggle/resize-observer": "^3.3.1" } }, + "use-sidecar": { + "version": "1.1.2", + "resolved": "https://registry.npmjs.org/use-sidecar/-/use-sidecar-1.1.2.tgz", + "integrity": "sha512-epTbsLuzZ7lPClpz2TyryBfztm7m+28DlEv2ZCQ3MDr5ssiwyOwGH/e5F9CkfWjJ1t4clvI58yF822/GUkjjhw==", + "dev": true, + "requires": { + "detect-node-es": "^1.1.0", + "tslib": "^2.0.0" + } + }, "util": { "version": "0.12.5", "resolved": "https://registry.npmjs.org/util/-/util-0.12.5.tgz", @@ -59726,12 +59530,6 @@ "integrity": "sha512-+NYs2QeMWy+GWFOEm9xnn6HCDp0l7QBD7ml8zLUmJ+93Q5NF0NocErnwkTkXVFNiX3/fpC6afS8Dhb/gz7R7eg==", "dev": true }, - "uuid-browser": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/uuid-browser/-/uuid-browser-3.1.0.tgz", - "integrity": "sha512-dsNgbLaTrd6l3MMxTtouOCFw4CBFc/3a+GgYA2YyrJvyQ1u6q4pcu3ktLoUZ/VN/Aw9WsauazbgsgdfVWgAKQg==", - "dev": true - }, "v8-compile-cache-lib": { "version": "3.0.1", "resolved": "https://registry.npmjs.org/v8-compile-cache-lib/-/v8-compile-cache-lib-3.0.1.tgz", @@ -59928,6 +59726,31 @@ "webpack-sources": "^3.2.3" }, "dependencies": { + "ajv": { + "version": "6.12.6", + "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.12.6.tgz", + "integrity": "sha512-j3fVLgvTo527anyYyJOGTYJbG+vnnQYvE0m5mmkc1TK+nxAppkCLMIL0aZ4dblVCNoGShhm+kzE4ZUykBoMg4g==", + "dev": true, + "requires": { + "fast-deep-equal": "^3.1.1", + "fast-json-stable-stringify": "^2.0.0", + "json-schema-traverse": "^0.4.1", + "uri-js": "^4.2.2" + } + }, + "ajv-keywords": { + "version": "3.5.2", + "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.5.2.tgz", + "integrity": "sha512-5p6WTN0DdTGVQk6VjcEju19IgaHudalcfabD7yhDGeA6bcQnmL+CpveLJq/3hvfwd1aof6L386Ougkx6RfyMIQ==", + "dev": true, + "requires": {} + }, + "json-schema-traverse": { + "version": "0.4.1", + "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", + "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", + "dev": true + }, "schema-utils": { "version": "3.1.1", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-3.1.1.tgz", @@ -59999,33 +59822,6 @@ "schema-utils": "^4.0.0" }, "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, "schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -60077,33 +59873,6 @@ "ws": "^8.4.2" }, "dependencies": { - "ajv": { - "version": "8.11.0", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-8.11.0.tgz", - "integrity": "sha512-wGgprdCvMalC0BztXvitD2hC04YffAvtsUn93JbGXYLAtCUO4xd17mCCZQxUOItiBwZvJScWo8NIvQMQ71rdpg==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.1", - "json-schema-traverse": "^1.0.0", - "require-from-string": "^2.0.2", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-5.1.0.tgz", - "integrity": "sha512-YCS/JNFAUyr5vAuhk1DWm1CBxRHW9LbJ2ozWeemrIqpbsqKjHVxYPyi5GC0rjZIT5JxJ3virVTS8wk4i/Z+krw==", - "dev": true, - "requires": { - "fast-deep-equal": "^3.1.3" - } - }, - "json-schema-traverse": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-1.0.0.tgz", - "integrity": "sha512-NM8/P9n3XjXhIZn1lLhkFaACTOURQXjWhV4BA/RnOv8xvgqtqpAX9IO4mRQxSx1Rlo4tqzeqb0sOlruaOy3dug==", - "dev": true - }, "schema-utils": { "version": "4.0.0", "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-4.0.0.tgz", @@ -60126,9 +59895,9 @@ } }, "webpack-hot-middleware": { - "version": "2.25.3", - "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.25.3.tgz", - "integrity": "sha512-IK/0WAHs7MTu1tzLTjio73LjS3Ov+VvBKQmE8WPlJutgG5zT6Urgq/BbAdRrHTRpyzK0dvAvFh1Qg98akxgZpA==", + "version": "2.26.1", + "resolved": "https://registry.npmjs.org/webpack-hot-middleware/-/webpack-hot-middleware-2.26.1.tgz", + "integrity": "sha512-khZGfAeJx6I8K9zKohEWWYN6KDlVw2DHownoe+6Vtwj1LP9WFgegXnVMSkZ/dBEBtXFwrkkydsaPFlB7f8wU2A==", "dev": true, "requires": { "ansi-html-community": "0.0.8", @@ -60157,9 +59926,9 @@ } }, "webpack-virtual-modules": { - "version": "0.4.6", - "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.4.6.tgz", - "integrity": "sha512-5tyDlKLqPfMqjT3Q9TAqf2YqjwmnUleZwzJi1A5qXnlBCdj2AtOJ6wAWdglTIDOPgOiOrXeBeFcsQ8+aGQ6QbA==", + "version": "0.5.0", + "resolved": "https://registry.npmjs.org/webpack-virtual-modules/-/webpack-virtual-modules-0.5.0.tgz", + "integrity": "sha512-kyDivFZ7ZM0BVOUteVbDFhlRt7Ah/CSPwJdi8hBpkK7QLumUqdLtVfm/PX/hkcnrvr0i77fO5+TjZ94Pe+C9iw==", "dev": true }, "websocket-driver": { @@ -60257,19 +60026,12 @@ "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.5.tgz", "integrity": "sha512-eDMORYaPNZ4sQIuuYPDHdQvf4gyCF9rEEV/yPxGfwPkRodwEgiMUUXTx/dex+Me0wxx53S+NgUHaP7y3MGlDmg==", "dev": true, + "optional": true, + "peer": true, "requires": { "string-width": "^1.0.2 || 2 || 3 || 4" } }, - "widest-line": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/widest-line/-/widest-line-3.1.0.tgz", - "integrity": "sha512-NsmoXalsWVDMGupxZ5R08ka9flZjjiLvHVAWYOKtiKM8ujtZWr9cRffak+uSE48+Ob8ObalXpwyeUiyDD6QFgg==", - "dev": true, - "requires": { - "string-width": "^4.0.0" - } - }, "wildcard": { "version": "2.0.0", "resolved": "https://registry.npmjs.org/wildcard/-/wildcard-2.0.0.tgz", @@ -60343,6 +60105,28 @@ } } }, + "wrap-ansi-cjs": { + "version": "npm:wrap-ansi@7.0.0", + "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-7.0.0.tgz", + "integrity": "sha512-YVGIj2kamLSTxw6NsZjoBxfSwsn0ycdesmc4p+Q21c5zPuZ1pl+NfxVdxPtdHvmNVOQ6XSYG4AUtyt/Fi7D16Q==", + "dev": true, + "requires": { + "ansi-styles": "^4.0.0", + "string-width": "^4.1.0", + "strip-ansi": "^6.0.0" + }, + "dependencies": { + "ansi-styles": { + "version": "4.3.0", + "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-4.3.0.tgz", + "integrity": "sha512-zbB9rCJAT1rbjiVDb2hqKFHNYLxgtk8NURxZ3IZwD3F6NtxbXZQCnnSi1Lkx+IDohdPlFp222wVALIheZJQSEg==", + "dev": true, + "requires": { + "color-convert": "^2.0.1" + } + } + } + }, "wrappy": { "version": "1.0.2", "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", diff --git a/package.json b/package.json index cfe9157a..0f9451a2 100644 --- a/package.json +++ b/package.json @@ -12,6 +12,7 @@ "storybook": "storybook dev -p 6006", "build-storybook": "storybook build", "gen-archetype": "hygen archetype new", + "gen-mission": "hygen mission new", "gen-spritesheet": "node ./scripts/createSpritesheet.js", "gen-save": "node -r ts-node/register ./scripts/createSave.ts", "gen-icons": "node -r ts-node/register ./scripts/createIconsModule.ts", @@ -23,22 +24,25 @@ "devDependencies": { "@babel/core": "^7.20.12", "@storybook/addon-actions": "^7.0.0-beta.45", - "@storybook/addon-essentials": "^7.0.0-beta.45", - "@storybook/addon-interactions": "^7.0.0-beta.45", - "@storybook/addon-links": "^7.0.0-beta.45", - "@storybook/react": "^7.0.0-beta.45", - "@storybook/react-webpack5": "^7.0.0-beta.45", + "@storybook/addon-essentials": "^7.6.17", + "@storybook/addon-interactions": "^7.6.17", + "@storybook/addon-links": "^7.6.17", + "@storybook/react": "^7.6.17", + "@storybook/react-webpack5": "^7.6.17", "@storybook/testing-library": "^0.0.14-next.1", "@types/graphlib": "^2.1.8", "@types/jest": "^27.0.2", + "@types/js-yaml": "^4.0.9", "@types/mustache": "^4.2.2", "@types/react": "^18.2.6", "@types/react-dom": "^18.2.4", "@types/react-modal": "^3.13.1", "@types/react-router": "^5.1.18", "@types/react-router-dom": "^5.3.3", + "@types/webpack": "^5.28.5", "@typescript-eslint/eslint-plugin": "^7.4.0", "@typescript-eslint/parser": "^7.4.0", + "ajv": "^8.12.0", "babel-loader": "^8.3.0", "css-loader": "^6.7.1", "dart-sass": "^1.25.0", @@ -58,13 +62,14 @@ "jest": "^27.3.0", "jest-canvas-mock": "^2.4.0", "jest-transform-stub": "^2.0.0", + "js-yaml": "^4.1.0", "lint-staged": "^13.2.2", "prettier": "2.8.4", "prettier-eslint": "^8.8.2", "release-it": "17.1.1", "sass": "^1.72.0", "sass-loader": "^13.1.0", - "storybook": "^7.0.0-beta.45", + "storybook": "^7.6.17", "string-replace-loader": "^3.1.0", "style-loader": "^3.3.1", "ts-node": "^10.9.2", @@ -114,6 +119,7 @@ "recoil": "^0.7.5", "reflect-metadata": "^0.1.13", "sharp": "^0.32.0", + "simplebar-react": "^3.2.4", "spritesmith": "^3.4.1" }, "lint-staged": { diff --git a/ui/atoms.ts b/ui/atoms.ts index f5e1e249..686f70df 100644 --- a/ui/atoms.ts +++ b/ui/atoms.ts @@ -1,5 +1,6 @@ import { atom, useRecoilState } from "recoil"; import type { Sim } from "@core/sim"; +import { Observable } from "@core/utils/observer"; import type { ConfigDialogProps } from "./components/ConfigDialog"; import type { ContextMenu } from "./components/ContextMenu/types"; import type { TradeDialogProps } from "./components/TradeDialog"; @@ -10,6 +11,8 @@ import type { ShipyardDialogProps } from "./components/ShipyardDialog"; import type { MissionDialogProps } from "./components/MissionDialog"; import type { NotificationProps } from "./components/Notifications"; import type { Notification } from "./components/Notifications/types"; +import { useObservable } from "./hooks/useObservable"; +import type { ImmediateConversationDialogProps } from "./components/ImmediateConversation"; export const sim = atom({ key: "sim", @@ -39,13 +42,11 @@ export type GameDialogProps = | FacilityTradeManagerProps | ShipyardDialogProps | MissionDialogProps + | ImmediateConversationDialogProps | null; -export const gameDialog = atom({ - key: "gameDialog", - default: null, -}); -export const useGameDialog = () => useRecoilState(gameDialog); +export const gameDialog = new Observable("gameDialog"); +export const useGameDialog = () => useObservable(gameDialog); export type GameOverlayProps = "fleet" | "missions" | "dev" | null; diff --git a/ui/components/ConfigDialog.tsx b/ui/components/ConfigDialog.tsx index 7b5c8897..c0247561 100644 --- a/ui/components/ConfigDialog.tsx +++ b/ui/components/ConfigDialog.tsx @@ -104,7 +104,7 @@ export const ConfigDialog: React.FC = ({ open, onClose }) => { setSim(null); sim.destroy(); const newSim = Sim.load( - createBaseConfig(), + await createBaseConfig(), LZString.decompress(saves.find((s) => s.id === id)!.data) ); setTimeout(() => { diff --git a/ui/components/ContextMenu/ShipToSpace.tsx b/ui/components/ContextMenu/ShipToSpace.tsx index dc0594da..9c72e739 100644 --- a/ui/components/ContextMenu/ShipToSpace.tsx +++ b/ui/components/ContextMenu/ShipToSpace.tsx @@ -35,7 +35,8 @@ export const ShipToSpace: React.FC = () => { (field) => (norm( subtract(field.cp.position.coord, menu.worldPosition) - ) as number) < field.cp.asteroidSpawn.size + ) as number) < field.cp.asteroidSpawn.size && + menu.sector?.id === field.cp.position.sector ) : []; diff --git a/ui/components/ConversationDialog/ConversationDialog.stories.tsx b/ui/components/ConversationDialog/ConversationDialog.stories.tsx new file mode 100644 index 00000000..2e1aca30 --- /dev/null +++ b/ui/components/ConversationDialog/ConversationDialog.stories.tsx @@ -0,0 +1,31 @@ +import { Styles } from "@kit/theming/style"; +import type { StoryFn } from "@storybook/react"; +import React from "react"; + +import { action } from "@storybook/addon-actions"; +import type { ConversationDialogProps } from "./ConversationDialog"; +import { ConversationDialog } from "./ConversationDialog"; +import conversation from "../../../core/world/data/missions/main/ffw/tutorial-miner.yml"; + +export default { + title: "Dialogs / Conversation", + component: ConversationDialog, + parameters: { + layout: "fullscreen", + }, +}; + +const Template: StoryFn = (args) => ( +
+ + + +
+); + +export const Default = Template.bind({}); +Default.args = { + open: true, + conversation, + onEnd: action("onEnd"), +}; diff --git a/ui/components/ConversationDialog/ConversationDialog.tsx b/ui/components/ConversationDialog/ConversationDialog.tsx new file mode 100644 index 00000000..0cf19cd2 --- /dev/null +++ b/ui/components/ConversationDialog/ConversationDialog.tsx @@ -0,0 +1,154 @@ +import { Button } from "@kit/Button"; +import type { DialogProps } from "@kit/Dialog"; +import { Dialog } from "@kit/Dialog"; +import { DialogActions } from "@kit/DialogActions"; +import Text from "@kit/Text"; +import clsx from "clsx"; +import React from "react"; +import type { + ConversationLine, + MissionConversation, +} from "@core/systems/mission/types"; +import { Scrollbar } from "@kit/Scrollbar"; +import styles from "./styles.scss"; + +export interface ConversationDialogProps extends DialogProps { + conversation: MissionConversation; + onEnd: (_flags: Record) => void; +} + +export const ConversationDialog: React.FC = ({ + conversation, + onClose, + onEnd, + ...dialogProps +}) => { + const logRef = React.useRef(null); + const [flags, setFlags] = React.useState>({}); + const [log, setLog] = React.useState< + { line: ConversationLine; actor: string }[] + >(() => { + const [actor, line] = conversation.Start.split("."); + + return [ + { + line: conversation.Actors[actor].lines[line], + actor, + }, + ]; + }); + const [responses, setResponses] = React.useState([]); + const canClose = responses.length === 0; + + React.useEffect(() => { + const nextNodes = log.at(-1)!.line.next; + if (nextNodes === undefined) { + onEnd(flags); + return; + } + + const [actor, line] = nextNodes[0].split("."); + const isResponse = actor === "player"; + if (!isResponse && conversation.Actors[actor].lines[line].set) { + setFlags((prevFlags) => ({ + ...prevFlags, + ...conversation.Actors[actor].lines[line].set, + })); + } + if (isResponse) { + setResponses( + nextNodes.map( + (node) => conversation.Actors[actor].lines[node.split(".")[1]] + ) + ); + } else { + setLog((prevLog) => [ + ...prevLog, + { + line: conversation.Actors[actor].lines[line], + actor, + }, + ]); + if (!conversation.Actors[actor].lines[line].next) { + setResponses([]); + } + } + + if (logRef.current) { + logRef.current.scrollTop = logRef.current.scrollHeight; + } + }, [log]); + + return ( + + +
+ {log.map((l, lIndex) => ( + + {log[lIndex - 1]?.actor === l.actor ? ( +
+ ) : ( + + {l.actor === "player" + ? "You" + : conversation.Actors[l.actor].name} + + )} + + {!!l.line.action && [{l.line.action}] } + {l.line.text} + + + ))} +
+ + + {responses.length > 0 && ( +
+
    + {responses.map((response, rIndex) => ( +
  1. + +
  2. + ))} +
+
+ )} + {canClose && ( + + + + )} +
+ ); +}; diff --git a/ui/components/ConversationDialog/index.ts b/ui/components/ConversationDialog/index.ts new file mode 100644 index 00000000..8491b5f7 --- /dev/null +++ b/ui/components/ConversationDialog/index.ts @@ -0,0 +1 @@ +export * from "./ConversationDialog"; diff --git a/ui/components/ConversationDialog/styles.scss b/ui/components/ConversationDialog/styles.scss new file mode 100644 index 00000000..5634104c --- /dev/null +++ b/ui/components/ConversationDialog/styles.scss @@ -0,0 +1,47 @@ +@import "../../../kit/theming/global.scss"; + +$actions: 56px; +$responses: 200px; +$log: 300px; + +.scrollable { + height: $log; + + &NoResponses { + height: $log + $responses - $actions + $spacing * 2; + } +} + +.log { + user-select: none; + display: grid; + grid-template-columns: 100px 1fr; + grid-auto-rows: min-content; + gap: $spacing; +} + +.responses { + border-top: 1px solid var(--palette-border); + height: $responses; + overflow-y: scroll; + margin-top: $spacing * 2; + + li { + margin-bottom: $spacing * 2; + } + + button { + &:hover { + color: var(--palette-active); + } + text-align: left; + appearance: none; + background: none; + border: none; + padding: 0; + cursor: pointer; + color: var(--palette-text-1); + font-size: var(--typography-default); + transition: 200ms; + } +} diff --git a/ui/components/MissionDialog/MissionDialog.scss.d.ts b/ui/components/ConversationDialog/styles.scss.d.ts similarity index 52% rename from ui/components/MissionDialog/MissionDialog.scss.d.ts rename to ui/components/ConversationDialog/styles.scss.d.ts index 25b1222d..0a42aeac 100644 --- a/ui/components/MissionDialog/MissionDialog.scss.d.ts +++ b/ui/components/ConversationDialog/styles.scss.d.ts @@ -1,5 +1,8 @@ /* @generated */ /* prettier-ignore */ /* eslint-disable */ +export const dummmy: string; +export const scrollable: string; +export const scrollableNoResponses: string; export const log: string; export const responses: string; diff --git a/ui/components/ImmediateConversation.tsx b/ui/components/ImmediateConversation.tsx new file mode 100644 index 00000000..bf3b2870 --- /dev/null +++ b/ui/components/ImmediateConversation.tsx @@ -0,0 +1,47 @@ +import { useGameDialog, useSim } from "@ui/atoms"; +import { useGameSettings } from "@ui/hooks/useGameSettings"; +import React from "react"; +import type { MissionConversation } from "@core/systems/mission/types"; +import type { ModalProps } from "./ConfigDialog"; +import { ConversationDialog } from "./ConversationDialog"; + +export interface ImmediateConversationDialogProps { + conversation: MissionConversation; + type: "conversation"; +} + +export const ImmediateConversationDialog: React.FC = ({ + open, + onClose, +}) => { + const [sim] = useSim(); + const [dialog] = useGameDialog(); + const [settings] = useGameSettings(); + + React.useEffect(() => { + if (dialog?.type === "conversation" && settings.pauseOnMissionOffer) { + sim.pause(); + } + }, [dialog]); + + if (dialog?.type !== "conversation") return null; + + return ( + { + if (Object.keys(flags).length > 0) { + console.warn("Immediate conversation ended with flags", flags); + } + }} + onClose={() => { + onClose(); + if (settings.pauseOnMissionOffer) { + sim.unpause(); + } + }} + /> + ); +}; +ImmediateConversationDialog.displayName = "ImmediateConversationDialog"; diff --git a/ui/components/MissionDialog/MissionDialog.scss b/ui/components/MissionDialog/MissionDialog.scss deleted file mode 100644 index 1513b1a0..00000000 --- a/ui/components/MissionDialog/MissionDialog.scss +++ /dev/null @@ -1,26 +0,0 @@ -.log { - user-select: none; -} - -.responses { - border-top: 1px solid var(--palette-border); - - li { - margin-bottom: var(--spacing-2); - } - - button { - &:hover { - color: var(--palette-active); - } - text-align: left; - appearance: none; - background: none; - border: none; - padding: 0; - cursor: pointer; - color: var(--palette-text-1); - font-size: var(--typography-default); - transition: 200ms; - } -} diff --git a/ui/components/MissionDialog/MissionDialog.stories.tsx b/ui/components/MissionDialog/MissionDialog.stories.tsx deleted file mode 100644 index 77ad8a1a..00000000 --- a/ui/components/MissionDialog/MissionDialog.stories.tsx +++ /dev/null @@ -1,52 +0,0 @@ -// storybook stories for MissionDialog - -import { Styles } from "@kit/theming/style"; -import type { StoryFn } from "@storybook/react"; -import React from "react"; - -import type { MissionDialogComponentProps } from "./MissionDialogComponent"; -import { MissionDialogComponent } from "./MissionDialogComponent"; - -export default { - title: "Dialogs / Mission", - component: MissionDialogComponent, - parameters: { - layout: "fullscreen", - }, -}; - -const Template: StoryFn = (args) => ( -
- - - -
-); - -export const Default = Template.bind({}); -Default.args = { - open: true, - mission: { - actorName: "Local Police", - title: "Assist the local police", - description: - "This is the local police department. We have a surge in crime in Sector 5. Can you spare some of your fleet to patrol the area for the next 2 hours, Commander?", - responses: [ - { - text: "Understood, local police. We will deploy a team to Sector 5 immediately and provide assistance for the next 24 hours.", - next: "Thank you, Commander. Your fleet's assistance in patrolling Sector 5 for the next 24 hours will greatly aid us in addressing the surge in crime. We appreciate your support.", - type: "accept", - }, - { - text: "Apologies, local police, but we are currently understaffed and cannot spare any fleet to patrol Sector 5 at the moment.", - next: "Understood, Commander. We will do our best to manage the situation in Sector 5 with our available resources, but additional assistance from your fleet would have been appreciated.", - type: "decline", - }, - { - text: "Can you provide more information about the types of criminal activities in Sector 5? Are there any specific hotspots or patterns that we should be aware of?", - next: "Certainly, Commander. Sector 5 has seen a sharp increase in criminal activities, including thefts and assaults. We need additional patrols to deter and respond to these incidents effectively.", - type: "neutral", - }, - ], - }, -}; diff --git a/ui/components/MissionDialog/MissionDialog.tsx b/ui/components/MissionDialog/MissionDialog.tsx index 1e271cc1..6f317093 100644 --- a/ui/components/MissionDialog/MissionDialog.tsx +++ b/ui/components/MissionDialog/MissionDialog.tsx @@ -1,8 +1,9 @@ import { useGameDialog, useSim } from "@ui/atoms"; import { useGameSettings } from "@ui/hooks/useGameSettings"; import React from "react"; +import { MissionSystem } from "@core/systems/mission"; import type { ModalProps } from "../ConfigDialog"; -import { MissionDialogComponent } from "./MissionDialogComponent"; +import { ConversationDialog } from "../ConversationDialog"; export interface MissionDialogProps { type: "missionOffer"; @@ -22,18 +23,26 @@ export const MissionDialog: React.FC = ({ open, onClose }) => { if (dialog?.type !== "missionOffer") return null; return ( - { - const player = sim.queries.player.get()[0]!; - player.cp.missions.value.push({ - ...player.cp.missions.offer!.data, - accepted: sim.getTime(), - }); - }} - onDecline={() => { - sim.queries.player.get()[0]!.cp.missions.declined = sim.getTime(); + onEnd={(flags) => { + if (flags.status === "accepted") { + const player = sim.queries.player.get()[0]!; + const missionSystem = sim.systems.find( + (s) => s instanceof MissionSystem + ) as MissionSystem; + player.cp.missions.value.push({ + ...missionSystem.handlers.mission[ + player.cp.missions.offer!.type + ].accept(sim, player.cp.missions.offer!), + accepted: sim.getTime(), + }); + } else { + sim.queries.player.get()[0]!.cp.missions.declined = sim.getTime(); + } }} onClose={() => { onClose(); diff --git a/ui/components/MissionDialog/MissionDialogComponent.tsx b/ui/components/MissionDialog/MissionDialogComponent.tsx deleted file mode 100644 index cf42ee7a..00000000 --- a/ui/components/MissionDialog/MissionDialogComponent.tsx +++ /dev/null @@ -1,128 +0,0 @@ -import type { Mission } from "@core/components/missions"; -import { Button } from "@kit/Button"; -import type { DialogProps } from "@kit/Dialog"; -import { Dialog } from "@kit/Dialog"; -import { DialogActions } from "@kit/DialogActions"; -import Text from "@kit/Text"; -import React from "react"; -import styles from "./MissionDialog.scss"; - -interface PlayerResponse { - actor: "player"; - text: string; - next: string; - type: "accept" | "decline" | "neutral"; -} - -interface NPCResponse { - actor: "npc"; - name: string; - text: string; -} - -interface WorldResponse { - actor: "world"; - text: string; -} - -export interface MissionOffer { - actorName: string; - title: string; - prompt: string; - responses: PlayerResponse[]; - data: Mission; -} - -export interface MissionDialogComponentProps extends DialogProps { - mission: MissionOffer; - onAccept: () => void; - onDecline: () => void; -} - -export const MissionDialogComponent: React.FC = ({ - mission, - onAccept, - onDecline, - onClose, - ...dialogProps -}) => { - const [log, setLog] = React.useState< - Array - >([ - { - actor: "npc", - name: mission.actorName, - text: mission.prompt, - }, - ]); - const [responses, setResponses] = React.useState([]); - const availableResponses = - responses.length > 0 && responses.at(-1)?.type !== "neutral" - ? [] - : mission.responses.filter((r) => !responses.includes(r)); - - return ( - { - if (responses.at(-1)?.type !== "accept") { - onDecline(); - } - onClose(); - }} - title={mission.title} - width="550px" - > -
- {log.map((l, lIndex) => ( -

- {l.actor !== "world" && ( - - {l.actor === "npc" ? l.name : "You"}:{" "} - - )} - {l.text} -

- ))} -
- - {availableResponses.length > 0 && ( -
-
    - {availableResponses.map((r, rIndex) => ( -
  1. - -
  2. - ))} -
-
- )} - - {responses.length > 0 && responses.at(-1)?.type !== "neutral" && ( - - )} - -
- ); -}; diff --git a/ui/components/MissionDialog/index.ts b/ui/components/MissionDialog/index.ts index d7f8c490..873e5e4f 100644 --- a/ui/components/MissionDialog/index.ts +++ b/ui/components/MissionDialog/index.ts @@ -1,2 +1 @@ export * from "./MissionDialog"; -export * from "./MissionDialogComponent"; diff --git a/ui/components/MissionsOverlay/MissionsOverlay.stories.tsx b/ui/components/MissionsOverlay/MissionsOverlay.stories.tsx index ba48f802..4eac2124 100644 --- a/ui/components/MissionsOverlay/MissionsOverlay.stories.tsx +++ b/ui/components/MissionsOverlay/MissionsOverlay.stories.tsx @@ -49,6 +49,7 @@ Default.args = { time: 1800, type: "patrol", faction: 377, + cancellable: true, }, { accepted: 0, @@ -69,6 +70,7 @@ Default.args = { time: 1800, type: "patrol", faction: 385, + cancellable: false, }, { accepted: 0, @@ -89,6 +91,7 @@ Default.args = { time: 5400, type: "patrol", faction: 337, + cancellable: true, }, ], onMissionCancel: action("onMissionCancel"), diff --git a/ui/components/MissionsOverlay/MissionsOverlayComponent.tsx b/ui/components/MissionsOverlay/MissionsOverlayComponent.tsx index a71122e0..0d960b76 100644 --- a/ui/components/MissionsOverlay/MissionsOverlayComponent.tsx +++ b/ui/components/MissionsOverlay/MissionsOverlayComponent.tsx @@ -70,16 +70,18 @@ export const MissionsOverlayComponent: React.FC< ))} - + {missions[selected].cancellable && ( + + )} )} diff --git a/ui/components/Panel/Panel.tsx b/ui/components/Panel/Panel.tsx index ab0612bf..86645ee0 100644 --- a/ui/components/Panel/Panel.tsx +++ b/ui/components/Panel/Panel.tsx @@ -39,6 +39,7 @@ import { ShipyardDialog } from "../ShipyardDialog"; import { SimpleStorage } from "../Storage"; import { MissionDialog } from "../MissionDialog"; import { Crew } from "../Crew/Crew"; +import { ImmediateConversationDialog } from "../ImmediateConversation"; export interface PanelProps { expanded?: boolean; @@ -267,6 +268,10 @@ export const Panel: React.FC = ({ entity, expanded }) => { open={dialog?.type === "missionOffer"} onClose={closeDialog} /> + ); }; diff --git a/ui/hooks/useObservable.ts b/ui/hooks/useObservable.ts new file mode 100644 index 00000000..48682d33 --- /dev/null +++ b/ui/hooks/useObservable.ts @@ -0,0 +1,17 @@ +import type { Observable } from "@core/utils/observer"; +import { useEffect, useState } from "react"; + +export function useObservable( + observable: Observable +): [T, (_value: T) => void] { + const [value, setValue] = useState(observable.value); + + useEffect(() => { + const set = (v: T) => setValue(v); + observable.subscribe("useObservable", set); + + return () => observable.unsubscribe(set); + }, []); + + return [value, observable.notify as (_value: T) => void]; +} diff --git a/ui/views/Game.tsx b/ui/views/Game.tsx index 33f0fbb3..8720938f 100644 --- a/ui/views/Game.tsx +++ b/ui/views/Game.tsx @@ -144,12 +144,16 @@ const Game: React.FC = () => { React.useEffect(() => { if (player.cp.missions.offer) { - addNotification({ - icon: "question", - message: "New mission offer", - type: "warning", - onClick: () => setDialog({ type: "missionOffer" }), - }); + if (player.cp.missions.offer.immediate) { + setDialog({ type: "missionOffer" }); + } else { + addNotification({ + icon: "question", + message: "New mission offer", + type: "warning", + onClick: () => setDialog({ type: "missionOffer" }), + }); + } } }, [player.cp.missions.offer]); diff --git a/ui/views/Load.tsx b/ui/views/Load.tsx index 3d53507d..e3f0c249 100644 --- a/ui/views/Load.tsx +++ b/ui/views/Load.tsx @@ -26,7 +26,7 @@ export const LoadGame: React.FC = () => { saves={saves} onClick={async (id) => { const sim = Sim.load( - createBaseConfig(), + await createBaseConfig(), LZString.decompress(saves.find((s) => s.id === id)!.data) ); setSim(sim); diff --git a/ui/views/NewGame.tsx b/ui/views/NewGame.tsx index 922548ee..cce908e7 100644 --- a/ui/views/NewGame.tsx +++ b/ui/views/NewGame.tsx @@ -15,7 +15,10 @@ export const NewGame: React.FC = () => { async function load() { const data = await import("@core/world/data/base.json"); setProgress(0.5); - sim.current = Sim.load(createBaseConfig(), JSON.stringify(data.default)); + sim.current = Sim.load( + await createBaseConfig(), + JSON.stringify(data.default) + ); setSim(sim.current); navigate("game"); } diff --git a/ui/workers/headlessSim.ts b/ui/workers/headlessSim.ts index 13a1766e..71c6f503 100644 --- a/ui/workers/headlessSim.ts +++ b/ui/workers/headlessSim.ts @@ -22,8 +22,8 @@ export interface HeadlessSimInitMsg { export type HeadlessSimMsg = HeadlessSimUpdateMsg | HeadlessSimCompletedeMsg; -self.onmessage = (event: MessageEvent) => { - const sim = Sim.load(createBaseConfig(), event.data.sim); +self.onmessage = async (event: MessageEvent) => { + const sim = Sim.load(await createBaseConfig(), event.data.sim); let cycles = 0; diff --git a/webpack.d.ts b/webpack-files.d.ts similarity index 100% rename from webpack.d.ts rename to webpack-files.d.ts diff --git a/webpack.config.js b/webpack.config.ts similarity index 93% rename from webpack.config.js rename to webpack.config.ts index 21c0445f..824eea30 100644 --- a/webpack.config.js +++ b/webpack.config.ts @@ -84,6 +84,14 @@ const config = { "sass-loader", ], }, + { + test: /\.css$/i, + use: ["style-loader", "css-loader"], + }, + { + test: /world\/data\/missions\/.*\.yml$/, + use: ["./build/conversation-loader.ts"], + }, { test: /\.(svg|png|jpe?g)$/, type: "asset/resource",