@oicl/openbridge-webcomponents-ng 2.0.0-next.3 → 2.0.0-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,32 +1,32 @@
1
1
  import * as i0 from '@angular/core';
2
2
  import { Input, Component, EventEmitter, Output } from '@angular/core';
3
- import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi/poi-base.js';
4
- import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi/poi.js';
5
- import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-button/poi-button.js';
6
3
  import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-graphic-line/poi-graphic-line.js';
7
4
  import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-header/poi-header.js';
8
5
  import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-line/poi-line.js';
9
- import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-object/abstract-poi-object.js';
10
- import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-object/poi-object.js';
11
6
  import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-pointer/poi-pointer.js';
12
7
  import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/poi-selection-frame/poi-selection-frame.js';
13
8
  import '@oicl/openbridge-webcomponents/dist/ar/building-blocks/ruler-pointer/ruler-pointer.js';
14
9
  import '@oicl/openbridge-webcomponents/dist/ar/chart-object-vessel-button/chart-object-vessel-button.js';
15
- import '@oicl/openbridge-webcomponents/dist/ar/poi-aton/poi-aton.js';
16
- import '@oicl/openbridge-webcomponents/dist/ar/poi-button-aton/poi-button-aton.js';
17
- import '@oicl/openbridge-webcomponents/dist/ar/poi-button-data/poi-button-data.js';
18
- import '@oicl/openbridge-webcomponents/dist/ar/poi-button-vessel/poi-button-vessel.js';
10
+ import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-aton.js';
11
+ import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-base.js';
12
+ import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-data.js';
13
+ import '@oicl/openbridge-webcomponents/dist/ar/poi/poi-vessel.js';
14
+ import '@oicl/openbridge-webcomponents/dist/ar/poi/poi.js';
15
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-aton.js';
16
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-data.js';
17
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button-vessel.js';
18
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-button/poi-button.js';
19
19
  import '@oicl/openbridge-webcomponents/dist/ar/poi-card/poi-card.js';
20
20
  import '@oicl/openbridge-webcomponents/dist/ar/poi-card-header/poi-card-header.js';
21
21
  import '@oicl/openbridge-webcomponents/dist/ar/poi-controller/poi-controller.js';
22
- import '@oicl/openbridge-webcomponents/dist/ar/poi-data/poi-data.js';
23
22
  import '@oicl/openbridge-webcomponents/dist/ar/poi-group/poi-group.js';
24
23
  import '@oicl/openbridge-webcomponents/dist/ar/poi-layer/poi-layer.js';
25
24
  import '@oicl/openbridge-webcomponents/dist/ar/poi-layer-stack/poi-layer-stack.js';
26
- import '@oicl/openbridge-webcomponents/dist/ar/poi-object-aton/poi-object-aton.js';
27
- import '@oicl/openbridge-webcomponents/dist/ar/poi-object-data/poi-object-data.js';
28
- import '@oicl/openbridge-webcomponents/dist/ar/poi-object-vessel/poi-object-vessel.js';
29
- import '@oicl/openbridge-webcomponents/dist/ar/poi-vessel/poi-vessel.js';
25
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-object/abstract-poi-object.js';
26
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-aton.js';
27
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-data.js';
28
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object-vessel.js';
29
+ import '@oicl/openbridge-webcomponents/dist/ar/poi-object/poi-object.js';
30
30
  import '@oicl/openbridge-webcomponents/dist/automation/analog-valve/analog-valve.js';
31
31
  import '@oicl/openbridge-webcomponents/dist/automation/automation-badge/automation-badge.js';
32
32
  import '@oicl/openbridge-webcomponents/dist/automation/automation-button/abstract-automation-button-motorized.js';
@@ -2203,126 +2203,220 @@ import '@oicl/openbridge-webcomponents/dist/navigation-instruments/wind-indicato
2203
2203
  import '@oicl/openbridge-webcomponents/dist/pages/alert-detail-page/alert-detail-page.js';
2204
2204
  import '@oicl/openbridge-webcomponents/dist/pages/alert-list-page-small/alert-list-page-small.js';
2205
2205
 
2206
- class ObcPoiBase {
2206
+ class ObcPoiGraphicLine {
2207
2207
  _el;
2208
2208
  _ngZone;
2209
2209
  constructor(e, ngZone) {
2210
2210
  this._el = e.nativeElement;
2211
2211
  this._ngZone = ngZone;
2212
2212
  }
2213
- set type(v) {
2214
- this._ngZone.runOutsideAngular(() => (this._el.type = v));
2213
+ set lineHeight(v) {
2214
+ this._ngZone.runOutsideAngular(() => (this._el.lineHeight = v));
2215
2215
  }
2216
- get type() {
2217
- return this._el.type;
2216
+ get lineHeight() {
2217
+ return this._el.lineHeight;
2218
2218
  }
2219
- set value(v) {
2220
- this._ngZone.runOutsideAngular(() => (this._el.value = v));
2219
+ set lineStart(v) {
2220
+ this._ngZone.runOutsideAngular(() => (this._el.lineStart = v));
2221
2221
  }
2222
- get value() {
2223
- return this._el.value;
2222
+ get lineStart() {
2223
+ return this._el.lineStart;
2224
2224
  }
2225
- set state(v) {
2226
- this._ngZone.runOutsideAngular(() => (this._el.state = v));
2225
+ set lineStyle(v) {
2226
+ this._ngZone.runOutsideAngular(() => (this._el.lineStyle = v));
2227
2227
  }
2228
- get state() {
2229
- return this._el.state;
2228
+ get lineStyle() {
2229
+ return this._el.lineStyle;
2230
2230
  }
2231
- set selected(v) {
2232
- this._ngZone.runOutsideAngular(() => (this._el.selected = v));
2231
+ set lineType(v) {
2232
+ this._ngZone.runOutsideAngular(() => (this._el.lineType = v));
2233
2233
  }
2234
- get selected() {
2235
- return this._el.selected;
2234
+ get lineType() {
2235
+ return this._el.lineType;
2236
2236
  }
2237
- set buttonType(v) {
2238
- this._ngZone.runOutsideAngular(() => (this._el.buttonType = v));
2237
+ set offset(v) {
2238
+ this._ngZone.runOutsideAngular(() => (this._el.offset = v));
2239
2239
  }
2240
- get buttonType() {
2241
- return this._el.buttonType;
2240
+ get offset() {
2241
+ return this._el.offset;
2242
2242
  }
2243
- set overlapOpaque(v) {
2244
- this._ngZone.runOutsideAngular(() => (this._el.overlapOpaque = v));
2243
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiGraphicLine, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2244
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiGraphicLine, isStandalone: true, selector: "obc-poi-graphic-line", inputs: { lineHeight: "lineHeight", lineStart: "lineStart", lineStyle: "lineStyle", lineType: "lineType", offset: "offset" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2245
+ }
2246
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiGraphicLine, decorators: [{
2247
+ type: Component,
2248
+ args: [{
2249
+ selector: 'obc-poi-graphic-line',
2250
+ template: '<ng-content></ng-content>',
2251
+ standalone: true,
2252
+ imports: []
2253
+ }]
2254
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { lineHeight: [{
2255
+ type: Input
2256
+ }], lineStart: [{
2257
+ type: Input
2258
+ }], lineStyle: [{
2259
+ type: Input
2260
+ }], lineType: [{
2261
+ type: Input
2262
+ }], offset: [{
2263
+ type: Input
2264
+ }] } });
2265
+
2266
+ class ObcPoiHeader {
2267
+ _el;
2268
+ _ngZone;
2269
+ constructor(e, ngZone) {
2270
+ this._el = e.nativeElement;
2271
+ this._ngZone = ngZone;
2245
2272
  }
2246
- get overlapOpaque() {
2247
- return this._el.overlapOpaque;
2273
+ set content(v) {
2274
+ this._ngZone.runOutsideAngular(() => (this._el.content = v));
2248
2275
  }
2249
- set data(v) {
2250
- this._ngZone.runOutsideAngular(() => (this._el.data = v));
2276
+ get content() {
2277
+ return this._el.content;
2251
2278
  }
2252
- get data() {
2253
- return this._el.data;
2279
+ set label(v) {
2280
+ this._ngZone.runOutsideAngular(() => (this._el.label = v));
2254
2281
  }
2255
- set hasHeader(v) {
2256
- this._ngZone.runOutsideAngular(() => (this._el.hasHeader = v));
2282
+ get label() {
2283
+ return this._el.label;
2257
2284
  }
2258
- get hasHeader() {
2259
- return this._el.hasHeader;
2285
+ set size(v) {
2286
+ this._ngZone.runOutsideAngular(() => (this._el.size = v));
2260
2287
  }
2261
- set headerContent(v) {
2262
- this._ngZone.runOutsideAngular(() => (this._el.headerContent = v));
2288
+ get size() {
2289
+ return this._el.size;
2263
2290
  }
2264
- get headerContent() {
2265
- return this._el.headerContent;
2291
+ set state(v) {
2292
+ this._ngZone.runOutsideAngular(() => (this._el.state = v));
2266
2293
  }
2267
- set hasPointer(v) {
2268
- this._ngZone.runOutsideAngular(() => (this._el.hasPointer = v));
2294
+ get state() {
2295
+ return this._el.state;
2269
2296
  }
2270
- get hasPointer() {
2271
- return this._el.hasPointer;
2297
+ set type(v) {
2298
+ this._ngZone.runOutsideAngular(() => (this._el.type = v));
2272
2299
  }
2273
- set pointerType(v) {
2274
- this._ngZone.runOutsideAngular(() => (this._el.pointerType = v));
2300
+ get type() {
2301
+ return this._el.type;
2275
2302
  }
2276
- get pointerType() {
2277
- return this._el.pointerType;
2303
+ set hasIndicator(v) {
2304
+ this._ngZone.runOutsideAngular(() => (this._el.hasIndicator = v));
2278
2305
  }
2279
- set pointerState(v) {
2280
- this._ngZone.runOutsideAngular(() => (this._el.pointerState = v));
2306
+ get hasIndicator() {
2307
+ return this._el.hasIndicator;
2281
2308
  }
2282
- get pointerState() {
2283
- return this._el.pointerState;
2309
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiHeader, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2310
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiHeader, isStandalone: true, selector: "obc-poi-header", inputs: { content: "content", label: "label", size: "size", state: "state", type: "type", hasIndicator: "hasIndicator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2311
+ }
2312
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiHeader, decorators: [{
2313
+ type: Component,
2314
+ args: [{
2315
+ selector: 'obc-poi-header',
2316
+ template: '<ng-content></ng-content>',
2317
+ standalone: true,
2318
+ imports: []
2319
+ }]
2320
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { content: [{
2321
+ type: Input
2322
+ }], label: [{
2323
+ type: Input
2324
+ }], size: [{
2325
+ type: Input
2326
+ }], state: [{
2327
+ type: Input
2328
+ }], type: [{
2329
+ type: Input
2330
+ }], hasIndicator: [{
2331
+ type: Input
2332
+ }] } });
2333
+
2334
+ class ObcPoiLine {
2335
+ _el;
2336
+ _ngZone;
2337
+ constructor(e, ngZone) {
2338
+ this._el = e.nativeElement;
2339
+ this._ngZone = ngZone;
2284
2340
  }
2285
- set relativeDirection(v) {
2286
- this._ngZone.runOutsideAngular(() => (this._el.relativeDirection = v));
2341
+ set height(v) {
2342
+ this._ngZone.runOutsideAngular(() => (this._el.height = v));
2287
2343
  }
2288
- get relativeDirection() {
2289
- return this._el.relativeDirection;
2344
+ get height() {
2345
+ return this._el.height;
2290
2346
  }
2291
- set x(v) {
2292
- this._ngZone.runOutsideAngular(() => (this._el.x = v));
2347
+ set poiStyle(v) {
2348
+ this._ngZone.runOutsideAngular(() => (this._el.poiStyle = v));
2293
2349
  }
2294
- get x() {
2295
- return this._el.x;
2350
+ get poiStyle() {
2351
+ return this._el.poiStyle;
2296
2352
  }
2297
- set y(v) {
2298
- this._ngZone.runOutsideAngular(() => (this._el.y = v));
2353
+ set lineType(v) {
2354
+ this._ngZone.runOutsideAngular(() => (this._el.lineType = v));
2299
2355
  }
2300
- get y() {
2301
- return this._el.y;
2356
+ get lineType() {
2357
+ return this._el.lineType;
2302
2358
  }
2303
- set buttonY(v) {
2304
- this._ngZone.runOutsideAngular(() => (this._el.buttonY = v));
2359
+ set offset(v) {
2360
+ this._ngZone.runOutsideAngular(() => (this._el.offset = v));
2305
2361
  }
2306
- get buttonY() {
2307
- return this._el.buttonY;
2362
+ get offset() {
2363
+ return this._el.offset;
2308
2364
  }
2309
- set fixedTarget(v) {
2310
- this._ngZone.runOutsideAngular(() => (this._el.fixedTarget = v));
2365
+ set hasPointer(v) {
2366
+ this._ngZone.runOutsideAngular(() => (this._el.hasPointer = v));
2311
2367
  }
2312
- get fixedTarget() {
2313
- return this._el.fixedTarget;
2368
+ get hasPointer() {
2369
+ return this._el.hasPointer;
2314
2370
  }
2315
- set buttonOffsetX(v) {
2316
- this._ngZone.runOutsideAngular(() => (this._el.buttonOffsetX = v));
2371
+ set animatePosition(v) {
2372
+ this._ngZone.runOutsideAngular(() => (this._el.animatePosition = v));
2317
2373
  }
2318
- get buttonOffsetX() {
2319
- return this._el.buttonOffsetX;
2374
+ get animatePosition() {
2375
+ return this._el.animatePosition;
2320
2376
  }
2321
- set targetOffsetX(v) {
2322
- this._ngZone.runOutsideAngular(() => (this._el.targetOffsetX = v));
2377
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiLine, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2378
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiLine, isStandalone: true, selector: "obc-poi-line", inputs: { height: "height", poiStyle: "poiStyle", lineType: "lineType", offset: "offset", hasPointer: "hasPointer", animatePosition: "animatePosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2379
+ }
2380
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiLine, decorators: [{
2381
+ type: Component,
2382
+ args: [{
2383
+ selector: 'obc-poi-line',
2384
+ template: '<ng-content></ng-content>',
2385
+ standalone: true,
2386
+ imports: []
2387
+ }]
2388
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { height: [{
2389
+ type: Input
2390
+ }], poiStyle: [{
2391
+ type: Input
2392
+ }], lineType: [{
2393
+ type: Input
2394
+ }], offset: [{
2395
+ type: Input
2396
+ }], hasPointer: [{
2397
+ type: Input
2398
+ }], animatePosition: [{
2399
+ type: Input
2400
+ }] } });
2401
+
2402
+ class ObcPoiPointer {
2403
+ _el;
2404
+ _ngZone;
2405
+ constructor(e, ngZone) {
2406
+ this._el = e.nativeElement;
2407
+ this._ngZone = ngZone;
2323
2408
  }
2324
- get targetOffsetX() {
2325
- return this._el.targetOffsetX;
2409
+ set type(v) {
2410
+ this._ngZone.runOutsideAngular(() => (this._el.type = v));
2411
+ }
2412
+ get type() {
2413
+ return this._el.type;
2414
+ }
2415
+ set state(v) {
2416
+ this._ngZone.runOutsideAngular(() => (this._el.state = v));
2417
+ }
2418
+ get state() {
2419
+ return this._el.state;
2326
2420
  }
2327
2421
  set boxWidth(v) {
2328
2422
  this._ngZone.runOutsideAngular(() => (this._el.boxWidth = v));
@@ -2336,86 +2430,28 @@ class ObcPoiBase {
2336
2430
  get boxHeight() {
2337
2431
  return this._el.boxHeight;
2338
2432
  }
2339
- set lineCompensationY(v) {
2340
- this._ngZone.runOutsideAngular(() => (this._el.lineCompensationY = v));
2341
- }
2342
- get lineCompensationY() {
2343
- return this._el.lineCompensationY;
2344
- }
2345
- set outsideAngle(v) {
2346
- this._ngZone.runOutsideAngular(() => (this._el.outsideAngle = v));
2347
- }
2348
- get outsideAngle() {
2349
- return this._el.outsideAngle;
2350
- }
2351
- set animatePosition(v) {
2352
- this._ngZone.runOutsideAngular(() => (this._el.animatePosition = v));
2353
- }
2354
- get animatePosition() {
2355
- return this._el.animatePosition;
2356
- }
2357
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiBase, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2358
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiBase, isStandalone: true, selector: "undefined", inputs: { type: "type", value: "value", state: "state", selected: "selected", buttonType: "buttonType", overlapOpaque: "overlapOpaque", data: "data", hasHeader: "hasHeader", headerContent: "headerContent", hasPointer: "hasPointer", pointerType: "pointerType", pointerState: "pointerState", relativeDirection: "relativeDirection", x: "x", y: "y", buttonY: "buttonY", fixedTarget: "fixedTarget", buttonOffsetX: "buttonOffsetX", targetOffsetX: "targetOffsetX", boxWidth: "boxWidth", boxHeight: "boxHeight", lineCompensationY: "lineCompensationY", outsideAngle: "outsideAngle", animatePosition: "animatePosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2433
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiPointer, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2434
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiPointer, isStandalone: true, selector: "obc-poi-pointer", inputs: { type: "type", state: "state", boxWidth: "boxWidth", boxHeight: "boxHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2359
2435
  }
2360
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiBase, decorators: [{
2436
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiPointer, decorators: [{
2361
2437
  type: Component,
2362
2438
  args: [{
2363
- selector: 'undefined',
2439
+ selector: 'obc-poi-pointer',
2364
2440
  template: '<ng-content></ng-content>',
2365
2441
  standalone: true,
2366
2442
  imports: []
2367
2443
  }]
2368
2444
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
2369
2445
  type: Input
2370
- }], value: [{
2371
- type: Input
2372
2446
  }], state: [{
2373
2447
  type: Input
2374
- }], selected: [{
2375
- type: Input
2376
- }], buttonType: [{
2377
- type: Input
2378
- }], overlapOpaque: [{
2379
- type: Input
2380
- }], data: [{
2381
- type: Input
2382
- }], hasHeader: [{
2383
- type: Input
2384
- }], headerContent: [{
2385
- type: Input
2386
- }], hasPointer: [{
2387
- type: Input
2388
- }], pointerType: [{
2389
- type: Input
2390
- }], pointerState: [{
2391
- type: Input
2392
- }], relativeDirection: [{
2393
- type: Input
2394
- }], x: [{
2395
- type: Input
2396
- }], y: [{
2397
- type: Input
2398
- }], buttonY: [{
2399
- type: Input
2400
- }], fixedTarget: [{
2401
- type: Input
2402
- }], buttonOffsetX: [{
2403
- type: Input
2404
- }], targetOffsetX: [{
2405
- type: Input
2406
2448
  }], boxWidth: [{
2407
2449
  type: Input
2408
2450
  }], boxHeight: [{
2409
2451
  type: Input
2410
- }], lineCompensationY: [{
2411
- type: Input
2412
- }], outsideAngle: [{
2413
- type: Input
2414
- }], animatePosition: [{
2415
- type: Input
2416
2452
  }] } });
2417
2453
 
2418
- class ObcPoi {
2454
+ class ObcPoiSelectionFrame {
2419
2455
  _el;
2420
2456
  _ngZone;
2421
2457
  constructor(e, ngZone) {
@@ -2428,113 +2464,17 @@ class ObcPoi {
2428
2464
  get type() {
2429
2465
  return this._el.type;
2430
2466
  }
2431
- set value(v) {
2432
- this._ngZone.runOutsideAngular(() => (this._el.value = v));
2433
- }
2434
- get value() {
2435
- return this._el.value;
2436
- }
2437
2467
  set state(v) {
2438
2468
  this._ngZone.runOutsideAngular(() => (this._el.state = v));
2439
2469
  }
2440
2470
  get state() {
2441
2471
  return this._el.state;
2442
2472
  }
2443
- set selected(v) {
2444
- this._ngZone.runOutsideAngular(() => (this._el.selected = v));
2445
- }
2446
- get selected() {
2447
- return this._el.selected;
2448
- }
2449
- set buttonType(v) {
2450
- this._ngZone.runOutsideAngular(() => (this._el.buttonType = v));
2451
- }
2452
- get buttonType() {
2453
- return this._el.buttonType;
2454
- }
2455
- set overlapOpaque(v) {
2456
- this._ngZone.runOutsideAngular(() => (this._el.overlapOpaque = v));
2457
- }
2458
- get overlapOpaque() {
2459
- return this._el.overlapOpaque;
2460
- }
2461
- set data(v) {
2462
- this._ngZone.runOutsideAngular(() => (this._el.data = v));
2463
- }
2464
- get data() {
2465
- return this._el.data;
2466
- }
2467
- set hasHeader(v) {
2468
- this._ngZone.runOutsideAngular(() => (this._el.hasHeader = v));
2469
- }
2470
- get hasHeader() {
2471
- return this._el.hasHeader;
2472
- }
2473
- set headerContent(v) {
2474
- this._ngZone.runOutsideAngular(() => (this._el.headerContent = v));
2475
- }
2476
- get headerContent() {
2477
- return this._el.headerContent;
2478
- }
2479
- set hasPointer(v) {
2480
- this._ngZone.runOutsideAngular(() => (this._el.hasPointer = v));
2481
- }
2482
- get hasPointer() {
2483
- return this._el.hasPointer;
2484
- }
2485
- set pointerType(v) {
2486
- this._ngZone.runOutsideAngular(() => (this._el.pointerType = v));
2487
- }
2488
- get pointerType() {
2489
- return this._el.pointerType;
2490
- }
2491
- set pointerState(v) {
2492
- this._ngZone.runOutsideAngular(() => (this._el.pointerState = v));
2493
- }
2494
- get pointerState() {
2495
- return this._el.pointerState;
2496
- }
2497
- set relativeDirection(v) {
2498
- this._ngZone.runOutsideAngular(() => (this._el.relativeDirection = v));
2499
- }
2500
- get relativeDirection() {
2501
- return this._el.relativeDirection;
2502
- }
2503
- set x(v) {
2504
- this._ngZone.runOutsideAngular(() => (this._el.x = v));
2505
- }
2506
- get x() {
2507
- return this._el.x;
2508
- }
2509
- set y(v) {
2510
- this._ngZone.runOutsideAngular(() => (this._el.y = v));
2511
- }
2512
- get y() {
2513
- return this._el.y;
2514
- }
2515
- set buttonY(v) {
2516
- this._ngZone.runOutsideAngular(() => (this._el.buttonY = v));
2517
- }
2518
- get buttonY() {
2519
- return this._el.buttonY;
2520
- }
2521
- set fixedTarget(v) {
2522
- this._ngZone.runOutsideAngular(() => (this._el.fixedTarget = v));
2523
- }
2524
- get fixedTarget() {
2525
- return this._el.fixedTarget;
2526
- }
2527
- set buttonOffsetX(v) {
2528
- this._ngZone.runOutsideAngular(() => (this._el.buttonOffsetX = v));
2529
- }
2530
- get buttonOffsetX() {
2531
- return this._el.buttonOffsetX;
2532
- }
2533
- set targetOffsetX(v) {
2534
- this._ngZone.runOutsideAngular(() => (this._el.targetOffsetX = v));
2473
+ set customMode(v) {
2474
+ this._ngZone.runOutsideAngular(() => (this._el.customMode = v));
2535
2475
  }
2536
- get targetOffsetX() {
2537
- return this._el.targetOffsetX;
2476
+ get customMode() {
2477
+ return this._el.customMode;
2538
2478
  }
2539
2479
  set boxWidth(v) {
2540
2480
  this._ngZone.runOutsideAngular(() => (this._el.boxWidth = v));
@@ -2548,125 +2488,105 @@ class ObcPoi {
2548
2488
  get boxHeight() {
2549
2489
  return this._el.boxHeight;
2550
2490
  }
2551
- set outsideAngle(v) {
2552
- this._ngZone.runOutsideAngular(() => (this._el.outsideAngle = v));
2553
- }
2554
- get outsideAngle() {
2555
- return this._el.outsideAngle;
2556
- }
2557
- set animatePosition(v) {
2558
- this._ngZone.runOutsideAngular(() => (this._el.animatePosition = v));
2559
- }
2560
- get animatePosition() {
2561
- return this._el.animatePosition;
2562
- }
2563
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoi, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2564
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoi, isStandalone: true, selector: "obc-poi", inputs: { type: "type", value: "value", state: "state", selected: "selected", buttonType: "buttonType", overlapOpaque: "overlapOpaque", data: "data", hasHeader: "hasHeader", headerContent: "headerContent", hasPointer: "hasPointer", pointerType: "pointerType", pointerState: "pointerState", relativeDirection: "relativeDirection", x: "x", y: "y", buttonY: "buttonY", fixedTarget: "fixedTarget", buttonOffsetX: "buttonOffsetX", targetOffsetX: "targetOffsetX", boxWidth: "boxWidth", boxHeight: "boxHeight", outsideAngle: "outsideAngle", animatePosition: "animatePosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2491
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiSelectionFrame, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2492
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiSelectionFrame, isStandalone: true, selector: "obc-poi-selection-frame", inputs: { type: "type", state: "state", customMode: "customMode", boxWidth: "boxWidth", boxHeight: "boxHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2565
2493
  }
2566
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoi, decorators: [{
2494
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiSelectionFrame, decorators: [{
2567
2495
  type: Component,
2568
2496
  args: [{
2569
- selector: 'obc-poi',
2497
+ selector: 'obc-poi-selection-frame',
2570
2498
  template: '<ng-content></ng-content>',
2571
2499
  standalone: true,
2572
2500
  imports: []
2573
2501
  }]
2574
2502
  }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
2575
2503
  type: Input
2576
- }], value: [{
2577
- type: Input
2578
2504
  }], state: [{
2579
2505
  type: Input
2580
- }], selected: [{
2581
- type: Input
2582
- }], buttonType: [{
2583
- type: Input
2584
- }], overlapOpaque: [{
2585
- type: Input
2586
- }], data: [{
2587
- type: Input
2588
- }], hasHeader: [{
2589
- type: Input
2590
- }], headerContent: [{
2591
- type: Input
2592
- }], hasPointer: [{
2593
- type: Input
2594
- }], pointerType: [{
2595
- type: Input
2596
- }], pointerState: [{
2597
- type: Input
2598
- }], relativeDirection: [{
2599
- type: Input
2600
- }], x: [{
2601
- type: Input
2602
- }], y: [{
2603
- type: Input
2604
- }], buttonY: [{
2605
- type: Input
2606
- }], fixedTarget: [{
2607
- type: Input
2608
- }], buttonOffsetX: [{
2609
- type: Input
2610
- }], targetOffsetX: [{
2506
+ }], customMode: [{
2611
2507
  type: Input
2612
2508
  }], boxWidth: [{
2613
2509
  type: Input
2614
2510
  }], boxHeight: [{
2615
2511
  type: Input
2616
- }], outsideAngle: [{
2617
- type: Input
2618
- }], animatePosition: [{
2512
+ }] } });
2513
+
2514
+ class ObcRulerPointer {
2515
+ _el;
2516
+ _ngZone;
2517
+ constructor(e, ngZone) {
2518
+ this._el = e.nativeElement;
2519
+ this._ngZone = ngZone;
2520
+ }
2521
+ set type(v) {
2522
+ this._ngZone.runOutsideAngular(() => (this._el.type = v));
2523
+ }
2524
+ get type() {
2525
+ return this._el.type;
2526
+ }
2527
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRulerPointer, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2528
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRulerPointer, isStandalone: true, selector: "obc-ruler-pointer", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2529
+ }
2530
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRulerPointer, decorators: [{
2531
+ type: Component,
2532
+ args: [{
2533
+ selector: 'obc-ruler-pointer',
2534
+ template: '<ng-content></ng-content>',
2535
+ standalone: true,
2536
+ imports: []
2537
+ }]
2538
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
2619
2539
  type: Input
2620
2540
  }] } });
2621
2541
 
2622
- class ObcPoiButton {
2542
+ class ObcChartObjectVesselButton {
2623
2543
  _el;
2624
2544
  _ngZone;
2625
2545
  constructor(e, ngZone) {
2626
2546
  this._el = e.nativeElement;
2627
2547
  this._ngZone = ngZone;
2628
2548
  }
2629
- set relativeDirection(v) {
2630
- this._ngZone.runOutsideAngular(() => (this._el.relativeDirection = v));
2549
+ set heading(v) {
2550
+ this._ngZone.runOutsideAngular(() => (this._el.heading = v));
2631
2551
  }
2632
- get relativeDirection() {
2633
- return this._el.relativeDirection;
2552
+ get heading() {
2553
+ return this._el.heading;
2634
2554
  }
2635
- set selected(v) {
2636
- this._ngZone.runOutsideAngular(() => (this._el.selected = v));
2555
+ set course(v) {
2556
+ this._ngZone.runOutsideAngular(() => (this._el.course = v));
2637
2557
  }
2638
- get selected() {
2639
- return this._el.selected;
2558
+ get course() {
2559
+ return this._el.course;
2640
2560
  }
2641
- set layout(v) {
2642
- this._ngZone.runOutsideAngular(() => (this._el.layout = v));
2561
+ set speedIndicator(v) {
2562
+ this._ngZone.runOutsideAngular(() => (this._el.speedIndicator = v));
2643
2563
  }
2644
- get layout() {
2645
- return this._el.layout;
2564
+ get speedIndicator() {
2565
+ return this._el.speedIndicator;
2646
2566
  }
2647
- set hasHeader(v) {
2648
- this._ngZone.runOutsideAngular(() => (this._el.hasHeader = v));
2567
+ set turnRate(v) {
2568
+ this._ngZone.runOutsideAngular(() => (this._el.turnRate = v));
2649
2569
  }
2650
- get hasHeader() {
2651
- return this._el.hasHeader;
2570
+ get turnRate() {
2571
+ return this._el.turnRate;
2652
2572
  }
2653
- set state(v) {
2654
- this._ngZone.runOutsideAngular(() => (this._el.state = v));
2573
+ set number(v) {
2574
+ this._ngZone.runOutsideAngular(() => (this._el.number = v));
2655
2575
  }
2656
- get state() {
2657
- return this._el.state;
2576
+ get number() {
2577
+ return this._el.number;
2658
2578
  }
2659
- set value(v) {
2660
- this._ngZone.runOutsideAngular(() => (this._el.value = v));
2579
+ set name(v) {
2580
+ this._ngZone.runOutsideAngular(() => (this._el.name = v));
2661
2581
  }
2662
- get value() {
2663
- return this._el.value;
2582
+ get name() {
2583
+ return this._el.name;
2664
2584
  }
2665
- set overlapOpaque(v) {
2666
- this._ngZone.runOutsideAngular(() => (this._el.overlapOpaque = v));
2585
+ set state(v) {
2586
+ this._ngZone.runOutsideAngular(() => (this._el.state = v));
2667
2587
  }
2668
- get overlapOpaque() {
2669
- return this._el.overlapOpaque;
2588
+ get state() {
2589
+ return this._el.state;
2670
2590
  }
2671
2591
  set type(v) {
2672
2592
  this._ngZone.runOutsideAngular(() => (this._el.type = v));
@@ -2674,151 +2594,153 @@ class ObcPoiButton {
2674
2594
  get type() {
2675
2595
  return this._el.type;
2676
2596
  }
2677
- set inExpandedGroup(v) {
2678
- this._ngZone.runOutsideAngular(() => (this._el.inExpandedGroup = v));
2597
+ set selected(v) {
2598
+ this._ngZone.runOutsideAngular(() => (this._el.selected = v));
2679
2599
  }
2680
- get inExpandedGroup() {
2681
- return this._el.inExpandedGroup;
2600
+ get selected() {
2601
+ return this._el.selected;
2682
2602
  }
2683
- set data(v) {
2684
- this._ngZone.runOutsideAngular(() => (this._el.data = v));
2603
+ set courseArrowPx(v) {
2604
+ this._ngZone.runOutsideAngular(() => (this._el.courseArrowPx = v));
2685
2605
  }
2686
- get data() {
2687
- return this._el.data;
2606
+ get courseArrowPx() {
2607
+ return this._el.courseArrowPx;
2688
2608
  }
2689
- set hasRelation(v) {
2690
- this._ngZone.runOutsideAngular(() => (this._el.hasRelation = v));
2609
+ set ownShipIndicator(v) {
2610
+ this._ngZone.runOutsideAngular(() => (this._el.ownShipIndicator = v));
2691
2611
  }
2692
- get hasRelation() {
2693
- return this._el.hasRelation;
2612
+ get ownShipIndicator() {
2613
+ return this._el.ownShipIndicator;
2694
2614
  }
2695
- set headerContent(v) {
2696
- this._ngZone.runOutsideAngular(() => (this._el.headerContent = v));
2615
+ set vesselImage(v) {
2616
+ this._ngZone.runOutsideAngular(() => (this._el.vesselImage = v));
2697
2617
  }
2698
- get headerContent() {
2699
- return this._el.headerContent;
2618
+ get vesselImage() {
2619
+ return this._el.vesselImage;
2700
2620
  }
2701
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiButton, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2702
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiButton, isStandalone: true, selector: "obc-poi-button", inputs: { relativeDirection: "relativeDirection", selected: "selected", layout: "layout", hasHeader: "hasHeader", state: "state", value: "value", overlapOpaque: "overlapOpaque", type: "type", inExpandedGroup: "inExpandedGroup", data: "data", hasRelation: "hasRelation", headerContent: "headerContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2621
+ set vesselImageSize(v) {
2622
+ this._ngZone.runOutsideAngular(() => (this._el.vesselImageSize = v));
2623
+ }
2624
+ get vesselImageSize() {
2625
+ return this._el.vesselImageSize;
2626
+ }
2627
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcChartObjectVesselButton, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2628
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcChartObjectVesselButton, isStandalone: true, selector: "obc-chart-object-vessel-button", inputs: { heading: "heading", course: "course", speedIndicator: "speedIndicator", turnRate: "turnRate", number: "number", name: "name", state: "state", type: "type", selected: "selected", courseArrowPx: "courseArrowPx", ownShipIndicator: "ownShipIndicator", vesselImage: "vesselImage", vesselImageSize: "vesselImageSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2703
2629
  }
2704
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiButton, decorators: [{
2630
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcChartObjectVesselButton, decorators: [{
2705
2631
  type: Component,
2706
2632
  args: [{
2707
- selector: 'obc-poi-button',
2633
+ selector: 'obc-chart-object-vessel-button',
2708
2634
  template: '<ng-content></ng-content>',
2709
2635
  standalone: true,
2710
2636
  imports: []
2711
2637
  }]
2712
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { relativeDirection: [{
2638
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { heading: [{
2713
2639
  type: Input
2714
- }], selected: [{
2640
+ }], course: [{
2715
2641
  type: Input
2716
- }], layout: [{
2642
+ }], speedIndicator: [{
2717
2643
  type: Input
2718
- }], hasHeader: [{
2644
+ }], turnRate: [{
2719
2645
  type: Input
2720
- }], state: [{
2646
+ }], number: [{
2721
2647
  type: Input
2722
- }], value: [{
2648
+ }], name: [{
2723
2649
  type: Input
2724
- }], overlapOpaque: [{
2650
+ }], state: [{
2725
2651
  type: Input
2726
2652
  }], type: [{
2727
2653
  type: Input
2728
- }], inExpandedGroup: [{
2654
+ }], selected: [{
2729
2655
  type: Input
2730
- }], data: [{
2656
+ }], courseArrowPx: [{
2731
2657
  type: Input
2732
- }], hasRelation: [{
2658
+ }], ownShipIndicator: [{
2733
2659
  type: Input
2734
- }], headerContent: [{
2660
+ }], vesselImage: [{
2661
+ type: Input
2662
+ }], vesselImageSize: [{
2735
2663
  type: Input
2736
2664
  }] } });
2737
2665
 
2738
- class ObcPoiGraphicLine {
2666
+ class ObcPoiAton {
2739
2667
  _el;
2740
2668
  _ngZone;
2741
2669
  constructor(e, ngZone) {
2742
2670
  this._el = e.nativeElement;
2743
2671
  this._ngZone = ngZone;
2672
+ this._el.addEventListener('obc-poi-data-layout-change', (e) => {
2673
+ // TODO(justinfagnani): we need to let the element say how to get a value
2674
+ // from an event, ex: e.value
2675
+ this.obcPoiDataLayoutChangeEvent.emit(e);
2676
+ });
2744
2677
  }
2745
- set lineHeight(v) {
2746
- this._ngZone.runOutsideAngular(() => (this._el.lineHeight = v));
2747
- }
2748
- get lineHeight() {
2749
- return this._el.lineHeight;
2750
- }
2751
- set lineStart(v) {
2752
- this._ngZone.runOutsideAngular(() => (this._el.lineStart = v));
2678
+ set atonType(v) {
2679
+ this._ngZone.runOutsideAngular(() => (this._el.atonType = v));
2753
2680
  }
2754
- get lineStart() {
2755
- return this._el.lineStart;
2681
+ get atonType() {
2682
+ return this._el.atonType;
2756
2683
  }
2757
- set lineStyle(v) {
2758
- this._ngZone.runOutsideAngular(() => (this._el.lineStyle = v));
2684
+ set atonStyle(v) {
2685
+ this._ngZone.runOutsideAngular(() => (this._el.atonStyle = v));
2759
2686
  }
2760
- get lineStyle() {
2761
- return this._el.lineStyle;
2687
+ get atonStyle() {
2688
+ return this._el.atonStyle;
2762
2689
  }
2763
- set lineType(v) {
2764
- this._ngZone.runOutsideAngular(() => (this._el.lineType = v));
2690
+ set atonState(v) {
2691
+ this._ngZone.runOutsideAngular(() => (this._el.atonState = v));
2765
2692
  }
2766
- get lineType() {
2767
- return this._el.lineType;
2693
+ get atonState() {
2694
+ return this._el.atonState;
2768
2695
  }
2769
- set offset(v) {
2770
- this._ngZone.runOutsideAngular(() => (this._el.offset = v));
2696
+ set atonInteractive(v) {
2697
+ this._ngZone.runOutsideAngular(() => (this._el.atonInteractive = v));
2771
2698
  }
2772
- get offset() {
2773
- return this._el.offset;
2699
+ get atonInteractive() {
2700
+ return this._el.atonInteractive;
2774
2701
  }
2775
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiGraphicLine, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2776
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiGraphicLine, isStandalone: true, selector: "obc-poi-graphic-line", inputs: { lineHeight: "lineHeight", lineStart: "lineStart", lineStyle: "lineStyle", lineType: "lineType", offset: "offset" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2702
+ obcPoiDataLayoutChangeEvent = new EventEmitter();
2703
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiAton, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2704
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiAton, isStandalone: true, selector: "obc-poi-aton", inputs: { atonType: "atonType", atonStyle: "atonStyle", atonState: "atonState", atonInteractive: "atonInteractive" }, outputs: { obcPoiDataLayoutChangeEvent: "obcPoiDataLayoutChangeEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2777
2705
  }
2778
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiGraphicLine, decorators: [{
2706
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiAton, decorators: [{
2779
2707
  type: Component,
2780
2708
  args: [{
2781
- selector: 'obc-poi-graphic-line',
2709
+ selector: 'obc-poi-aton',
2782
2710
  template: '<ng-content></ng-content>',
2783
2711
  standalone: true,
2784
2712
  imports: []
2785
2713
  }]
2786
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { lineHeight: [{
2787
- type: Input
2788
- }], lineStart: [{
2714
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { atonType: [{
2789
2715
  type: Input
2790
- }], lineStyle: [{
2716
+ }], atonStyle: [{
2791
2717
  type: Input
2792
- }], lineType: [{
2718
+ }], atonState: [{
2793
2719
  type: Input
2794
- }], offset: [{
2720
+ }], atonInteractive: [{
2795
2721
  type: Input
2722
+ }], obcPoiDataLayoutChangeEvent: [{
2723
+ type: Output
2796
2724
  }] } });
2797
2725
 
2798
- class ObcPoiHeader {
2726
+ class PoiBase {
2799
2727
  _el;
2800
2728
  _ngZone;
2801
2729
  constructor(e, ngZone) {
2802
2730
  this._el = e.nativeElement;
2803
2731
  this._ngZone = ngZone;
2804
2732
  }
2805
- set content(v) {
2806
- this._ngZone.runOutsideAngular(() => (this._el.content = v));
2807
- }
2808
- get content() {
2809
- return this._el.content;
2810
- }
2811
- set label(v) {
2812
- this._ngZone.runOutsideAngular(() => (this._el.label = v));
2733
+ set type(v) {
2734
+ this._ngZone.runOutsideAngular(() => (this._el.type = v));
2813
2735
  }
2814
- get label() {
2815
- return this._el.label;
2736
+ get type() {
2737
+ return this._el.type;
2816
2738
  }
2817
- set size(v) {
2818
- this._ngZone.runOutsideAngular(() => (this._el.size = v));
2739
+ set value(v) {
2740
+ this._ngZone.runOutsideAngular(() => (this._el.value = v));
2819
2741
  }
2820
- get size() {
2821
- return this._el.size;
2742
+ get value() {
2743
+ return this._el.value;
2822
2744
  }
2823
2745
  set state(v) {
2824
2746
  this._ngZone.runOutsideAngular(() => (this._el.state = v));
@@ -2826,73 +2748,41 @@ class ObcPoiHeader {
2826
2748
  get state() {
2827
2749
  return this._el.state;
2828
2750
  }
2829
- set type(v) {
2830
- this._ngZone.runOutsideAngular(() => (this._el.type = v));
2831
- }
2832
- get type() {
2833
- return this._el.type;
2751
+ set selected(v) {
2752
+ this._ngZone.runOutsideAngular(() => (this._el.selected = v));
2834
2753
  }
2835
- set hasIndicator(v) {
2836
- this._ngZone.runOutsideAngular(() => (this._el.hasIndicator = v));
2754
+ get selected() {
2755
+ return this._el.selected;
2837
2756
  }
2838
- get hasIndicator() {
2839
- return this._el.hasIndicator;
2757
+ set buttonType(v) {
2758
+ this._ngZone.runOutsideAngular(() => (this._el.buttonType = v));
2840
2759
  }
2841
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiHeader, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2842
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiHeader, isStandalone: true, selector: "obc-poi-header", inputs: { content: "content", label: "label", size: "size", state: "state", type: "type", hasIndicator: "hasIndicator" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2843
- }
2844
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiHeader, decorators: [{
2845
- type: Component,
2846
- args: [{
2847
- selector: 'obc-poi-header',
2848
- template: '<ng-content></ng-content>',
2849
- standalone: true,
2850
- imports: []
2851
- }]
2852
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { content: [{
2853
- type: Input
2854
- }], label: [{
2855
- type: Input
2856
- }], size: [{
2857
- type: Input
2858
- }], state: [{
2859
- type: Input
2860
- }], type: [{
2861
- type: Input
2862
- }], hasIndicator: [{
2863
- type: Input
2864
- }] } });
2865
-
2866
- class ObcPoiLine {
2867
- _el;
2868
- _ngZone;
2869
- constructor(e, ngZone) {
2870
- this._el = e.nativeElement;
2871
- this._ngZone = ngZone;
2760
+ get buttonType() {
2761
+ return this._el.buttonType;
2872
2762
  }
2873
- set height(v) {
2874
- this._ngZone.runOutsideAngular(() => (this._el.height = v));
2763
+ set overlapOpaque(v) {
2764
+ this._ngZone.runOutsideAngular(() => (this._el.overlapOpaque = v));
2875
2765
  }
2876
- get height() {
2877
- return this._el.height;
2766
+ get overlapOpaque() {
2767
+ return this._el.overlapOpaque;
2878
2768
  }
2879
- set poiStyle(v) {
2880
- this._ngZone.runOutsideAngular(() => (this._el.poiStyle = v));
2769
+ set data(v) {
2770
+ this._ngZone.runOutsideAngular(() => (this._el.data = v));
2881
2771
  }
2882
- get poiStyle() {
2883
- return this._el.poiStyle;
2772
+ get data() {
2773
+ return this._el.data;
2884
2774
  }
2885
- set lineType(v) {
2886
- this._ngZone.runOutsideAngular(() => (this._el.lineType = v));
2775
+ set hasHeader(v) {
2776
+ this._ngZone.runOutsideAngular(() => (this._el.hasHeader = v));
2887
2777
  }
2888
- get lineType() {
2889
- return this._el.lineType;
2778
+ get hasHeader() {
2779
+ return this._el.hasHeader;
2890
2780
  }
2891
- set offset(v) {
2892
- this._ngZone.runOutsideAngular(() => (this._el.offset = v));
2781
+ set headerContent(v) {
2782
+ this._ngZone.runOutsideAngular(() => (this._el.headerContent = v));
2893
2783
  }
2894
- get offset() {
2895
- return this._el.offset;
2784
+ get headerContent() {
2785
+ return this._el.headerContent;
2896
2786
  }
2897
2787
  set hasPointer(v) {
2898
2788
  this._ngZone.runOutsideAngular(() => (this._el.hasPointer = v));
@@ -2900,134 +2790,256 @@ class ObcPoiLine {
2900
2790
  get hasPointer() {
2901
2791
  return this._el.hasPointer;
2902
2792
  }
2793
+ set pointerType(v) {
2794
+ this._ngZone.runOutsideAngular(() => (this._el.pointerType = v));
2795
+ }
2796
+ get pointerType() {
2797
+ return this._el.pointerType;
2798
+ }
2799
+ set pointerState(v) {
2800
+ this._ngZone.runOutsideAngular(() => (this._el.pointerState = v));
2801
+ }
2802
+ get pointerState() {
2803
+ return this._el.pointerState;
2804
+ }
2805
+ set relativeDirection(v) {
2806
+ this._ngZone.runOutsideAngular(() => (this._el.relativeDirection = v));
2807
+ }
2808
+ get relativeDirection() {
2809
+ return this._el.relativeDirection;
2810
+ }
2811
+ set x(v) {
2812
+ this._ngZone.runOutsideAngular(() => (this._el.x = v));
2813
+ }
2814
+ get x() {
2815
+ return this._el.x;
2816
+ }
2817
+ set y(v) {
2818
+ this._ngZone.runOutsideAngular(() => (this._el.y = v));
2819
+ }
2820
+ get y() {
2821
+ return this._el.y;
2822
+ }
2823
+ set buttonY(v) {
2824
+ this._ngZone.runOutsideAngular(() => (this._el.buttonY = v));
2825
+ }
2826
+ get buttonY() {
2827
+ return this._el.buttonY;
2828
+ }
2829
+ set fixedTarget(v) {
2830
+ this._ngZone.runOutsideAngular(() => (this._el.fixedTarget = v));
2831
+ }
2832
+ get fixedTarget() {
2833
+ return this._el.fixedTarget;
2834
+ }
2835
+ set boxWidth(v) {
2836
+ this._ngZone.runOutsideAngular(() => (this._el.boxWidth = v));
2837
+ }
2838
+ get boxWidth() {
2839
+ return this._el.boxWidth;
2840
+ }
2841
+ set boxHeight(v) {
2842
+ this._ngZone.runOutsideAngular(() => (this._el.boxHeight = v));
2843
+ }
2844
+ get boxHeight() {
2845
+ return this._el.boxHeight;
2846
+ }
2847
+ set outsideAngle(v) {
2848
+ this._ngZone.runOutsideAngular(() => (this._el.outsideAngle = v));
2849
+ }
2850
+ get outsideAngle() {
2851
+ return this._el.outsideAngle;
2852
+ }
2903
2853
  set animatePosition(v) {
2904
2854
  this._ngZone.runOutsideAngular(() => (this._el.animatePosition = v));
2905
2855
  }
2906
2856
  get animatePosition() {
2907
2857
  return this._el.animatePosition;
2908
2858
  }
2909
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiLine, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2910
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiLine, isStandalone: true, selector: "obc-poi-line", inputs: { height: "height", poiStyle: "poiStyle", lineType: "lineType", offset: "offset", hasPointer: "hasPointer", animatePosition: "animatePosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2859
+ set buttonOffsetX(v) {
2860
+ this._ngZone.runOutsideAngular(() => (this._el.buttonOffsetX = v));
2861
+ }
2862
+ get buttonOffsetX() {
2863
+ return this._el.buttonOffsetX;
2864
+ }
2865
+ set targetOffsetX(v) {
2866
+ this._ngZone.runOutsideAngular(() => (this._el.targetOffsetX = v));
2867
+ }
2868
+ get targetOffsetX() {
2869
+ return this._el.targetOffsetX;
2870
+ }
2871
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: PoiBase, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2872
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: PoiBase, isStandalone: true, selector: "undefined", inputs: { type: "type", value: "value", state: "state", selected: "selected", buttonType: "buttonType", overlapOpaque: "overlapOpaque", data: "data", hasHeader: "hasHeader", headerContent: "headerContent", hasPointer: "hasPointer", pointerType: "pointerType", pointerState: "pointerState", relativeDirection: "relativeDirection", x: "x", y: "y", buttonY: "buttonY", fixedTarget: "fixedTarget", boxWidth: "boxWidth", boxHeight: "boxHeight", outsideAngle: "outsideAngle", animatePosition: "animatePosition", buttonOffsetX: "buttonOffsetX", targetOffsetX: "targetOffsetX" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2911
2873
  }
2912
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiLine, decorators: [{
2874
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: PoiBase, decorators: [{
2913
2875
  type: Component,
2914
2876
  args: [{
2915
- selector: 'obc-poi-line',
2877
+ selector: 'undefined',
2916
2878
  template: '<ng-content></ng-content>',
2917
2879
  standalone: true,
2918
2880
  imports: []
2919
2881
  }]
2920
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { height: [{
2882
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
2921
2883
  type: Input
2922
- }], poiStyle: [{
2884
+ }], value: [{
2923
2885
  type: Input
2924
- }], lineType: [{
2886
+ }], state: [{
2925
2887
  type: Input
2926
- }], offset: [{
2888
+ }], selected: [{
2889
+ type: Input
2890
+ }], buttonType: [{
2891
+ type: Input
2892
+ }], overlapOpaque: [{
2893
+ type: Input
2894
+ }], data: [{
2895
+ type: Input
2896
+ }], hasHeader: [{
2897
+ type: Input
2898
+ }], headerContent: [{
2927
2899
  type: Input
2928
2900
  }], hasPointer: [{
2929
2901
  type: Input
2902
+ }], pointerType: [{
2903
+ type: Input
2904
+ }], pointerState: [{
2905
+ type: Input
2906
+ }], relativeDirection: [{
2907
+ type: Input
2908
+ }], x: [{
2909
+ type: Input
2910
+ }], y: [{
2911
+ type: Input
2912
+ }], buttonY: [{
2913
+ type: Input
2914
+ }], fixedTarget: [{
2915
+ type: Input
2916
+ }], boxWidth: [{
2917
+ type: Input
2918
+ }], boxHeight: [{
2919
+ type: Input
2920
+ }], outsideAngle: [{
2921
+ type: Input
2930
2922
  }], animatePosition: [{
2931
2923
  type: Input
2924
+ }], buttonOffsetX: [{
2925
+ type: Input
2926
+ }], targetOffsetX: [{
2927
+ type: Input
2932
2928
  }] } });
2933
2929
 
2934
- class ObcAbstractPoiObject {
2930
+ class ObcPoiData {
2935
2931
  _el;
2936
2932
  _ngZone;
2937
2933
  constructor(e, ngZone) {
2938
2934
  this._el = e.nativeElement;
2939
2935
  this._ngZone = ngZone;
2936
+ this._el.addEventListener('obc-poi-data-layout-change', (e) => {
2937
+ // TODO(justinfagnani): we need to let the element say how to get a value
2938
+ // from an event, ex: e.value
2939
+ this.obcPoiDataLayoutChangeEvent.emit(e);
2940
+ });
2940
2941
  }
2941
- set objectStyle(v) {
2942
- this._ngZone.runOutsideAngular(() => (this._el.objectStyle = v));
2942
+ set dataStyle(v) {
2943
+ this._ngZone.runOutsideAngular(() => (this._el.dataStyle = v));
2943
2944
  }
2944
- get objectStyle() {
2945
- return this._el.objectStyle;
2945
+ get dataStyle() {
2946
+ return this._el.dataStyle;
2946
2947
  }
2947
- set state(v) {
2948
- this._ngZone.runOutsideAngular(() => (this._el.state = v));
2948
+ set dataState(v) {
2949
+ this._ngZone.runOutsideAngular(() => (this._el.dataState = v));
2949
2950
  }
2950
- get state() {
2951
- return this._el.state;
2951
+ get dataState() {
2952
+ return this._el.dataState;
2952
2953
  }
2953
- set interactive(v) {
2954
- this._ngZone.runOutsideAngular(() => (this._el.interactive = v));
2954
+ set dataInteractive(v) {
2955
+ this._ngZone.runOutsideAngular(() => (this._el.dataInteractive = v));
2955
2956
  }
2956
- get interactive() {
2957
- return this._el.interactive;
2957
+ get dataInteractive() {
2958
+ return this._el.dataInteractive;
2958
2959
  }
2959
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAbstractPoiObject, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2960
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcAbstractPoiObject, isStandalone: true, selector: "undefined", inputs: { objectStyle: "objectStyle", state: "state", interactive: "interactive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2960
+ obcPoiDataLayoutChangeEvent = new EventEmitter();
2961
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiData, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
2962
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiData, isStandalone: true, selector: "obc-poi-data", inputs: { dataStyle: "dataStyle", dataState: "dataState", dataInteractive: "dataInteractive" }, outputs: { obcPoiDataLayoutChangeEvent: "obcPoiDataLayoutChangeEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
2961
2963
  }
2962
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcAbstractPoiObject, decorators: [{
2964
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiData, decorators: [{
2963
2965
  type: Component,
2964
2966
  args: [{
2965
- selector: 'undefined',
2967
+ selector: 'obc-poi-data',
2966
2968
  template: '<ng-content></ng-content>',
2967
2969
  standalone: true,
2968
2970
  imports: []
2969
2971
  }]
2970
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { objectStyle: [{
2972
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dataStyle: [{
2971
2973
  type: Input
2972
- }], state: [{
2974
+ }], dataState: [{
2973
2975
  type: Input
2974
- }], interactive: [{
2976
+ }], dataInteractive: [{
2975
2977
  type: Input
2978
+ }], obcPoiDataLayoutChangeEvent: [{
2979
+ type: Output
2976
2980
  }] } });
2977
2981
 
2978
- class ObcPoiObject {
2982
+ class ObcPoiVessel {
2979
2983
  _el;
2980
2984
  _ngZone;
2981
2985
  constructor(e, ngZone) {
2982
2986
  this._el = e.nativeElement;
2983
2987
  this._ngZone = ngZone;
2988
+ this._el.addEventListener('obc-poi-data-layout-change', (e) => {
2989
+ // TODO(justinfagnani): we need to let the element say how to get a value
2990
+ // from an event, ex: e.value
2991
+ this.obcPoiDataLayoutChangeEvent.emit(e);
2992
+ });
2984
2993
  }
2985
- set type(v) {
2986
- this._ngZone.runOutsideAngular(() => (this._el.type = v));
2994
+ set vesselType(v) {
2995
+ this._ngZone.runOutsideAngular(() => (this._el.vesselType = v));
2987
2996
  }
2988
- get type() {
2989
- return this._el.type;
2997
+ get vesselType() {
2998
+ return this._el.vesselType;
2990
2999
  }
2991
- set objectStyle(v) {
2992
- this._ngZone.runOutsideAngular(() => (this._el.objectStyle = v));
3000
+ set vesselStyle(v) {
3001
+ this._ngZone.runOutsideAngular(() => (this._el.vesselStyle = v));
2993
3002
  }
2994
- get objectStyle() {
2995
- return this._el.objectStyle;
3003
+ get vesselStyle() {
3004
+ return this._el.vesselStyle;
2996
3005
  }
2997
- set state(v) {
2998
- this._ngZone.runOutsideAngular(() => (this._el.state = v));
3006
+ set vesselState(v) {
3007
+ this._ngZone.runOutsideAngular(() => (this._el.vesselState = v));
2999
3008
  }
3000
- get state() {
3001
- return this._el.state;
3009
+ get vesselState() {
3010
+ return this._el.vesselState;
3002
3011
  }
3003
- set interactive(v) {
3004
- this._ngZone.runOutsideAngular(() => (this._el.interactive = v));
3012
+ set vesselInteractive(v) {
3013
+ this._ngZone.runOutsideAngular(() => (this._el.vesselInteractive = v));
3005
3014
  }
3006
- get interactive() {
3007
- return this._el.interactive;
3015
+ get vesselInteractive() {
3016
+ return this._el.vesselInteractive;
3008
3017
  }
3009
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiObject, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3010
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiObject, isStandalone: true, selector: "obc-poi-object", inputs: { type: "type", objectStyle: "objectStyle", state: "state", interactive: "interactive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3018
+ obcPoiDataLayoutChangeEvent = new EventEmitter();
3019
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiVessel, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3020
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiVessel, isStandalone: true, selector: "obc-poi-vessel", inputs: { vesselType: "vesselType", vesselStyle: "vesselStyle", vesselState: "vesselState", vesselInteractive: "vesselInteractive" }, outputs: { obcPoiDataLayoutChangeEvent: "obcPoiDataLayoutChangeEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3011
3021
  }
3012
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiObject, decorators: [{
3022
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiVessel, decorators: [{
3013
3023
  type: Component,
3014
3024
  args: [{
3015
- selector: 'obc-poi-object',
3025
+ selector: 'obc-poi-vessel',
3016
3026
  template: '<ng-content></ng-content>',
3017
3027
  standalone: true,
3018
3028
  imports: []
3019
3029
  }]
3020
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
3030
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { vesselType: [{
3021
3031
  type: Input
3022
- }], objectStyle: [{
3032
+ }], vesselStyle: [{
3023
3033
  type: Input
3024
- }], state: [{
3034
+ }], vesselState: [{
3025
3035
  type: Input
3026
- }], interactive: [{
3036
+ }], vesselInteractive: [{
3027
3037
  type: Input
3038
+ }], obcPoiDataLayoutChangeEvent: [{
3039
+ type: Output
3028
3040
  }] } });
3029
3041
 
3030
- class ObcPoiPointer {
3042
+ class ObcPoi {
3031
3043
  _el;
3032
3044
  _ngZone;
3033
3045
  constructor(e, ngZone) {
@@ -3040,315 +3052,195 @@ class ObcPoiPointer {
3040
3052
  get type() {
3041
3053
  return this._el.type;
3042
3054
  }
3055
+ set value(v) {
3056
+ this._ngZone.runOutsideAngular(() => (this._el.value = v));
3057
+ }
3058
+ get value() {
3059
+ return this._el.value;
3060
+ }
3043
3061
  set state(v) {
3044
3062
  this._ngZone.runOutsideAngular(() => (this._el.state = v));
3045
3063
  }
3046
3064
  get state() {
3047
3065
  return this._el.state;
3048
3066
  }
3049
- set boxWidth(v) {
3050
- this._ngZone.runOutsideAngular(() => (this._el.boxWidth = v));
3051
- }
3052
- get boxWidth() {
3053
- return this._el.boxWidth;
3054
- }
3055
- set boxHeight(v) {
3056
- this._ngZone.runOutsideAngular(() => (this._el.boxHeight = v));
3057
- }
3058
- get boxHeight() {
3059
- return this._el.boxHeight;
3060
- }
3061
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiPointer, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3062
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiPointer, isStandalone: true, selector: "obc-poi-pointer", inputs: { type: "type", state: "state", boxWidth: "boxWidth", boxHeight: "boxHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3063
- }
3064
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiPointer, decorators: [{
3065
- type: Component,
3066
- args: [{
3067
- selector: 'obc-poi-pointer',
3068
- template: '<ng-content></ng-content>',
3069
- standalone: true,
3070
- imports: []
3071
- }]
3072
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
3073
- type: Input
3074
- }], state: [{
3075
- type: Input
3076
- }], boxWidth: [{
3077
- type: Input
3078
- }], boxHeight: [{
3079
- type: Input
3080
- }] } });
3081
-
3082
- class ObcPoiSelectionFrame {
3083
- _el;
3084
- _ngZone;
3085
- constructor(e, ngZone) {
3086
- this._el = e.nativeElement;
3087
- this._ngZone = ngZone;
3088
- }
3089
- set type(v) {
3090
- this._ngZone.runOutsideAngular(() => (this._el.type = v));
3067
+ set selected(v) {
3068
+ this._ngZone.runOutsideAngular(() => (this._el.selected = v));
3091
3069
  }
3092
- get type() {
3093
- return this._el.type;
3070
+ get selected() {
3071
+ return this._el.selected;
3094
3072
  }
3095
- set state(v) {
3096
- this._ngZone.runOutsideAngular(() => (this._el.state = v));
3073
+ set buttonType(v) {
3074
+ this._ngZone.runOutsideAngular(() => (this._el.buttonType = v));
3097
3075
  }
3098
- get state() {
3099
- return this._el.state;
3076
+ get buttonType() {
3077
+ return this._el.buttonType;
3100
3078
  }
3101
- set customMode(v) {
3102
- this._ngZone.runOutsideAngular(() => (this._el.customMode = v));
3079
+ set overlapOpaque(v) {
3080
+ this._ngZone.runOutsideAngular(() => (this._el.overlapOpaque = v));
3103
3081
  }
3104
- get customMode() {
3105
- return this._el.customMode;
3082
+ get overlapOpaque() {
3083
+ return this._el.overlapOpaque;
3106
3084
  }
3107
- set boxWidth(v) {
3108
- this._ngZone.runOutsideAngular(() => (this._el.boxWidth = v));
3085
+ set data(v) {
3086
+ this._ngZone.runOutsideAngular(() => (this._el.data = v));
3109
3087
  }
3110
- get boxWidth() {
3111
- return this._el.boxWidth;
3088
+ get data() {
3089
+ return this._el.data;
3112
3090
  }
3113
- set boxHeight(v) {
3114
- this._ngZone.runOutsideAngular(() => (this._el.boxHeight = v));
3091
+ set hasHeader(v) {
3092
+ this._ngZone.runOutsideAngular(() => (this._el.hasHeader = v));
3115
3093
  }
3116
- get boxHeight() {
3117
- return this._el.boxHeight;
3094
+ get hasHeader() {
3095
+ return this._el.hasHeader;
3118
3096
  }
3119
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiSelectionFrame, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3120
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiSelectionFrame, isStandalone: true, selector: "obc-poi-selection-frame", inputs: { type: "type", state: "state", customMode: "customMode", boxWidth: "boxWidth", boxHeight: "boxHeight" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3121
- }
3122
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiSelectionFrame, decorators: [{
3123
- type: Component,
3124
- args: [{
3125
- selector: 'obc-poi-selection-frame',
3126
- template: '<ng-content></ng-content>',
3127
- standalone: true,
3128
- imports: []
3129
- }]
3130
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
3131
- type: Input
3132
- }], state: [{
3133
- type: Input
3134
- }], customMode: [{
3135
- type: Input
3136
- }], boxWidth: [{
3137
- type: Input
3138
- }], boxHeight: [{
3139
- type: Input
3140
- }] } });
3141
-
3142
- class ObcRulerPointer {
3143
- _el;
3144
- _ngZone;
3145
- constructor(e, ngZone) {
3146
- this._el = e.nativeElement;
3147
- this._ngZone = ngZone;
3097
+ set headerContent(v) {
3098
+ this._ngZone.runOutsideAngular(() => (this._el.headerContent = v));
3148
3099
  }
3149
- set type(v) {
3150
- this._ngZone.runOutsideAngular(() => (this._el.type = v));
3100
+ get headerContent() {
3101
+ return this._el.headerContent;
3151
3102
  }
3152
- get type() {
3153
- return this._el.type;
3103
+ set hasPointer(v) {
3104
+ this._ngZone.runOutsideAngular(() => (this._el.hasPointer = v));
3154
3105
  }
3155
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRulerPointer, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3156
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcRulerPointer, isStandalone: true, selector: "obc-ruler-pointer", inputs: { type: "type" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3157
- }
3158
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcRulerPointer, decorators: [{
3159
- type: Component,
3160
- args: [{
3161
- selector: 'obc-ruler-pointer',
3162
- template: '<ng-content></ng-content>',
3163
- standalone: true,
3164
- imports: []
3165
- }]
3166
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
3167
- type: Input
3168
- }] } });
3169
-
3170
- class ObcChartObjectVesselButton {
3171
- _el;
3172
- _ngZone;
3173
- constructor(e, ngZone) {
3174
- this._el = e.nativeElement;
3175
- this._ngZone = ngZone;
3106
+ get hasPointer() {
3107
+ return this._el.hasPointer;
3176
3108
  }
3177
- set heading(v) {
3178
- this._ngZone.runOutsideAngular(() => (this._el.heading = v));
3109
+ set pointerType(v) {
3110
+ this._ngZone.runOutsideAngular(() => (this._el.pointerType = v));
3179
3111
  }
3180
- get heading() {
3181
- return this._el.heading;
3112
+ get pointerType() {
3113
+ return this._el.pointerType;
3182
3114
  }
3183
- set course(v) {
3184
- this._ngZone.runOutsideAngular(() => (this._el.course = v));
3115
+ set pointerState(v) {
3116
+ this._ngZone.runOutsideAngular(() => (this._el.pointerState = v));
3185
3117
  }
3186
- get course() {
3187
- return this._el.course;
3118
+ get pointerState() {
3119
+ return this._el.pointerState;
3188
3120
  }
3189
- set speedIndicator(v) {
3190
- this._ngZone.runOutsideAngular(() => (this._el.speedIndicator = v));
3121
+ set relativeDirection(v) {
3122
+ this._ngZone.runOutsideAngular(() => (this._el.relativeDirection = v));
3191
3123
  }
3192
- get speedIndicator() {
3193
- return this._el.speedIndicator;
3124
+ get relativeDirection() {
3125
+ return this._el.relativeDirection;
3194
3126
  }
3195
- set turnRate(v) {
3196
- this._ngZone.runOutsideAngular(() => (this._el.turnRate = v));
3127
+ set x(v) {
3128
+ this._ngZone.runOutsideAngular(() => (this._el.x = v));
3197
3129
  }
3198
- get turnRate() {
3199
- return this._el.turnRate;
3130
+ get x() {
3131
+ return this._el.x;
3200
3132
  }
3201
- set number(v) {
3202
- this._ngZone.runOutsideAngular(() => (this._el.number = v));
3133
+ set y(v) {
3134
+ this._ngZone.runOutsideAngular(() => (this._el.y = v));
3203
3135
  }
3204
- get number() {
3205
- return this._el.number;
3136
+ get y() {
3137
+ return this._el.y;
3206
3138
  }
3207
- set name(v) {
3208
- this._ngZone.runOutsideAngular(() => (this._el.name = v));
3139
+ set buttonY(v) {
3140
+ this._ngZone.runOutsideAngular(() => (this._el.buttonY = v));
3209
3141
  }
3210
- get name() {
3211
- return this._el.name;
3142
+ get buttonY() {
3143
+ return this._el.buttonY;
3212
3144
  }
3213
- set state(v) {
3214
- this._ngZone.runOutsideAngular(() => (this._el.state = v));
3145
+ set fixedTarget(v) {
3146
+ this._ngZone.runOutsideAngular(() => (this._el.fixedTarget = v));
3215
3147
  }
3216
- get state() {
3217
- return this._el.state;
3148
+ get fixedTarget() {
3149
+ return this._el.fixedTarget;
3218
3150
  }
3219
- set type(v) {
3220
- this._ngZone.runOutsideAngular(() => (this._el.type = v));
3151
+ set buttonOffsetX(v) {
3152
+ this._ngZone.runOutsideAngular(() => (this._el.buttonOffsetX = v));
3221
3153
  }
3222
- get type() {
3223
- return this._el.type;
3154
+ get buttonOffsetX() {
3155
+ return this._el.buttonOffsetX;
3224
3156
  }
3225
- set selected(v) {
3226
- this._ngZone.runOutsideAngular(() => (this._el.selected = v));
3157
+ set targetOffsetX(v) {
3158
+ this._ngZone.runOutsideAngular(() => (this._el.targetOffsetX = v));
3227
3159
  }
3228
- get selected() {
3229
- return this._el.selected;
3160
+ get targetOffsetX() {
3161
+ return this._el.targetOffsetX;
3230
3162
  }
3231
- set courseArrowPx(v) {
3232
- this._ngZone.runOutsideAngular(() => (this._el.courseArrowPx = v));
3163
+ set boxWidth(v) {
3164
+ this._ngZone.runOutsideAngular(() => (this._el.boxWidth = v));
3233
3165
  }
3234
- get courseArrowPx() {
3235
- return this._el.courseArrowPx;
3166
+ get boxWidth() {
3167
+ return this._el.boxWidth;
3236
3168
  }
3237
- set ownShipIndicator(v) {
3238
- this._ngZone.runOutsideAngular(() => (this._el.ownShipIndicator = v));
3169
+ set boxHeight(v) {
3170
+ this._ngZone.runOutsideAngular(() => (this._el.boxHeight = v));
3239
3171
  }
3240
- get ownShipIndicator() {
3241
- return this._el.ownShipIndicator;
3172
+ get boxHeight() {
3173
+ return this._el.boxHeight;
3242
3174
  }
3243
- set vesselImage(v) {
3244
- this._ngZone.runOutsideAngular(() => (this._el.vesselImage = v));
3175
+ set outsideAngle(v) {
3176
+ this._ngZone.runOutsideAngular(() => (this._el.outsideAngle = v));
3245
3177
  }
3246
- get vesselImage() {
3247
- return this._el.vesselImage;
3178
+ get outsideAngle() {
3179
+ return this._el.outsideAngle;
3248
3180
  }
3249
- set vesselImageSize(v) {
3250
- this._ngZone.runOutsideAngular(() => (this._el.vesselImageSize = v));
3181
+ set animatePosition(v) {
3182
+ this._ngZone.runOutsideAngular(() => (this._el.animatePosition = v));
3251
3183
  }
3252
- get vesselImageSize() {
3253
- return this._el.vesselImageSize;
3184
+ get animatePosition() {
3185
+ return this._el.animatePosition;
3254
3186
  }
3255
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcChartObjectVesselButton, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3256
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcChartObjectVesselButton, isStandalone: true, selector: "obc-chart-object-vessel-button", inputs: { heading: "heading", course: "course", speedIndicator: "speedIndicator", turnRate: "turnRate", number: "number", name: "name", state: "state", type: "type", selected: "selected", courseArrowPx: "courseArrowPx", ownShipIndicator: "ownShipIndicator", vesselImage: "vesselImage", vesselImageSize: "vesselImageSize" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3187
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoi, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3188
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoi, isStandalone: true, selector: "obc-poi", inputs: { type: "type", value: "value", state: "state", selected: "selected", buttonType: "buttonType", overlapOpaque: "overlapOpaque", data: "data", hasHeader: "hasHeader", headerContent: "headerContent", hasPointer: "hasPointer", pointerType: "pointerType", pointerState: "pointerState", relativeDirection: "relativeDirection", x: "x", y: "y", buttonY: "buttonY", fixedTarget: "fixedTarget", buttonOffsetX: "buttonOffsetX", targetOffsetX: "targetOffsetX", boxWidth: "boxWidth", boxHeight: "boxHeight", outsideAngle: "outsideAngle", animatePosition: "animatePosition" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3257
3189
  }
3258
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcChartObjectVesselButton, decorators: [{
3190
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoi, decorators: [{
3259
3191
  type: Component,
3260
3192
  args: [{
3261
- selector: 'obc-chart-object-vessel-button',
3193
+ selector: 'obc-poi',
3262
3194
  template: '<ng-content></ng-content>',
3263
3195
  standalone: true,
3264
3196
  imports: []
3265
3197
  }]
3266
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { heading: [{
3198
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
3267
3199
  type: Input
3268
- }], course: [{
3200
+ }], value: [{
3269
3201
  type: Input
3270
- }], speedIndicator: [{
3202
+ }], state: [{
3271
3203
  type: Input
3272
- }], turnRate: [{
3204
+ }], selected: [{
3273
3205
  type: Input
3274
- }], number: [{
3206
+ }], buttonType: [{
3275
3207
  type: Input
3276
- }], name: [{
3208
+ }], overlapOpaque: [{
3277
3209
  type: Input
3278
- }], state: [{
3210
+ }], data: [{
3279
3211
  type: Input
3280
- }], type: [{
3212
+ }], hasHeader: [{
3281
3213
  type: Input
3282
- }], selected: [{
3214
+ }], headerContent: [{
3283
3215
  type: Input
3284
- }], courseArrowPx: [{
3216
+ }], hasPointer: [{
3285
3217
  type: Input
3286
- }], ownShipIndicator: [{
3218
+ }], pointerType: [{
3287
3219
  type: Input
3288
- }], vesselImage: [{
3220
+ }], pointerState: [{
3289
3221
  type: Input
3290
- }], vesselImageSize: [{
3222
+ }], relativeDirection: [{
3291
3223
  type: Input
3292
- }] } });
3293
-
3294
- class ObcPoiAton {
3295
- _el;
3296
- _ngZone;
3297
- constructor(e, ngZone) {
3298
- this._el = e.nativeElement;
3299
- this._ngZone = ngZone;
3300
- this._el.addEventListener('obc-poi-data-layout-change', (e) => {
3301
- // TODO(justinfagnani): we need to let the element say how to get a value
3302
- // from an event, ex: e.value
3303
- this.obcPoiDataLayoutChangeEvent.emit(e);
3304
- });
3305
- }
3306
- set atonType(v) {
3307
- this._ngZone.runOutsideAngular(() => (this._el.atonType = v));
3308
- }
3309
- get atonType() {
3310
- return this._el.atonType;
3311
- }
3312
- set atonStyle(v) {
3313
- this._ngZone.runOutsideAngular(() => (this._el.atonStyle = v));
3314
- }
3315
- get atonStyle() {
3316
- return this._el.atonStyle;
3317
- }
3318
- set atonState(v) {
3319
- this._ngZone.runOutsideAngular(() => (this._el.atonState = v));
3320
- }
3321
- get atonState() {
3322
- return this._el.atonState;
3323
- }
3324
- set atonInteractive(v) {
3325
- this._ngZone.runOutsideAngular(() => (this._el.atonInteractive = v));
3326
- }
3327
- get atonInteractive() {
3328
- return this._el.atonInteractive;
3329
- }
3330
- obcPoiDataLayoutChangeEvent = new EventEmitter();
3331
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiAton, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3332
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiAton, isStandalone: true, selector: "obc-poi-aton", inputs: { atonType: "atonType", atonStyle: "atonStyle", atonState: "atonState", atonInteractive: "atonInteractive" }, outputs: { obcPoiDataLayoutChangeEvent: "obcPoiDataLayoutChangeEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3333
- }
3334
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiAton, decorators: [{
3335
- type: Component,
3336
- args: [{
3337
- selector: 'obc-poi-aton',
3338
- template: '<ng-content></ng-content>',
3339
- standalone: true,
3340
- imports: []
3341
- }]
3342
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { atonType: [{
3224
+ }], x: [{
3343
3225
  type: Input
3344
- }], atonStyle: [{
3226
+ }], y: [{
3345
3227
  type: Input
3346
- }], atonState: [{
3228
+ }], buttonY: [{
3347
3229
  type: Input
3348
- }], atonInteractive: [{
3230
+ }], fixedTarget: [{
3231
+ type: Input
3232
+ }], buttonOffsetX: [{
3233
+ type: Input
3234
+ }], targetOffsetX: [{
3235
+ type: Input
3236
+ }], boxWidth: [{
3237
+ type: Input
3238
+ }], boxHeight: [{
3239
+ type: Input
3240
+ }], outsideAngle: [{
3241
+ type: Input
3242
+ }], animatePosition: [{
3349
3243
  type: Input
3350
- }], obcPoiDataLayoutChangeEvent: [{
3351
- type: Output
3352
3244
  }] } });
3353
3245
 
3354
3246
  class ObcPoiButtonAton {
@@ -3499,6 +3391,122 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
3499
3391
  type: Input
3500
3392
  }] } });
3501
3393
 
3394
+ class ObcPoiButton {
3395
+ _el;
3396
+ _ngZone;
3397
+ constructor(e, ngZone) {
3398
+ this._el = e.nativeElement;
3399
+ this._ngZone = ngZone;
3400
+ }
3401
+ set relativeDirection(v) {
3402
+ this._ngZone.runOutsideAngular(() => (this._el.relativeDirection = v));
3403
+ }
3404
+ get relativeDirection() {
3405
+ return this._el.relativeDirection;
3406
+ }
3407
+ set selected(v) {
3408
+ this._ngZone.runOutsideAngular(() => (this._el.selected = v));
3409
+ }
3410
+ get selected() {
3411
+ return this._el.selected;
3412
+ }
3413
+ set layout(v) {
3414
+ this._ngZone.runOutsideAngular(() => (this._el.layout = v));
3415
+ }
3416
+ get layout() {
3417
+ return this._el.layout;
3418
+ }
3419
+ set hasHeader(v) {
3420
+ this._ngZone.runOutsideAngular(() => (this._el.hasHeader = v));
3421
+ }
3422
+ get hasHeader() {
3423
+ return this._el.hasHeader;
3424
+ }
3425
+ set state(v) {
3426
+ this._ngZone.runOutsideAngular(() => (this._el.state = v));
3427
+ }
3428
+ get state() {
3429
+ return this._el.state;
3430
+ }
3431
+ set value(v) {
3432
+ this._ngZone.runOutsideAngular(() => (this._el.value = v));
3433
+ }
3434
+ get value() {
3435
+ return this._el.value;
3436
+ }
3437
+ set overlapOpaque(v) {
3438
+ this._ngZone.runOutsideAngular(() => (this._el.overlapOpaque = v));
3439
+ }
3440
+ get overlapOpaque() {
3441
+ return this._el.overlapOpaque;
3442
+ }
3443
+ set type(v) {
3444
+ this._ngZone.runOutsideAngular(() => (this._el.type = v));
3445
+ }
3446
+ get type() {
3447
+ return this._el.type;
3448
+ }
3449
+ set inExpandedGroup(v) {
3450
+ this._ngZone.runOutsideAngular(() => (this._el.inExpandedGroup = v));
3451
+ }
3452
+ get inExpandedGroup() {
3453
+ return this._el.inExpandedGroup;
3454
+ }
3455
+ set data(v) {
3456
+ this._ngZone.runOutsideAngular(() => (this._el.data = v));
3457
+ }
3458
+ get data() {
3459
+ return this._el.data;
3460
+ }
3461
+ set hasRelation(v) {
3462
+ this._ngZone.runOutsideAngular(() => (this._el.hasRelation = v));
3463
+ }
3464
+ get hasRelation() {
3465
+ return this._el.hasRelation;
3466
+ }
3467
+ set headerContent(v) {
3468
+ this._ngZone.runOutsideAngular(() => (this._el.headerContent = v));
3469
+ }
3470
+ get headerContent() {
3471
+ return this._el.headerContent;
3472
+ }
3473
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiButton, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3474
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiButton, isStandalone: true, selector: "obc-poi-button", inputs: { relativeDirection: "relativeDirection", selected: "selected", layout: "layout", hasHeader: "hasHeader", state: "state", value: "value", overlapOpaque: "overlapOpaque", type: "type", inExpandedGroup: "inExpandedGroup", data: "data", hasRelation: "hasRelation", headerContent: "headerContent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3475
+ }
3476
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiButton, decorators: [{
3477
+ type: Component,
3478
+ args: [{
3479
+ selector: 'obc-poi-button',
3480
+ template: '<ng-content></ng-content>',
3481
+ standalone: true,
3482
+ imports: []
3483
+ }]
3484
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { relativeDirection: [{
3485
+ type: Input
3486
+ }], selected: [{
3487
+ type: Input
3488
+ }], layout: [{
3489
+ type: Input
3490
+ }], hasHeader: [{
3491
+ type: Input
3492
+ }], state: [{
3493
+ type: Input
3494
+ }], value: [{
3495
+ type: Input
3496
+ }], overlapOpaque: [{
3497
+ type: Input
3498
+ }], type: [{
3499
+ type: Input
3500
+ }], inExpandedGroup: [{
3501
+ type: Input
3502
+ }], data: [{
3503
+ type: Input
3504
+ }], hasRelation: [{
3505
+ type: Input
3506
+ }], headerContent: [{
3507
+ type: Input
3508
+ }] } });
3509
+
3502
3510
  class ObcPoiCard {
3503
3511
  _el;
3504
3512
  _ngZone;
@@ -3799,58 +3807,6 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
3799
3807
  type: Input
3800
3808
  }] } });
3801
3809
 
3802
- class ObcPoiData {
3803
- _el;
3804
- _ngZone;
3805
- constructor(e, ngZone) {
3806
- this._el = e.nativeElement;
3807
- this._ngZone = ngZone;
3808
- this._el.addEventListener('obc-poi-data-layout-change', (e) => {
3809
- // TODO(justinfagnani): we need to let the element say how to get a value
3810
- // from an event, ex: e.value
3811
- this.obcPoiDataLayoutChangeEvent.emit(e);
3812
- });
3813
- }
3814
- set dataStyle(v) {
3815
- this._ngZone.runOutsideAngular(() => (this._el.dataStyle = v));
3816
- }
3817
- get dataStyle() {
3818
- return this._el.dataStyle;
3819
- }
3820
- set dataState(v) {
3821
- this._ngZone.runOutsideAngular(() => (this._el.dataState = v));
3822
- }
3823
- get dataState() {
3824
- return this._el.dataState;
3825
- }
3826
- set dataInteractive(v) {
3827
- this._ngZone.runOutsideAngular(() => (this._el.dataInteractive = v));
3828
- }
3829
- get dataInteractive() {
3830
- return this._el.dataInteractive;
3831
- }
3832
- obcPoiDataLayoutChangeEvent = new EventEmitter();
3833
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiData, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
3834
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiData, isStandalone: true, selector: "obc-poi-data", inputs: { dataStyle: "dataStyle", dataState: "dataState", dataInteractive: "dataInteractive" }, outputs: { obcPoiDataLayoutChangeEvent: "obcPoiDataLayoutChangeEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
3835
- }
3836
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiData, decorators: [{
3837
- type: Component,
3838
- args: [{
3839
- selector: 'obc-poi-data',
3840
- template: '<ng-content></ng-content>',
3841
- standalone: true,
3842
- imports: []
3843
- }]
3844
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { dataStyle: [{
3845
- type: Input
3846
- }], dataState: [{
3847
- type: Input
3848
- }], dataInteractive: [{
3849
- type: Input
3850
- }], obcPoiDataLayoutChangeEvent: [{
3851
- type: Output
3852
- }] } });
3853
-
3854
3810
  class ObcPoiGroup {
3855
3811
  _el;
3856
3812
  _ngZone;
@@ -4023,6 +3979,50 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
4023
3979
  type: Input
4024
3980
  }] } });
4025
3981
 
3982
+ class AbstractPoiObject {
3983
+ _el;
3984
+ _ngZone;
3985
+ constructor(e, ngZone) {
3986
+ this._el = e.nativeElement;
3987
+ this._ngZone = ngZone;
3988
+ }
3989
+ set objectStyle(v) {
3990
+ this._ngZone.runOutsideAngular(() => (this._el.objectStyle = v));
3991
+ }
3992
+ get objectStyle() {
3993
+ return this._el.objectStyle;
3994
+ }
3995
+ set state(v) {
3996
+ this._ngZone.runOutsideAngular(() => (this._el.state = v));
3997
+ }
3998
+ get state() {
3999
+ return this._el.state;
4000
+ }
4001
+ set interactive(v) {
4002
+ this._ngZone.runOutsideAngular(() => (this._el.interactive = v));
4003
+ }
4004
+ get interactive() {
4005
+ return this._el.interactive;
4006
+ }
4007
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: AbstractPoiObject, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
4008
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: AbstractPoiObject, isStandalone: true, selector: "undefined", inputs: { objectStyle: "objectStyle", state: "state", interactive: "interactive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
4009
+ }
4010
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: AbstractPoiObject, decorators: [{
4011
+ type: Component,
4012
+ args: [{
4013
+ selector: 'undefined',
4014
+ template: '<ng-content></ng-content>',
4015
+ standalone: true,
4016
+ imports: []
4017
+ }]
4018
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { objectStyle: [{
4019
+ type: Input
4020
+ }], state: [{
4021
+ type: Input
4022
+ }], interactive: [{
4023
+ type: Input
4024
+ }] } });
4025
+
4026
4026
  class ObcPoiObjectAton {
4027
4027
  _el;
4028
4028
  _ngZone;
@@ -4115,64 +4115,56 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
4115
4115
  type: Input
4116
4116
  }] } });
4117
4117
 
4118
- class ObcPoiVessel {
4118
+ class ObcPoiObject {
4119
4119
  _el;
4120
4120
  _ngZone;
4121
4121
  constructor(e, ngZone) {
4122
4122
  this._el = e.nativeElement;
4123
4123
  this._ngZone = ngZone;
4124
- this._el.addEventListener('obc-poi-data-layout-change', (e) => {
4125
- // TODO(justinfagnani): we need to let the element say how to get a value
4126
- // from an event, ex: e.value
4127
- this.obcPoiDataLayoutChangeEvent.emit(e);
4128
- });
4129
4124
  }
4130
- set vesselType(v) {
4131
- this._ngZone.runOutsideAngular(() => (this._el.vesselType = v));
4125
+ set type(v) {
4126
+ this._ngZone.runOutsideAngular(() => (this._el.type = v));
4132
4127
  }
4133
- get vesselType() {
4134
- return this._el.vesselType;
4128
+ get type() {
4129
+ return this._el.type;
4135
4130
  }
4136
- set vesselStyle(v) {
4137
- this._ngZone.runOutsideAngular(() => (this._el.vesselStyle = v));
4131
+ set objectStyle(v) {
4132
+ this._ngZone.runOutsideAngular(() => (this._el.objectStyle = v));
4138
4133
  }
4139
- get vesselStyle() {
4140
- return this._el.vesselStyle;
4134
+ get objectStyle() {
4135
+ return this._el.objectStyle;
4141
4136
  }
4142
- set vesselState(v) {
4143
- this._ngZone.runOutsideAngular(() => (this._el.vesselState = v));
4137
+ set state(v) {
4138
+ this._ngZone.runOutsideAngular(() => (this._el.state = v));
4144
4139
  }
4145
- get vesselState() {
4146
- return this._el.vesselState;
4140
+ get state() {
4141
+ return this._el.state;
4147
4142
  }
4148
- set vesselInteractive(v) {
4149
- this._ngZone.runOutsideAngular(() => (this._el.vesselInteractive = v));
4143
+ set interactive(v) {
4144
+ this._ngZone.runOutsideAngular(() => (this._el.interactive = v));
4150
4145
  }
4151
- get vesselInteractive() {
4152
- return this._el.vesselInteractive;
4146
+ get interactive() {
4147
+ return this._el.interactive;
4153
4148
  }
4154
- obcPoiDataLayoutChangeEvent = new EventEmitter();
4155
- static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiVessel, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
4156
- static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiVessel, isStandalone: true, selector: "obc-poi-vessel", inputs: { vesselType: "vesselType", vesselStyle: "vesselStyle", vesselState: "vesselState", vesselInteractive: "vesselInteractive" }, outputs: { obcPoiDataLayoutChangeEvent: "obcPoiDataLayoutChangeEvent" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
4149
+ static ɵfac = i0.ɵɵngDeclareFactory({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiObject, deps: [{ token: i0.ElementRef }, { token: i0.NgZone }], target: i0.ɵɵFactoryTarget.Component });
4150
+ static ɵcmp = i0.ɵɵngDeclareComponent({ minVersion: "14.0.0", version: "20.3.19", type: ObcPoiObject, isStandalone: true, selector: "obc-poi-object", inputs: { type: "type", objectStyle: "objectStyle", state: "state", interactive: "interactive" }, ngImport: i0, template: '<ng-content></ng-content>', isInline: true });
4157
4151
  }
4158
- i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiVessel, decorators: [{
4152
+ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImport: i0, type: ObcPoiObject, decorators: [{
4159
4153
  type: Component,
4160
4154
  args: [{
4161
- selector: 'obc-poi-vessel',
4155
+ selector: 'obc-poi-object',
4162
4156
  template: '<ng-content></ng-content>',
4163
4157
  standalone: true,
4164
4158
  imports: []
4165
4159
  }]
4166
- }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { vesselType: [{
4160
+ }], ctorParameters: () => [{ type: i0.ElementRef }, { type: i0.NgZone }], propDecorators: { type: [{
4167
4161
  type: Input
4168
- }], vesselStyle: [{
4162
+ }], objectStyle: [{
4169
4163
  type: Input
4170
- }], vesselState: [{
4164
+ }], state: [{
4171
4165
  type: Input
4172
- }], vesselInteractive: [{
4166
+ }], interactive: [{
4173
4167
  type: Input
4174
- }], obcPoiDataLayoutChangeEvent: [{
4175
- type: Output
4176
4168
  }] } });
4177
4169
 
4178
4170
  class ObcAnalogValve {
@@ -78255,5 +78247,5 @@ i0.ɵɵngDeclareClassMetadata({ minVersion: "12.0.0", version: "20.3.19", ngImpo
78255
78247
  * Generated bundle index. Do not edit.
78256
78248
  */
78257
78249
 
78258
- export { ObcAbstractAutomationButton, ObcAbstractAutomationButtonMotorized, ObcAbstractAutomationButtonSquared, ObcAbstractPoiObject, ObcAccordionCard, ObcAccordionItem, ObcAdviceButton, ObcAdviceFloatingItem, ObcAdviceMenuItem, ObcAdviceMessageItem, ObcAlertButton, ObcAlertDetailPage, ObcAlertFloatingItem, ObcAlertFrame, ObcAlertIcon, ObcAlertList, ObcAlertListDetails, ObcAlertListPageSmall, ObcAlertMenu, ObcAlertMenuItem, ObcAnalogValve, ObcAppButton, ObcAppMenu, ObcAreaGraph, ObcAttachmentListItem, ObcAudioOutput, ObcAudioRecordingItem, ObcAutomationBadge, ObcAutomationButton, ObcAutomationButtonReadoutStack, ObcAutomationInputModal, ObcAutomationReadout, ObcAutomationTank, ObcAzimuthThruster, ObcAzimuthThrusterLabeled, ObcBadge, ObcBadgeCommand, ObcBarHorizontal, ObcBarVertical, ObcBatteryIcon, ObcBearingIndicator, ObcBipolarTransistor, ObcBreadcrumb, ObcBrillianceMenu, ObcButton, ObcCalendar, ObcCapacitor, ObcCard, ObcChartLineBase, ObcChartObjectVesselButton, ObcChatMessage, ObcCheckButton, ObcCheckbox, ObcCheckboxItem, ObcCircularProgress, ObcClock, ObcCommandButton, ObcCommandMenu, ObcCommunicationTable, ObcCompass, ObcCompassFlat, ObcCompassIndicator, ObcCompassSector, ObcContextMenuInput, ObcConverter, ObcCornerLine, ObcDamper, ObcDateItem, ObcDepthActual, ObcDigitalValve, ObcDiodes, ObcDirectionLine, ObcDivider, ObcDonutChart, ObcDropdownButton, ObcElevatedCard, ObcElevatedCardRadio, ObcElevatedCardRadioGroup, ObcEndPointLine, ObcEventItem, ObcEventList, ObcFan, ObcFilter, ObcFilterChip, ObcFloatingItem, ObcFormContainer, ObcFormFooterContainer, ObcFormGroup, ObcFormItem, ObcGaugeHorizontal, ObcGaugeRadial, ObcGaugeTrend, ObcGaugeVertical, ObcGraphMini, ObcGround, ObcHeading, ObcHeave, ObcHorizontalLine, ObcIconButton, ObcIconCheckButton, ObcInputChip, ObcInstrumentField, ObcInstrumentRadial, ObcIntegrationAppBar, ObcIntegrationBarDropdown, ObcIntegrationButton, ObcIntegrationDropdownButton, ObcIntegrationFleetButton, ObcIntegrationTabs, ObcIntegrationVesselSelector, ObcKeyboardFull, ObcKeyboardNumeric, ObcLineCross, ObcLineGraph, ObcLineOverlap, ObcLogic, ObcMainEngine, ObcMenuButton, ObcMessageMenuItem, ObcModalWindow, ObcMosfet, ObcMotor, ObcNavigationItem, ObcNavigationItemGroup, ObcNavigationMenu, ObcNotificationBadgeButton, ObcNotificationButton, ObcNotificationFloatingItem, ObcNotificationMenuItem, ObcNotificationMessageItem, ObcNumberInputField, ObcPagination, ObcPieChart, ObcPitch, ObcPitchRoll, ObcPivotItem, ObcPivotItemGroup, ObcPoi, ObcPoiAton, ObcPoiBase, ObcPoiButton, ObcPoiButtonAton, ObcPoiButtonData, ObcPoiButtonVessel, ObcPoiCard, ObcPoiCardHeader, ObcPoiController, ObcPoiData, ObcPoiGraphicLine, ObcPoiGroup, ObcPoiHeader, ObcPoiLayer, ObcPoiLayerStack, ObcPoiLine, ObcPoiObject, ObcPoiObjectAton, ObcPoiObjectData, ObcPoiObjectVessel, ObcPoiPointer, ObcPoiSelectionFrame, ObcPoiVessel, ObcPolarChart, ObcProgressBar, ObcProgressButton, ObcProgressIndicatorDots, ObcPump, ObcRadialBarChart, ObcRadio, ObcRateOfTurn, ObcResistor, ObcRichButton, ObcRoll, ObcRotIndicator, ObcRotSector, ObcRouter, ObcRudder, ObcRulerPointer, ObcScrollbar, ObcSequenceCard, ObcSequenceConnector, ObcSequenceItem, ObcSequenceLoadingSpinner, ObcSequenceModal, ObcSequenceStep, ObcSequenceToolbar, ObcSlideButton, ObcSlider, ObcSliderDouble, ObcSource, ObcSpeedArrows, ObcSpeedGauge, ObcSpeedIndicator, ObcSplitButton, ObcStartStopSwitch, ObcStatusIndicator, ObcStepperBox, ObcSwitch, ObcSystemButton, ObcSystemMenu, ObcTabItem, ObcTabRow, ObcTabbedCard, ObcTable, ObcTableHeaderItem, ObcTag, ObcTextInputField, ObcTextareaField, ObcThreeWayLine, ObcThruster, ObcTitleContainer, ObcToggleButtonGroup, ObcToggleButtonOption, ObcToggleButtonThreeState, ObcToggleButtonVerticalGroup, ObcToggleButtonVerticalOption, ObcToggleSwitch, ObcToggletip, ObcTooltip, ObcTopBar, ObcTopbarMessageItem, ObcTransformer, ObcUserButton, ObcUserMenu, ObcValveAnalogThreeWayIcon, ObcValveAnalogTwoWayIcon, ObcVelocityProjectionPlot, ObcVendorButton, ObcVerticalLine, ObcWatch, ObcWatchFlat, ObcWind, ObcWindIndicator, Obi02Illustration, Obi03Illustration, Obi03TidalStream, Obi07ChartStyles, ObiAcdcConverter, ObiAirGap, ObiAircraftDroneMedium, ObiAircraftDroneSmall, ObiAircraftHelicopter, ObiAisAtonMobilePhysicalIec, ObiAisAtonMobileVirtualIec, ObiAisAtonPhysicalIec, ObiAisAtonPhysicalSelectedIec, ObiAisAtonVirtualIec, ObiAisHeadinglineIec, ObiAisHeadinglineTurnIec, ObiAisLocatingDeviceActiveIec, ObiAisLocatingdeviceActiveSelectedIec, ObiAisLocatingdeviceLostIec, ObiAisLocatingdeviceTestIec, ObiAisProposal, ObiAisSarAircraftFixedwingFilled, ObiAisSarAircraftFixedwingIec, ObiAisSarAircraftHelicopterFilled, ObiAisSarAircraftHelicopterIec, ObiAisSarVesselIec, ObiAisTargetActivatedFilled, ObiAisTargetActivatedIec, ObiAisTargetActivatedNohdgcogIec, ObiAisTargetActivatedNohdgcogSelectedIec, ObiAisTargetActivatedSelectedIec, ObiAisTargetDangerousFilled, ObiAisTargetDangerousIec, ObiAisTargetDangerousNocoghdgIec, ObiAisTargetDangerousSelectedIec, ObiAisTargetSleepingFilled, ObiAisTargetSleepingIec, ObiAisTargetSleepingNohdgcogIec, ObiAisTargetSleepingNohdgcogSelectedIec, ObiAisTargetSleepingSelectedIec, ObiAisTargetSyntheticIec, ObiAisTargetSyntheticNocogIec, ObiAisTargetSyntheticSelectedIec, ObiAlarm, ObiAlarmAbandon, ObiAlarmAckProposal, ObiAlarmAcknowledgedIec, ObiAlarmAcknowledgedOutlined, ObiAlarmAground, ObiAlarmBadge, ObiAlarmBadgeOutline, ObiAlarmEmergencyIec, ObiAlarmFire, ObiAlarmGeneral, ObiAlarmLightOff, ObiAlarmNoackIec, ObiAlarmPob, ObiAlarmRectifiedIec, ObiAlarmRectifiedOutlined, ObiAlarmSignalFail, ObiAlarmSilencedIec, ObiAlarmSilencedOutlined, ObiAlarmTransferredIec, ObiAlarmUnacknowledgedIec, ObiAlertCategoryA, ObiAlertCategoryB, ObiAlertCategoryC, ObiAlertEmpty, ObiAlertHeaderAggregatedIec, ObiAlertHeaderAggregatedLargeIec, ObiAlertHeaderGroupIec, ObiAlertHeaderGroupLargeIec, ObiAlertList, ObiAlertOffFilled, ObiAlertOffGoogle, ObiAlertSettings, ObiAlertTriggerGoogle, ObiAlerts, ObiAlertsActive, ObiAlertsAlarmTwotone, ObiAlertsCautionTwotone, ObiAlertsShelf, ObiAlertsWarningTwotone, ObiAltitude, ObiAnchorIec, ObiAnchorwatch, ObiAntenna, ObiAntenna2, ObiAntenna2Off, ObiAntenna2On, ObiAntennaOff, ObiAntennaOn, ObiApplicationOpenGoogle, ObiApplications, ObiArrowBidirectionalDiagonal, ObiArrowBidirectionalHorizontal, ObiArrowBidirectionalVertical, ObiArrowBottomLeft, ObiArrowBottomRight, ObiArrowDownGoogle, ObiArrowFlyoutGoogle, ObiArrowLeftGoogle, ObiArrowRightGoogle, ObiArrowTopLeft, ObiArrowTopRight, ObiArrowUpGoogle, ObiAssociatedTargetAisFilled, ObiAssociatedTargetAisIec, ObiAssociatedTargetAisSelectedIec, ObiAssociatedTargetRadarIec, ObiAssociatedTargetRadarSelectedIec, ObiAttachment, ObiAuto, ObiAutonomous, ObiAutonomousFill, ObiAutonomousMarineRadioDeviceIec, ObiBacklightHigh, ObiBacklightLow, ObiBackspaceGoogle, ObiBackward, ObiBackwardFast, ObiBackwardStopped, ObiBatteryHorizontal100, ObiBatteryHorizontal25, ObiBatteryHorizontal50, ObiBatteryHorizontal75, ObiBatteryHorizontalCharging100, ObiBatteryHorizontalCharging25, ObiBatteryHorizontalCharging50, ObiBatteryHorizontalChargingEmpty, ObiBatteryHorizontalEmpty, ObiBatteryHorizontalError, ObiBatteryHorizontalLow, ObiBatteryHorizontalNotification, ObiBatteryHorizontalPluggedNoCharge100, ObiBatteryHorizontalPluggedNoCharge25, ObiBatteryHorizontalPluggedNoCharge75, ObiBatteryHorizontalPluggedNoChargeEmpty, ObiBatteryHorizontalPluggedNoChargeLow, ObiBatteryPack0, ObiBatteryPack100, ObiBatteryPack25, ObiBatteryPack50, ObiBatteryPack70, ObiBatteryPackCharging, ObiBatteryVertical25, ObiBatteryVertical50, ObiBatteryVertical75, ObiBatteryVerticalCharging100, ObiBatteryVerticalCharging25, ObiBatteryVerticalCharging50, ObiBatteryVerticalCharging75, ObiBatteryVerticalChargingEmpty, ObiBatteryVerticalChargingLow, ObiBatteryVerticalEmpty, ObiBatteryVerticalError, ObiBatteryVerticalFull, ObiBatteryVerticalLow, ObiBatteryVerticalNotification, ObiBatteryVerticalPluggedNoCharge25, ObiBatteryVerticalPluggedNoCharge50, ObiBatteryVerticalPluggedNoCharge75, ObiBatteryVerticalPluggedNoChargeEmpty, ObiBatteryVerticalPluggedNoChargeFull, ObiBatteryVerticalPluggedNoChargeLow, ObiBeaconDefault, ObiBeaconGeneralBoard, ObiBeaconGeneralConeDown, ObiBeaconGeneralConeUp, ObiBeaconGeneralCross, ObiBeaconGeneralCube, ObiBeaconGeneralDanger, ObiBeaconGeneralEast, ObiBeaconGeneralFlag, ObiBeaconGeneralNorth, ObiBeaconGeneralSouth, ObiBeaconGeneralSphere, ObiBeaconGeneralSquare, ObiBeaconGeneralTShape, ObiBeaconGeneralWest, ObiBeaconGeneralXShape, ObiBeaconMinorStake, ObiBeaconTowerBoard, ObiBeaconTowerConeDown, ObiBeaconTowerConeUp, ObiBeaconTowerCross, ObiBeaconTowerCube, ObiBeaconTowerDanger, ObiBeaconTowerEast, ObiBeaconTowerFlag, ObiBeaconTowerNorth, ObiBeaconTowerSouth, ObiBeaconTowerSphere, ObiBeaconTowerSquare, ObiBeaconTowerTShape, ObiBeaconTowerWest, ObiBeaconTowerXShape, ObiBilge, ObiBipolar_transistor01, ObiBipolar_transistor02, ObiBipolar_transistor02Off, ObiBipolar_transistor02On, ObiBipolar_transistor03, ObiBipolar_transistor03Flat, ObiBipolar_transistor03Off, ObiBipolar_transistor03On, ObiBipolar_transistor04, ObiBipolar_transistor04Flat, ObiBipolar_transistor04Off, ObiBipolar_transistor04On, ObiBipolar_transistorOff, ObiBipolar_transistorOn, ObiBlowerOffHorizontal, ObiBlowerOffVertical, ObiBlowerOnHorizontal, ObiBlowerOnVertical, ObiBlowerStaticHorizontal, ObiBlowerStaticVertical, ObiBluetooth, ObiBoltGoogle, ObiBuoyBarrelBoard, ObiBuoyBarrelConeDown, ObiBuoyBarrelConeUp, ObiBuoyBarrelCross, ObiBuoyBarrelCube, ObiBuoyBarrelDanger, ObiBuoyBarrelEast, ObiBuoyBarrelFlag, ObiBuoyBarrelNorth, ObiBuoyBarrelSouth, ObiBuoyBarrelSphere, ObiBuoyBarrelSquare, ObiBuoyBarrelTShape, ObiBuoyBarrelWest, ObiBuoyBarrelXShape, ObiBuoyCanBoard, ObiBuoyCanConeDown, ObiBuoyCanConeUp, ObiBuoyCanCross, ObiBuoyCanCube, ObiBuoyCanDanger, ObiBuoyCanEast, ObiBuoyCanFlag, ObiBuoyCanNorth, ObiBuoyCanSouth, ObiBuoyCanSphere, ObiBuoyCanSquare, ObiBuoyCanTShape, ObiBuoyCanWest, ObiBuoyCanXShape, ObiBuoyConicalBoard, ObiBuoyConicalConeDown, ObiBuoyConicalConeUp, ObiBuoyConicalCross, ObiBuoyConicalCube, ObiBuoyConicalDanger, ObiBuoyConicalEast, ObiBuoyConicalFlag, ObiBuoyConicalNorth, ObiBuoyConicalSouth, ObiBuoyConicalSphere, ObiBuoyConicalSquare, ObiBuoyConicalTShape, ObiBuoyConicalWest, ObiBuoyConicalXShape, ObiBuoyDefault, ObiBuoyMooringBarrel, ObiBuoyMooringCan, ObiBuoyPilarBoard, ObiBuoyPilarConeDown, ObiBuoyPilarConeUp, ObiBuoyPilarCross, ObiBuoyPilarCube, ObiBuoyPilarDanger, ObiBuoyPilarEast, ObiBuoyPilarFlag, ObiBuoyPilarNorth, ObiBuoyPilarSouth, ObiBuoyPilarSphere, ObiBuoyPilarSquare, ObiBuoyPilarTShape, ObiBuoyPilarWest, ObiBuoyPilarXShape, ObiBuoySparBoard, ObiBuoySparConeDown, ObiBuoySparConeUp, ObiBuoySparCross, ObiBuoySparCube, ObiBuoySparDanger, ObiBuoySparEast, ObiBuoySparFlag, ObiBuoySparNorth, ObiBuoySparSouth, ObiBuoySparSphere, ObiBuoySparSquare, ObiBuoySparTShape, ObiBuoySparWest, ObiBuoySparXShape, ObiBuoySphericalBoard, ObiBuoySphericalConeDown, ObiBuoySphericalConeUp, ObiBuoySphericalCross, ObiBuoySphericalCube, ObiBuoySphericalDanger, ObiBuoySphericalEast, ObiBuoySphericalFlag, ObiBuoySphericalNorth, ObiBuoySphericalSouth, ObiBuoySphericalSphere, ObiBuoySphericalSquare, ObiBuoySphericalTShape, ObiBuoySphericalWest, ObiBuoySphericalXShape, ObiBuoySuper, ObiBuoySuperLandby, ObiCalendarDateGoogle, ObiCalendarGoogle, ObiCamHmiIec, ObiCamera, ObiCameraOff, ObiCameraTilt, ObiCameraTop, ObiCancelSend, ObiCapacitor01, ObiCapacitor01Off, ObiCapacitor01On, ObiCapacitor02, ObiCapacitor02Off, ObiCapacitor02On, ObiCapacitor03, ObiCapacitor03Off, ObiCapacitor03On, ObiCapacitor04, ObiCapacitor04Off, ObiCapacitor04On, ObiCarGoogle, ObiCautionBadge, ObiCautionBadgeOutline, ObiCautionColorIec, ObiCautionEmpty, ObiCautionGoogle, ObiCctv, ObiCellBad, ObiCellFull, ObiCellLow, ObiCellMedium, ObiCellOff, ObiCenterIec, ObiCenterOffIec, ObiChart, ObiChartArchipelagicSeaLanes, ObiChartAtonIec, ObiChartBoundariesLimitsProposal, ObiChartBoundaryIec, ObiChartCatzocIec, ObiChartCautionaryNotes, ObiChartContourLabelIec, ObiChartDatedObjectsIec, ObiChartDisplaySettingsIec, ObiChartDisplaySettingsProposal, ObiChartDryingLineProposal, ObiChartFourShadesProposal, ObiChartFullLightLines, ObiChartGridIec, ObiChartHighlightDataDependentIec, ObiChartHighlightInformationIec, ObiChartInfo, ObiChartIsolatedDangers, ObiChartIsolatedDangersFilled, ObiChartLayers, ObiChartMagneticVariationIec, ObiChartManagementProposal, ObiChartManualUpdateIec, ObiChartNationalLanguageProposal1, ObiChartNationalLanguageProposal2, ObiChartOriginalScaleIec, ObiChartPaperSymbolIec, ObiChartPlainBoundariesIec, ObiChartProhibitedRestrictedAreas, ObiChartRadarOverlayIec, ObiChartSafetyCountourOffProposal, ObiChartSafetyCountourOnProposal, ObiChartSafetyDepthProposal, ObiChartSafetyDepthsShowProposal, ObiChartSafetySettingsProposal, ObiChartSandbanks, ObiChartScaleBoundariesIec, ObiChartScaleMinProposal, ObiChartSeabedProposal, ObiChartSearch, ObiChartSettings, ObiChartShallowContourProposal, ObiChartShallowPatternIec, ObiChartShipRoutingSystemIec, ObiChartSimplifiedSymbolsIec, ObiChartSpotSoundingsIec, ObiChartSubmarineCables, ObiChartSymbolizedBoundariesIec, ObiChartTidalIec, ObiChartUnknown, ObiChartUpdateReview, ObiChartUserProposal, ObiCheckGoogle, ObiCheckMixed, ObiCheckboxChecked, ObiCheckboxCheckedFilled, ObiCheckboxUncheckGoogle, ObiChevronDoubleDownGoogle, ObiChevronDoubleLeftGoogle, ObiChevronDoubleRightGoogle, ObiChevronDoubleUpGoogle, ObiChevronDownGoogle, ObiChevronLeftGoogle, ObiChevronRightGoogle, ObiChevronTrippleLeft, ObiChevronTrippleRight, ObiChevronUpGoogle, ObiClear, ObiClearDay, ObiClearDayColour, ObiClearNight, ObiClearNightColour, ObiClearPolartwilight, ObiClearPolartwilightColour, ObiClipboard, ObiClipboard2, ObiCloseGoogle, ObiCloudy, ObiCloudyColour, ObiCoastalNavigation, ObiCoastalNavigationFill, ObiCodeGoogle, ObiCoffee, ObiCog, ObiColdGoogle, ObiCollisionAvoidanceHeadOn, ObiCollisionAvoidanceOvertaking, ObiCollisionAvoidancePortSide, ObiCollisionAvoidanceStarboardSide, ObiComCallActiveGoogle, ObiComCallEndGoogle, ObiComCallGoogle, ObiComMessageActiveGoogle, ObiComMessageGoogle, ObiComMessageImportantGoogle, ObiComMicMutedGoogle, ObiComMicrophone, ObiComPa, ObiComPaList, ObiComRadio, ObiComRadioEmergency, ObiCommandAutoTrack, ObiCommandAutopilot, ObiCommandAvailable, ObiCommandIn, ObiCommandLocked, ObiCommandLockedF, ObiCommandNo, ObiCommandPartial, ObiCommandRequest, ObiCommandShared, ObiCommandTake, ObiCommunication, ObiCompareGoogle, ObiCompleted, ObiComputerPc, ObiComputerServer, ObiConfigure, ObiConnection1Bar, ObiConnection1BarsCaution, ObiConnection2Bars, ObiConnection2BarsCaution, ObiConnection3Bars, ObiConnection3BarsCaution, ObiConnection4Bars, ObiConnectionNoCaution, ObiConnectionNoGoogle, ObiConnectionOff, ObiConnectorComingFrom, ObiConnectorCorner, ObiConnectorCross, ObiConnectorCrossJoint, ObiConnectorGoingTo, ObiConnectorOverlap, ObiConnectorStraight, ObiConnectorThreeway, ObiConnectorThreewayJoint, ObiConningIec, ObiConspicuousCairn, ObiContacts, ObiContainer, ObiContentCollapseGoogle, ObiContentCopyGoogle, ObiContentCutGoogle, ObiContentExpandGoogle, ObiConverterAcdc, ObiConverterAcdcOff, ObiConverterAcdcOn, ObiConverterDcac, ObiConverterDcacOff, ObiConverterDcacOn, ObiConverterDcdc, ObiConverterDcdcOff, ObiConverterDcdcOn, ObiConverterFilter1, ObiConverterFilter1Off, ObiConverterFilter1On, ObiCoordinate, ObiCrane, ObiCurrent, ObiCurrent1, ObiCurrent2, ObiCurrent3, ObiCurrent4, ObiCursorActionPointer, ObiCursorActionPointerIcon, ObiCursorClosedHand, ObiCursorClosedHandIcon, ObiCursorDelete, ObiCursorDeleteIcon, ObiCursorDraw, ObiCursorDrawIcon, ObiCursorHelp, ObiCursorHelpIcon, ObiCursorInsertPoint, ObiCursorInsertPointIcon, ObiCursorMap, ObiCursorMapIcon, ObiCursorMapIec, ObiCursorMapIecIcon, ObiCursorNotAllowed, ObiCursorNotAllowedIcon, ObiCursorOpenHand, ObiCursorOpenHandIcon, ObiCursorPlaceholder, ObiCursorPlaceholderIcon, ObiCursorPointer, ObiCursorPointerIcon, ObiCursorPointingHand, ObiCursorPointingHandIcon, ObiCursorRemovePoint, ObiCursorRemovePointIcon, ObiCursorSetpoint, ObiCursorSetpointIcon, ObiDamperHorizontalOff, ObiDamperHorizontalOffLarge, ObiDamperHorizontalOn, ObiDamperHorizontalOnLarge, ObiDashboard, ObiDatabase, ObiDcdcConverter, ObiDelete, ObiDeleteFilled, ObiDelta, ObiDepth, ObiDeviceFilter, ObiDiagnosticGoogle, ObiDieselEngine, ObiDieselGenerator, ObiDieselGeneratorAc, ObiDieselGeneratorDc, ObiDieselGeneratorStep, ObiDiodes01, ObiDiodes01Off, ObiDiodes01On, ObiDiodes02, ObiDiodes02Off, ObiDiodes02On, ObiDiodes03, ObiDiodes03Off, ObiDiodes03On, ObiDiodes04, ObiDiodes04Off, ObiDiodes04On, ObiDiodes05, ObiDiodes05Off, ObiDiodes05On, ObiDiodes06, ObiDiodes06Off, ObiDiodes06On, ObiDiodes07, ObiDiodes07Off, ObiDiodes07On, ObiDisplayBrillianceIec, ObiDisplayBrillianceLow, ObiDisplayBrillianceProposal, ObiDiver, ObiDivide, ObiDockBottomGoogle, ObiDockLeftGoogle, ObiDockRightGoogle, ObiDockedProposal, ObiDownIec, ObiDragHorizontal, ObiDragVertical, ObiDropDownDoubleGoogle, ObiDropDownGoogle, ObiDuctComingFrom, ObiDuctCorner, ObiDuctCross, ObiDuctDirection, ObiDuctEndPoint, ObiDuctGoingTo, ObiDuctOverlap, ObiDuctStraight, ObiDuctThreeway, ObiDuty, ObiDynamicPositioning, ObiEcdisIec, ObiEcdisProposal, ObiEco, ObiEditGoogle, ObiElectricGenerator, ObiElectricGeneratorAc, ObiElectricGeneratorDc, ObiElectricGeneratorOrMotor, ObiElectricGeneratorOrMotorAc, ObiElectricGeneratorOrMotorDc, ObiElectricGeneratorOrMotorStep, ObiElectricGeneratorStep, ObiElectricMotor, ObiElectricMotorAc, ObiElectricMotorDc, ObiElectricMotorStep, ObiElectricalClock, ObiElectricalClockOff, ObiElectricalClockOn, ObiEnergyAmmonia, ObiEnergyBattery, ObiEnergyDiesel, ObiEnergyElectricGoogle, ObiEnergyFuel, ObiEnergyHydrogen, ObiEnergyMethanol, ObiEnergyOil, ObiEnergyPetrol, ObiEngine, ObiEngineFill, ObiEpms, ObiEqual, ObiError, ObiEthernetGoogle, ObiEthernetSwitch, ObiEventMarkerFilled, ObiEventMarkerIec, ObiExclamationMark, ObiExpand, ObiFanOff, ObiFanOn, ObiFanStatic, ObiFileDownloadGoogle, ObiFileUploadGoogle, ObiFilter, ObiFilter1, ObiFilter1Off, ObiFilter1On, ObiFilter2, ObiFilter2Off, ObiFilter2On, ObiFilter3, ObiFilter3Off, ObiFilter3On, ObiFilter4, ObiFilter4Off, ObiFilter4On, ObiFire, ObiFishing, ObiFleetProposal, ObiFog, ObiFogColour, ObiFoodGoogle, ObiForceCurrentRelative, ObiForceCurrentTrue, ObiForceDirectionRelative, ObiForceDirectionTrue, ObiForceGustsRelative, ObiForceGustsTrue, ObiForceSwellRelative, ObiForceSwellTrue, ObiForward, ObiForwardFast, ObiForwardStatic, ObiForwardStopped, ObiFuse01, ObiFuse01Off, ObiFuse01On, ObiFuse02, ObiFuse02Off, ObiFuse02On, ObiGenerator, ObiGenericLineComingFrom, ObiGenericLineCorner, ObiGenericLineCross, ObiGenericLineDirection, ObiGenericLineEndPoint, ObiGenericLineGoingTo, ObiGenericLineOverlap, ObiGenericLineStraight, ObiGenericLineThreeway, ObiGridOffGoogle, ObiGround1, ObiGround1Off, ObiGround1On, ObiGround2, ObiGround2Off, ObiGround2On, ObiGround3, ObiGround3Off, ObiGround3On, ObiHarbourBerthing, ObiHdg, ObiHeadingCUpProposal, ObiHeadingHUpProposal, ObiHeadingLineOffIec, ObiHeadingLineOffProposal, ObiHeadingNUpProposal, ObiHeatGoogle, ObiHeat_pump_balance, ObiHeatexhanger, ObiHeatpump, ObiHeave, ObiHeavyRain, ObiHeavyRainColour, ObiHeavyRainShowersDay, ObiHeavyRainShowersDayColour, ObiHeavyRainShowersNight, ObiHeavyRainShowersNightColour, ObiHeavyRainShowersPolartwilight, ObiHeavyRainShowersPolartwilightColour, ObiHeavySleet, ObiHeavySleetColour, ObiHeavySleetShowersDay, ObiHeavySleetShowersDayColour, ObiHeavySleetShowersNight, ObiHeavySleetShowersNightColour, ObiHeavySleetShowersPolartwilight, ObiHeavySleetShowersPolartwilightColour, ObiHeavySnow, ObiHeavySnowColour, ObiHeavySnowShowersDay, ObiHeavySnowShowersDayColour, ObiHeavySnowShowersNight, ObiHeavySnowShowersNightColour, ObiHeavySnowShowersPolartwilight, ObiHeavySnowShowersPolartwilightColour, ObiHelp, ObiHistoryGoogle, ObiHome, ObiHvac, ObiHydraulic01, ObiHydraulic01Off, ObiHydraulic01On, ObiHydraulic01Static, ObiHydraulic02, ObiHydraulic02Off, ObiHydraulic02On, ObiHydraulic02Static, ObiHydraulic03, ObiHydraulic03Off, ObiHydraulic03On, ObiHydraulic03Static, ObiHydraulic04, ObiHydraulic04Off, ObiHydraulic04On, ObiHydraulic04Static, ObiHydraulic05, ObiHydraulic05Off, ObiHydraulic05On, ObiHydraulic05Static, ObiHydraulic06, ObiHydraulic06Off, ObiHydraulic06On, ObiHydraulic06Static, ObiHydraulic07, ObiHydraulic07Off, ObiHydraulic07On, ObiHydraulic07Static, ObiHydraulic08, ObiHydraulic08Off, ObiHydraulic08On, ObiHydraulic08Static, ObiHydraulic09, ObiHydraulic09Off, ObiHydraulic09On, ObiHydraulic09Static, ObiHydraulic10, ObiHydraulic10Off, ObiHydraulic10On, ObiHydraulic10Static, ObiHydraulic11, ObiHydraulic11Off, ObiHydraulic11On, ObiHydraulic11Static, ObiHydraulic12, ObiHydraulic12Off, ObiHydraulic12On, ObiHydraulic12Static, ObiHydraulic13, ObiHydraulic13Off, ObiHydraulic13On, ObiHydraulic13Static, ObiHydraulic14, ObiHydraulic14Off, ObiHydraulic14On, ObiHydraulic14Static, ObiHydraulic15, ObiHydraulic15Off, ObiHydraulic15On, ObiHydraulic15Static, ObiHydraulic16, ObiHydraulic16Off, ObiHydraulic16On, ObiHydraulic16Static, ObiHydraulic17, ObiHydraulic17Off, ObiHydraulic17On, ObiHydraulic17Static, ObiHydraulicPipe01, ObiHydraulicPipe02, ObiHydraulicPipe03, ObiHydraulicPipe04, ObiHydraulicPipe05, ObiHydraulicPipe06, ObiHydraulicPipe07, ObiHydraulicPipe08, ObiHydraulicPipe09, ObiHydraulicPipe10, ObiHydraulicPipe11, ObiHydraulicPipe12, ObiHydraulicPipe13, ObiHydraulicPipe14, ObiHydraulicPipe15, ObiHydraulicPipe16, ObiHydraulicPipe17, ObiHydraulicSeparator, ObiIas, ObiIceberg, ObiIcon, ObiIdTag, ObiIecChartDispSet, ObiIecChartDispSetProposal, ObiImage, ObiInProgress1, ObiInProgress2, ObiInfo, ObiInfoReportIec, ObiInfoReportProposal, ObiInput, ObiInputDevicesGoogle, ObiInputDown, ObiInputKeyboardGoogle, ObiInputKeyboardScreenGoogle, ObiInputLeft, ObiInputMouse1, ObiInputMouse2, ObiInputMouse3, ObiInputMouseGoogle, ObiInputRight, ObiInputUp, ObiIo, ObiJoystick, ObiKayaking, ObiKeepingArea, ObiKeepingStation, ObiKeepingTrack, ObiKeylinegrid, ObiKitesurfing, ObiLatched, ObiLeaf, ObiLeafTwotone, ObiLicenseGoogle, ObiLightAlarm, ObiLightAlarmColourOff, ObiLightAlarmColourOn, ObiLightAol, ObiLightAolColourOff, ObiLightAolColourOn, ObiLightAolOff, ObiLightBacklightButtons, ObiLightBacklightButtonsColourOn, ObiLightBacklightButtonsOff, ObiLightBacklightButtonslightBacklightButtonsColourOff, ObiLightBulb, ObiLightBulbOff, ObiLightBulbOn, ObiLightDeck, ObiLightDeckColourOff, ObiLightDeckColourOn, ObiLightDeckOff, ObiLightEmergency, ObiLightEmergencyColourOff, ObiLightEmergencyColourOn, ObiLightEmergencyOff, ObiLightFlashlight, ObiLightFlashlightColourOff, ObiLightFlashlightColourOn, ObiLightFlashlightOff, ObiLightFloat, ObiLightLanternOff, ObiLightLanternOn, ObiLightLanternOnColourOff, ObiLightLanternOnColourOn, ObiLightLanternPort, ObiLightLanternPortColourOff, ObiLightLanternPortColourOn, ObiLightLanternPortOff, ObiLightLanternStbd, ObiLightLanternStbdColourOff, ObiLightLanternStbdColourOn, ObiLightLanternStbdOff, ObiLightRain, ObiLightRainColour, ObiLightRainShowersNight, ObiLightRainShowersNightColour, ObiLightRainShowersPolartwilight, ObiLightRainShowersPolartwilightColour, ObiLightRainShowersSun, ObiLightRainShowersSunColour, ObiLightRoof, ObiLightRoofColourOff, ObiLightRoofColourOn, ObiLightRoofOff, ObiLightSearchlight, ObiLightSearchlightColourOff, ObiLightSearchlightColourOn, ObiLightSearchlightOff, ObiLightSleet, ObiLightSleetColour, ObiLightSleetShowersDay, ObiLightSleetShowersDayColour, ObiLightSleetShowersNight, ObiLightSleetShowersNightColour, ObiLightSleetShowersPolartwilight, ObiLightSleetShowersPolartwilightColour, ObiLightSnow, ObiLightSnowColour, ObiLightSnowShowersDay, ObiLightSnowShowersDayColour, ObiLightSnowShowersNight, ObiLightSnowShowersNightColour, ObiLightSnowShowersPolartwilight, ObiLightSnowShowersPolartwilightColour, ObiLighthouse, ObiLightningHeavyRain, ObiLightningHeavyRainColour, ObiLightningHeavyRainShowersDay, ObiLightningHeavyRainShowersDayColour, ObiLightningHeavyRainShowersNight, ObiLightningHeavyRainShowersNightColour, ObiLightningHeavyRainShowersPolartwilight, ObiLightningHeavyRainShowersPolartwilightColour, ObiLightningHeavySleet, ObiLightningHeavySleetColour, ObiLightningHeavySleetShowersDay, ObiLightningHeavySleetShowersDayColour, ObiLightningHeavySleetShowersNight, ObiLightningHeavySleetShowersNightColour, ObiLightningHeavySleetShowersPolartwilight, ObiLightningHeavySleetShowersPolartwilightColour, ObiLightningHeavySnow, ObiLightningHeavySnowColour, ObiLightningHeavySnowShowersDay, ObiLightningHeavySnowShowersDayColour, ObiLightningHeavySnowShowersNight, ObiLightningHeavySnowShowersNightColour, ObiLightningHeavySnowShowersPolartwilight, ObiLightningHeavySnowShowersPolartwilightColour, ObiLightningLightRain, ObiLightningLightRainColour, ObiLightningLightRainShowersDay, ObiLightningLightRainShowersDayColour, ObiLightningLightRainShowersNight, ObiLightningLightRainShowersNightColour, ObiLightningLightRainShowersPolartwilight, ObiLightningLightRainShowersPolartwilightColour, ObiLightningLightSleet, ObiLightningLightSleetColour, ObiLightningLightSleetShowersDay, ObiLightningLightSleetShowersDayColour, ObiLightningLightSleetShowersNight, ObiLightningLightSleetShowersNightColour, ObiLightningLightSleetShowersPolartwilight, ObiLightningLightSleetShowersPolartwilightColour, ObiLightningLightSnow, ObiLightningLightSnowColour, ObiLightningLightSnowShowersDay, ObiLightningLightSnowShowersDayColour, ObiLightningLightSnowShowersNight, ObiLightningLightSnowShowersNightColour, ObiLightningLightSnowShowersPolartwilight, ObiLightningLightSnowShowersPolartwilightColour, ObiLightningRain, ObiLightningRainColour, ObiLightningRainShowersDay, ObiLightningRainShowersDayColour, ObiLightningRainShowersNight, ObiLightningRainShowersNightColour, ObiLightningRainShowersPolartwilight, ObiLightningRainShowersPolartwilightColour, ObiLightningSleet, ObiLightningSleetColour, ObiLightningSleetShowersDay, ObiLightningSleetShowersDayColour, ObiLightningSleetShowersNight, ObiLightningSleetShowersNightColour, ObiLightningSleetShowersPolartwilight, ObiLightningSleetShowersPolartwilightColour, ObiLightningSnow, ObiLightningSnowColour, ObiLightningSnowShowersDay, ObiLightningSnowShowersDayColour, ObiLightningSnowShowersNight, ObiLightningSnowShowersNightColour, ObiLightningSnowShowersPolartwilight, ObiLightningSnowShowersPolartwilightColour, ObiLights, ObiLimitsAttention, ObiLimitsImproving, ObiLimitsInside, ObiLimitsOutsideOver, ObiLimitsOutsideUnder, ObiLineOfPosition, ObiLineOfPositionIec, ObiLink, ObiLinkRemove, ObiListAltCheckGoogle, ObiLocal, ObiLocalOnly, ObiLocation, ObiLocation1, ObiLocation2, ObiLocation3, ObiLocationA, ObiLocationB, ObiLocationC, ObiLocationD, ObiLocationE, ObiLocationF, ObiLocationG, ObiLocationGeneric, ObiLocationH, ObiLocationI, ObiLocationJ, ObiLocationL, ObiLocationLabel, ObiLocationM, ObiLocationN, ObiLocationO, ObiLocationP, ObiLocationQ, ObiLocationR, ObiLocationS, ObiLocationT, ObiLocationU, ObiLogAddGoogle, ObiLogEditGoogle, ObiLogOpenGoogle, ObiLogic01, ObiLogic01Off, ObiLogic01On, ObiLogic02, ObiLogic02Off, ObiLogic02On, ObiLogic03, ObiLogic03Off, ObiLogic03On, ObiLogic04, ObiLogic04Off, ObiLogic04On, ObiLogic05, ObiLogic05Off, ObiLogic05On, ObiLogic06, ObiLogic06Off, ObiLogic06On, ObiLogic07, ObiLogic07Off, ObiLogic07On, ObiLogoGeneric, ObiLogoOicl, ObiLogoOpenbridge, ObiManual, ObiManualOnly, ObiMeasureGoogle, ObiMediaBackwards10s, ObiMediaForward10s, ObiMediaLive, ObiMediaLoop, ObiMediaPause, ObiMediaPlay, ObiMediaRecord, ObiMediaResume, ObiMediaSkipNext, ObiMediaSkipPrevious, ObiMediaStop, ObiMegamenuGoogle, ObiMenu, ObiMenuIec, ObiMessagesIec, ObiMeteorologicalInformation, ObiMisc, ObiMonitoring, ObiMonitoringRoute, ObiMoored, ObiMoreGoogle, ObiMoreVerticalGoogle, ObiMosfetNtype1, ObiMosfetNtype1Off, ObiMosfetNtype1On, ObiMosfetNtype2, ObiMosfetNtype2Off, ObiMosfetNtype2On, ObiMosfetNtype3, ObiMosfetNtype3Off, ObiMosfetNtype3On, ObiMosfetNtype4, ObiMosfetNtype4Off, ObiMosfetNtype4On, ObiMosfetPtype1, ObiMosfetPtype1Off, ObiMosfetPtype1On, ObiMosfetPtype2, ObiMosfetPtype2Off, ObiMosfetPtype2On, ObiMosfetPtype3, ObiMosfetPtype3Off, ObiMosfetPtype3On, ObiMosfetPtype4, ObiMosfetPtype4Off, ObiMosfetPtype4On, ObiMotionRelativeIec, ObiMotionRelativeProposal, ObiMotionTmResetProposal1, ObiMotionTmResetProposal2, ObiMotionTrueIec, ObiMotionTrueProposal, ObiMotorOffHorizontal, ObiMotorOffVertical, ObiMotorOnHorizontal, ObiMotorOnVertical, ObiMotorStaticHorizontal, ObiMotorStaticVertical, ObiMove, ObiMoveItemGoogle, ObiMoveItemIn, ObiMsiIec, ObiMultiply, ObiNavigationRoute, ObiNoInput, ObiNotAllowed, ObiNotStarted, ObiNoteEditProposal, ObiNotification, ObiNotificationAdvice, ObiNotificationAdviceActive, ObiNotificationAdviceActiveTwotone, ObiNotificationFilled, ObiNotunderway, ObiObjectDerelict, ObiObjectFlotsam, ObiObjectJetsam, ObiObjectLagan, ObiOff, ObiOffIec, ObiOn, ObiOnIec, ObiOnOffIec, ObiOpenSea, ObiOwnShipAlternativeFilled, ObiOwnShipAlternativeOutlined, ObiOwnShipAlternativeRemote, ObiOwnShipControlA, ObiOwnShipControlAa, ObiOwnShipControlAe, ObiOwnShipControlB, ObiOwnShipControlC, ObiOwnShipControlD, ObiOwnShipControlE, ObiOwnShipControlF, ObiOwnShipControlG, ObiOwnShipControlGeneric, ObiOwnShipControlH, ObiOwnShipControlI, ObiOwnShipControlJ, ObiOwnShipControlK, ObiOwnShipControlL, ObiOwnShipControlM, ObiOwnShipControlN, ObiOwnShipControlO, ObiOwnShipControlOe, ObiOwnShipControlP, ObiOwnShipControlQ, ObiOwnShipControlR, ObiOwnShipControlS, ObiOwnShipControlT, ObiOwnShipControlU, ObiOwnShipControlV, ObiOwnShipControlW, ObiOwnShipControlX, ObiOwnShipControlY, ObiOwnShipControlZ, ObiOwnShipIec, ObiOwnShipMinimisedIec, ObiOwnShipNoCommandA, ObiOwnShipNoCommandAa, ObiOwnShipNoCommandAe, ObiOwnShipNoCommandB, ObiOwnShipNoCommandC, ObiOwnShipNoCommandD, ObiOwnShipNoCommandE, ObiOwnShipNoCommandF, ObiOwnShipNoCommandG, ObiOwnShipNoCommandGeneric, ObiOwnShipNoCommandH, ObiOwnShipNoCommandI, ObiOwnShipNoCommandIndex, ObiOwnShipNoCommandJ, ObiOwnShipNoCommandK, ObiOwnShipNoCommandL, ObiOwnShipNoCommandM, ObiOwnShipNoCommandN, ObiOwnShipNoCommandO, ObiOwnShipNoCommandOe, ObiOwnShipNoCommandP, ObiOwnShipNoCommandQ, ObiOwnShipNoCommandR, ObiOwnShipNoCommandS, ObiOwnShipNoCommandT, ObiOwnShipNoCommandU, ObiOwnShipNoCommandV, ObiOwnShipNoCommandW, ObiOwnShipNoCommandX, ObiOwnShipNoCommandY, ObiOwnShipNoCommandZ, ObiOwnShipRemoteA, ObiOwnShipRemoteAa, ObiOwnShipRemoteAe, ObiOwnShipRemoteB, ObiOwnShipRemoteC, ObiOwnShipRemoteD, ObiOwnShipRemoteE, ObiOwnShipRemoteF, ObiOwnShipRemoteG, ObiOwnShipRemoteGeneric, ObiOwnShipRemoteH, ObiOwnShipRemoteI, ObiOwnShipRemoteJ, ObiOwnShipRemoteK, ObiOwnShipRemoteL, ObiOwnShipRemoteM, ObiOwnShipRemoteN, ObiOwnShipRemoteO, ObiOwnShipRemoteOe, ObiOwnShipRemoteP, ObiOwnShipRemoteQ, ObiOwnShipRemoteR, ObiOwnShipRemoteS, ObiOwnShipRemoteT, ObiOwnShipRemoteU, ObiOwnShipRemoteV, ObiOwnShipRemoteW, ObiOwnShipRemoteX, ObiOwnShipRemoteY, ObiOwnShipRemoteZ, ObiOwnShipSimplifiedFilled, ObiOwnShipSimplifiedIec, ObiOwnshipMinimisedSternlineIec, ObiPageFirstGoogle, ObiPageLastGoogle, ObiPaletteColorCalibratedIec, ObiPaletteDay, ObiPaletteDayBright, ObiPaletteDayNightIec, ObiPaletteDimming, ObiPaletteDusk, ObiPaletteNight, ObiPanelIlluminationIec, ObiPanelIlluminationProposal, ObiPanelLeftClose, ObiPanelLeftOpen, ObiPanelRightClose, ObiPanelRightOpen, ObiPartlycloudyDay, ObiPartlycloudyDayColour, ObiPartlycloudyNight, ObiPartlycloudyNightColour, ObiPartlycloudyPolartwilight, ObiPartlycloudyPolartwilightColour, ObiPassed, ObiPassedFill, ObiPastPositionIec, ObiPending, ObiPiezoelectricCrystal, ObiPiezoelectricCrystalOff, ObiPiezoelectricCrystalOn, ObiPilotOnboard, ObiPilotage, ObiPinGoogle, ObiPinSelectedGoogle, ObiPipeComingFrom, ObiPipeCorner, ObiPipeCross, ObiPipeDirection, ObiPipeEndPoint, ObiPipeGoingTo, ObiPipeOverlap, ObiPipeStraight, ObiPipeThreeway, ObiPitch, ObiPlaceholder, ObiPlaceholderDeviceOffF, ObiPlaceholderDeviceOn, ObiPlaceholderDeviceStatic, ObiPlottedPositionIec, ObiPls, ObiPlsComponent, ObiPlusMinus, ObiPrint, ObiPrintScreenIec, ObiPrintScreenProposal, ObiPropulsion, ObiPropulsionAzimuthThruster, ObiPropulsionMainEngine, ObiPropulsionRudder, ObiPropulsionStatic, ObiPropulsionTunnelThruster, ObiPumpOffHorizontal, ObiPumpOffVertical, ObiPumpOnHorizontal, ObiPumpOnVertical, ObiPumpStaticHorizontal, ObiPumpStaticVertical, ObiPushButtonOff, ObiPushButtonOn, ObiRadarAntennaPositionIec, ObiRadarElectronicBearingLineProposal, ObiRadarElectronicRangeAndBearingProposal, ObiRadarGainIec, ObiRadarGainProposal, ObiRadarIec, ObiRadarLongPulseIec, ObiRadarOverlayProposal, ObiRadarPerformanceMonitorIec, ObiRadarRainIec, ObiRadarRangeIec, ObiRadarRangeProposal, ObiRadarSeaIec, ObiRadarSettingsProposal, ObiRadarShortPulseIec, ObiRadarStandbyIec, ObiRadarTargetAcquisitionStateAutoIec, ObiRadarTargetAcquisitionStateIec, ObiRadarTargetTrackedDangerousFilled, ObiRadarTargetTrackedDangerousIec, ObiRadarTargetTrackedDangerousSelectedIec, ObiRadarTargetTrackedFilled, ObiRadarTargetTrackedIec, ObiRadarTargetTrackedSelectedIec, ObiRadarTuneIec, ObiRadarTuneProposal, ObiRadarVariableRangeMarkerProposal, ObiRain, ObiRainColour, ObiRainShowersDay, ObiRainShowersDayColour, ObiRainShowersNight, ObiRainShowersNightColour, ObiRainShowersPolartwilight, ObiRainShowersPolartwilightColour, ObiRangeRingsIec, ObiRank1, ObiRank2, ObiRank3, ObiRank4, ObiRank5, ObiRank6, ObiRecordEvent, ObiRecordEventIec, ObiRedoIec, ObiRefreshGoogle, ObiReorderHorizontalGoogle, ObiReorderVerticalGoogle, ObiReset, ObiResistor1, ObiResistor1Off, ObiResistor1On, ObiResistor2, ObiResistor2Off, ObiResistor2On, ObiResistor3, ObiResistor3Off, ObiResistor3On, ObiResistor4, ObiResistor4Off, ObiResistor4On, ObiResistor5, ObiResistor5Off, ObiResistor5On, ObiResizeCorner, ObiResizeVerticalBottom, ObiResizeVerticalCenter, ObiResizeVerticalTop, ObiRock, ObiRoll, ObiRot, ObiRotate, ObiRoute, ObiRouteExportIec, ObiRouteExportProposal, ObiRouteImportIec, ObiRouteImportProposal, ObiRouteMonitoringProposal, ObiRoutePlanProposal, ObiRoutePlanning, ObiRouter, ObiRouter2, ObiRouter2Off, ObiRouter2On, ObiRouterComponent, ObiRouterOff, ObiRouterOn, ObiRowingGoogle, ObiRunning, ObiRunningColorIec, ObiRunningFill, ObiSMode, ObiSatelliteFull, ObiSatelliteLow, ObiSatelliteMedium, ObiSatelliteOff, ObiSaveProposal, ObiScreenDesk, ObiScreenFullExitGoogle, ObiScreenFullGoogle, ObiScreenPad, ObiScreenQuad, ObiScreenRecording, ObiScreenSharing, ObiScreenShot, ObiScreenSplitBottom, ObiScreenSplitLeft, ObiScreenSplitRight, ObiScreenSplitTop, ObiScreens, ObiSearch, ObiSend, ObiSensorGpsBad, ObiSensorGpsFull, ObiSensorGpsLow, ObiSensorGpsMedium, ObiSensorGyro, ObiSensorWaterCo2, ObiSensorWaterDoGoogle, ObiSensorWaterDropGoogle, ObiSensorWaterEcGoogle, ObiSensorWaterOrpGoogle, ObiSensorWaterPhGoogle, ObiSensorWaterSalinityGoogle, ObiSensorWaterVocGoogle, ObiSettingsDefaultIec, ObiSettingsDefaultProposal, ObiSettingsIec, ObiSettingsUserIec, ObiSettingsUserProposal, ObiShift, ObiShiftLock, ObiShip, ObiShipBulkcarrier, ObiShipCarferry, ObiShipContainer, ObiShipFishing, ObiShipHighspeed, ObiShipNavy, ObiShipOffshore, ObiShipPassenger, ObiShipSailboat, ObiShipSailship, ObiShipTanker, ObiShipTugboat, ObiShipWreckFilled, ObiShipWreckIec, ObiShipYacht, ObiSignArrowBack, ObiSignArrowDownLeft, ObiSignArrowDownRight, ObiSignArrowForeward, ObiSignArrowLeft, ObiSignArrowRight, ObiSignArrowUpLeft, ObiSignArrowUpRight, ObiSignEmbarkationLadder, ObiSignExit, ObiSignFireAlarmButton, ObiSignFireEquipment, ObiSignFireExtinguisher, ObiSignLifeboat, ObiSignLifebuoy, ObiSignLiferaft, ObiSignMeetingPoint, ObiSignMeetingPointSimple, ObiSignStairsLeft, ObiSignStairsRight, ObiSignalStation, ObiSilenceIec, ObiSimplifiedBeaconCardinalEast, ObiSimplifiedBeaconCardinalNorth, ObiSimplifiedBeaconCardinalSouth, ObiSimplifiedBeaconCardinalWest, ObiSimplifiedBeaconDefault, ObiSimplifiedBeaconIsolatedDanger, ObiSimplifiedBeaconMajorLateralRed, ObiSimplifiedBeaconMajorSafeWater, ObiSimplifiedBeaconMajorSpecialPurpose, ObiSimplifiedBeaconMinorLateralGreen, ObiSimplifiedBeaconMinorLateralRed, ObiSimplifiedBeaconMinorSafeWater, ObiSimplifiedBeaconMinorSpecialPurpose, ObiSimplifiedBuoyCardinalEast, ObiSimplifiedBuoyCardinalNorth, ObiSimplifiedBuoyCardinalSouth, ObiSimplifiedBuoyCardinalWest, ObiSimplifiedBuoyDefault, ObiSimplifiedBuoyInstallationMooring, ObiSimplifiedBuoyLateralCanGreen, ObiSimplifiedBuoyLateralCanRed, ObiSimplifiedBuoyLateralConicalGreen, ObiSimplifiedBuoyLateralConicalRed, ObiSimplifiedBuoyLightFloat, ObiSimplifiedBuoyLightVessel, ObiSimplifiedBuoySafeWater, ObiSimplifiedBuoySpecialPurpose, ObiSimplifiedBuoySpecialPurposeIce, ObiSimplifiedBuoySpecialPurposeTssPort, ObiSimplifiedBuoySpecialPurposeTssStbd, ObiSimplifiedBuoySuper, ObiSimplifiedSimplifiedBuoyIsolatedDanger, ObiSimulation, ObiSleet, ObiSleetColour, ObiSleetShowersDay, ObiSleetShowersDayColour, ObiSleetShowersNight, ObiSleetShowersNightColour, ObiSleetShowersPolartwilight, ObiSleetShowersPolartwilightColour, ObiSlightlycloudyDay, ObiSlightlycloudyDayColour, ObiSlightlycloudyNight, ObiSlightlycloudyNightColour, ObiSlightlycloudyPolartwilight, ObiSlightlycloudyPolartwilightColour, ObiSnow, ObiSnowColour, ObiSnowShowersDay, ObiSnowShowersDayColour, ObiSnowShowersNight, ObiSnowShowersNightColour, ObiSnowShowersPolartwilight, ObiSnowShowersPolartwilightColour, ObiSog, ObiSortGoogle, ObiSound, ObiSoundFill, ObiSoundLow, ObiSoundLowFill, ObiSoundMuted, ObiSoundMutedFill, ObiSoundNo, ObiSoundNoFill, ObiSoundUnavailable, ObiSoundUnavailableFill, ObiSources01, ObiSources01Off, ObiSources01On, ObiSources02, ObiSources02Off, ObiSources02On, ObiSources03, ObiSources03Off, ObiSources03On, ObiSources04, ObiSources04Off, ObiSources04On, ObiSources05, ObiSources05Off, ObiSources05On, ObiSpeaker, ObiSpeakerOff, ObiSpeakerOn, ObiSpeed, ObiSpeedFullDown, ObiSpeedFullLeft, ObiSpeedFullRight, ObiSpeedFullUp, ObiSpeedGood, ObiSpeedHalfDown, ObiSpeedHalfLeft, ObiSpeedHalfRight, ObiSpeedHalfUp, ObiSpeedHigh, ObiSpeedLow, ObiSpeedLowDown, ObiSpeedLowLeft, ObiSpeedLowRight, ObiSpeedLowUp, ObiStabilisationIndicatorGroundIec, ObiStabilisationIndicatorWaterIec, ObiStandby, ObiStandbyIec, ObiStar, ObiStarSelected, ObiStopped, ObiStw, ObiSupportGoogle, ObiSurfing, ObiSwell, ObiSwimming, ObiSwitch01Off, ObiSwitch01On, ObiSwitch02Off, ObiSwitch02On, ObiSwitch03Off, ObiSwitch03On, ObiSwitchHorizontalOff, ObiSwitchHorizontalOffLarge, ObiSwitchHorizontalOn, ObiSwitchHorizontalOnLarge, ObiSyncGoogle, ObiSystem, ObiTable, ObiTank, ObiTargetAssociatedAisCamera, ObiTargetAssociatedCameraRadar, ObiTargetAssociatedRadarCamera, ObiTargetCameraFilled, ObiTargetCameraOutlined, ObiTargetCancelAllIec, ObiTargetCancelIec, ObiTargetPriorityAisIec, ObiTargetPriorityRadarIec, ObiTargetSelectIec, ObiTargetSettingsProposal, ObiTempCold, ObiTempHot, ObiTempHotcold, ObiTemperatureAir, ObiTemperatureWater, ObiTextIcon, ObiThreewayAcuatorGenericClosed, ObiThreewayAcuatorGenericClosedBottom, ObiThreewayAcuatorGenericClosedLeft, ObiThreewayAcuatorGenericClosedRight, ObiThreewayAcuatorGenericInleftBottom0, ObiThreewayAcuatorGenericInleftBottom100, ObiThreewayAcuatorGenericInleftBottom25, ObiThreewayAcuatorGenericInleftBottom50, ObiThreewayAcuatorGenericInleftBottom75, ObiThreewayAcuatorGenericInleftLeft0, ObiThreewayAcuatorGenericInleftLeft100, ObiThreewayAcuatorGenericInleftLeft25, ObiThreewayAcuatorGenericInleftLeft50, ObiThreewayAcuatorGenericInleftLeft75, ObiThreewayAcuatorGenericInleftRight0, ObiThreewayAcuatorGenericInleftRight100, ObiThreewayAcuatorGenericInleftRight25, ObiThreewayAcuatorGenericInleftRight50, ObiThreewayAcuatorGenericInleftRight75, ObiThreewayAcuatorGenericOpen, ObiThreewayAcuatorPistonClosed, ObiThreewayAcuatorPistonClosedBottom, ObiThreewayAcuatorPistonClosedLeft, ObiThreewayAcuatorPistonClosedRight, ObiThreewayAcuatorPistonInleftBottom0, ObiThreewayAcuatorPistonInleftBottom100, ObiThreewayAcuatorPistonInleftBottom25, ObiThreewayAcuatorPistonInleftBottom50, ObiThreewayAcuatorPistonInleftBottom75, ObiThreewayAcuatorPistonInleftLeft0, ObiThreewayAcuatorPistonInleftLeft100, ObiThreewayAcuatorPistonInleftLeft25, ObiThreewayAcuatorPistonInleftLeft50, ObiThreewayAcuatorPistonInleftLeft75, ObiThreewayAcuatorPistonInleftRight0, ObiThreewayAcuatorPistonInleftRight100, ObiThreewayAcuatorPistonInleftRight25, ObiThreewayAcuatorPistonInleftRight50, ObiThreewayAcuatorPistonInleftRight75, ObiThreewayAcuatorPistonOpen, ObiThreewayAnalogClosed, ObiThreewayAnalogInleftBottom0, ObiThreewayAnalogInleftBottom100, ObiThreewayAnalogInleftBottom25, ObiThreewayAnalogInleftBottom50, ObiThreewayAnalogInleftBottom75, ObiThreewayAnalogInleftLeft0, ObiThreewayAnalogInleftLeft100, ObiThreewayAnalogInleftLeft25, ObiThreewayAnalogInleftLeft50, ObiThreewayAnalogInleftLeft75, ObiThreewayAnalogInleftRight0, ObiThreewayAnalogInleftRight100, ObiThreewayAnalogInleftRight25, ObiThreewayAnalogInleftRight50, ObiThreewayAnalogInleftRight75, ObiThreewayAnalogOpen, ObiThreewayDigitalClosed, ObiThreewayDigitalClosedBottom, ObiThreewayDigitalClosedLeft, ObiThreewayDigitalClosedRight, ObiThreewayDigitalOpen, ObiThreewayDigitalStatic, ObiThreewayStackedClosed, ObiThreewayStackedClosedBottom, ObiThreewayStackedClosedLeft, ObiThreewayStackedClosedRight, ObiThreewayStackedInleftBottom0, ObiThreewayStackedInleftBottom100, ObiThreewayStackedInleftBottom25, ObiThreewayStackedInleftBottom50, ObiThreewayStackedInleftBottom75, ObiThreewayStackedInleftLeft0, ObiThreewayStackedInleftLeft100, ObiThreewayStackedInleftLeft25, ObiThreewayStackedInleftLeft50, ObiThreewayStackedInleftLeft75, ObiThreewayStackedInleftRight0, ObiThreewayStackedInleftRight100, ObiThreewayStackedInleftRight25, ObiThreewayStackedInleftRight50, ObiThreewayStackedInleftRight75, ObiThreewayStackedOpen, ObiTidalIec, ObiTidalWaterLevelInformation, ObiTide, ObiTideHigh, ObiTideLow, ObiTime, ObiTimeLess, ObiTimeMore, ObiTimerGoogle, ObiTouch, ObiTrackNo, ObiTrackOffPort, ObiTrackOffStrb, ObiTrackOn, ObiTransformDiagonal, ObiTransformHorizontal, ObiTransformMove, ObiTransformRotate, ObiTransformVertical, ObiTransformer01, ObiTransformer01Off, ObiTransformer01On, ObiTransformer02, ObiTransformer02Off, ObiTransformer02On, ObiTrend, ObiTrendDown, ObiTrendUp, ObiTrialSettingsProposal, ObiTrophy, ObiTrueRelativeVectorIec, ObiTrueRelativeVectorProposal, ObiTurn, ObiTwowayAcuatorGeneral10, ObiTwowayAcuatorGeneral25, ObiTwowayAcuatorGeneral50, ObiTwowayAcuatorGeneral75, ObiTwowayAcuatorGeneralClosed, ObiTwowayAcuatorGeneralClosedLeft, ObiTwowayAcuatorGeneralClosedRight, ObiTwowayAcuatorGeneralOpen, ObiTwowayAcuatorPiston10, ObiTwowayAcuatorPiston25, ObiTwowayAcuatorPiston50, ObiTwowayAcuatorPiston75, ObiTwowayAcuatorPistonClosed, ObiTwowayAcuatorPistonClosedLeft, ObiTwowayAcuatorPistonClosedRight, ObiTwowayAcuatorPistonOpen, ObiTwowayAnalog10, ObiTwowayAnalog25, ObiTwowayAnalog50, ObiTwowayAnalog75, ObiTwowayAnalogClosed, ObiTwowayAnalogOpen, ObiTwowayDigitalClosed, ObiTwowayDigitalNonReturn, ObiTwowayDigitalOpen, ObiTwowayDigitalStatic, ObiTwowayStacked10, ObiTwowayStacked25, ObiTwowayStacked50, ObiTwowayStacked75, ObiTwowayStackedClosed, ObiTwowayStackedClosedLeft, ObiTwowayStackedClosedRight, ObiTwowayStackedOpen, ObiUnacknowledged, ObiUnacknowledgedFill, ObiUnderwaysailing, ObiUnderwayusingengine, ObiUndoIec, ObiUnfoldLessGoogle, ObiUnfoldMoreGoogle, ObiUnknownobject, ObiUpIec, ObiUsb, ObiUsbStick, ObiUser, ObiUserCrewHardhat, ObiUserGoogle, ObiUserProfiles, ObiUserSettings, ObiVesselGenericAnchoredFilled, ObiVesselGenericAnchoredOutlined, ObiVesselGenericDefaultFilled, ObiVesselGenericDefaultOutlined, ObiVesselGenericFastFilled, ObiVesselGenericFastOutlined, ObiVesselGenericMediumFilled, ObiVesselGenericMediumOutlined, ObiVesselGenericSlowFilled, ObiVesselGenericSlowOutlined, ObiVesselGenericStoppedFilled, ObiVesselGenericStoppedOutlined, ObiVesselInDistress, ObiVesselInDistressAis, ObiVesselRemoteIndicator, ObiVesselTypeBargeFilled, ObiVesselTypeBargeOutlined, ObiVesselTypeCargoFilled, ObiVesselTypeCargoOutlined, ObiVesselTypeCruiseFilled, ObiVesselTypeCruiseOutlined, ObiVesselTypeFishingFilled, ObiVesselTypeFishingOutlined, ObiVesselTypeGenericFilled, ObiVesselTypeGenericOutlined, ObiVesselTypeLifeboatFilled, ObiVesselTypeLifeboatOutlined, ObiVesselTypeMilitaryFilled, ObiVesselTypeMilitaryOutlined, ObiVesselTypeMotorBoatFilled, ObiVesselTypeMotorBoatOutlined, ObiVesselTypePassengerFilled, ObiVesselTypePassengerOutlined, ObiVesselTypePilotFilled, ObiVesselTypePilotOutlined, ObiVesselTypePsvFilled, ObiVesselTypePsvOutlined, ObiVesselTypeSailingFilled, ObiVesselTypeSailingOutlined, ObiVesselTypeSarFilled, ObiVesselTypeSarOutlined, ObiVesselTypeSmallCraftOutlined, ObiVesselTypeSmallcraftFilled, ObiVesselTypeSpeedCraftFilled, ObiVesselTypeSpeedCraftOutlined, ObiVesselTypeTankerFilled, ObiVesselTypeTankerOutlined, ObiVesselTypeTugFilled, ObiVesselTypeTugOutlined, ObiVesselTypeUnknownFilled, ObiVesselTypeUnknownOutlined, ObiViewGalleryGoogle, ObiViewSingleGoogle, ObiVisibilityOffGoogle, ObiVisibilityOnGoogle, ObiVolume, ObiVolumeOff, ObiVolumeOn, ObiVoyages, ObiWarningAcknowledgedIec, ObiWarningBadge, ObiWarningBadgeOutline, ObiWarningEmpty, ObiWarningGoogle, ObiWarningNoackIec, ObiWarningRectifiedIec, ObiWarningRectifiedOutlined, ObiWarningSilencedIec, ObiWarningSilencedOutlined, ObiWarningTransferredIec, ObiWarningUnacknowledgedIec, ObiWarningUnacknowledgedOutlined, ObiWaterGoogle, ObiWave, ObiWaypointActiveFilled, ObiWaypointActiveIec, ObiWaypointAddIec, ObiWaypointDeleteIec, ObiWaypointEditIec, ObiWaypointNextFilled, ObiWaypointNextIec, ObiWaypointOptionalFilled, ObiWaypointOptionalIec, ObiWeather, ObiWhale, ObiWidgetAddGoogle, ObiWidgets, ObiWifi2Google, ObiWifi2OffGoogle, ObiWifiBadGoogle, ObiWifiOffGoogle, ObiWifistrengt0Google, ObiWifistrengt1Google, ObiWifistrengt2Google, ObiWifistrengt3Google, ObiWifistrengt4Google, ObiWinch, ObiWind, ObiWindApparent1, ObiWindApparent10, ObiWindApparent11, ObiWindApparent12, ObiWindApparent13, ObiWindApparent14, ObiWindApparent2, ObiWindApparent3, ObiWindApparent4, ObiWindApparent5, ObiWindApparent6, ObiWindApparent7, ObiWindApparent8, ObiWindApparent9, ObiWindShaft1, ObiWindShaft10, ObiWindShaft11, ObiWindShaft12, ObiWindShaft13, ObiWindShaft14, ObiWindShaft2, ObiWindShaft3, ObiWindShaft4, ObiWindShaft5, ObiWindShaft6, ObiWindShaft7, ObiWindShaft8, ObiWindShaft9, ObiWindTrue1, ObiWindTrue10, ObiWindTrue11, ObiWindTrue12, ObiWindTrue13, ObiWindTrue14, ObiWindTrue2, ObiWindTrue3, ObiWindTrue4, ObiWindTrue5, ObiWindTrue6, ObiWindTrue7, ObiWindTrue8, ObiWindTrue9, ObiWindTurbineLand, ObiWindTurbineOcean, ObiWiper, ObiWiperFluid, ObiWipers, ObiWireComingFrom, ObiWireCorner, ObiWireCross, ObiWireDirection, ObiWireEndPoint, ObiWireGoingTo, ObiWireOverlap, ObiWireStraight, ObiWireThreeway, ObiWrench, ObiYaw };
78250
+ export { AbstractPoiObject, ObcAbstractAutomationButton, ObcAbstractAutomationButtonMotorized, ObcAbstractAutomationButtonSquared, ObcAccordionCard, ObcAccordionItem, ObcAdviceButton, ObcAdviceFloatingItem, ObcAdviceMenuItem, ObcAdviceMessageItem, ObcAlertButton, ObcAlertDetailPage, ObcAlertFloatingItem, ObcAlertFrame, ObcAlertIcon, ObcAlertList, ObcAlertListDetails, ObcAlertListPageSmall, ObcAlertMenu, ObcAlertMenuItem, ObcAnalogValve, ObcAppButton, ObcAppMenu, ObcAreaGraph, ObcAttachmentListItem, ObcAudioOutput, ObcAudioRecordingItem, ObcAutomationBadge, ObcAutomationButton, ObcAutomationButtonReadoutStack, ObcAutomationInputModal, ObcAutomationReadout, ObcAutomationTank, ObcAzimuthThruster, ObcAzimuthThrusterLabeled, ObcBadge, ObcBadgeCommand, ObcBarHorizontal, ObcBarVertical, ObcBatteryIcon, ObcBearingIndicator, ObcBipolarTransistor, ObcBreadcrumb, ObcBrillianceMenu, ObcButton, ObcCalendar, ObcCapacitor, ObcCard, ObcChartLineBase, ObcChartObjectVesselButton, ObcChatMessage, ObcCheckButton, ObcCheckbox, ObcCheckboxItem, ObcCircularProgress, ObcClock, ObcCommandButton, ObcCommandMenu, ObcCommunicationTable, ObcCompass, ObcCompassFlat, ObcCompassIndicator, ObcCompassSector, ObcContextMenuInput, ObcConverter, ObcCornerLine, ObcDamper, ObcDateItem, ObcDepthActual, ObcDigitalValve, ObcDiodes, ObcDirectionLine, ObcDivider, ObcDonutChart, ObcDropdownButton, ObcElevatedCard, ObcElevatedCardRadio, ObcElevatedCardRadioGroup, ObcEndPointLine, ObcEventItem, ObcEventList, ObcFan, ObcFilter, ObcFilterChip, ObcFloatingItem, ObcFormContainer, ObcFormFooterContainer, ObcFormGroup, ObcFormItem, ObcGaugeHorizontal, ObcGaugeRadial, ObcGaugeTrend, ObcGaugeVertical, ObcGraphMini, ObcGround, ObcHeading, ObcHeave, ObcHorizontalLine, ObcIconButton, ObcIconCheckButton, ObcInputChip, ObcInstrumentField, ObcInstrumentRadial, ObcIntegrationAppBar, ObcIntegrationBarDropdown, ObcIntegrationButton, ObcIntegrationDropdownButton, ObcIntegrationFleetButton, ObcIntegrationTabs, ObcIntegrationVesselSelector, ObcKeyboardFull, ObcKeyboardNumeric, ObcLineCross, ObcLineGraph, ObcLineOverlap, ObcLogic, ObcMainEngine, ObcMenuButton, ObcMessageMenuItem, ObcModalWindow, ObcMosfet, ObcMotor, ObcNavigationItem, ObcNavigationItemGroup, ObcNavigationMenu, ObcNotificationBadgeButton, ObcNotificationButton, ObcNotificationFloatingItem, ObcNotificationMenuItem, ObcNotificationMessageItem, ObcNumberInputField, ObcPagination, ObcPieChart, ObcPitch, ObcPitchRoll, ObcPivotItem, ObcPivotItemGroup, ObcPoi, ObcPoiAton, ObcPoiButton, ObcPoiButtonAton, ObcPoiButtonData, ObcPoiButtonVessel, ObcPoiCard, ObcPoiCardHeader, ObcPoiController, ObcPoiData, ObcPoiGraphicLine, ObcPoiGroup, ObcPoiHeader, ObcPoiLayer, ObcPoiLayerStack, ObcPoiLine, ObcPoiObject, ObcPoiObjectAton, ObcPoiObjectData, ObcPoiObjectVessel, ObcPoiPointer, ObcPoiSelectionFrame, ObcPoiVessel, ObcPolarChart, ObcProgressBar, ObcProgressButton, ObcProgressIndicatorDots, ObcPump, ObcRadialBarChart, ObcRadio, ObcRateOfTurn, ObcResistor, ObcRichButton, ObcRoll, ObcRotIndicator, ObcRotSector, ObcRouter, ObcRudder, ObcRulerPointer, ObcScrollbar, ObcSequenceCard, ObcSequenceConnector, ObcSequenceItem, ObcSequenceLoadingSpinner, ObcSequenceModal, ObcSequenceStep, ObcSequenceToolbar, ObcSlideButton, ObcSlider, ObcSliderDouble, ObcSource, ObcSpeedArrows, ObcSpeedGauge, ObcSpeedIndicator, ObcSplitButton, ObcStartStopSwitch, ObcStatusIndicator, ObcStepperBox, ObcSwitch, ObcSystemButton, ObcSystemMenu, ObcTabItem, ObcTabRow, ObcTabbedCard, ObcTable, ObcTableHeaderItem, ObcTag, ObcTextInputField, ObcTextareaField, ObcThreeWayLine, ObcThruster, ObcTitleContainer, ObcToggleButtonGroup, ObcToggleButtonOption, ObcToggleButtonThreeState, ObcToggleButtonVerticalGroup, ObcToggleButtonVerticalOption, ObcToggleSwitch, ObcToggletip, ObcTooltip, ObcTopBar, ObcTopbarMessageItem, ObcTransformer, ObcUserButton, ObcUserMenu, ObcValveAnalogThreeWayIcon, ObcValveAnalogTwoWayIcon, ObcVelocityProjectionPlot, ObcVendorButton, ObcVerticalLine, ObcWatch, ObcWatchFlat, ObcWind, ObcWindIndicator, Obi02Illustration, Obi03Illustration, Obi03TidalStream, Obi07ChartStyles, ObiAcdcConverter, ObiAirGap, ObiAircraftDroneMedium, ObiAircraftDroneSmall, ObiAircraftHelicopter, ObiAisAtonMobilePhysicalIec, ObiAisAtonMobileVirtualIec, ObiAisAtonPhysicalIec, ObiAisAtonPhysicalSelectedIec, ObiAisAtonVirtualIec, ObiAisHeadinglineIec, ObiAisHeadinglineTurnIec, ObiAisLocatingDeviceActiveIec, ObiAisLocatingdeviceActiveSelectedIec, ObiAisLocatingdeviceLostIec, ObiAisLocatingdeviceTestIec, ObiAisProposal, ObiAisSarAircraftFixedwingFilled, ObiAisSarAircraftFixedwingIec, ObiAisSarAircraftHelicopterFilled, ObiAisSarAircraftHelicopterIec, ObiAisSarVesselIec, ObiAisTargetActivatedFilled, ObiAisTargetActivatedIec, ObiAisTargetActivatedNohdgcogIec, ObiAisTargetActivatedNohdgcogSelectedIec, ObiAisTargetActivatedSelectedIec, ObiAisTargetDangerousFilled, ObiAisTargetDangerousIec, ObiAisTargetDangerousNocoghdgIec, ObiAisTargetDangerousSelectedIec, ObiAisTargetSleepingFilled, ObiAisTargetSleepingIec, ObiAisTargetSleepingNohdgcogIec, ObiAisTargetSleepingNohdgcogSelectedIec, ObiAisTargetSleepingSelectedIec, ObiAisTargetSyntheticIec, ObiAisTargetSyntheticNocogIec, ObiAisTargetSyntheticSelectedIec, ObiAlarm, ObiAlarmAbandon, ObiAlarmAckProposal, ObiAlarmAcknowledgedIec, ObiAlarmAcknowledgedOutlined, ObiAlarmAground, ObiAlarmBadge, ObiAlarmBadgeOutline, ObiAlarmEmergencyIec, ObiAlarmFire, ObiAlarmGeneral, ObiAlarmLightOff, ObiAlarmNoackIec, ObiAlarmPob, ObiAlarmRectifiedIec, ObiAlarmRectifiedOutlined, ObiAlarmSignalFail, ObiAlarmSilencedIec, ObiAlarmSilencedOutlined, ObiAlarmTransferredIec, ObiAlarmUnacknowledgedIec, ObiAlertCategoryA, ObiAlertCategoryB, ObiAlertCategoryC, ObiAlertEmpty, ObiAlertHeaderAggregatedIec, ObiAlertHeaderAggregatedLargeIec, ObiAlertHeaderGroupIec, ObiAlertHeaderGroupLargeIec, ObiAlertList, ObiAlertOffFilled, ObiAlertOffGoogle, ObiAlertSettings, ObiAlertTriggerGoogle, ObiAlerts, ObiAlertsActive, ObiAlertsAlarmTwotone, ObiAlertsCautionTwotone, ObiAlertsShelf, ObiAlertsWarningTwotone, ObiAltitude, ObiAnchorIec, ObiAnchorwatch, ObiAntenna, ObiAntenna2, ObiAntenna2Off, ObiAntenna2On, ObiAntennaOff, ObiAntennaOn, ObiApplicationOpenGoogle, ObiApplications, ObiArrowBidirectionalDiagonal, ObiArrowBidirectionalHorizontal, ObiArrowBidirectionalVertical, ObiArrowBottomLeft, ObiArrowBottomRight, ObiArrowDownGoogle, ObiArrowFlyoutGoogle, ObiArrowLeftGoogle, ObiArrowRightGoogle, ObiArrowTopLeft, ObiArrowTopRight, ObiArrowUpGoogle, ObiAssociatedTargetAisFilled, ObiAssociatedTargetAisIec, ObiAssociatedTargetAisSelectedIec, ObiAssociatedTargetRadarIec, ObiAssociatedTargetRadarSelectedIec, ObiAttachment, ObiAuto, ObiAutonomous, ObiAutonomousFill, ObiAutonomousMarineRadioDeviceIec, ObiBacklightHigh, ObiBacklightLow, ObiBackspaceGoogle, ObiBackward, ObiBackwardFast, ObiBackwardStopped, ObiBatteryHorizontal100, ObiBatteryHorizontal25, ObiBatteryHorizontal50, ObiBatteryHorizontal75, ObiBatteryHorizontalCharging100, ObiBatteryHorizontalCharging25, ObiBatteryHorizontalCharging50, ObiBatteryHorizontalChargingEmpty, ObiBatteryHorizontalEmpty, ObiBatteryHorizontalError, ObiBatteryHorizontalLow, ObiBatteryHorizontalNotification, ObiBatteryHorizontalPluggedNoCharge100, ObiBatteryHorizontalPluggedNoCharge25, ObiBatteryHorizontalPluggedNoCharge75, ObiBatteryHorizontalPluggedNoChargeEmpty, ObiBatteryHorizontalPluggedNoChargeLow, ObiBatteryPack0, ObiBatteryPack100, ObiBatteryPack25, ObiBatteryPack50, ObiBatteryPack70, ObiBatteryPackCharging, ObiBatteryVertical25, ObiBatteryVertical50, ObiBatteryVertical75, ObiBatteryVerticalCharging100, ObiBatteryVerticalCharging25, ObiBatteryVerticalCharging50, ObiBatteryVerticalCharging75, ObiBatteryVerticalChargingEmpty, ObiBatteryVerticalChargingLow, ObiBatteryVerticalEmpty, ObiBatteryVerticalError, ObiBatteryVerticalFull, ObiBatteryVerticalLow, ObiBatteryVerticalNotification, ObiBatteryVerticalPluggedNoCharge25, ObiBatteryVerticalPluggedNoCharge50, ObiBatteryVerticalPluggedNoCharge75, ObiBatteryVerticalPluggedNoChargeEmpty, ObiBatteryVerticalPluggedNoChargeFull, ObiBatteryVerticalPluggedNoChargeLow, ObiBeaconDefault, ObiBeaconGeneralBoard, ObiBeaconGeneralConeDown, ObiBeaconGeneralConeUp, ObiBeaconGeneralCross, ObiBeaconGeneralCube, ObiBeaconGeneralDanger, ObiBeaconGeneralEast, ObiBeaconGeneralFlag, ObiBeaconGeneralNorth, ObiBeaconGeneralSouth, ObiBeaconGeneralSphere, ObiBeaconGeneralSquare, ObiBeaconGeneralTShape, ObiBeaconGeneralWest, ObiBeaconGeneralXShape, ObiBeaconMinorStake, ObiBeaconTowerBoard, ObiBeaconTowerConeDown, ObiBeaconTowerConeUp, ObiBeaconTowerCross, ObiBeaconTowerCube, ObiBeaconTowerDanger, ObiBeaconTowerEast, ObiBeaconTowerFlag, ObiBeaconTowerNorth, ObiBeaconTowerSouth, ObiBeaconTowerSphere, ObiBeaconTowerSquare, ObiBeaconTowerTShape, ObiBeaconTowerWest, ObiBeaconTowerXShape, ObiBilge, ObiBipolar_transistor01, ObiBipolar_transistor02, ObiBipolar_transistor02Off, ObiBipolar_transistor02On, ObiBipolar_transistor03, ObiBipolar_transistor03Flat, ObiBipolar_transistor03Off, ObiBipolar_transistor03On, ObiBipolar_transistor04, ObiBipolar_transistor04Flat, ObiBipolar_transistor04Off, ObiBipolar_transistor04On, ObiBipolar_transistorOff, ObiBipolar_transistorOn, ObiBlowerOffHorizontal, ObiBlowerOffVertical, ObiBlowerOnHorizontal, ObiBlowerOnVertical, ObiBlowerStaticHorizontal, ObiBlowerStaticVertical, ObiBluetooth, ObiBoltGoogle, ObiBuoyBarrelBoard, ObiBuoyBarrelConeDown, ObiBuoyBarrelConeUp, ObiBuoyBarrelCross, ObiBuoyBarrelCube, ObiBuoyBarrelDanger, ObiBuoyBarrelEast, ObiBuoyBarrelFlag, ObiBuoyBarrelNorth, ObiBuoyBarrelSouth, ObiBuoyBarrelSphere, ObiBuoyBarrelSquare, ObiBuoyBarrelTShape, ObiBuoyBarrelWest, ObiBuoyBarrelXShape, ObiBuoyCanBoard, ObiBuoyCanConeDown, ObiBuoyCanConeUp, ObiBuoyCanCross, ObiBuoyCanCube, ObiBuoyCanDanger, ObiBuoyCanEast, ObiBuoyCanFlag, ObiBuoyCanNorth, ObiBuoyCanSouth, ObiBuoyCanSphere, ObiBuoyCanSquare, ObiBuoyCanTShape, ObiBuoyCanWest, ObiBuoyCanXShape, ObiBuoyConicalBoard, ObiBuoyConicalConeDown, ObiBuoyConicalConeUp, ObiBuoyConicalCross, ObiBuoyConicalCube, ObiBuoyConicalDanger, ObiBuoyConicalEast, ObiBuoyConicalFlag, ObiBuoyConicalNorth, ObiBuoyConicalSouth, ObiBuoyConicalSphere, ObiBuoyConicalSquare, ObiBuoyConicalTShape, ObiBuoyConicalWest, ObiBuoyConicalXShape, ObiBuoyDefault, ObiBuoyMooringBarrel, ObiBuoyMooringCan, ObiBuoyPilarBoard, ObiBuoyPilarConeDown, ObiBuoyPilarConeUp, ObiBuoyPilarCross, ObiBuoyPilarCube, ObiBuoyPilarDanger, ObiBuoyPilarEast, ObiBuoyPilarFlag, ObiBuoyPilarNorth, ObiBuoyPilarSouth, ObiBuoyPilarSphere, ObiBuoyPilarSquare, ObiBuoyPilarTShape, ObiBuoyPilarWest, ObiBuoyPilarXShape, ObiBuoySparBoard, ObiBuoySparConeDown, ObiBuoySparConeUp, ObiBuoySparCross, ObiBuoySparCube, ObiBuoySparDanger, ObiBuoySparEast, ObiBuoySparFlag, ObiBuoySparNorth, ObiBuoySparSouth, ObiBuoySparSphere, ObiBuoySparSquare, ObiBuoySparTShape, ObiBuoySparWest, ObiBuoySparXShape, ObiBuoySphericalBoard, ObiBuoySphericalConeDown, ObiBuoySphericalConeUp, ObiBuoySphericalCross, ObiBuoySphericalCube, ObiBuoySphericalDanger, ObiBuoySphericalEast, ObiBuoySphericalFlag, ObiBuoySphericalNorth, ObiBuoySphericalSouth, ObiBuoySphericalSphere, ObiBuoySphericalSquare, ObiBuoySphericalTShape, ObiBuoySphericalWest, ObiBuoySphericalXShape, ObiBuoySuper, ObiBuoySuperLandby, ObiCalendarDateGoogle, ObiCalendarGoogle, ObiCamHmiIec, ObiCamera, ObiCameraOff, ObiCameraTilt, ObiCameraTop, ObiCancelSend, ObiCapacitor01, ObiCapacitor01Off, ObiCapacitor01On, ObiCapacitor02, ObiCapacitor02Off, ObiCapacitor02On, ObiCapacitor03, ObiCapacitor03Off, ObiCapacitor03On, ObiCapacitor04, ObiCapacitor04Off, ObiCapacitor04On, ObiCarGoogle, ObiCautionBadge, ObiCautionBadgeOutline, ObiCautionColorIec, ObiCautionEmpty, ObiCautionGoogle, ObiCctv, ObiCellBad, ObiCellFull, ObiCellLow, ObiCellMedium, ObiCellOff, ObiCenterIec, ObiCenterOffIec, ObiChart, ObiChartArchipelagicSeaLanes, ObiChartAtonIec, ObiChartBoundariesLimitsProposal, ObiChartBoundaryIec, ObiChartCatzocIec, ObiChartCautionaryNotes, ObiChartContourLabelIec, ObiChartDatedObjectsIec, ObiChartDisplaySettingsIec, ObiChartDisplaySettingsProposal, ObiChartDryingLineProposal, ObiChartFourShadesProposal, ObiChartFullLightLines, ObiChartGridIec, ObiChartHighlightDataDependentIec, ObiChartHighlightInformationIec, ObiChartInfo, ObiChartIsolatedDangers, ObiChartIsolatedDangersFilled, ObiChartLayers, ObiChartMagneticVariationIec, ObiChartManagementProposal, ObiChartManualUpdateIec, ObiChartNationalLanguageProposal1, ObiChartNationalLanguageProposal2, ObiChartOriginalScaleIec, ObiChartPaperSymbolIec, ObiChartPlainBoundariesIec, ObiChartProhibitedRestrictedAreas, ObiChartRadarOverlayIec, ObiChartSafetyCountourOffProposal, ObiChartSafetyCountourOnProposal, ObiChartSafetyDepthProposal, ObiChartSafetyDepthsShowProposal, ObiChartSafetySettingsProposal, ObiChartSandbanks, ObiChartScaleBoundariesIec, ObiChartScaleMinProposal, ObiChartSeabedProposal, ObiChartSearch, ObiChartSettings, ObiChartShallowContourProposal, ObiChartShallowPatternIec, ObiChartShipRoutingSystemIec, ObiChartSimplifiedSymbolsIec, ObiChartSpotSoundingsIec, ObiChartSubmarineCables, ObiChartSymbolizedBoundariesIec, ObiChartTidalIec, ObiChartUnknown, ObiChartUpdateReview, ObiChartUserProposal, ObiCheckGoogle, ObiCheckMixed, ObiCheckboxChecked, ObiCheckboxCheckedFilled, ObiCheckboxUncheckGoogle, ObiChevronDoubleDownGoogle, ObiChevronDoubleLeftGoogle, ObiChevronDoubleRightGoogle, ObiChevronDoubleUpGoogle, ObiChevronDownGoogle, ObiChevronLeftGoogle, ObiChevronRightGoogle, ObiChevronTrippleLeft, ObiChevronTrippleRight, ObiChevronUpGoogle, ObiClear, ObiClearDay, ObiClearDayColour, ObiClearNight, ObiClearNightColour, ObiClearPolartwilight, ObiClearPolartwilightColour, ObiClipboard, ObiClipboard2, ObiCloseGoogle, ObiCloudy, ObiCloudyColour, ObiCoastalNavigation, ObiCoastalNavigationFill, ObiCodeGoogle, ObiCoffee, ObiCog, ObiColdGoogle, ObiCollisionAvoidanceHeadOn, ObiCollisionAvoidanceOvertaking, ObiCollisionAvoidancePortSide, ObiCollisionAvoidanceStarboardSide, ObiComCallActiveGoogle, ObiComCallEndGoogle, ObiComCallGoogle, ObiComMessageActiveGoogle, ObiComMessageGoogle, ObiComMessageImportantGoogle, ObiComMicMutedGoogle, ObiComMicrophone, ObiComPa, ObiComPaList, ObiComRadio, ObiComRadioEmergency, ObiCommandAutoTrack, ObiCommandAutopilot, ObiCommandAvailable, ObiCommandIn, ObiCommandLocked, ObiCommandLockedF, ObiCommandNo, ObiCommandPartial, ObiCommandRequest, ObiCommandShared, ObiCommandTake, ObiCommunication, ObiCompareGoogle, ObiCompleted, ObiComputerPc, ObiComputerServer, ObiConfigure, ObiConnection1Bar, ObiConnection1BarsCaution, ObiConnection2Bars, ObiConnection2BarsCaution, ObiConnection3Bars, ObiConnection3BarsCaution, ObiConnection4Bars, ObiConnectionNoCaution, ObiConnectionNoGoogle, ObiConnectionOff, ObiConnectorComingFrom, ObiConnectorCorner, ObiConnectorCross, ObiConnectorCrossJoint, ObiConnectorGoingTo, ObiConnectorOverlap, ObiConnectorStraight, ObiConnectorThreeway, ObiConnectorThreewayJoint, ObiConningIec, ObiConspicuousCairn, ObiContacts, ObiContainer, ObiContentCollapseGoogle, ObiContentCopyGoogle, ObiContentCutGoogle, ObiContentExpandGoogle, ObiConverterAcdc, ObiConverterAcdcOff, ObiConverterAcdcOn, ObiConverterDcac, ObiConverterDcacOff, ObiConverterDcacOn, ObiConverterDcdc, ObiConverterDcdcOff, ObiConverterDcdcOn, ObiConverterFilter1, ObiConverterFilter1Off, ObiConverterFilter1On, ObiCoordinate, ObiCrane, ObiCurrent, ObiCurrent1, ObiCurrent2, ObiCurrent3, ObiCurrent4, ObiCursorActionPointer, ObiCursorActionPointerIcon, ObiCursorClosedHand, ObiCursorClosedHandIcon, ObiCursorDelete, ObiCursorDeleteIcon, ObiCursorDraw, ObiCursorDrawIcon, ObiCursorHelp, ObiCursorHelpIcon, ObiCursorInsertPoint, ObiCursorInsertPointIcon, ObiCursorMap, ObiCursorMapIcon, ObiCursorMapIec, ObiCursorMapIecIcon, ObiCursorNotAllowed, ObiCursorNotAllowedIcon, ObiCursorOpenHand, ObiCursorOpenHandIcon, ObiCursorPlaceholder, ObiCursorPlaceholderIcon, ObiCursorPointer, ObiCursorPointerIcon, ObiCursorPointingHand, ObiCursorPointingHandIcon, ObiCursorRemovePoint, ObiCursorRemovePointIcon, ObiCursorSetpoint, ObiCursorSetpointIcon, ObiDamperHorizontalOff, ObiDamperHorizontalOffLarge, ObiDamperHorizontalOn, ObiDamperHorizontalOnLarge, ObiDashboard, ObiDatabase, ObiDcdcConverter, ObiDelete, ObiDeleteFilled, ObiDelta, ObiDepth, ObiDeviceFilter, ObiDiagnosticGoogle, ObiDieselEngine, ObiDieselGenerator, ObiDieselGeneratorAc, ObiDieselGeneratorDc, ObiDieselGeneratorStep, ObiDiodes01, ObiDiodes01Off, ObiDiodes01On, ObiDiodes02, ObiDiodes02Off, ObiDiodes02On, ObiDiodes03, ObiDiodes03Off, ObiDiodes03On, ObiDiodes04, ObiDiodes04Off, ObiDiodes04On, ObiDiodes05, ObiDiodes05Off, ObiDiodes05On, ObiDiodes06, ObiDiodes06Off, ObiDiodes06On, ObiDiodes07, ObiDiodes07Off, ObiDiodes07On, ObiDisplayBrillianceIec, ObiDisplayBrillianceLow, ObiDisplayBrillianceProposal, ObiDiver, ObiDivide, ObiDockBottomGoogle, ObiDockLeftGoogle, ObiDockRightGoogle, ObiDockedProposal, ObiDownIec, ObiDragHorizontal, ObiDragVertical, ObiDropDownDoubleGoogle, ObiDropDownGoogle, ObiDuctComingFrom, ObiDuctCorner, ObiDuctCross, ObiDuctDirection, ObiDuctEndPoint, ObiDuctGoingTo, ObiDuctOverlap, ObiDuctStraight, ObiDuctThreeway, ObiDuty, ObiDynamicPositioning, ObiEcdisIec, ObiEcdisProposal, ObiEco, ObiEditGoogle, ObiElectricGenerator, ObiElectricGeneratorAc, ObiElectricGeneratorDc, ObiElectricGeneratorOrMotor, ObiElectricGeneratorOrMotorAc, ObiElectricGeneratorOrMotorDc, ObiElectricGeneratorOrMotorStep, ObiElectricGeneratorStep, ObiElectricMotor, ObiElectricMotorAc, ObiElectricMotorDc, ObiElectricMotorStep, ObiElectricalClock, ObiElectricalClockOff, ObiElectricalClockOn, ObiEnergyAmmonia, ObiEnergyBattery, ObiEnergyDiesel, ObiEnergyElectricGoogle, ObiEnergyFuel, ObiEnergyHydrogen, ObiEnergyMethanol, ObiEnergyOil, ObiEnergyPetrol, ObiEngine, ObiEngineFill, ObiEpms, ObiEqual, ObiError, ObiEthernetGoogle, ObiEthernetSwitch, ObiEventMarkerFilled, ObiEventMarkerIec, ObiExclamationMark, ObiExpand, ObiFanOff, ObiFanOn, ObiFanStatic, ObiFileDownloadGoogle, ObiFileUploadGoogle, ObiFilter, ObiFilter1, ObiFilter1Off, ObiFilter1On, ObiFilter2, ObiFilter2Off, ObiFilter2On, ObiFilter3, ObiFilter3Off, ObiFilter3On, ObiFilter4, ObiFilter4Off, ObiFilter4On, ObiFire, ObiFishing, ObiFleetProposal, ObiFog, ObiFogColour, ObiFoodGoogle, ObiForceCurrentRelative, ObiForceCurrentTrue, ObiForceDirectionRelative, ObiForceDirectionTrue, ObiForceGustsRelative, ObiForceGustsTrue, ObiForceSwellRelative, ObiForceSwellTrue, ObiForward, ObiForwardFast, ObiForwardStatic, ObiForwardStopped, ObiFuse01, ObiFuse01Off, ObiFuse01On, ObiFuse02, ObiFuse02Off, ObiFuse02On, ObiGenerator, ObiGenericLineComingFrom, ObiGenericLineCorner, ObiGenericLineCross, ObiGenericLineDirection, ObiGenericLineEndPoint, ObiGenericLineGoingTo, ObiGenericLineOverlap, ObiGenericLineStraight, ObiGenericLineThreeway, ObiGridOffGoogle, ObiGround1, ObiGround1Off, ObiGround1On, ObiGround2, ObiGround2Off, ObiGround2On, ObiGround3, ObiGround3Off, ObiGround3On, ObiHarbourBerthing, ObiHdg, ObiHeadingCUpProposal, ObiHeadingHUpProposal, ObiHeadingLineOffIec, ObiHeadingLineOffProposal, ObiHeadingNUpProposal, ObiHeatGoogle, ObiHeat_pump_balance, ObiHeatexhanger, ObiHeatpump, ObiHeave, ObiHeavyRain, ObiHeavyRainColour, ObiHeavyRainShowersDay, ObiHeavyRainShowersDayColour, ObiHeavyRainShowersNight, ObiHeavyRainShowersNightColour, ObiHeavyRainShowersPolartwilight, ObiHeavyRainShowersPolartwilightColour, ObiHeavySleet, ObiHeavySleetColour, ObiHeavySleetShowersDay, ObiHeavySleetShowersDayColour, ObiHeavySleetShowersNight, ObiHeavySleetShowersNightColour, ObiHeavySleetShowersPolartwilight, ObiHeavySleetShowersPolartwilightColour, ObiHeavySnow, ObiHeavySnowColour, ObiHeavySnowShowersDay, ObiHeavySnowShowersDayColour, ObiHeavySnowShowersNight, ObiHeavySnowShowersNightColour, ObiHeavySnowShowersPolartwilight, ObiHeavySnowShowersPolartwilightColour, ObiHelp, ObiHistoryGoogle, ObiHome, ObiHvac, ObiHydraulic01, ObiHydraulic01Off, ObiHydraulic01On, ObiHydraulic01Static, ObiHydraulic02, ObiHydraulic02Off, ObiHydraulic02On, ObiHydraulic02Static, ObiHydraulic03, ObiHydraulic03Off, ObiHydraulic03On, ObiHydraulic03Static, ObiHydraulic04, ObiHydraulic04Off, ObiHydraulic04On, ObiHydraulic04Static, ObiHydraulic05, ObiHydraulic05Off, ObiHydraulic05On, ObiHydraulic05Static, ObiHydraulic06, ObiHydraulic06Off, ObiHydraulic06On, ObiHydraulic06Static, ObiHydraulic07, ObiHydraulic07Off, ObiHydraulic07On, ObiHydraulic07Static, ObiHydraulic08, ObiHydraulic08Off, ObiHydraulic08On, ObiHydraulic08Static, ObiHydraulic09, ObiHydraulic09Off, ObiHydraulic09On, ObiHydraulic09Static, ObiHydraulic10, ObiHydraulic10Off, ObiHydraulic10On, ObiHydraulic10Static, ObiHydraulic11, ObiHydraulic11Off, ObiHydraulic11On, ObiHydraulic11Static, ObiHydraulic12, ObiHydraulic12Off, ObiHydraulic12On, ObiHydraulic12Static, ObiHydraulic13, ObiHydraulic13Off, ObiHydraulic13On, ObiHydraulic13Static, ObiHydraulic14, ObiHydraulic14Off, ObiHydraulic14On, ObiHydraulic14Static, ObiHydraulic15, ObiHydraulic15Off, ObiHydraulic15On, ObiHydraulic15Static, ObiHydraulic16, ObiHydraulic16Off, ObiHydraulic16On, ObiHydraulic16Static, ObiHydraulic17, ObiHydraulic17Off, ObiHydraulic17On, ObiHydraulic17Static, ObiHydraulicPipe01, ObiHydraulicPipe02, ObiHydraulicPipe03, ObiHydraulicPipe04, ObiHydraulicPipe05, ObiHydraulicPipe06, ObiHydraulicPipe07, ObiHydraulicPipe08, ObiHydraulicPipe09, ObiHydraulicPipe10, ObiHydraulicPipe11, ObiHydraulicPipe12, ObiHydraulicPipe13, ObiHydraulicPipe14, ObiHydraulicPipe15, ObiHydraulicPipe16, ObiHydraulicPipe17, ObiHydraulicSeparator, ObiIas, ObiIceberg, ObiIcon, ObiIdTag, ObiIecChartDispSet, ObiIecChartDispSetProposal, ObiImage, ObiInProgress1, ObiInProgress2, ObiInfo, ObiInfoReportIec, ObiInfoReportProposal, ObiInput, ObiInputDevicesGoogle, ObiInputDown, ObiInputKeyboardGoogle, ObiInputKeyboardScreenGoogle, ObiInputLeft, ObiInputMouse1, ObiInputMouse2, ObiInputMouse3, ObiInputMouseGoogle, ObiInputRight, ObiInputUp, ObiIo, ObiJoystick, ObiKayaking, ObiKeepingArea, ObiKeepingStation, ObiKeepingTrack, ObiKeylinegrid, ObiKitesurfing, ObiLatched, ObiLeaf, ObiLeafTwotone, ObiLicenseGoogle, ObiLightAlarm, ObiLightAlarmColourOff, ObiLightAlarmColourOn, ObiLightAol, ObiLightAolColourOff, ObiLightAolColourOn, ObiLightAolOff, ObiLightBacklightButtons, ObiLightBacklightButtonsColourOn, ObiLightBacklightButtonsOff, ObiLightBacklightButtonslightBacklightButtonsColourOff, ObiLightBulb, ObiLightBulbOff, ObiLightBulbOn, ObiLightDeck, ObiLightDeckColourOff, ObiLightDeckColourOn, ObiLightDeckOff, ObiLightEmergency, ObiLightEmergencyColourOff, ObiLightEmergencyColourOn, ObiLightEmergencyOff, ObiLightFlashlight, ObiLightFlashlightColourOff, ObiLightFlashlightColourOn, ObiLightFlashlightOff, ObiLightFloat, ObiLightLanternOff, ObiLightLanternOn, ObiLightLanternOnColourOff, ObiLightLanternOnColourOn, ObiLightLanternPort, ObiLightLanternPortColourOff, ObiLightLanternPortColourOn, ObiLightLanternPortOff, ObiLightLanternStbd, ObiLightLanternStbdColourOff, ObiLightLanternStbdColourOn, ObiLightLanternStbdOff, ObiLightRain, ObiLightRainColour, ObiLightRainShowersNight, ObiLightRainShowersNightColour, ObiLightRainShowersPolartwilight, ObiLightRainShowersPolartwilightColour, ObiLightRainShowersSun, ObiLightRainShowersSunColour, ObiLightRoof, ObiLightRoofColourOff, ObiLightRoofColourOn, ObiLightRoofOff, ObiLightSearchlight, ObiLightSearchlightColourOff, ObiLightSearchlightColourOn, ObiLightSearchlightOff, ObiLightSleet, ObiLightSleetColour, ObiLightSleetShowersDay, ObiLightSleetShowersDayColour, ObiLightSleetShowersNight, ObiLightSleetShowersNightColour, ObiLightSleetShowersPolartwilight, ObiLightSleetShowersPolartwilightColour, ObiLightSnow, ObiLightSnowColour, ObiLightSnowShowersDay, ObiLightSnowShowersDayColour, ObiLightSnowShowersNight, ObiLightSnowShowersNightColour, ObiLightSnowShowersPolartwilight, ObiLightSnowShowersPolartwilightColour, ObiLighthouse, ObiLightningHeavyRain, ObiLightningHeavyRainColour, ObiLightningHeavyRainShowersDay, ObiLightningHeavyRainShowersDayColour, ObiLightningHeavyRainShowersNight, ObiLightningHeavyRainShowersNightColour, ObiLightningHeavyRainShowersPolartwilight, ObiLightningHeavyRainShowersPolartwilightColour, ObiLightningHeavySleet, ObiLightningHeavySleetColour, ObiLightningHeavySleetShowersDay, ObiLightningHeavySleetShowersDayColour, ObiLightningHeavySleetShowersNight, ObiLightningHeavySleetShowersNightColour, ObiLightningHeavySleetShowersPolartwilight, ObiLightningHeavySleetShowersPolartwilightColour, ObiLightningHeavySnow, ObiLightningHeavySnowColour, ObiLightningHeavySnowShowersDay, ObiLightningHeavySnowShowersDayColour, ObiLightningHeavySnowShowersNight, ObiLightningHeavySnowShowersNightColour, ObiLightningHeavySnowShowersPolartwilight, ObiLightningHeavySnowShowersPolartwilightColour, ObiLightningLightRain, ObiLightningLightRainColour, ObiLightningLightRainShowersDay, ObiLightningLightRainShowersDayColour, ObiLightningLightRainShowersNight, ObiLightningLightRainShowersNightColour, ObiLightningLightRainShowersPolartwilight, ObiLightningLightRainShowersPolartwilightColour, ObiLightningLightSleet, ObiLightningLightSleetColour, ObiLightningLightSleetShowersDay, ObiLightningLightSleetShowersDayColour, ObiLightningLightSleetShowersNight, ObiLightningLightSleetShowersNightColour, ObiLightningLightSleetShowersPolartwilight, ObiLightningLightSleetShowersPolartwilightColour, ObiLightningLightSnow, ObiLightningLightSnowColour, ObiLightningLightSnowShowersDay, ObiLightningLightSnowShowersDayColour, ObiLightningLightSnowShowersNight, ObiLightningLightSnowShowersNightColour, ObiLightningLightSnowShowersPolartwilight, ObiLightningLightSnowShowersPolartwilightColour, ObiLightningRain, ObiLightningRainColour, ObiLightningRainShowersDay, ObiLightningRainShowersDayColour, ObiLightningRainShowersNight, ObiLightningRainShowersNightColour, ObiLightningRainShowersPolartwilight, ObiLightningRainShowersPolartwilightColour, ObiLightningSleet, ObiLightningSleetColour, ObiLightningSleetShowersDay, ObiLightningSleetShowersDayColour, ObiLightningSleetShowersNight, ObiLightningSleetShowersNightColour, ObiLightningSleetShowersPolartwilight, ObiLightningSleetShowersPolartwilightColour, ObiLightningSnow, ObiLightningSnowColour, ObiLightningSnowShowersDay, ObiLightningSnowShowersDayColour, ObiLightningSnowShowersNight, ObiLightningSnowShowersNightColour, ObiLightningSnowShowersPolartwilight, ObiLightningSnowShowersPolartwilightColour, ObiLights, ObiLimitsAttention, ObiLimitsImproving, ObiLimitsInside, ObiLimitsOutsideOver, ObiLimitsOutsideUnder, ObiLineOfPosition, ObiLineOfPositionIec, ObiLink, ObiLinkRemove, ObiListAltCheckGoogle, ObiLocal, ObiLocalOnly, ObiLocation, ObiLocation1, ObiLocation2, ObiLocation3, ObiLocationA, ObiLocationB, ObiLocationC, ObiLocationD, ObiLocationE, ObiLocationF, ObiLocationG, ObiLocationGeneric, ObiLocationH, ObiLocationI, ObiLocationJ, ObiLocationL, ObiLocationLabel, ObiLocationM, ObiLocationN, ObiLocationO, ObiLocationP, ObiLocationQ, ObiLocationR, ObiLocationS, ObiLocationT, ObiLocationU, ObiLogAddGoogle, ObiLogEditGoogle, ObiLogOpenGoogle, ObiLogic01, ObiLogic01Off, ObiLogic01On, ObiLogic02, ObiLogic02Off, ObiLogic02On, ObiLogic03, ObiLogic03Off, ObiLogic03On, ObiLogic04, ObiLogic04Off, ObiLogic04On, ObiLogic05, ObiLogic05Off, ObiLogic05On, ObiLogic06, ObiLogic06Off, ObiLogic06On, ObiLogic07, ObiLogic07Off, ObiLogic07On, ObiLogoGeneric, ObiLogoOicl, ObiLogoOpenbridge, ObiManual, ObiManualOnly, ObiMeasureGoogle, ObiMediaBackwards10s, ObiMediaForward10s, ObiMediaLive, ObiMediaLoop, ObiMediaPause, ObiMediaPlay, ObiMediaRecord, ObiMediaResume, ObiMediaSkipNext, ObiMediaSkipPrevious, ObiMediaStop, ObiMegamenuGoogle, ObiMenu, ObiMenuIec, ObiMessagesIec, ObiMeteorologicalInformation, ObiMisc, ObiMonitoring, ObiMonitoringRoute, ObiMoored, ObiMoreGoogle, ObiMoreVerticalGoogle, ObiMosfetNtype1, ObiMosfetNtype1Off, ObiMosfetNtype1On, ObiMosfetNtype2, ObiMosfetNtype2Off, ObiMosfetNtype2On, ObiMosfetNtype3, ObiMosfetNtype3Off, ObiMosfetNtype3On, ObiMosfetNtype4, ObiMosfetNtype4Off, ObiMosfetNtype4On, ObiMosfetPtype1, ObiMosfetPtype1Off, ObiMosfetPtype1On, ObiMosfetPtype2, ObiMosfetPtype2Off, ObiMosfetPtype2On, ObiMosfetPtype3, ObiMosfetPtype3Off, ObiMosfetPtype3On, ObiMosfetPtype4, ObiMosfetPtype4Off, ObiMosfetPtype4On, ObiMotionRelativeIec, ObiMotionRelativeProposal, ObiMotionTmResetProposal1, ObiMotionTmResetProposal2, ObiMotionTrueIec, ObiMotionTrueProposal, ObiMotorOffHorizontal, ObiMotorOffVertical, ObiMotorOnHorizontal, ObiMotorOnVertical, ObiMotorStaticHorizontal, ObiMotorStaticVertical, ObiMove, ObiMoveItemGoogle, ObiMoveItemIn, ObiMsiIec, ObiMultiply, ObiNavigationRoute, ObiNoInput, ObiNotAllowed, ObiNotStarted, ObiNoteEditProposal, ObiNotification, ObiNotificationAdvice, ObiNotificationAdviceActive, ObiNotificationAdviceActiveTwotone, ObiNotificationFilled, ObiNotunderway, ObiObjectDerelict, ObiObjectFlotsam, ObiObjectJetsam, ObiObjectLagan, ObiOff, ObiOffIec, ObiOn, ObiOnIec, ObiOnOffIec, ObiOpenSea, ObiOwnShipAlternativeFilled, ObiOwnShipAlternativeOutlined, ObiOwnShipAlternativeRemote, ObiOwnShipControlA, ObiOwnShipControlAa, ObiOwnShipControlAe, ObiOwnShipControlB, ObiOwnShipControlC, ObiOwnShipControlD, ObiOwnShipControlE, ObiOwnShipControlF, ObiOwnShipControlG, ObiOwnShipControlGeneric, ObiOwnShipControlH, ObiOwnShipControlI, ObiOwnShipControlJ, ObiOwnShipControlK, ObiOwnShipControlL, ObiOwnShipControlM, ObiOwnShipControlN, ObiOwnShipControlO, ObiOwnShipControlOe, ObiOwnShipControlP, ObiOwnShipControlQ, ObiOwnShipControlR, ObiOwnShipControlS, ObiOwnShipControlT, ObiOwnShipControlU, ObiOwnShipControlV, ObiOwnShipControlW, ObiOwnShipControlX, ObiOwnShipControlY, ObiOwnShipControlZ, ObiOwnShipIec, ObiOwnShipMinimisedIec, ObiOwnShipNoCommandA, ObiOwnShipNoCommandAa, ObiOwnShipNoCommandAe, ObiOwnShipNoCommandB, ObiOwnShipNoCommandC, ObiOwnShipNoCommandD, ObiOwnShipNoCommandE, ObiOwnShipNoCommandF, ObiOwnShipNoCommandG, ObiOwnShipNoCommandGeneric, ObiOwnShipNoCommandH, ObiOwnShipNoCommandI, ObiOwnShipNoCommandIndex, ObiOwnShipNoCommandJ, ObiOwnShipNoCommandK, ObiOwnShipNoCommandL, ObiOwnShipNoCommandM, ObiOwnShipNoCommandN, ObiOwnShipNoCommandO, ObiOwnShipNoCommandOe, ObiOwnShipNoCommandP, ObiOwnShipNoCommandQ, ObiOwnShipNoCommandR, ObiOwnShipNoCommandS, ObiOwnShipNoCommandT, ObiOwnShipNoCommandU, ObiOwnShipNoCommandV, ObiOwnShipNoCommandW, ObiOwnShipNoCommandX, ObiOwnShipNoCommandY, ObiOwnShipNoCommandZ, ObiOwnShipRemoteA, ObiOwnShipRemoteAa, ObiOwnShipRemoteAe, ObiOwnShipRemoteB, ObiOwnShipRemoteC, ObiOwnShipRemoteD, ObiOwnShipRemoteE, ObiOwnShipRemoteF, ObiOwnShipRemoteG, ObiOwnShipRemoteGeneric, ObiOwnShipRemoteH, ObiOwnShipRemoteI, ObiOwnShipRemoteJ, ObiOwnShipRemoteK, ObiOwnShipRemoteL, ObiOwnShipRemoteM, ObiOwnShipRemoteN, ObiOwnShipRemoteO, ObiOwnShipRemoteOe, ObiOwnShipRemoteP, ObiOwnShipRemoteQ, ObiOwnShipRemoteR, ObiOwnShipRemoteS, ObiOwnShipRemoteT, ObiOwnShipRemoteU, ObiOwnShipRemoteV, ObiOwnShipRemoteW, ObiOwnShipRemoteX, ObiOwnShipRemoteY, ObiOwnShipRemoteZ, ObiOwnShipSimplifiedFilled, ObiOwnShipSimplifiedIec, ObiOwnshipMinimisedSternlineIec, ObiPageFirstGoogle, ObiPageLastGoogle, ObiPaletteColorCalibratedIec, ObiPaletteDay, ObiPaletteDayBright, ObiPaletteDayNightIec, ObiPaletteDimming, ObiPaletteDusk, ObiPaletteNight, ObiPanelIlluminationIec, ObiPanelIlluminationProposal, ObiPanelLeftClose, ObiPanelLeftOpen, ObiPanelRightClose, ObiPanelRightOpen, ObiPartlycloudyDay, ObiPartlycloudyDayColour, ObiPartlycloudyNight, ObiPartlycloudyNightColour, ObiPartlycloudyPolartwilight, ObiPartlycloudyPolartwilightColour, ObiPassed, ObiPassedFill, ObiPastPositionIec, ObiPending, ObiPiezoelectricCrystal, ObiPiezoelectricCrystalOff, ObiPiezoelectricCrystalOn, ObiPilotOnboard, ObiPilotage, ObiPinGoogle, ObiPinSelectedGoogle, ObiPipeComingFrom, ObiPipeCorner, ObiPipeCross, ObiPipeDirection, ObiPipeEndPoint, ObiPipeGoingTo, ObiPipeOverlap, ObiPipeStraight, ObiPipeThreeway, ObiPitch, ObiPlaceholder, ObiPlaceholderDeviceOffF, ObiPlaceholderDeviceOn, ObiPlaceholderDeviceStatic, ObiPlottedPositionIec, ObiPls, ObiPlsComponent, ObiPlusMinus, ObiPrint, ObiPrintScreenIec, ObiPrintScreenProposal, ObiPropulsion, ObiPropulsionAzimuthThruster, ObiPropulsionMainEngine, ObiPropulsionRudder, ObiPropulsionStatic, ObiPropulsionTunnelThruster, ObiPumpOffHorizontal, ObiPumpOffVertical, ObiPumpOnHorizontal, ObiPumpOnVertical, ObiPumpStaticHorizontal, ObiPumpStaticVertical, ObiPushButtonOff, ObiPushButtonOn, ObiRadarAntennaPositionIec, ObiRadarElectronicBearingLineProposal, ObiRadarElectronicRangeAndBearingProposal, ObiRadarGainIec, ObiRadarGainProposal, ObiRadarIec, ObiRadarLongPulseIec, ObiRadarOverlayProposal, ObiRadarPerformanceMonitorIec, ObiRadarRainIec, ObiRadarRangeIec, ObiRadarRangeProposal, ObiRadarSeaIec, ObiRadarSettingsProposal, ObiRadarShortPulseIec, ObiRadarStandbyIec, ObiRadarTargetAcquisitionStateAutoIec, ObiRadarTargetAcquisitionStateIec, ObiRadarTargetTrackedDangerousFilled, ObiRadarTargetTrackedDangerousIec, ObiRadarTargetTrackedDangerousSelectedIec, ObiRadarTargetTrackedFilled, ObiRadarTargetTrackedIec, ObiRadarTargetTrackedSelectedIec, ObiRadarTuneIec, ObiRadarTuneProposal, ObiRadarVariableRangeMarkerProposal, ObiRain, ObiRainColour, ObiRainShowersDay, ObiRainShowersDayColour, ObiRainShowersNight, ObiRainShowersNightColour, ObiRainShowersPolartwilight, ObiRainShowersPolartwilightColour, ObiRangeRingsIec, ObiRank1, ObiRank2, ObiRank3, ObiRank4, ObiRank5, ObiRank6, ObiRecordEvent, ObiRecordEventIec, ObiRedoIec, ObiRefreshGoogle, ObiReorderHorizontalGoogle, ObiReorderVerticalGoogle, ObiReset, ObiResistor1, ObiResistor1Off, ObiResistor1On, ObiResistor2, ObiResistor2Off, ObiResistor2On, ObiResistor3, ObiResistor3Off, ObiResistor3On, ObiResistor4, ObiResistor4Off, ObiResistor4On, ObiResistor5, ObiResistor5Off, ObiResistor5On, ObiResizeCorner, ObiResizeVerticalBottom, ObiResizeVerticalCenter, ObiResizeVerticalTop, ObiRock, ObiRoll, ObiRot, ObiRotate, ObiRoute, ObiRouteExportIec, ObiRouteExportProposal, ObiRouteImportIec, ObiRouteImportProposal, ObiRouteMonitoringProposal, ObiRoutePlanProposal, ObiRoutePlanning, ObiRouter, ObiRouter2, ObiRouter2Off, ObiRouter2On, ObiRouterComponent, ObiRouterOff, ObiRouterOn, ObiRowingGoogle, ObiRunning, ObiRunningColorIec, ObiRunningFill, ObiSMode, ObiSatelliteFull, ObiSatelliteLow, ObiSatelliteMedium, ObiSatelliteOff, ObiSaveProposal, ObiScreenDesk, ObiScreenFullExitGoogle, ObiScreenFullGoogle, ObiScreenPad, ObiScreenQuad, ObiScreenRecording, ObiScreenSharing, ObiScreenShot, ObiScreenSplitBottom, ObiScreenSplitLeft, ObiScreenSplitRight, ObiScreenSplitTop, ObiScreens, ObiSearch, ObiSend, ObiSensorGpsBad, ObiSensorGpsFull, ObiSensorGpsLow, ObiSensorGpsMedium, ObiSensorGyro, ObiSensorWaterCo2, ObiSensorWaterDoGoogle, ObiSensorWaterDropGoogle, ObiSensorWaterEcGoogle, ObiSensorWaterOrpGoogle, ObiSensorWaterPhGoogle, ObiSensorWaterSalinityGoogle, ObiSensorWaterVocGoogle, ObiSettingsDefaultIec, ObiSettingsDefaultProposal, ObiSettingsIec, ObiSettingsUserIec, ObiSettingsUserProposal, ObiShift, ObiShiftLock, ObiShip, ObiShipBulkcarrier, ObiShipCarferry, ObiShipContainer, ObiShipFishing, ObiShipHighspeed, ObiShipNavy, ObiShipOffshore, ObiShipPassenger, ObiShipSailboat, ObiShipSailship, ObiShipTanker, ObiShipTugboat, ObiShipWreckFilled, ObiShipWreckIec, ObiShipYacht, ObiSignArrowBack, ObiSignArrowDownLeft, ObiSignArrowDownRight, ObiSignArrowForeward, ObiSignArrowLeft, ObiSignArrowRight, ObiSignArrowUpLeft, ObiSignArrowUpRight, ObiSignEmbarkationLadder, ObiSignExit, ObiSignFireAlarmButton, ObiSignFireEquipment, ObiSignFireExtinguisher, ObiSignLifeboat, ObiSignLifebuoy, ObiSignLiferaft, ObiSignMeetingPoint, ObiSignMeetingPointSimple, ObiSignStairsLeft, ObiSignStairsRight, ObiSignalStation, ObiSilenceIec, ObiSimplifiedBeaconCardinalEast, ObiSimplifiedBeaconCardinalNorth, ObiSimplifiedBeaconCardinalSouth, ObiSimplifiedBeaconCardinalWest, ObiSimplifiedBeaconDefault, ObiSimplifiedBeaconIsolatedDanger, ObiSimplifiedBeaconMajorLateralRed, ObiSimplifiedBeaconMajorSafeWater, ObiSimplifiedBeaconMajorSpecialPurpose, ObiSimplifiedBeaconMinorLateralGreen, ObiSimplifiedBeaconMinorLateralRed, ObiSimplifiedBeaconMinorSafeWater, ObiSimplifiedBeaconMinorSpecialPurpose, ObiSimplifiedBuoyCardinalEast, ObiSimplifiedBuoyCardinalNorth, ObiSimplifiedBuoyCardinalSouth, ObiSimplifiedBuoyCardinalWest, ObiSimplifiedBuoyDefault, ObiSimplifiedBuoyInstallationMooring, ObiSimplifiedBuoyLateralCanGreen, ObiSimplifiedBuoyLateralCanRed, ObiSimplifiedBuoyLateralConicalGreen, ObiSimplifiedBuoyLateralConicalRed, ObiSimplifiedBuoyLightFloat, ObiSimplifiedBuoyLightVessel, ObiSimplifiedBuoySafeWater, ObiSimplifiedBuoySpecialPurpose, ObiSimplifiedBuoySpecialPurposeIce, ObiSimplifiedBuoySpecialPurposeTssPort, ObiSimplifiedBuoySpecialPurposeTssStbd, ObiSimplifiedBuoySuper, ObiSimplifiedSimplifiedBuoyIsolatedDanger, ObiSimulation, ObiSleet, ObiSleetColour, ObiSleetShowersDay, ObiSleetShowersDayColour, ObiSleetShowersNight, ObiSleetShowersNightColour, ObiSleetShowersPolartwilight, ObiSleetShowersPolartwilightColour, ObiSlightlycloudyDay, ObiSlightlycloudyDayColour, ObiSlightlycloudyNight, ObiSlightlycloudyNightColour, ObiSlightlycloudyPolartwilight, ObiSlightlycloudyPolartwilightColour, ObiSnow, ObiSnowColour, ObiSnowShowersDay, ObiSnowShowersDayColour, ObiSnowShowersNight, ObiSnowShowersNightColour, ObiSnowShowersPolartwilight, ObiSnowShowersPolartwilightColour, ObiSog, ObiSortGoogle, ObiSound, ObiSoundFill, ObiSoundLow, ObiSoundLowFill, ObiSoundMuted, ObiSoundMutedFill, ObiSoundNo, ObiSoundNoFill, ObiSoundUnavailable, ObiSoundUnavailableFill, ObiSources01, ObiSources01Off, ObiSources01On, ObiSources02, ObiSources02Off, ObiSources02On, ObiSources03, ObiSources03Off, ObiSources03On, ObiSources04, ObiSources04Off, ObiSources04On, ObiSources05, ObiSources05Off, ObiSources05On, ObiSpeaker, ObiSpeakerOff, ObiSpeakerOn, ObiSpeed, ObiSpeedFullDown, ObiSpeedFullLeft, ObiSpeedFullRight, ObiSpeedFullUp, ObiSpeedGood, ObiSpeedHalfDown, ObiSpeedHalfLeft, ObiSpeedHalfRight, ObiSpeedHalfUp, ObiSpeedHigh, ObiSpeedLow, ObiSpeedLowDown, ObiSpeedLowLeft, ObiSpeedLowRight, ObiSpeedLowUp, ObiStabilisationIndicatorGroundIec, ObiStabilisationIndicatorWaterIec, ObiStandby, ObiStandbyIec, ObiStar, ObiStarSelected, ObiStopped, ObiStw, ObiSupportGoogle, ObiSurfing, ObiSwell, ObiSwimming, ObiSwitch01Off, ObiSwitch01On, ObiSwitch02Off, ObiSwitch02On, ObiSwitch03Off, ObiSwitch03On, ObiSwitchHorizontalOff, ObiSwitchHorizontalOffLarge, ObiSwitchHorizontalOn, ObiSwitchHorizontalOnLarge, ObiSyncGoogle, ObiSystem, ObiTable, ObiTank, ObiTargetAssociatedAisCamera, ObiTargetAssociatedCameraRadar, ObiTargetAssociatedRadarCamera, ObiTargetCameraFilled, ObiTargetCameraOutlined, ObiTargetCancelAllIec, ObiTargetCancelIec, ObiTargetPriorityAisIec, ObiTargetPriorityRadarIec, ObiTargetSelectIec, ObiTargetSettingsProposal, ObiTempCold, ObiTempHot, ObiTempHotcold, ObiTemperatureAir, ObiTemperatureWater, ObiTextIcon, ObiThreewayAcuatorGenericClosed, ObiThreewayAcuatorGenericClosedBottom, ObiThreewayAcuatorGenericClosedLeft, ObiThreewayAcuatorGenericClosedRight, ObiThreewayAcuatorGenericInleftBottom0, ObiThreewayAcuatorGenericInleftBottom100, ObiThreewayAcuatorGenericInleftBottom25, ObiThreewayAcuatorGenericInleftBottom50, ObiThreewayAcuatorGenericInleftBottom75, ObiThreewayAcuatorGenericInleftLeft0, ObiThreewayAcuatorGenericInleftLeft100, ObiThreewayAcuatorGenericInleftLeft25, ObiThreewayAcuatorGenericInleftLeft50, ObiThreewayAcuatorGenericInleftLeft75, ObiThreewayAcuatorGenericInleftRight0, ObiThreewayAcuatorGenericInleftRight100, ObiThreewayAcuatorGenericInleftRight25, ObiThreewayAcuatorGenericInleftRight50, ObiThreewayAcuatorGenericInleftRight75, ObiThreewayAcuatorGenericOpen, ObiThreewayAcuatorPistonClosed, ObiThreewayAcuatorPistonClosedBottom, ObiThreewayAcuatorPistonClosedLeft, ObiThreewayAcuatorPistonClosedRight, ObiThreewayAcuatorPistonInleftBottom0, ObiThreewayAcuatorPistonInleftBottom100, ObiThreewayAcuatorPistonInleftBottom25, ObiThreewayAcuatorPistonInleftBottom50, ObiThreewayAcuatorPistonInleftBottom75, ObiThreewayAcuatorPistonInleftLeft0, ObiThreewayAcuatorPistonInleftLeft100, ObiThreewayAcuatorPistonInleftLeft25, ObiThreewayAcuatorPistonInleftLeft50, ObiThreewayAcuatorPistonInleftLeft75, ObiThreewayAcuatorPistonInleftRight0, ObiThreewayAcuatorPistonInleftRight100, ObiThreewayAcuatorPistonInleftRight25, ObiThreewayAcuatorPistonInleftRight50, ObiThreewayAcuatorPistonInleftRight75, ObiThreewayAcuatorPistonOpen, ObiThreewayAnalogClosed, ObiThreewayAnalogInleftBottom0, ObiThreewayAnalogInleftBottom100, ObiThreewayAnalogInleftBottom25, ObiThreewayAnalogInleftBottom50, ObiThreewayAnalogInleftBottom75, ObiThreewayAnalogInleftLeft0, ObiThreewayAnalogInleftLeft100, ObiThreewayAnalogInleftLeft25, ObiThreewayAnalogInleftLeft50, ObiThreewayAnalogInleftLeft75, ObiThreewayAnalogInleftRight0, ObiThreewayAnalogInleftRight100, ObiThreewayAnalogInleftRight25, ObiThreewayAnalogInleftRight50, ObiThreewayAnalogInleftRight75, ObiThreewayAnalogOpen, ObiThreewayDigitalClosed, ObiThreewayDigitalClosedBottom, ObiThreewayDigitalClosedLeft, ObiThreewayDigitalClosedRight, ObiThreewayDigitalOpen, ObiThreewayDigitalStatic, ObiThreewayStackedClosed, ObiThreewayStackedClosedBottom, ObiThreewayStackedClosedLeft, ObiThreewayStackedClosedRight, ObiThreewayStackedInleftBottom0, ObiThreewayStackedInleftBottom100, ObiThreewayStackedInleftBottom25, ObiThreewayStackedInleftBottom50, ObiThreewayStackedInleftBottom75, ObiThreewayStackedInleftLeft0, ObiThreewayStackedInleftLeft100, ObiThreewayStackedInleftLeft25, ObiThreewayStackedInleftLeft50, ObiThreewayStackedInleftLeft75, ObiThreewayStackedInleftRight0, ObiThreewayStackedInleftRight100, ObiThreewayStackedInleftRight25, ObiThreewayStackedInleftRight50, ObiThreewayStackedInleftRight75, ObiThreewayStackedOpen, ObiTidalIec, ObiTidalWaterLevelInformation, ObiTide, ObiTideHigh, ObiTideLow, ObiTime, ObiTimeLess, ObiTimeMore, ObiTimerGoogle, ObiTouch, ObiTrackNo, ObiTrackOffPort, ObiTrackOffStrb, ObiTrackOn, ObiTransformDiagonal, ObiTransformHorizontal, ObiTransformMove, ObiTransformRotate, ObiTransformVertical, ObiTransformer01, ObiTransformer01Off, ObiTransformer01On, ObiTransformer02, ObiTransformer02Off, ObiTransformer02On, ObiTrend, ObiTrendDown, ObiTrendUp, ObiTrialSettingsProposal, ObiTrophy, ObiTrueRelativeVectorIec, ObiTrueRelativeVectorProposal, ObiTurn, ObiTwowayAcuatorGeneral10, ObiTwowayAcuatorGeneral25, ObiTwowayAcuatorGeneral50, ObiTwowayAcuatorGeneral75, ObiTwowayAcuatorGeneralClosed, ObiTwowayAcuatorGeneralClosedLeft, ObiTwowayAcuatorGeneralClosedRight, ObiTwowayAcuatorGeneralOpen, ObiTwowayAcuatorPiston10, ObiTwowayAcuatorPiston25, ObiTwowayAcuatorPiston50, ObiTwowayAcuatorPiston75, ObiTwowayAcuatorPistonClosed, ObiTwowayAcuatorPistonClosedLeft, ObiTwowayAcuatorPistonClosedRight, ObiTwowayAcuatorPistonOpen, ObiTwowayAnalog10, ObiTwowayAnalog25, ObiTwowayAnalog50, ObiTwowayAnalog75, ObiTwowayAnalogClosed, ObiTwowayAnalogOpen, ObiTwowayDigitalClosed, ObiTwowayDigitalNonReturn, ObiTwowayDigitalOpen, ObiTwowayDigitalStatic, ObiTwowayStacked10, ObiTwowayStacked25, ObiTwowayStacked50, ObiTwowayStacked75, ObiTwowayStackedClosed, ObiTwowayStackedClosedLeft, ObiTwowayStackedClosedRight, ObiTwowayStackedOpen, ObiUnacknowledged, ObiUnacknowledgedFill, ObiUnderwaysailing, ObiUnderwayusingengine, ObiUndoIec, ObiUnfoldLessGoogle, ObiUnfoldMoreGoogle, ObiUnknownobject, ObiUpIec, ObiUsb, ObiUsbStick, ObiUser, ObiUserCrewHardhat, ObiUserGoogle, ObiUserProfiles, ObiUserSettings, ObiVesselGenericAnchoredFilled, ObiVesselGenericAnchoredOutlined, ObiVesselGenericDefaultFilled, ObiVesselGenericDefaultOutlined, ObiVesselGenericFastFilled, ObiVesselGenericFastOutlined, ObiVesselGenericMediumFilled, ObiVesselGenericMediumOutlined, ObiVesselGenericSlowFilled, ObiVesselGenericSlowOutlined, ObiVesselGenericStoppedFilled, ObiVesselGenericStoppedOutlined, ObiVesselInDistress, ObiVesselInDistressAis, ObiVesselRemoteIndicator, ObiVesselTypeBargeFilled, ObiVesselTypeBargeOutlined, ObiVesselTypeCargoFilled, ObiVesselTypeCargoOutlined, ObiVesselTypeCruiseFilled, ObiVesselTypeCruiseOutlined, ObiVesselTypeFishingFilled, ObiVesselTypeFishingOutlined, ObiVesselTypeGenericFilled, ObiVesselTypeGenericOutlined, ObiVesselTypeLifeboatFilled, ObiVesselTypeLifeboatOutlined, ObiVesselTypeMilitaryFilled, ObiVesselTypeMilitaryOutlined, ObiVesselTypeMotorBoatFilled, ObiVesselTypeMotorBoatOutlined, ObiVesselTypePassengerFilled, ObiVesselTypePassengerOutlined, ObiVesselTypePilotFilled, ObiVesselTypePilotOutlined, ObiVesselTypePsvFilled, ObiVesselTypePsvOutlined, ObiVesselTypeSailingFilled, ObiVesselTypeSailingOutlined, ObiVesselTypeSarFilled, ObiVesselTypeSarOutlined, ObiVesselTypeSmallCraftOutlined, ObiVesselTypeSmallcraftFilled, ObiVesselTypeSpeedCraftFilled, ObiVesselTypeSpeedCraftOutlined, ObiVesselTypeTankerFilled, ObiVesselTypeTankerOutlined, ObiVesselTypeTugFilled, ObiVesselTypeTugOutlined, ObiVesselTypeUnknownFilled, ObiVesselTypeUnknownOutlined, ObiViewGalleryGoogle, ObiViewSingleGoogle, ObiVisibilityOffGoogle, ObiVisibilityOnGoogle, ObiVolume, ObiVolumeOff, ObiVolumeOn, ObiVoyages, ObiWarningAcknowledgedIec, ObiWarningBadge, ObiWarningBadgeOutline, ObiWarningEmpty, ObiWarningGoogle, ObiWarningNoackIec, ObiWarningRectifiedIec, ObiWarningRectifiedOutlined, ObiWarningSilencedIec, ObiWarningSilencedOutlined, ObiWarningTransferredIec, ObiWarningUnacknowledgedIec, ObiWarningUnacknowledgedOutlined, ObiWaterGoogle, ObiWave, ObiWaypointActiveFilled, ObiWaypointActiveIec, ObiWaypointAddIec, ObiWaypointDeleteIec, ObiWaypointEditIec, ObiWaypointNextFilled, ObiWaypointNextIec, ObiWaypointOptionalFilled, ObiWaypointOptionalIec, ObiWeather, ObiWhale, ObiWidgetAddGoogle, ObiWidgets, ObiWifi2Google, ObiWifi2OffGoogle, ObiWifiBadGoogle, ObiWifiOffGoogle, ObiWifistrengt0Google, ObiWifistrengt1Google, ObiWifistrengt2Google, ObiWifistrengt3Google, ObiWifistrengt4Google, ObiWinch, ObiWind, ObiWindApparent1, ObiWindApparent10, ObiWindApparent11, ObiWindApparent12, ObiWindApparent13, ObiWindApparent14, ObiWindApparent2, ObiWindApparent3, ObiWindApparent4, ObiWindApparent5, ObiWindApparent6, ObiWindApparent7, ObiWindApparent8, ObiWindApparent9, ObiWindShaft1, ObiWindShaft10, ObiWindShaft11, ObiWindShaft12, ObiWindShaft13, ObiWindShaft14, ObiWindShaft2, ObiWindShaft3, ObiWindShaft4, ObiWindShaft5, ObiWindShaft6, ObiWindShaft7, ObiWindShaft8, ObiWindShaft9, ObiWindTrue1, ObiWindTrue10, ObiWindTrue11, ObiWindTrue12, ObiWindTrue13, ObiWindTrue14, ObiWindTrue2, ObiWindTrue3, ObiWindTrue4, ObiWindTrue5, ObiWindTrue6, ObiWindTrue7, ObiWindTrue8, ObiWindTrue9, ObiWindTurbineLand, ObiWindTurbineOcean, ObiWiper, ObiWiperFluid, ObiWipers, ObiWireComingFrom, ObiWireCorner, ObiWireCross, ObiWireDirection, ObiWireEndPoint, ObiWireGoingTo, ObiWireOverlap, ObiWireStraight, ObiWireThreeway, ObiWrench, ObiYaw, PoiBase };
78259
78251
  //# sourceMappingURL=oicl-openbridge-webcomponents-ng.mjs.map