@opentripplanner/core-utils 9.0.0-alpha.26 → 9.0.0-alpha.27
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.
- package/lib/core-utils.story.d.ts +22 -0
- package/lib/core-utils.story.d.ts.map +1 -0
- package/lib/core-utils.story.js +69 -0
- package/lib/core-utils.story.js.map +1 -0
- package/lib/index.d.ts +21 -0
- package/lib/index.d.ts.map +1 -0
- package/lib/itinerary.d.ts +160 -0
- package/lib/itinerary.d.ts.map +1 -0
- package/lib/map.d.ts +20 -0
- package/lib/map.d.ts.map +1 -0
- package/lib/query-gen.d.ts +75 -0
- package/lib/query-gen.d.ts.map +1 -0
- package/lib/route.d.ts +112 -0
- package/lib/route.d.ts.map +1 -0
- package/lib/storage.d.ts +19 -0
- package/lib/storage.d.ts.map +1 -0
- package/lib/time.d.ts +50 -0
- package/lib/time.d.ts.map +1 -0
- package/lib/ui.d.ts +13 -0
- package/lib/ui.d.ts.map +1 -0
- package/package.json +3 -3
- package/tsconfig.tsbuildinfo +1 -0
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
/// <reference types="react" />
|
|
2
|
+
declare const _default: {
|
|
3
|
+
title: string;
|
|
4
|
+
};
|
|
5
|
+
export default _default;
|
|
6
|
+
export declare const RouteColorTester: {
|
|
7
|
+
(): JSX.Element;
|
|
8
|
+
parameters: {
|
|
9
|
+
a11y: {
|
|
10
|
+
config: {
|
|
11
|
+
rules: {
|
|
12
|
+
id: string;
|
|
13
|
+
reviewOnFail: boolean;
|
|
14
|
+
}[];
|
|
15
|
+
};
|
|
16
|
+
};
|
|
17
|
+
storyshots: {
|
|
18
|
+
disable: boolean;
|
|
19
|
+
};
|
|
20
|
+
};
|
|
21
|
+
};
|
|
22
|
+
//# sourceMappingURL=core-utils.story.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core-utils.story.d.ts","sourceRoot":"","sources":["../src/core-utils.story.tsx"],"names":[],"mappings":";;;;AAIA,wBAEE;AA2BF,eAAO,MAAM,gBAAgB;QAAO,WAAW;;;;;;;;;;;;;;CAkB9C,CAAC"}
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) {
|
|
3
|
+
if (k2 === undefined) k2 = k;
|
|
4
|
+
var desc = Object.getOwnPropertyDescriptor(m, k);
|
|
5
|
+
if (!desc || ("get" in desc ? !m.__esModule : desc.writable || desc.configurable)) {
|
|
6
|
+
desc = { enumerable: true, get: function() { return m[k]; } };
|
|
7
|
+
}
|
|
8
|
+
Object.defineProperty(o, k2, desc);
|
|
9
|
+
}) : (function(o, m, k, k2) {
|
|
10
|
+
if (k2 === undefined) k2 = k;
|
|
11
|
+
o[k2] = m[k];
|
|
12
|
+
}));
|
|
13
|
+
var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) {
|
|
14
|
+
Object.defineProperty(o, "default", { enumerable: true, value: v });
|
|
15
|
+
}) : function(o, v) {
|
|
16
|
+
o["default"] = v;
|
|
17
|
+
});
|
|
18
|
+
var __importStar = (this && this.__importStar) || function (mod) {
|
|
19
|
+
if (mod && mod.__esModule) return mod;
|
|
20
|
+
var result = {};
|
|
21
|
+
if (mod != null) for (var k in mod) if (k !== "default" && Object.prototype.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k);
|
|
22
|
+
__setModuleDefault(result, mod);
|
|
23
|
+
return result;
|
|
24
|
+
};
|
|
25
|
+
var __importDefault = (this && this.__importDefault) || function (mod) {
|
|
26
|
+
return (mod && mod.__esModule) ? mod : { "default": mod };
|
|
27
|
+
};
|
|
28
|
+
Object.defineProperty(exports, "__esModule", { value: true });
|
|
29
|
+
exports.RouteColorTester = void 0;
|
|
30
|
+
const react_1 = __importStar(require("react"));
|
|
31
|
+
const styled_components_1 = __importDefault(require("styled-components"));
|
|
32
|
+
const route_1 = require("./route");
|
|
33
|
+
exports.default = {
|
|
34
|
+
title: "core-utils"
|
|
35
|
+
};
|
|
36
|
+
const ColorBlock = styled_components_1.default.div `
|
|
37
|
+
background: ${props => props.bg};
|
|
38
|
+
color: ${props => props.fg};
|
|
39
|
+
padding: 10px;
|
|
40
|
+
`;
|
|
41
|
+
const ColorBlockWrapper = styled_components_1.default.div `
|
|
42
|
+
display: flex;
|
|
43
|
+
flex-direction: row;
|
|
44
|
+
gap: 10px;
|
|
45
|
+
`;
|
|
46
|
+
const ColorPair = ({ fg, bg }) => {
|
|
47
|
+
return (react_1.default.createElement(ColorBlockWrapper, null,
|
|
48
|
+
react_1.default.createElement(ColorBlock, { fg: fg, bg: bg }, "Provided color pair"),
|
|
49
|
+
react_1.default.createElement(ColorBlock, { fg: (0, route_1.getMostReadableTextColor)(bg, fg), bg: bg }, "Corrected color pair")));
|
|
50
|
+
};
|
|
51
|
+
const RouteColorTester = () => {
|
|
52
|
+
const [fg, setFg] = (0, react_1.useState)("#333333");
|
|
53
|
+
const [bg, setBg] = (0, react_1.useState)("#cbeb55");
|
|
54
|
+
return (react_1.default.createElement(react_1.default.Fragment, null,
|
|
55
|
+
react_1.default.createElement(ColorPair, { bg: bg, fg: fg }),
|
|
56
|
+
react_1.default.createElement("label", null,
|
|
57
|
+
"Foreground Color",
|
|
58
|
+
react_1.default.createElement("input", { onChange: e => setFg(e.target.value), type: "color", value: fg })),
|
|
59
|
+
react_1.default.createElement("label", null,
|
|
60
|
+
"Background Color",
|
|
61
|
+
react_1.default.createElement("input", { onChange: e => setBg(e.target.value), type: "color", value: bg }))));
|
|
62
|
+
};
|
|
63
|
+
exports.RouteColorTester = RouteColorTester;
|
|
64
|
+
// Disable color contrast checking for the uncorrected color pairs.
|
|
65
|
+
exports.RouteColorTester.parameters = {
|
|
66
|
+
a11y: { config: { rules: [{ id: "color-contrast", reviewOnFail: true }] } },
|
|
67
|
+
storyshots: { disable: true }
|
|
68
|
+
};
|
|
69
|
+
//# sourceMappingURL=core-utils.story.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"core-utils.story.js","sourceRoot":"","sources":["../src/core-utils.story.tsx"],"names":[],"mappings":";;;;;;;;;;;;;;;;;;;;;;;;;;;;;AAAA,+CAAwC;AACxC,0EAAuC;AACvC,mCAAmD;AAEnD,kBAAe;IACb,KAAK,EAAE,YAAY;CACpB,CAAC;AAEF,MAAM,UAAU,GAAG,2BAAM,CAAC,GAAG,CAA4B;gBACzC,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE;WACtB,KAAK,CAAC,EAAE,CAAC,KAAK,CAAC,EAAE;;CAE3B,CAAC;AAEF,MAAM,iBAAiB,GAAG,2BAAM,CAAC,GAAG,CAAA;;;;CAInC,CAAC;AAEF,MAAM,SAAS,GAAG,CAAC,EAAE,EAAE,EAAE,EAAE,EAA8B,EAAE,EAAE;IAC3D,OAAO,CACL,8BAAC,iBAAiB;QAChB,8BAAC,UAAU,IAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,0BAEb;QACb,8BAAC,UAAU,IAAC,EAAE,EAAE,IAAA,gCAAwB,EAAC,EAAE,EAAE,EAAE,CAAC,EAAE,EAAE,EAAE,EAAE,2BAE3C,CACK,CACrB,CAAC;AACJ,CAAC,CAAC;AAEK,MAAM,gBAAgB,GAAG,GAAgB,EAAE;IAChD,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,GAAG,IAAA,gBAAQ,EAAC,SAAS,CAAC,CAAC;IACxC,MAAM,CAAC,EAAE,EAAE,KAAK,CAAC,GAAG,IAAA,gBAAQ,EAAC,SAAS,CAAC,CAAC;IACxC,OAAO,CACL;QACE,8BAAC,SAAS,IAAC,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,EAAE,GAAc;QAEvC;;YAEE,yCAAO,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,IAAI,EAAC,OAAO,EAAC,KAAK,EAAE,EAAE,GAAI,CACjE;QAER;;YAEE,yCAAO,QAAQ,EAAE,CAAC,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,EAAE,IAAI,EAAC,OAAO,EAAC,KAAK,EAAE,EAAE,GAAI,CACjE,CACP,CACJ,CAAC;AACJ,CAAC,CAAC;AAlBW,QAAA,gBAAgB,oBAkB3B;AACF,mEAAmE;AACnE,wBAAgB,CAAC,UAAU,GAAG;IAC5B,IAAI,EAAE,EAAE,MAAM,EAAE,EAAE,KAAK,EAAE,CAAC,EAAE,EAAE,EAAE,gBAAgB,EAAE,YAAY,EAAE,IAAI,EAAE,CAAC,EAAE,EAAE;IAC3E,UAAU,EAAE,EAAE,OAAO,EAAE,IAAI,EAAE;CAC9B,CAAC"}
|
package/lib/index.d.ts
ADDED
|
@@ -0,0 +1,21 @@
|
|
|
1
|
+
import * as itinerary from "./itinerary";
|
|
2
|
+
import * as map from "./map";
|
|
3
|
+
import * as route from "./route";
|
|
4
|
+
import * as storage from "./storage";
|
|
5
|
+
import * as time from "./time";
|
|
6
|
+
import * as ui from "./ui";
|
|
7
|
+
import * as queryGen from "./query-gen";
|
|
8
|
+
declare const core: {
|
|
9
|
+
itinerary: typeof itinerary;
|
|
10
|
+
map: typeof map;
|
|
11
|
+
profile: any;
|
|
12
|
+
query: any;
|
|
13
|
+
queryGen: typeof queryGen;
|
|
14
|
+
queryParams: any;
|
|
15
|
+
route: typeof route;
|
|
16
|
+
storage: typeof storage;
|
|
17
|
+
time: typeof time;
|
|
18
|
+
ui: typeof ui;
|
|
19
|
+
};
|
|
20
|
+
export default core;
|
|
21
|
+
//# sourceMappingURL=index.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"index.d.ts","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":"AAAA,OAAO,KAAK,SAAS,MAAM,aAAa,CAAC;AACzC,OAAO,KAAK,GAAG,MAAM,OAAO,CAAC;AAI7B,OAAO,KAAK,KAAK,MAAM,SAAS,CAAC;AACjC,OAAO,KAAK,OAAO,MAAM,WAAW,CAAC;AACrC,OAAO,KAAK,IAAI,MAAM,QAAQ,CAAC;AAC/B,OAAO,KAAK,EAAE,MAAM,MAAM,CAAC;AAC3B,OAAO,KAAK,QAAQ,MAAM,aAAa,CAAC;AAExC,QAAA,MAAM,IAAI;;;;;;;;;;;CAWT,CAAC;AAEF,eAAe,IAAI,CAAC"}
|
|
@@ -0,0 +1,160 @@
|
|
|
1
|
+
import { Company, Config, ElevationProfile, FlexBookingInfo, Itinerary, ItineraryOnlyLegsRequired, LatLngArray, Leg, MassUnitOption, Money, Place, Step, Stop, TncFare } from "@opentripplanner/types";
|
|
2
|
+
export declare const transitModes: string[];
|
|
3
|
+
/**
|
|
4
|
+
* @param {config} config OTP-RR configuration object
|
|
5
|
+
* @return {Array} List of all transit modes defined in config; otherwise default mode list
|
|
6
|
+
*/
|
|
7
|
+
export declare function getTransitModes(config: Config): string[];
|
|
8
|
+
export declare function isTransit(mode: string): boolean;
|
|
9
|
+
/**
|
|
10
|
+
* Returns true if the leg pickup rules enabled which require
|
|
11
|
+
* calling ahead for the service to run. "mustPhone" is the only
|
|
12
|
+
* property which encodes this info.
|
|
13
|
+
*/
|
|
14
|
+
export declare function isReservationRequired(leg: Leg): boolean;
|
|
15
|
+
/**
|
|
16
|
+
* Returns true if a user must ask the driver to let the user off
|
|
17
|
+
* or if the user must flag the driver down for pickup.
|
|
18
|
+
* "coordinateWithDriver" in board/alight rule encodes this info.
|
|
19
|
+
*/
|
|
20
|
+
export declare function isCoordinationRequired(leg: Leg): boolean;
|
|
21
|
+
/**
|
|
22
|
+
* The two rules checked by the above two functions are the only values
|
|
23
|
+
* returned by OTP when a leg is a flex leg.
|
|
24
|
+
*/
|
|
25
|
+
export declare function isFlex(leg: Leg): boolean;
|
|
26
|
+
export declare function isAdvanceBookingRequired(info: FlexBookingInfo): boolean;
|
|
27
|
+
export declare function legDropoffRequiresAdvanceBooking(leg: Leg): boolean;
|
|
28
|
+
export declare function isRideshareLeg(leg: Leg): boolean;
|
|
29
|
+
export declare function isWalk(mode: string): boolean;
|
|
30
|
+
export declare function isBicycle(mode: string): boolean;
|
|
31
|
+
export declare function isBicycleRent(mode: string): boolean;
|
|
32
|
+
export declare function isCar(mode: string): boolean;
|
|
33
|
+
export declare function isMicromobility(mode: string): boolean;
|
|
34
|
+
export declare function isAccessMode(mode: string): boolean;
|
|
35
|
+
/**
|
|
36
|
+
* @param {string} modesStr a comma-separated list of OTP modes
|
|
37
|
+
* @return {boolean} whether any of the modes are transit modes
|
|
38
|
+
*/
|
|
39
|
+
export declare function hasTransit(modesStr: string): boolean;
|
|
40
|
+
/**
|
|
41
|
+
* @param {string} modesStr a comma-separated list of OTP modes
|
|
42
|
+
* @return {boolean} whether any of the modes are car-based modes
|
|
43
|
+
*/
|
|
44
|
+
export declare function hasCar(modesStr: string): boolean;
|
|
45
|
+
/**
|
|
46
|
+
* @param {string} modesStr a comma-separated list of OTP modes
|
|
47
|
+
* @return {boolean} whether any of the modes are bicycle-based modes
|
|
48
|
+
*/
|
|
49
|
+
export declare function hasBike(modesStr: string): boolean;
|
|
50
|
+
/**
|
|
51
|
+
* @param {string} modesStr a comma-separated list of OTP modes
|
|
52
|
+
* @return {boolean} whether any of the modes are micromobility-based modes
|
|
53
|
+
*/
|
|
54
|
+
export declare function hasMicromobility(modesStr: string): boolean;
|
|
55
|
+
/**
|
|
56
|
+
* @param {string} modesStr a comma-separated list of OTP modes
|
|
57
|
+
* @return {boolean} whether any of the modes is a hailing mode
|
|
58
|
+
*/
|
|
59
|
+
export declare function hasHail(modesStr: string): boolean;
|
|
60
|
+
/**
|
|
61
|
+
* @param {string} modesStr a comma-separated list of OTP modes
|
|
62
|
+
* @return {boolean} whether any of the modes is a rental mode
|
|
63
|
+
*/
|
|
64
|
+
export declare function hasRental(modesStr: string): boolean;
|
|
65
|
+
export declare function getMapColor(mode: string): string;
|
|
66
|
+
export declare function toSentenceCase(str: string): string;
|
|
67
|
+
/**
|
|
68
|
+
* Derive the company string based on mode and network associated with leg.
|
|
69
|
+
*/
|
|
70
|
+
export declare function getCompanyFromLeg(leg: Leg): string;
|
|
71
|
+
export declare function getItineraryBounds(itinerary: ItineraryOnlyLegsRequired): LatLngArray[];
|
|
72
|
+
/**
|
|
73
|
+
* Return a coords object that encloses the given leg's geometry.
|
|
74
|
+
*/
|
|
75
|
+
export declare function getLegBounds(leg: Leg): number[][];
|
|
76
|
+
export declare function legLocationAtDistance(leg: Leg, distance: number): number[];
|
|
77
|
+
export declare function legElevationAtDistance(points: number[][], distance: number): number;
|
|
78
|
+
export declare function getElevationProfile(steps: Step[], unitConversion?: number): ElevationProfile;
|
|
79
|
+
/**
|
|
80
|
+
* Uses canvas.measureText to compute and return the width of the given text of given font in pixels.
|
|
81
|
+
*
|
|
82
|
+
* @param {string} text The text to be rendered.
|
|
83
|
+
* @param {string} font The css font descriptor that text is to be rendered with (e.g. "bold 14px verdana").
|
|
84
|
+
*
|
|
85
|
+
* @see https://stackoverflow.com/questions/118241/calculate-text-width-with-javascript/21015393#21015393
|
|
86
|
+
*/
|
|
87
|
+
export declare function getTextWidth(text: string, font?: string): number;
|
|
88
|
+
/**
|
|
89
|
+
* Get the configured company object for the given network string if the company
|
|
90
|
+
* has been defined in the provided companies array config.
|
|
91
|
+
*/
|
|
92
|
+
export declare function getCompanyForNetwork(networkString: string, companies?: Company[]): Company;
|
|
93
|
+
/**
|
|
94
|
+
* Get a string label to display from a list of vehicle rental networks.
|
|
95
|
+
*
|
|
96
|
+
* @param {Array<string>} networks A list of network ids.
|
|
97
|
+
* @param {Array<object>} [companies=[]] An optional list of the companies config.
|
|
98
|
+
* @return {string} A label for use in presentation on a website.
|
|
99
|
+
*/
|
|
100
|
+
export declare function getCompaniesLabelFromNetworks(networks: string | string[], companies?: Company[]): string;
|
|
101
|
+
export declare function getTNCLocation(leg: Leg, type: string): string;
|
|
102
|
+
export declare function calculatePhysicalActivity(itinerary: ItineraryOnlyLegsRequired): {
|
|
103
|
+
bikeDuration: number;
|
|
104
|
+
caloriesBurned: number;
|
|
105
|
+
walkDuration: number;
|
|
106
|
+
};
|
|
107
|
+
/**
|
|
108
|
+
* For an itinerary, calculates the TNC fares and returns an object with
|
|
109
|
+
* these values and currency info.
|
|
110
|
+
* It is assumed that the same currency is used for all TNC legs.
|
|
111
|
+
*/
|
|
112
|
+
export declare function calculateTncFares(itinerary: ItineraryOnlyLegsRequired): TncFare;
|
|
113
|
+
/**
|
|
114
|
+
* For a given fare component (either total fare or component parts), returns
|
|
115
|
+
* an object with the fare value (in cents).
|
|
116
|
+
*/
|
|
117
|
+
export declare function getTransitFare(fareComponent: Money): {
|
|
118
|
+
currencyCode: string;
|
|
119
|
+
transitFare: number;
|
|
120
|
+
};
|
|
121
|
+
/**
|
|
122
|
+
* @param {itinerary} itinerary OTP trip itinierary, only legs is required.
|
|
123
|
+
* @param {carbonIntensity} carbonIntensity carbon intensity by mode in grams/meter
|
|
124
|
+
* @param {units} units units to be used in return value
|
|
125
|
+
* @return Amount of carbon in chosen unit
|
|
126
|
+
*/
|
|
127
|
+
export declare function calculateEmissions(itinerary: ItineraryOnlyLegsRequired, carbonIntensity?: Record<string, number>, units?: MassUnitOption): number;
|
|
128
|
+
/**
|
|
129
|
+
* Returns the user-facing stop id to display for a stop or place, using the following priority:
|
|
130
|
+
* 1. stop code,
|
|
131
|
+
* 2. stop id without the agency id portion, if stop id contains an agency portion,
|
|
132
|
+
* 3. stop id, whether null or not (this is the fallback case).
|
|
133
|
+
*/
|
|
134
|
+
export declare function getDisplayedStopId(placeOrStop: Place | Stop): string;
|
|
135
|
+
/**
|
|
136
|
+
* Adds the fare product info to each leg in an itinerary, from the itinerary's fare property
|
|
137
|
+
* @param itinerary Itinerary with legProducts in fare object
|
|
138
|
+
* @returns Itinerary with legs that have fare products attached to them
|
|
139
|
+
*/
|
|
140
|
+
export declare function getLegsWithFares(itinerary: Itinerary): Leg[];
|
|
141
|
+
/**
|
|
142
|
+
* Extracts useful data from the fare products on a leg, such as the leg cost and transfer info.
|
|
143
|
+
* @param leg Leg with fare products (must have used getLegsWithFares)
|
|
144
|
+
* @param category Rider category
|
|
145
|
+
* @param container Fare container (cash, electronic)
|
|
146
|
+
* @returns Object containing price as well as the transfer discount amount, if a transfer was used.
|
|
147
|
+
*/
|
|
148
|
+
export declare function getLegCost(leg: Leg, category: string, container: string): {
|
|
149
|
+
price?: Money;
|
|
150
|
+
transferAmount?: number;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* Returns the total itinerary cost for a given set of legs.
|
|
154
|
+
* @param legs Itinerary legs with fare products (must have used getLegsWithFares)
|
|
155
|
+
* @param category Rider category (youth, regular, senior)
|
|
156
|
+
* @param container Fare container (cash, electronic)
|
|
157
|
+
* @returns Money object for the total itinerary cost.
|
|
158
|
+
*/
|
|
159
|
+
export declare function getItineraryCost(legs: Leg[], category: string, container: string): Money;
|
|
160
|
+
//# sourceMappingURL=itinerary.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"itinerary.d.ts","sourceRoot":"","sources":["../src/itinerary.ts"],"names":[],"mappings":"AACA,OAAO,EACL,OAAO,EACP,MAAM,EACN,gBAAgB,EAChB,eAAe,EACf,SAAS,EACT,yBAAyB,EACzB,WAAW,EACX,GAAG,EACH,cAAc,EACd,KAAK,EACL,KAAK,EACL,IAAI,EACJ,IAAI,EACJ,OAAO,EACR,MAAM,wBAAwB,CAAC;AAIhC,eAAO,MAAM,YAAY,UAOxB,CAAC;AAEF;;;GAGG;AAEH,wBAAgB,eAAe,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,EAAE,CAOxD;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAE/C;AAED;;;;GAIG;AACH,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAEvD;AACD;;;;GAIG;AACH,wBAAgB,sBAAsB,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAKxD;AACD;;;GAGG;AACH,wBAAgB,MAAM,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAExC;AAED,wBAAgB,wBAAwB,CAAC,IAAI,EAAE,eAAe,GAAG,OAAO,CAEvE;AACD,wBAAgB,gCAAgC,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAElE;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,GAAG,GAAG,OAAO,CAEhD;AAED,wBAAgB,MAAM,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAI5C;AAED,wBAAgB,SAAS,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAI/C;AAED,wBAAgB,aAAa,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAInD;AAED,wBAAgB,KAAK,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAG3C;AAED,wBAAgB,eAAe,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAGrD;AAED,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,GAAG,OAAO,CAQlD;AAED;;;GAGG;AACH,wBAAgB,UAAU,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAEpD;AAED;;;GAGG;AACH,wBAAgB,MAAM,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAEhD;AAED;;;GAGG;AACH,wBAAgB,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAIjD;AAED;;;GAGG;AACH,wBAAgB,gBAAgB,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAE1D;AAED;;;GAGG;AACH,wBAAgB,OAAO,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAEjD;AAED;;;GAGG;AACH,wBAAgB,SAAS,CAAC,QAAQ,EAAE,MAAM,GAAG,OAAO,CAEnD;AAED,wBAAgB,WAAW,CAAC,IAAI,EAAE,MAAM,GAAG,MAAM,CAYhD;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,CAMlD;AAED;;GAEG;AACH,wBAAgB,iBAAiB,CAAC,GAAG,EAAE,GAAG,GAAG,MAAM,CA2BlD;AAED,wBAAgB,kBAAkB,CAChC,SAAS,EAAE,yBAAyB,GACnC,WAAW,EAAE,CASf;AAED;;GAEG;AACH,wBAAgB,YAAY,CAAC,GAAG,EAAE,GAAG,GAAG,MAAM,EAAE,EAAE,CAYjD;AAID,wBAAgB,qBAAqB,CAAC,GAAG,EAAE,GAAG,EAAE,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,CAc1E;AAID,wBAAgB,sBAAsB,CACpC,MAAM,EAAE,MAAM,EAAE,EAAE,EAClB,QAAQ,EAAE,MAAM,GACf,MAAM,CAkCR;AAID,wBAAgB,mBAAmB,CACjC,KAAK,EAAE,IAAI,EAAE,EACb,cAAc,SAAI,GACjB,gBAAgB,CAqClB;AAED;;;;;;;GAOG;AACH,wBAAgB,YAAY,CAAC,IAAI,EAAE,MAAM,EAAE,IAAI,SAAe,GAAG,MAAM,CAYtE;AAED;;;GAGG;AACH,wBAAgB,oBAAoB,CAClC,aAAa,EAAE,MAAM,EACrB,SAAS,GAAE,OAAO,EAAO,GACxB,OAAO,CAST;AAED;;;;;;GAMG;AACH,wBAAgB,6BAA6B,CAC3C,QAAQ,EAAE,MAAM,GAAG,MAAM,EAAE,EAC3B,SAAS,GAAE,OAAO,EAAO,GACxB,MAAM,CASR;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,GAAG,EAAE,IAAI,EAAE,MAAM,GAAG,MAAM,CAG7D;AAED,wBAAgB,yBAAyB,CACvC,SAAS,EAAE,yBAAyB,GACnC;IACD,YAAY,EAAE,MAAM,CAAC;IACrB,cAAc,EAAE,MAAM,CAAC;IACvB,YAAY,EAAE,MAAM,CAAC;CACtB,CAcA;AAED;;;;GAIG;AACH,wBAAgB,iBAAiB,CAC/B,SAAS,EAAE,yBAAyB,GACnC,OAAO,CAmBT;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAC5B,aAAa,EAAE,KAAK,GACnB;IACD,YAAY,EAAE,MAAM,CAAC;IACrB,WAAW,EAAE,MAAM,CAAC;CACrB,CAUA;AA2BD;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAEhC,SAAS,EAAE,yBAAyB,EACpC,eAAe,GAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAM,EAC5C,KAAK,CAAC,EAAE,cAAc,GACrB,MAAM,CA2BR;AAED;;;;;GAKG;AACH,wBAAgB,kBAAkB,CAAC,WAAW,EAAE,KAAK,GAAG,IAAI,GAAG,MAAM,CASpE;AAED;;;;GAIG;AACH,wBAAgB,gBAAgB,CAAC,SAAS,EAAE,SAAS,GAAG,GAAG,EAAE,CAO5D;AAED;;;;;;GAMG;AACH,wBAAgB,UAAU,CACxB,GAAG,EAAE,GAAG,EACR,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,GAChB;IAAE,KAAK,CAAC,EAAE,KAAK,CAAC;IAAC,cAAc,CAAC,EAAE,MAAM,CAAA;CAAE,CAgB5C;AAED;;;;;;GAMG;AACH,wBAAgB,gBAAgB,CAC9B,IAAI,EAAE,GAAG,EAAE,EACX,QAAQ,EAAE,MAAM,EAChB,SAAS,EAAE,MAAM,GAChB,KAAK,CAWP"}
|
package/lib/map.d.ts
ADDED
|
@@ -0,0 +1,20 @@
|
|
|
1
|
+
import { LatLngArray, Location, UserPosition } from "@opentripplanner/types";
|
|
2
|
+
export declare function currentPositionToLocation(currentPosition: UserPosition): Location;
|
|
3
|
+
export declare function coordsToString(coords: number[]): string;
|
|
4
|
+
export declare function stringToCoords(str: string): number[];
|
|
5
|
+
export declare function constructLocation(latlng: {
|
|
6
|
+
lat: number;
|
|
7
|
+
lng: number;
|
|
8
|
+
}): Location;
|
|
9
|
+
export declare function matchLatLon(location1: Location, location2: Location): boolean;
|
|
10
|
+
declare type TransitivePlaceRaw = {
|
|
11
|
+
place_id: string;
|
|
12
|
+
};
|
|
13
|
+
export declare function isBikeshareStation(place: TransitivePlaceRaw): boolean;
|
|
14
|
+
export declare function isEScooterStation(place: TransitivePlaceRaw): boolean;
|
|
15
|
+
export declare function isCarWalkTransition(place: TransitivePlaceRaw): boolean;
|
|
16
|
+
export declare function isValidLat(lat: number): boolean;
|
|
17
|
+
export declare function isValidLng(lng: number): boolean;
|
|
18
|
+
export declare function isValidLatLng(arr: LatLngArray): boolean;
|
|
19
|
+
export {};
|
|
20
|
+
//# sourceMappingURL=map.d.ts.map
|
package/lib/map.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"map.d.ts","sourceRoot":"","sources":["../src/map.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,YAAY,EAAE,MAAM,wBAAwB,CAAC;AAE7E,wBAAgB,yBAAyB,CACvC,eAAe,EAAE,YAAY,GAC5B,QAAQ,CAYV;AAID,wBAAgB,cAAc,CAAC,MAAM,EAAE,MAAM,EAAE,GAAG,MAAM,CAEvD;AAED,wBAAgB,cAAc,CAAC,GAAG,EAAE,MAAM,GAAG,MAAM,EAAE,CAEpD;AAED,wBAAgB,iBAAiB,CAAC,MAAM,EAAE;IACxC,GAAG,EAAE,MAAM,CAAC;IACZ,GAAG,EAAE,MAAM,CAAC;CACb,GAAG,QAAQ,CAKX;AAED,wBAAgB,WAAW,CAAC,SAAS,EAAE,QAAQ,EAAE,SAAS,EAAE,QAAQ,GAAG,OAAO,CAG7E;AAED,aAAK,kBAAkB,GAAG;IACxB,QAAQ,EAAE,MAAM,CAAC;CAClB,CAAC;AACF,wBAAgB,kBAAkB,CAAC,KAAK,EAAE,kBAAkB,GAAG,OAAO,CAErE;AAED,wBAAgB,iBAAiB,CAAC,KAAK,EAAE,kBAAkB,GAAG,OAAO,CAEpE;AAED,wBAAgB,mBAAmB,CAAC,KAAK,EAAE,kBAAkB,GAAG,OAAO,CAEtE;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAE/C;AAED,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,OAAO,CAE/C;AAED,wBAAgB,aAAa,CAAC,GAAG,EAAE,WAAW,GAAG,OAAO,CAOvD"}
|
|
@@ -0,0 +1,75 @@
|
|
|
1
|
+
import { LonLatOutput } from "@conveyal/lonlat";
|
|
2
|
+
import { ModeSetting, TransportMode } from "@opentripplanner/types";
|
|
3
|
+
declare type InputBanned = {
|
|
4
|
+
routes?: string;
|
|
5
|
+
agencies?: string;
|
|
6
|
+
trips?: string;
|
|
7
|
+
stops?: string;
|
|
8
|
+
stopsHard?: string;
|
|
9
|
+
};
|
|
10
|
+
declare type InputPreferred = {
|
|
11
|
+
routes?: string;
|
|
12
|
+
agencies?: string;
|
|
13
|
+
unpreferredCost?: string;
|
|
14
|
+
};
|
|
15
|
+
declare type OTPQueryParams = {
|
|
16
|
+
arriveBy: boolean;
|
|
17
|
+
date?: string;
|
|
18
|
+
from: LonLatOutput & {
|
|
19
|
+
name?: string;
|
|
20
|
+
};
|
|
21
|
+
modes: TransportMode[];
|
|
22
|
+
modeSettings: ModeSetting[];
|
|
23
|
+
time?: string;
|
|
24
|
+
numItineraries?: number;
|
|
25
|
+
to: LonLatOutput & {
|
|
26
|
+
name?: string;
|
|
27
|
+
};
|
|
28
|
+
banned?: InputBanned;
|
|
29
|
+
preferred?: InputPreferred;
|
|
30
|
+
};
|
|
31
|
+
declare type GraphQLQuery = {
|
|
32
|
+
query: string;
|
|
33
|
+
variables: Record<string, unknown>;
|
|
34
|
+
};
|
|
35
|
+
/**
|
|
36
|
+
* Mode Settings can contain additional modes to add to the query,
|
|
37
|
+
* this function extracts those additional modes from the settings
|
|
38
|
+
* and returns them in an array.
|
|
39
|
+
* @param modeSettings List of mode settings with values populated
|
|
40
|
+
* @returns Additional transport modes to add to query
|
|
41
|
+
*/
|
|
42
|
+
export declare function extractAdditionalModes(modeSettings: ModeSetting[], enabledModes: TransportMode[]): TransportMode[];
|
|
43
|
+
/**
|
|
44
|
+
* This constant maps all the transport mode to a broader mode type,
|
|
45
|
+
* which is used to determine the valid combinations of modes used in query generation.
|
|
46
|
+
*/
|
|
47
|
+
export declare const SIMPLIFICATIONS: {
|
|
48
|
+
AIRPLANE: string;
|
|
49
|
+
BICYCLE: string;
|
|
50
|
+
BUS: string;
|
|
51
|
+
CABLE_CAR: string;
|
|
52
|
+
CAR: string;
|
|
53
|
+
FERRY: string;
|
|
54
|
+
FLEX: string;
|
|
55
|
+
FUNICULAR: string;
|
|
56
|
+
GONDOLA: string;
|
|
57
|
+
RAIL: string;
|
|
58
|
+
SCOOTER: string;
|
|
59
|
+
SUBWAY: string;
|
|
60
|
+
TRAM: string;
|
|
61
|
+
TRANSIT: string;
|
|
62
|
+
WALK: string;
|
|
63
|
+
};
|
|
64
|
+
export declare const TRANSIT_SUBMODES: string[];
|
|
65
|
+
export declare const TRANSIT_SUBMODES_AND_TRANSIT: string[];
|
|
66
|
+
/**
|
|
67
|
+
* Generates a list of queries for OTP to get a comprehensive
|
|
68
|
+
* set of results based on the modes input.
|
|
69
|
+
* @param params OTP Query Params
|
|
70
|
+
* @returns Set of parameters to generate queries
|
|
71
|
+
*/
|
|
72
|
+
export declare function generateCombinations(params: OTPQueryParams): OTPQueryParams[];
|
|
73
|
+
export declare function generateOtp2Query({ arriveBy, banned, date, from, modes, modeSettings, numItineraries, preferred, time, to }: OTPQueryParams): GraphQLQuery;
|
|
74
|
+
export {};
|
|
75
|
+
//# sourceMappingURL=query-gen.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"query-gen.d.ts","sourceRoot":"","sources":["../src/query-gen.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,YAAY,EAAE,MAAM,kBAAkB,CAAC;AAEhD,OAAO,EACL,WAAW,EAEX,aAAa,EACd,MAAM,wBAAwB,CAAC;AAIhC,aAAK,WAAW,GAAG;IACjB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,SAAS,CAAC,EAAE,MAAM,CAAC;CACpB,CAAC;AAEF,aAAK,cAAc,GAAG;IACpB,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,QAAQ,CAAC,EAAE,MAAM,CAAC;IAClB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,CAAC;AAEF,aAAK,cAAc,GAAG;IACpB,QAAQ,EAAE,OAAO,CAAC;IAClB,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,IAAI,EAAE,YAAY,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACvC,KAAK,EAAE,aAAa,EAAE,CAAC;IACvB,YAAY,EAAE,WAAW,EAAE,CAAC;IAC5B,IAAI,CAAC,EAAE,MAAM,CAAC;IACd,cAAc,CAAC,EAAE,MAAM,CAAC;IACxB,EAAE,EAAE,YAAY,GAAG;QAAE,IAAI,CAAC,EAAE,MAAM,CAAA;KAAE,CAAC;IACrC,MAAM,CAAC,EAAE,WAAW,CAAC;IACrB,SAAS,CAAC,EAAE,cAAc,CAAC;CAC5B,CAAC;AAEF,aAAK,YAAY,GAAG;IAClB,KAAK,EAAE,MAAM,CAAC;IACd,SAAS,EAAE,MAAM,CAAC,MAAM,EAAE,OAAO,CAAC,CAAC;CACpC,CAAC;AAEF;;;;;;GAMG;AACH,wBAAgB,sBAAsB,CACpC,YAAY,EAAE,WAAW,EAAE,EAC3B,YAAY,EAAE,aAAa,EAAE,GAC5B,aAAa,EAAE,CAwBjB;AAoBD;;;GAGG;AACH,eAAO,MAAM,eAAe;;;;;;;;;;;;;;;;CAgB3B,CAAC;AAeF,eAAO,MAAM,gBAAgB,UAE5B,CAAC;AACF,eAAO,MAAM,4BAA4B,UAExC,CAAC;AA2CF;;;;;GAKG;AACH,wBAAgB,oBAAoB,CAAC,MAAM,EAAE,cAAc,GAAG,cAAc,EAAE,CAc7E;AAED,wBAAgB,iBAAiB,CAAC,EAChC,QAAQ,EACR,MAAM,EACN,IAAI,EACJ,IAAI,EACJ,KAAK,EACL,YAAY,EACZ,cAAc,EACd,SAAS,EACT,IAAI,EACJ,EAAE,EACH,EAAE,cAAc,GAAG,YAAY,CAmC/B"}
|
package/lib/route.d.ts
ADDED
|
@@ -0,0 +1,112 @@
|
|
|
1
|
+
import { Leg, Route, TransitOperator } from "@opentripplanner/types";
|
|
2
|
+
/**
|
|
3
|
+
* Returns the transit operator (if an exact match is found) from the transit
|
|
4
|
+
* operators config value. It is critical to use both the feedId and agencyId in
|
|
5
|
+
* this method because it is possible in OTP for there to be a duplicate
|
|
6
|
+
* agencyId in separate feeds.
|
|
7
|
+
*
|
|
8
|
+
* @param {string} feedId The feedId that this transit agency belongs to
|
|
9
|
+
* @param {string} agencyId The agencyId of the transit agency
|
|
10
|
+
* @param {array} transitOperators The transitOperators list from the config
|
|
11
|
+
* @return {object} The transitOperator if a match was found or null if no match
|
|
12
|
+
* was found
|
|
13
|
+
*/
|
|
14
|
+
export declare function getTransitOperatorFromFeedIdAndAgencyId(feedId: string, agencyId: string | number, transitOperators: TransitOperator[]): TransitOperator;
|
|
15
|
+
/**
|
|
16
|
+
* Looks up an operator from the provided leg.
|
|
17
|
+
*
|
|
18
|
+
* @param {object} leg The Itinerary Leg from which to find the transit
|
|
19
|
+
* operator
|
|
20
|
+
* @param {object} transitOperators transitOperators from config.
|
|
21
|
+
* @return {object} the operator if one was found or null if no match was found
|
|
22
|
+
*/
|
|
23
|
+
export declare function getTransitOperatorFromLeg(leg: Leg, transitOperators: TransitOperator[]): TransitOperator;
|
|
24
|
+
/**
|
|
25
|
+
* Looks up an operator from the provided configuration given an OTP route.
|
|
26
|
+
* NOTE: this assumes the use of the OTP Route model or a modified OTP
|
|
27
|
+
* RouteShort model (such as the one found in the IBI fork of OTP) that also
|
|
28
|
+
* returns the agencyId.
|
|
29
|
+
*
|
|
30
|
+
* @param {object} route Either an OTP Route or RouteShort model
|
|
31
|
+
* @param {array} transitOperators transitOperators from config
|
|
32
|
+
* @return {object} the operator if one was found or null if no match was found
|
|
33
|
+
*/
|
|
34
|
+
export declare function getTransitOperatorFromOtpRoute(route: Route, transitOperators: TransitOperator[]): TransitOperator;
|
|
35
|
+
/**
|
|
36
|
+
* Checks whether an appropriate comparison of numeric values can be made for
|
|
37
|
+
* sorting purposes. If both values are not valid numbers according to the
|
|
38
|
+
* isNaN check, then this function returns undefined which indicates that a
|
|
39
|
+
* secondary sorting criteria should be used instead. If one value is valid and
|
|
40
|
+
* the other is not, then the valid value will be given sorting priority. If
|
|
41
|
+
* both values are valid numbers, the difference is obtained as the sort value.
|
|
42
|
+
*
|
|
43
|
+
* An optional argument can be provided which will be used to obtain the
|
|
44
|
+
* comparison value from the comparison function arguments.
|
|
45
|
+
*
|
|
46
|
+
* IMPORTANT: the comparison values must be numeric values or at least be
|
|
47
|
+
* attempted to be converted to numeric values! If one of the arguments is
|
|
48
|
+
* something crazy like an empty string, unexpected behavior will occur because
|
|
49
|
+
* JavaScript.
|
|
50
|
+
*
|
|
51
|
+
* @param {function} [objGetterFn] An optional function to obtain the
|
|
52
|
+
* comparison value from the comparator function arguments
|
|
53
|
+
*/
|
|
54
|
+
export declare function makeNumericValueComparator(objGetterFn?: (item: Route) => number): (a: number, b: number) => number;
|
|
55
|
+
/**
|
|
56
|
+
* Create a comparator function that compares string values. The comparison
|
|
57
|
+
* values feed to the sort comparator function are assumed to be objects that
|
|
58
|
+
* will have either undefined, null or string values at the given key. If one
|
|
59
|
+
* object has undefined, null or an empty string, but the other does have a
|
|
60
|
+
* string with length > 0, then that string will get priority.
|
|
61
|
+
*
|
|
62
|
+
* @param {function} [objGetterFn] An optional function to obtain the
|
|
63
|
+
* comparison value from the comparator function arguments
|
|
64
|
+
*/
|
|
65
|
+
export declare function makeStringValueComparator(objGetterFn?: (item: Route) => string): (a: string, b: string) => number;
|
|
66
|
+
/**
|
|
67
|
+
* Creates a sort comparator function to compares routes for the purposes of
|
|
68
|
+
* sorting and displaying in a user interface. This takes in a single optional
|
|
69
|
+
* argument which should be a list of transitOperators as defined in the config
|
|
70
|
+
* file. Due to GTFS feeds having varying levels of data quality, a multi-
|
|
71
|
+
* criteria sort is needed to account for various differences. The criteria
|
|
72
|
+
* included here are each applied to the routes in the order listed. If a given
|
|
73
|
+
* sort criterion yields equivalence (e.g., two routes have the short name
|
|
74
|
+
* "20"), the comparator falls back onto the next sort criterion (e.g., long
|
|
75
|
+
* name). The sort operates on the following values (in order):
|
|
76
|
+
*
|
|
77
|
+
* 1. Transit Operator. The transit operator will be attempted to be obtained
|
|
78
|
+
* for each route. If no argument is provided when creating this comparator
|
|
79
|
+
* function, then routes will be sorted by their agency's name. If an
|
|
80
|
+
* argument is provided and a match is found based off of the route's feed_id
|
|
81
|
+
* and agency_id and a transitOperator's feed_id and agency_id, then the
|
|
82
|
+
* field transitOperator.order will be used as the comparator value as long
|
|
83
|
+
* as it is numeric. If it is not numeric, a value is returned indicating
|
|
84
|
+
* that this transit operator should be placed at the end of the list.
|
|
85
|
+
* 2. sortOrder. Routes that do not have a valid sortOrder will be placed
|
|
86
|
+
* beneath those that do.
|
|
87
|
+
* 3. route type (OTP mode). See routeTypeComparator code for prioritization of
|
|
88
|
+
* route types.
|
|
89
|
+
* 4. shortNames that begin with alphabetic characters. shortNames that do not
|
|
90
|
+
* start with alphabetic characters will be place beneath those that do.
|
|
91
|
+
* 5. shortName as integer. shortNames that cannot be parsed as integers will
|
|
92
|
+
* be placed beneath those that are valid.
|
|
93
|
+
* 6. shortName as string. Routes without shortNames will be placed beneath
|
|
94
|
+
* those with shortNames.
|
|
95
|
+
* 7. longName as string.
|
|
96
|
+
*/
|
|
97
|
+
export declare function makeRouteComparator(transitOperators: TransitOperator[]): (a: number, b: number) => number;
|
|
98
|
+
/**
|
|
99
|
+
* Tests if a pair of colors is readable. If it is, that readable color is returned.
|
|
100
|
+
* If it is not, a more appropriate alternative is returned.
|
|
101
|
+
*
|
|
102
|
+
* Uses algorithm based on combined luminance. Values have been derived from
|
|
103
|
+
* looking at real agency color pairings. These pairings are difficult to
|
|
104
|
+
* generate for, as some colors see both white and black used by different agencies.
|
|
105
|
+
*
|
|
106
|
+
* This method therefore can accept multiple colors (including black and white) for the same background color.
|
|
107
|
+
*
|
|
108
|
+
* @param backgroundColor A hex string, usually the "routeColor"
|
|
109
|
+
* @param proposedTextColor A hex string, usually the "routeTextColor"
|
|
110
|
+
*/
|
|
111
|
+
export declare function getMostReadableTextColor(backgroundColor: string, proposedTextColor?: string): string;
|
|
112
|
+
//# sourceMappingURL=route.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"route.d.ts","sourceRoot":"","sources":["../src/route.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,GAAG,EAAE,KAAK,EAAE,eAAe,EAAE,MAAM,wBAAwB,CAAC;AAErE;;;;;;;;;;;GAWG;AACH,wBAAgB,uCAAuC,CACrD,MAAM,EAAE,MAAM,EACd,QAAQ,EAAE,MAAM,GAAG,MAAM,EACzB,gBAAgB,EAAE,eAAe,EAAE,GAClC,eAAe,CAQjB;AAED;;;;;;;GAOG;AACH,wBAAgB,yBAAyB,CACvC,GAAG,EAAE,GAAG,EACR,gBAAgB,EAAE,eAAe,EAAE,GAClC,eAAe,CAQjB;AAED;;;;;;;;;GASG;AACH,wBAAgB,8BAA8B,CAC5C,KAAK,EAAE,KAAK,EACZ,gBAAgB,EAAE,eAAe,EAAE,GAClC,eAAe,CAkBjB;AA0MD;;;;;;;;;;;;;;;;;;GAkBG;AACH,wBAAgB,0BAA0B,CACxC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,KAAK,KAAK,MAAM,OAI1B,MAAM,KAAK,MAAM,KAAG,MAAM,CAatC;AAED;;;;;;;;;GASG;AACH,wBAAgB,yBAAyB,CACvC,WAAW,CAAC,EAAE,CAAC,IAAI,EAAE,KAAK,KAAK,MAAM,OAE1B,MAAM,KAAK,MAAM,KAAG,MAAM,CAatC;AAqCD;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;GA8BG;AACH,wBAAgB,mBAAmB,CACjC,gBAAgB,EAAE,eAAe,EAAE,GAClC,CAAC,CAAC,EAAE,MAAM,EAAE,CAAC,EAAE,MAAM,KAAK,MAAM,CAUlC;AAED;;;;;;;;;;;;GAYG;AACH,wBAAgB,wBAAwB,CACtC,eAAe,EAAE,MAAM,EACvB,iBAAiB,CAAC,EAAE,MAAM,GACzB,MAAM,CA2BR"}
|
package/lib/storage.d.ts
ADDED
|
@@ -0,0 +1,19 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Store a javascript object at the specified key.
|
|
3
|
+
*/
|
|
4
|
+
export declare function storeItem(key: string, object: unknown): void;
|
|
5
|
+
/**
|
|
6
|
+
* Retrieve a javascript object at the specified key. If not found, defaults to
|
|
7
|
+
* null or, the optionally provided notFoundValue.
|
|
8
|
+
*/
|
|
9
|
+
export declare function getItem(key: string, notFoundValue?: unknown): unknown;
|
|
10
|
+
/**
|
|
11
|
+
* Remove item at specified key.
|
|
12
|
+
*/
|
|
13
|
+
export declare function removeItem(key: string): void;
|
|
14
|
+
/**
|
|
15
|
+
* Generate a random ID. This might not quite be a UUID, but it serves our
|
|
16
|
+
* purposes for now.
|
|
17
|
+
*/
|
|
18
|
+
export declare function randId(): string;
|
|
19
|
+
//# sourceMappingURL=storage.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"storage.d.ts","sourceRoot":"","sources":["../src/storage.ts"],"names":[],"mappings":"AAIA;;GAEG;AACH,wBAAgB,SAAS,CAAC,GAAG,EAAE,MAAM,EAAE,MAAM,EAAE,OAAO,GAAG,IAAI,CAK5D;AAED;;;GAGG;AACH,wBAAgB,OAAO,CAAC,GAAG,EAAE,MAAM,EAAE,aAAa,GAAE,OAAc,GAAG,OAAO,CAY3E;AAED;;GAEG;AACH,wBAAgB,UAAU,CAAC,GAAG,EAAE,MAAM,GAAG,IAAI,CAE5C;AAED;;;GAGG;AACH,wBAAgB,MAAM,IAAI,MAAM,CAI/B"}
|
package/lib/time.d.ts
ADDED
|
@@ -0,0 +1,50 @@
|
|
|
1
|
+
import { Config } from "@opentripplanner/types";
|
|
2
|
+
export declare const OTP_API_DATE_FORMAT = "yyyy-MM-dd";
|
|
3
|
+
export declare const OTP_API_TIME_FORMAT = "HH:mm";
|
|
4
|
+
/**
|
|
5
|
+
* Breaks up a duration in seconds into hours, minutes, and seconds.
|
|
6
|
+
* @param {number} seconds The number of seconds to break up
|
|
7
|
+
* @returns an object with fields with the corresponding, hours, minutes, seconds.
|
|
8
|
+
*/
|
|
9
|
+
export declare function toHoursMinutesSeconds(seconds: number): {
|
|
10
|
+
hours: number;
|
|
11
|
+
minutes: number;
|
|
12
|
+
seconds: number;
|
|
13
|
+
};
|
|
14
|
+
/**
|
|
15
|
+
* @param {[type]} config the OTP config object found in store
|
|
16
|
+
* @return {string} the config-defined time formatter or HH:mm (24-hr time)
|
|
17
|
+
*/
|
|
18
|
+
export declare function getTimeFormat(config: Config): string;
|
|
19
|
+
export declare function getDateFormat(config: Config): string;
|
|
20
|
+
/** @deprecated */
|
|
21
|
+
export declare function getLongDateFormat(config: Config): string;
|
|
22
|
+
/**
|
|
23
|
+
* Offsets a time according to the provided time options
|
|
24
|
+
* and returns the result.
|
|
25
|
+
*/
|
|
26
|
+
export declare function offsetTime(ms: any, options: any): any;
|
|
27
|
+
/**
|
|
28
|
+
* Formats a seconds after midnight value for display in narrative
|
|
29
|
+
* @param {number} seconds time since midnight in seconds
|
|
30
|
+
* @param {string} timeFormat A valid date-fns time format
|
|
31
|
+
* @return {string} formatted text representation
|
|
32
|
+
*/
|
|
33
|
+
export declare function formatSecondsAfterMidnight(seconds: number, timeFormat: string): string;
|
|
34
|
+
/**
|
|
35
|
+
* Uses Intl.DateTimeFormat() api to get the user's time zone. In a test
|
|
36
|
+
* environment, pulls timezone information from an env variable. Default to
|
|
37
|
+
* GMT+0 if the Intl API is unavailable.
|
|
38
|
+
*/
|
|
39
|
+
export declare function getUserTimezone(fallbackTimezone?: string): string;
|
|
40
|
+
/**
|
|
41
|
+
* Formats current time for use in OTP query
|
|
42
|
+
* The conversion to the user's timezone is needed for testing purposes.
|
|
43
|
+
*/
|
|
44
|
+
export declare function getCurrentTime(timezone?: string): string;
|
|
45
|
+
/**
|
|
46
|
+
* Formats current date for use in OTP query
|
|
47
|
+
* The conversion to the user's timezone is needed for testing purposes.
|
|
48
|
+
*/
|
|
49
|
+
export declare function getCurrentDate(timezone?: string): string;
|
|
50
|
+
//# sourceMappingURL=time.d.ts.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"time.d.ts","sourceRoot":"","sources":["../src/time.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,MAAM,EAAE,MAAM,wBAAwB,CAAC;AAMhD,eAAO,MAAM,mBAAmB,eAAe,CAAC;AAChD,eAAO,MAAM,mBAAmB,UAAU,CAAC;AAE3C;;;;GAIG;AACH,wBAAgB,qBAAqB,CACnC,OAAO,EAAE,MAAM,GACd;IACD,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,OAAO,EAAE,MAAM,CAAC;CACjB,CAMA;AAED;;;GAGG;AACH,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAEpD;AAED,wBAAgB,aAAa,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAEpD;AAED,kBAAkB;AAClB,wBAAgB,iBAAiB,CAAC,MAAM,EAAE,MAAM,GAAG,MAAM,CAExD;AACD;;;GAGG;AACH,wBAAgB,UAAU,CAAC,EAAE,KAAA,EAAE,OAAO,KAAA,OAErC;AAED;;;;;GAKG;AACH,wBAAgB,0BAA0B,CACxC,OAAO,EAAE,MAAM,EACf,UAAU,EAAE,MAAM,GACjB,MAAM,CAGR;AAED;;;;GAIG;AACH,wBAAgB,eAAe,CAAC,gBAAgB,SAAkB,GAAG,MAAM,CAG1E;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,QAAQ,SAAoB,GAAG,MAAM,CAEnE;AAED;;;GAGG;AACH,wBAAgB,cAAc,CAAC,QAAQ,SAAoB,GAAG,MAAM,CAEnE"}
|
package/lib/ui.d.ts
ADDED
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
export declare function isMobile(): boolean;
|
|
2
|
+
/**
|
|
3
|
+
* Returns true if the user is using a [redacted] browser
|
|
4
|
+
*/
|
|
5
|
+
export declare function isIE(): boolean;
|
|
6
|
+
/**
|
|
7
|
+
* Enables scrolling for a specified selector, while disabling scrolling for all
|
|
8
|
+
* other targets. This is adapted from https://stackoverflow.com/a/41601290/915811
|
|
9
|
+
* and intended to fix issues with iOS elastic scrolling, e.g.,
|
|
10
|
+
* https://github.com/conveyal/trimet-mod-otp/issues/92.
|
|
11
|
+
*/
|
|
12
|
+
export declare function enableScrollForSelector(selector: string): void;
|
|
13
|
+
//# sourceMappingURL=ui.d.ts.map
|
package/lib/ui.d.ts.map
ADDED
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"file":"ui.d.ts","sourceRoot":"","sources":["../src/ui.ts"],"names":[],"mappings":"AAEA,wBAAgB,QAAQ,IAAI,OAAO,CAKlC;AAED;;GAEG;AACH,wBAAgB,IAAI,IAAI,OAAO,CAE9B;AAED;;;;;GAKG;AACH,wBAAgB,uBAAuB,CAAC,QAAQ,EAAE,MAAM,GAAG,IAAI,CA4C9D"}
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@opentripplanner/core-utils",
|
|
3
|
-
"version": "9.0.0-alpha.
|
|
3
|
+
"version": "9.0.0-alpha.27",
|
|
4
4
|
"description": "Core functionality that is shared among numerous UI components",
|
|
5
5
|
"engines": {
|
|
6
6
|
"node": ">=13"
|
|
@@ -28,10 +28,10 @@
|
|
|
28
28
|
},
|
|
29
29
|
"gitHead": "0af1b7cda60bd4252b219dcf893e01c2acb2ed5d",
|
|
30
30
|
"scripts": {
|
|
31
|
-
"tsc": "
|
|
31
|
+
"tsc": "tsc"
|
|
32
32
|
},
|
|
33
33
|
"devDependencies": {
|
|
34
|
-
"@opentripplanner/types": "6.0.0-alpha.
|
|
34
|
+
"@opentripplanner/types": "6.0.0-alpha.6",
|
|
35
35
|
"@types/chroma-js": "^2.1.4"
|
|
36
36
|
}
|
|
37
37
|
}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"program":{"fileNames":["../../node_modules/typescript/lib/lib.es5.d.ts","../../node_modules/typescript/lib/lib.es2015.d.ts","../../node_modules/typescript/lib/lib.es2016.d.ts","../../node_modules/typescript/lib/lib.es2017.d.ts","../../node_modules/typescript/lib/lib.es2018.d.ts","../../node_modules/typescript/lib/lib.es2019.d.ts","../../node_modules/typescript/lib/lib.dom.d.ts","../../node_modules/typescript/lib/lib.es2015.core.d.ts","../../node_modules/typescript/lib/lib.es2015.collection.d.ts","../../node_modules/typescript/lib/lib.es2015.generator.d.ts","../../node_modules/typescript/lib/lib.es2015.iterable.d.ts","../../node_modules/typescript/lib/lib.es2015.promise.d.ts","../../node_modules/typescript/lib/lib.es2015.proxy.d.ts","../../node_modules/typescript/lib/lib.es2015.reflect.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.d.ts","../../node_modules/typescript/lib/lib.es2015.symbol.wellknown.d.ts","../../node_modules/typescript/lib/lib.es2016.array.include.d.ts","../../node_modules/typescript/lib/lib.es2017.object.d.ts","../../node_modules/typescript/lib/lib.es2017.sharedmemory.d.ts","../../node_modules/typescript/lib/lib.es2017.string.d.ts","../../node_modules/typescript/lib/lib.es2017.intl.d.ts","../../node_modules/typescript/lib/lib.es2017.typedarrays.d.ts","../../node_modules/typescript/lib/lib.es2018.asyncgenerator.d.ts","../../node_modules/typescript/lib/lib.es2018.asynciterable.d.ts","../../node_modules/typescript/lib/lib.es2018.intl.d.ts","../../node_modules/typescript/lib/lib.es2018.promise.d.ts","../../node_modules/typescript/lib/lib.es2018.regexp.d.ts","../../node_modules/typescript/lib/lib.es2019.array.d.ts","../../node_modules/typescript/lib/lib.es2019.object.d.ts","../../node_modules/typescript/lib/lib.es2019.string.d.ts","../../node_modules/typescript/lib/lib.es2019.symbol.d.ts","../../node_modules/typescript/lib/lib.es2020.bigint.d.ts","../../node_modules/typescript/lib/lib.esnext.intl.d.ts","../../node_modules/@types/react/global.d.ts","../../node_modules/csstype/index.d.ts","../../node_modules/@types/prop-types/index.d.ts","../../node_modules/@types/scheduler/tracing.d.ts","../../node_modules/@types/react/index.d.ts","../../node_modules/@types/hoist-non-react-statics/index.d.ts","../../node_modules/@types/styled-components/index.d.ts","../../node_modules/@styled-icons/styled-icon/index.d.ts","../types/lib/deprecated.d.ts","../types/lib/index.d.ts","../../node_modules/@types/chroma-js/index.d.ts","./src/route.ts","./src/core-utils.story.tsx","../../node_modules/graphql/version.d.ts","../../node_modules/graphql/jsutils/Maybe.d.ts","../../node_modules/graphql/language/source.d.ts","../../node_modules/graphql/jsutils/ObjMap.d.ts","../../node_modules/graphql/jsutils/Path.d.ts","../../node_modules/graphql/jsutils/PromiseOrValue.d.ts","../../node_modules/graphql/language/kinds.d.ts","../../node_modules/graphql/language/tokenKind.d.ts","../../node_modules/graphql/language/ast.d.ts","../../node_modules/graphql/language/location.d.ts","../../node_modules/graphql/error/GraphQLError.d.ts","../../node_modules/graphql/language/directiveLocation.d.ts","../../node_modules/graphql/type/directives.d.ts","../../node_modules/graphql/type/schema.d.ts","../../node_modules/graphql/type/definition.d.ts","../../node_modules/graphql/execution/execute.d.ts","../../node_modules/graphql/graphql.d.ts","../../node_modules/graphql/type/scalars.d.ts","../../node_modules/graphql/type/introspection.d.ts","../../node_modules/graphql/type/validate.d.ts","../../node_modules/graphql/type/assertName.d.ts","../../node_modules/graphql/type/index.d.ts","../../node_modules/graphql/language/printLocation.d.ts","../../node_modules/graphql/language/lexer.d.ts","../../node_modules/graphql/language/parser.d.ts","../../node_modules/graphql/language/printer.d.ts","../../node_modules/graphql/language/visitor.d.ts","../../node_modules/graphql/language/predicates.d.ts","../../node_modules/graphql/language/index.d.ts","../../node_modules/graphql/execution/subscribe.d.ts","../../node_modules/graphql/execution/values.d.ts","../../node_modules/graphql/execution/index.d.ts","../../node_modules/graphql/subscription/index.d.ts","../../node_modules/graphql/utilities/TypeInfo.d.ts","../../node_modules/graphql/validation/ValidationContext.d.ts","../../node_modules/graphql/validation/validate.d.ts","../../node_modules/graphql/validation/specifiedRules.d.ts","../../node_modules/graphql/validation/rules/ExecutableDefinitionsRule.d.ts","../../node_modules/graphql/validation/rules/FieldsOnCorrectTypeRule.d.ts","../../node_modules/graphql/validation/rules/FragmentsOnCompositeTypesRule.d.ts","../../node_modules/graphql/validation/rules/KnownArgumentNamesRule.d.ts","../../node_modules/graphql/validation/rules/KnownDirectivesRule.d.ts","../../node_modules/graphql/validation/rules/KnownFragmentNamesRule.d.ts","../../node_modules/graphql/validation/rules/KnownTypeNamesRule.d.ts","../../node_modules/graphql/validation/rules/LoneAnonymousOperationRule.d.ts","../../node_modules/graphql/validation/rules/NoFragmentCyclesRule.d.ts","../../node_modules/graphql/validation/rules/NoUndefinedVariablesRule.d.ts","../../node_modules/graphql/validation/rules/NoUnusedFragmentsRule.d.ts","../../node_modules/graphql/validation/rules/NoUnusedVariablesRule.d.ts","../../node_modules/graphql/validation/rules/OverlappingFieldsCanBeMergedRule.d.ts","../../node_modules/graphql/validation/rules/PossibleFragmentSpreadsRule.d.ts","../../node_modules/graphql/validation/rules/ProvidedRequiredArgumentsRule.d.ts","../../node_modules/graphql/validation/rules/ScalarLeafsRule.d.ts","../../node_modules/graphql/validation/rules/SingleFieldSubscriptionsRule.d.ts","../../node_modules/graphql/validation/rules/UniqueArgumentNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueDirectivesPerLocationRule.d.ts","../../node_modules/graphql/validation/rules/UniqueFragmentNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueInputFieldNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueOperationNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueVariableNamesRule.d.ts","../../node_modules/graphql/validation/rules/ValuesOfCorrectTypeRule.d.ts","../../node_modules/graphql/validation/rules/VariablesAreInputTypesRule.d.ts","../../node_modules/graphql/validation/rules/VariablesInAllowedPositionRule.d.ts","../../node_modules/graphql/validation/rules/LoneSchemaDefinitionRule.d.ts","../../node_modules/graphql/validation/rules/UniqueOperationTypesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueTypeNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueEnumValueNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueFieldDefinitionNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueArgumentDefinitionNamesRule.d.ts","../../node_modules/graphql/validation/rules/UniqueDirectiveNamesRule.d.ts","../../node_modules/graphql/validation/rules/PossibleTypeExtensionsRule.d.ts","../../node_modules/graphql/validation/rules/custom/NoDeprecatedCustomRule.d.ts","../../node_modules/graphql/validation/rules/custom/NoSchemaIntrospectionCustomRule.d.ts","../../node_modules/graphql/validation/index.d.ts","../../node_modules/graphql/error/syntaxError.d.ts","../../node_modules/graphql/error/locatedError.d.ts","../../node_modules/graphql/error/index.d.ts","../../node_modules/graphql/utilities/getIntrospectionQuery.d.ts","../../node_modules/graphql/utilities/getOperationAST.d.ts","../../node_modules/graphql/utilities/getOperationRootType.d.ts","../../node_modules/graphql/utilities/introspectionFromSchema.d.ts","../../node_modules/graphql/utilities/buildClientSchema.d.ts","../../node_modules/graphql/utilities/buildASTSchema.d.ts","../../node_modules/graphql/utilities/extendSchema.d.ts","../../node_modules/graphql/utilities/lexicographicSortSchema.d.ts","../../node_modules/graphql/utilities/printSchema.d.ts","../../node_modules/graphql/utilities/typeFromAST.d.ts","../../node_modules/graphql/utilities/valueFromAST.d.ts","../../node_modules/graphql/utilities/valueFromASTUntyped.d.ts","../../node_modules/graphql/utilities/astFromValue.d.ts","../../node_modules/graphql/utilities/coerceInputValue.d.ts","../../node_modules/graphql/utilities/concatAST.d.ts","../../node_modules/graphql/utilities/separateOperations.d.ts","../../node_modules/graphql/utilities/stripIgnoredCharacters.d.ts","../../node_modules/graphql/utilities/typeComparators.d.ts","../../node_modules/graphql/utilities/assertValidName.d.ts","../../node_modules/graphql/utilities/findBreakingChanges.d.ts","../../node_modules/graphql/utilities/typedQueryDocumentNode.d.ts","../../node_modules/graphql/utilities/index.d.ts","../../node_modules/graphql/index.d.ts","./src/graphql.d.ts","../../node_modules/@turf/helpers/dist/js/lib/geojson.d.ts","../../node_modules/@turf/helpers/dist/js/index.d.ts","../../node_modules/@turf/along/dist/js/index.d.ts","./src/itinerary.ts","./src/map.ts","./src/storage.ts","../../node_modules/date-fns/typings.d.ts","../../node_modules/date-fns-tz/typings.d.ts","./src/time.ts","../../node_modules/bowser/index.d.ts","./src/ui.ts","../../node_modules/@conveyal/lonlat/dist/index.d.ts","./src/query-gen.ts","./src/index.ts","../../node_modules/@babel/types/lib/index.d.ts","../../node_modules/@types/babel__generator/index.d.ts","../../node_modules/@babel/parser/typings/babel-parser.d.ts","../../node_modules/@types/babel__template/index.d.ts","../../node_modules/@types/babel__traverse/index.d.ts","../../node_modules/@types/babel__core/index.d.ts","../../node_modules/@types/color-name/index.d.ts","../../node_modules/@types/color-convert/conversions.d.ts","../../node_modules/@types/color-convert/route.d.ts","../../node_modules/@types/color-convert/index.d.ts","../../node_modules/@types/cookie/index.d.ts","../../node_modules/@types/estree/index.d.ts","../../node_modules/@types/flat/index.d.ts","../../node_modules/@types/node/assert/strict.d.ts","../../node_modules/@types/node/globals.d.ts","../../node_modules/@types/node/async_hooks.d.ts","../../node_modules/@types/node/buffer.d.ts","../../node_modules/@types/node/child_process.d.ts","../../node_modules/@types/node/cluster.d.ts","../../node_modules/@types/node/console.d.ts","../../node_modules/@types/node/constants.d.ts","../../node_modules/@types/node/crypto.d.ts","../../node_modules/@types/node/dgram.d.ts","../../node_modules/@types/node/diagnostic_channel.d.ts","../../node_modules/@types/node/dns.d.ts","../../node_modules/@types/node/dns/promises.d.ts","../../node_modules/@types/node/domain.d.ts","../../node_modules/@types/node/events.d.ts","../../node_modules/@types/node/fs.d.ts","../../node_modules/@types/node/fs/promises.d.ts","../../node_modules/@types/node/http.d.ts","../../node_modules/@types/node/http2.d.ts","../../node_modules/@types/node/https.d.ts","../../node_modules/@types/node/inspector.d.ts","../../node_modules/@types/node/module.d.ts","../../node_modules/@types/node/net.d.ts","../../node_modules/@types/node/os.d.ts","../../node_modules/@types/node/path.d.ts","../../node_modules/@types/node/perf_hooks.d.ts","../../node_modules/@types/node/process.d.ts","../../node_modules/@types/node/punycode.d.ts","../../node_modules/@types/node/querystring.d.ts","../../node_modules/@types/node/readline.d.ts","../../node_modules/@types/node/repl.d.ts","../../node_modules/@types/node/stream.d.ts","../../node_modules/@types/node/stream/promises.d.ts","../../node_modules/@types/node/string_decoder.d.ts","../../node_modules/@types/node/timers.d.ts","../../node_modules/@types/node/timers/promises.d.ts","../../node_modules/@types/node/tls.d.ts","../../node_modules/@types/node/trace_events.d.ts","../../node_modules/@types/node/tty.d.ts","../../node_modules/@types/node/url.d.ts","../../node_modules/@types/node/util.d.ts","../../node_modules/@types/node/util/types.d.ts","../../node_modules/@types/node/v8.d.ts","../../node_modules/@types/node/vm.d.ts","../../node_modules/@types/node/worker_threads.d.ts","../../node_modules/@types/node/zlib.d.ts","../../node_modules/@types/node/globals.global.d.ts","../../node_modules/@types/node/wasi.d.ts","../../node_modules/@types/node/ts3.6/base.d.ts","../../node_modules/@types/node/assert.d.ts","../../node_modules/@types/node/base.d.ts","../../node_modules/@types/node/index.d.ts","../../node_modules/@types/fs-extra/index.d.ts","../../node_modules/@types/geojson/index.d.ts","../../node_modules/@types/minimatch/index.d.ts","../../node_modules/@types/glob/index.d.ts","../../node_modules/@types/graceful-fs/index.d.ts","../../node_modules/@types/unist/index.d.ts","../../node_modules/@types/hast/index.d.ts","../../node_modules/@types/html-minifier-terser/index.d.ts","../../node_modules/rxjs/internal/Subscription.d.ts","../../node_modules/rxjs/internal/types.d.ts","../../node_modules/rxjs/internal/Subscriber.d.ts","../../node_modules/rxjs/internal/Operator.d.ts","../../node_modules/rxjs/internal/observable/iif.d.ts","../../node_modules/rxjs/internal/observable/throwError.d.ts","../../node_modules/rxjs/internal/Observable.d.ts","../../node_modules/rxjs/internal/Subject.d.ts","../../node_modules/rxjs/internal/observable/ConnectableObservable.d.ts","../../node_modules/rxjs/internal/operators/groupBy.d.ts","../../node_modules/rxjs/internal/symbol/observable.d.ts","../../node_modules/rxjs/internal/BehaviorSubject.d.ts","../../node_modules/rxjs/internal/ReplaySubject.d.ts","../../node_modules/rxjs/internal/AsyncSubject.d.ts","../../node_modules/rxjs/internal/Scheduler.d.ts","../../node_modules/rxjs/internal/scheduler/Action.d.ts","../../node_modules/rxjs/internal/scheduler/AsyncScheduler.d.ts","../../node_modules/rxjs/internal/scheduler/AsyncAction.d.ts","../../node_modules/rxjs/internal/scheduler/AsapScheduler.d.ts","../../node_modules/rxjs/internal/scheduler/asap.d.ts","../../node_modules/rxjs/internal/scheduler/async.d.ts","../../node_modules/rxjs/internal/scheduler/QueueScheduler.d.ts","../../node_modules/rxjs/internal/scheduler/queue.d.ts","../../node_modules/rxjs/internal/scheduler/AnimationFrameScheduler.d.ts","../../node_modules/rxjs/internal/scheduler/animationFrame.d.ts","../../node_modules/rxjs/internal/scheduler/VirtualTimeScheduler.d.ts","../../node_modules/rxjs/internal/Notification.d.ts","../../node_modules/rxjs/internal/util/pipe.d.ts","../../node_modules/rxjs/internal/util/noop.d.ts","../../node_modules/rxjs/internal/util/identity.d.ts","../../node_modules/rxjs/internal/util/isObservable.d.ts","../../node_modules/rxjs/internal/util/ArgumentOutOfRangeError.d.ts","../../node_modules/rxjs/internal/util/EmptyError.d.ts","../../node_modules/rxjs/internal/util/ObjectUnsubscribedError.d.ts","../../node_modules/rxjs/internal/util/UnsubscriptionError.d.ts","../../node_modules/rxjs/internal/util/TimeoutError.d.ts","../../node_modules/rxjs/internal/observable/bindCallback.d.ts","../../node_modules/rxjs/internal/observable/bindNodeCallback.d.ts","../../node_modules/rxjs/internal/InnerSubscriber.d.ts","../../node_modules/rxjs/internal/OuterSubscriber.d.ts","../../node_modules/rxjs/internal/observable/combineLatest.d.ts","../../node_modules/rxjs/internal/observable/concat.d.ts","../../node_modules/rxjs/internal/observable/defer.d.ts","../../node_modules/rxjs/internal/observable/empty.d.ts","../../node_modules/rxjs/internal/observable/forkJoin.d.ts","../../node_modules/rxjs/internal/observable/from.d.ts","../../node_modules/rxjs/internal/observable/fromEvent.d.ts","../../node_modules/rxjs/internal/observable/fromEventPattern.d.ts","../../node_modules/rxjs/internal/observable/generate.d.ts","../../node_modules/rxjs/internal/observable/interval.d.ts","../../node_modules/rxjs/internal/observable/merge.d.ts","../../node_modules/rxjs/internal/observable/never.d.ts","../../node_modules/rxjs/internal/observable/of.d.ts","../../node_modules/rxjs/internal/observable/onErrorResumeNext.d.ts","../../node_modules/rxjs/internal/observable/pairs.d.ts","../../node_modules/rxjs/internal/observable/partition.d.ts","../../node_modules/rxjs/internal/observable/race.d.ts","../../node_modules/rxjs/internal/observable/range.d.ts","../../node_modules/rxjs/internal/observable/timer.d.ts","../../node_modules/rxjs/internal/observable/using.d.ts","../../node_modules/rxjs/internal/observable/zip.d.ts","../../node_modules/rxjs/internal/scheduled/scheduled.d.ts","../../node_modules/rxjs/internal/config.d.ts","../../node_modules/rxjs/index.d.ts","../../node_modules/@types/inquirer/lib/objects/choice.d.ts","../../node_modules/@types/inquirer/lib/objects/separator.d.ts","../../node_modules/@types/inquirer/lib/objects/choices.d.ts","../../node_modules/@types/inquirer/lib/utils/screen-manager.d.ts","../../node_modules/@types/inquirer/lib/prompts/base.d.ts","../../node_modules/@types/inquirer/lib/utils/paginator.d.ts","../../node_modules/@types/inquirer/lib/prompts/checkbox.d.ts","../../node_modules/@types/inquirer/lib/prompts/confirm.d.ts","../../node_modules/@types/inquirer/lib/prompts/editor.d.ts","../../node_modules/@types/inquirer/lib/prompts/expand.d.ts","../../node_modules/@types/inquirer/lib/prompts/input.d.ts","../../node_modules/@types/inquirer/lib/prompts/list.d.ts","../../node_modules/@types/inquirer/lib/prompts/number.d.ts","../../node_modules/@types/inquirer/lib/prompts/password.d.ts","../../node_modules/@types/inquirer/lib/prompts/rawlist.d.ts","../../node_modules/@types/inquirer/lib/utils/events.d.ts","../../node_modules/@types/inquirer/lib/utils/readline.d.ts","../../node_modules/@types/inquirer/lib/utils/utils.d.ts","../../node_modules/@types/through/index.d.ts","../../node_modules/@types/inquirer/lib/ui/baseUI.d.ts","../../node_modules/@types/inquirer/lib/ui/bottom-bar.d.ts","../../node_modules/@types/inquirer/lib/ui/prompt.d.ts","../../node_modules/@types/inquirer/index.d.ts","../../node_modules/@types/is-function/index.d.ts","../../node_modules/@types/istanbul-lib-coverage/index.d.ts","../../node_modules/@types/istanbul-lib-report/index.d.ts","../../node_modules/@types/istanbul-reports/index.d.ts","../../node_modules/jest-diff/build/cleanupSemantic.d.ts","../../node_modules/jest-diff/build/types.d.ts","../../node_modules/jest-diff/build/diffLines.d.ts","../../node_modules/jest-diff/build/printDiffs.d.ts","../../node_modules/jest-diff/build/index.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/types.d.ts","../../node_modules/@types/jest/node_modules/pretty-format/build/index.d.ts","../../node_modules/@types/jest/index.d.ts","../../node_modules/@types/pixelmatch/index.d.ts","../../node_modules/ssim.js/dist/types.d.ts","../../node_modules/ssim.js/dist/index.d.ts","../../node_modules/@types/jest-image-snapshot/index.d.ts","../../node_modules/@types/jest-specific-snapshot/index.d.ts","../../node_modules/@types/js-levenshtein/index.d.ts","../../node_modules/@types/json-schema/index.d.ts","../../node_modules/@types/json-stable-stringify/index.d.ts","../../node_modules/@types/json5/index.d.ts","../../node_modules/@types/mapbox-gl/index.d.ts","../../node_modules/@types/mapbox__point-geometry/index.d.ts","../../node_modules/@types/pbf/index.d.ts","../../node_modules/@types/mapbox__vector-tile/index.d.ts","../../node_modules/@types/mdast/index.d.ts","../../node_modules/@types/minimist/index.d.ts","../../node_modules/@types/node-fetch/node_modules/form-data/index.d.ts","../../node_modules/@types/node-fetch/externals.d.ts","../../node_modules/@types/node-fetch/index.d.ts","../../node_modules/@types/normalize-package-data/index.d.ts","../../node_modules/@types/npmlog/index.d.ts","../../node_modules/@types/overlayscrollbars/index.d.ts","../../node_modules/@types/parse-json/index.d.ts","../../node_modules/@types/parse5/index.d.ts","../../node_modules/@types/prettier/index.d.ts","../../node_modules/@types/pretty-hrtime/index.d.ts","../../node_modules/@types/qs/index.d.ts","../../node_modules/@types/react-syntax-highlighter/index.d.ts","../../node_modules/@types/retry/index.d.ts","../../node_modules/@types/scheduler/index.d.ts","../../node_modules/@types/set-cookie-parser/index.d.ts","../../node_modules/@types/source-list-map/index.d.ts","../../node_modules/@types/stack-utils/index.d.ts","../../node_modules/@types/tapable/index.d.ts","../../node_modules/@types/throttle-debounce/index.d.ts","../../node_modules/source-map/source-map.d.ts","../../node_modules/@types/uglify-js/index.d.ts","../../node_modules/vfile-message/index.d.ts","../../node_modules/@types/vfile/index.d.ts","../../node_modules/@types/webpack/node_modules/anymatch/index.d.ts","../../node_modules/@types/webpack-sources/node_modules/source-map/source-map.d.ts","../../node_modules/@types/webpack-sources/lib/Source.d.ts","../../node_modules/@types/webpack-sources/lib/CompatSource.d.ts","../../node_modules/@types/webpack-sources/lib/ConcatSource.d.ts","../../node_modules/@types/webpack-sources/lib/OriginalSource.d.ts","../../node_modules/@types/webpack-sources/lib/PrefixSource.d.ts","../../node_modules/@types/webpack-sources/lib/RawSource.d.ts","../../node_modules/@types/webpack-sources/lib/ReplaceSource.d.ts","../../node_modules/@types/webpack-sources/lib/SizeOnlySource.d.ts","../../node_modules/@types/webpack-sources/lib/SourceMapSource.d.ts","../../node_modules/@types/webpack-sources/lib/index.d.ts","../../node_modules/@types/webpack-sources/lib/CachedSource.d.ts","../../node_modules/@types/webpack-sources/index.d.ts","../../node_modules/@types/webpack/index.d.ts","../../node_modules/@types/webpack-env/index.d.ts","../../node_modules/@types/ws/index.d.ts","../../node_modules/@types/yargs-parser/index.d.ts","../../node_modules/@types/yargs/index.d.ts","../../node_modules/@types/yauzl/index.d.ts"],"fileInfos":[{"version":"3ac1b83264055b28c0165688fda6dfcc39001e9e7828f649299101c23ad0a0c3","affectsGlobalScope":true},"dc47c4fa66b9b9890cf076304de2a9c5201e94b740cffdf09f87296d877d71f6","7a387c58583dfca701b6c85e0adaf43fb17d590fb16d5b2dc0a2fbd89f35c467","8a12173c586e95f4433e0c6dc446bc88346be73ffe9ca6eec7aa63c8f3dca7f9","5f4e733ced4e129482ae2186aae29fde948ab7182844c3a5a51dd346182c7b06","e6b724280c694a9f588847f754198fb96c43d805f065c3a5b28bbc9594541c84",{"version":"72704b10d97777e15f1a581b73f88273037ef752d2e50b72287bd0a90af64fe6","affectsGlobalScope":true},{"version":"d8996609230d17e90484a2dd58f22668f9a05a3bfe00bfb1d6271171e54a31fb","affectsGlobalScope":true},{"version":"43fb1d932e4966a39a41b464a12a81899d9ae5f2c829063f5571b6b87e6d2f9c","affectsGlobalScope":true},{"version":"cdccba9a388c2ee3fd6ad4018c640a471a6c060e96f1232062223063b0a5ac6a","affectsGlobalScope":true},{"version":"c5c05907c02476e4bde6b7e76a79ffcd948aedd14b6a8f56e4674221b0417398","affectsGlobalScope":true},{"version":"0d5f52b3174bee6edb81260ebcd792692c32c81fd55499d69531496f3f2b25e7","affectsGlobalScope":true},{"version":"810627a82ac06fb5166da5ada4159c4ec11978dfbb0805fe804c86406dab8357","affectsGlobalScope":true},{"version":"62d80405c46c3f4c527ee657ae9d43fda65a0bf582292429aea1e69144a522a6","affectsGlobalScope":true},{"version":"3013574108c36fd3aaca79764002b3717da09725a36a6fc02eac386593110f93","affectsGlobalScope":true},{"version":"75ec0bdd727d887f1b79ed6619412ea72ba3c81d92d0787ccb64bab18d261f14","affectsGlobalScope":true},{"version":"3be5a1453daa63e031d266bf342f3943603873d890ab8b9ada95e22389389006","affectsGlobalScope":true},{"version":"17bb1fc99591b00515502d264fa55dc8370c45c5298f4a5c2083557dccba5a2a","affectsGlobalScope":true},{"version":"7ce9f0bde3307ca1f944119f6365f2d776d281a393b576a18a2f2893a2d75c98","affectsGlobalScope":true},{"version":"6a6b173e739a6a99629a8594bfb294cc7329bfb7b227f12e1f7c11bc163b8577","affectsGlobalScope":true},{"version":"12a310447c5d23c7d0d5ca2af606e3bd08afda69100166730ab92c62999ebb9d","affectsGlobalScope":true},{"version":"b0124885ef82641903d232172577f2ceb5d3e60aed4da1153bab4221e1f6dd4e","affectsGlobalScope":true},{"version":"0eb85d6c590b0d577919a79e0084fa1744c1beba6fd0d4e951432fa1ede5510a","affectsGlobalScope":true},{"version":"da233fc1c8a377ba9e0bed690a73c290d843c2c3d23a7bd7ec5cd3d7d73ba1e0","affectsGlobalScope":true},{"version":"d154ea5bb7f7f9001ed9153e876b2d5b8f5c2bb9ec02b3ae0d239ec769f1f2ae","affectsGlobalScope":true},{"version":"bb2d3fb05a1d2ffbca947cc7cbc95d23e1d053d6595391bd325deb265a18d36c","affectsGlobalScope":true},{"version":"c80df75850fea5caa2afe43b9949338ce4e2de086f91713e9af1a06f973872b8","affectsGlobalScope":true},{"version":"9d57b2b5d15838ed094aa9ff1299eecef40b190722eb619bac4616657a05f951","affectsGlobalScope":true},{"version":"6c51b5dd26a2c31dbf37f00cfc32b2aa6a92e19c995aefb5b97a3a64f1ac99de","affectsGlobalScope":true},{"version":"6e7997ef61de3132e4d4b2250e75343f487903ddf5370e7ce33cf1b9db9a63ed","affectsGlobalScope":true},{"version":"2ad234885a4240522efccd77de6c7d99eecf9b4de0914adb9a35c0c22433f993","affectsGlobalScope":true},{"version":"1b3fe904465430e030c93239a348f05e1be80640d91f2f004c3512c2c2c89f34","affectsGlobalScope":true},{"version":"10bbdc1981b8d9310ee75bfac28ee0477bb2353e8529da8cff7cb26c409cb5e8","affectsGlobalScope":true},{"version":"ecf78e637f710f340ec08d5d92b3f31b134a46a4fcf2e758690d8c46ce62cba6","affectsGlobalScope":true},"4ee363f83d7be2202f34fcd84c44da71bf3a9329fee8a05f976f75083a52ea94","a7e32dcb90bf0c1b7a1e4ac89b0f7747cbcba25e7beddc1ebf17be1e161842ad","f5a8b384f182b3851cec3596ccc96cb7464f8d3469f48c74bf2befb782a19de5",{"version":"5a1b30146d105f86b15aaf11ff43af00c29972d18bc3b16c8b8f56aa47801733","affectsGlobalScope":true},"bfe1b52cf71aea9bf8815810cc5d9490fa9617313e3d3c2ee3809a28b80d0bb4",{"version":"6839e1779e1f61e0ed62b1ca3ff7e74dc70479a5455077a38434d0e404103c28","affectsGlobalScope":true},"a4ce8cb63b46ff55db10c4bdd3007240a42ba71c03f159ea7e6517aef9a8013c","d721892ce2795a30a7985bb3c939747e68d6c6c8f8890eaf28bef85062f883b4","0e94ef7dbcea1ee77ba11203fe929c25dfe45f238caeefdfce1ce1f35533d5fa","fae40de985385b22f775c1bea02959b251abddaa1cb168ee6c4f00d79ccfd8ef","4183eba87de2ab2747c796368fe99c3810688abc78f0e3d19fea6d26f93a7a95","c333b1ede7e03e80235cd013724d35ac108e7b1cf69d7a8f52b0e20922f5a276","78647004e18e4c16b8a2e8345fca9267573d1c5a29e11ddfee71858fd077ef6e","0804044cd0488cb7212ddbc1d0f8e1a5bd32970335dbfc613052304a1b0318f9","b725acb041d2a18fde8f46c48a1408418489c4aa222f559b1ef47bf267cb4be0","85084ae98c1d319e38ef99b1216d3372a9afd7a368022c01c3351b339d52cb58","898ec2410fae172e0a9416448b0838bed286322a5c0c8959e8e39400cd4c5697","692345a43bac37c507fa7065c554258435ab821bbe4fb44b513a70063e932b45","cddd50d7bd9d7fddda91a576db9f61655d1a55e2d870f154485812f6e39d4c15","0539583b089247b73a21eb4a5f7e43208a129df6300d6b829dc1039b79b6c8c4","7aba43bc7764fcd02232382c780c3e99ef8dbfdac3c58605a0b3781fab3d8044","522edc786ed48304671b935cf7d3ed63acc6636ab9888c6e130b97a6aea92b46","1e1ed5600d80406a10428e349af8b6f09949cd5054043ea8588903e8f9e8d705","de21641eb8edcbc08dd0db4ee70eea907cd07fe72267340b5571c92647f10a77","a53039ba614075aeb702271701981babbd0d4f4dcbf319ddee4c08fb8196cc7a","6758f7b72fa4d38f4f4b865516d3d031795c947a45cc24f2cfba43c91446d678","da679a5bb46df3c6d84f637f09e6689d6c2d07e907ea16adc161e4529a4954d6","dc1a664c33f6ddd2791569999db2b3a476e52c5eeb5474768ffa542b136d78c0","bdf7abbd7df4f29b3e0728684c790e80590b69d92ed8d3bf8e66d4bd713941fe","8decb32fc5d44b403b46c3bb4741188df4fbc3c66d6c65669000c5c9cd506523","4beaf337ee755b8c6115ff8a17e22ceab986b588722a52c776b8834af64e0f38","c26dd198f2793bbdcc55103823a2767d6223a7fdb92486c18b86deaf63208354","93551b302a808f226f0846ad8012354f2d53d6dedc33b540d6ca69836781a574","f0ff1c010d5046af3874d3b4df746c6f3921e4b3fbdec61dee0792fc0cb36ccd","778b684ebc6b006fcffeab77d25b34bf6e400100e0ec0c76056e165c6399ab05","463851fa993af55fb0296e0d6afa27407ef91bf6917098dd665aba1200d250c7","67c6de7a9c490bda48eb401bea93904b6bbfc60e47427e887e6a3da6195540be","be8f369f8d7e887eab87a3e4e41f1afcf61bf06056801383152aa83bda1f6a72","352bfb5f3a9d8a9c2464ad2dc0b2dc56a8212650a541fb550739c286dd341de1","a5aae636d9afdacb22d98e4242487436d8296e5a345348325ccc68481fe1b690","d007c769e33e72e51286b816d82cd7c3a280cba714e7f958691155068bd7150a","764150c107451d2fd5b6de305cff0a9dcecf799e08e6f14b5a6748724db46d8a","b04cf223c338c09285010f5308b980ee6d8bfa203824ed2537516f15e92e8c43","4b387f208d1e468193a45a51005b1ed5b666010fc22a15dc1baf4234078b636e","70441eda704feffd132be0c1541f2c7f6bbaafce25cb9b54b181e26af3068e79","d1addb12403afea87a1603121396261a45190886c486c88e1a5d456be17c2049","15d43873064dc8787ca1e4c39149be59183c404d48a8cd5a0ea019bb5fdf8d58","ea4b5d319625203a5a96897b057fddf6017d0f9a902c16060466fe69cc007243","3d06897c536b4aad2b2b015d529270439f2cadd89ca2ff7bd8898ee84898dd88","ab01d8fcb89fae8eda22075153053fefac69f7d9571a389632099e7a53f1922d","bac0ec1f4c61abc7c54ccebb0f739acb0cdbc22b1b19c91854dc142019492961","566b0806f9016fa067b7fecf3951fcc295c30127e5141223393bde16ad04aa4a","8e801abfeda45b1b93e599750a0a8d25074d30d4cc01e3563e56c0ff70edeb68","902997f91b09620835afd88e292eb217fbd55d01706b82b9a014ff408f357559","a3727a926e697919fb59407938bd8573964b3bf543413b685996a47df5645863","83f36c0792d352f641a213ee547d21ea02084a148355aa26b6ef82c4f61c1280","dce7d69c17a438554c11bbf930dec2bee5b62184c0494d74da336daee088ab69","1e8f2cda9735002728017933c54ccea7ebee94b9c68a59a4aac1c9a58aa7da7d","e327a2b222cf9e5c93d7c1ed6468ece2e7b9d738e5da04897f1a99f49d42cca1","65165246b59654ec4e1501dd87927a0ef95d57359709e00e95d1154ad8443bc7","f1bacba19e2fa2eb26c499e36b5ab93d6764f2dba44be3816f12d2bc9ac9a35b","bce38da5fd851520d0cb4d1e6c3c04968cec2faa674ed321c118e97e59872edc","3398f46037f21fb6c33560ceca257259bd6d2ea03737179b61ea9e17cbe07455","6e14fc6c27cb2cb203fe1727bb3a923588f0be8c2604673ad9f879182548daca","12b9bcf8395d33837f301a8e6d545a24dfff80db9e32f8e8e6cf4b11671bb442","04295cc38689e32a4ea194c954ea6604e6afb6f1c102104f74737cb8cf744422","7418f434c136734b23f634e711cf44613ca4c74e63a5ae7429acaee46c7024c8","27d40290b7caba1c04468f2b53cf7112f247f8acdd7c20589cd7decf9f762ad0","2608b8b83639baf3f07316df29202eead703102f1a7e32f74a1b18cf1eee54b5","c93657567a39bd589effe89e863aaadbc339675fca6805ae4d97eafbcce0a05d","909d5db5b3b19f03dfb4a8f1d00cf41d2f679857c28775faf1f10794cbbe9db9","e4504bffce13574bab83ab900b843590d85a0fd38faab7eff83d84ec55de4aff","8ab707f3c833fc1e8a51106b8746c8bc0ce125083ea6200ad881625ae35ce11e","730ddc2386276ac66312edbcc60853fedbb1608a99cb0b1ff82ebf26911dba1f","c1b3fa201aa037110c43c05ea97800eb66fea3f2ecc5f07c6fd47f2b6b5b21d2","636b44188dc6eb326fd566085e6c1c6035b71f839d62c343c299a35888c6f0a9","3b2105bf9823b53c269cabb38011c5a71360c8daabc618fec03102c9514d230c","f96e63eb56e736304c3aef6c745b9fe93db235ddd1fec10b45319c479de1a432","acb4f3cee79f38ceba975e7ee3114eb5cd96ccc02742b0a4c7478b4619f87cd6","cfc85d17c1493b6217bad9052a8edc332d1fde81a919228edab33c14aa762939","eebda441c4486c26de7a8a7343ebbc361d2b0109abff34c2471e45e34a93020a","727b4b8eb62dd98fa4e3a0937172c1a0041eb715b9071c3de96dad597deddcab","708e2a347a1b9868ccdb48f3e43647c6eccec47b8591b220afcafc9e7eeb3784","6bb598e2d45a170f302f113a5b68e518c8d7661ae3b59baf076be9120afa4813","c28e058db8fed2c81d324546f53d2a7aaefff380cbe70f924276dbad89acd7d1","ebe8f07bb402102c5a764b0f8e34bd92d6f50bd7ac61a2452e76b80e02f9bb4b","826a98cb79deab45ccc4e5a8b90fa64510b2169781a7cbb83c4a0a8867f4cc58","618189f94a473b7fdc5cb5ba8b94d146a0d58834cd77cd24d56995f41643ccd5","5baadaca408128671536b3cb77fea44330e169ada70ce50b902c8d992fe64cf1","a4cc469f3561ea3edc57e091f4c9dcaf7485a70d3836be23a6945db46f0acd0b","91b0965538a5eaafa8c09cf9f62b46d6125aa1b3c0e0629dce871f5f41413f90","2978e33a00b4b5fb98337c5e473ab7337030b2f69d1480eccef0290814af0d51","ba71e9777cb5460e3278f0934fd6354041cb25853feca542312807ce1f18e611","608dbaf8c8bb64f4024013e73d7107c16dba4664999a8c6e58f3e71545e48f66","61937cefd7f4d6fa76013d33d5a3c5f9b0fc382e90da34790764a0d17d6277fb","af7db74826f455bfef6a55a188eb6659fd85fdc16f720a89a515c48724ee4c42","d6ce98a960f1b99a72de771fb0ba773cb202c656b8483f22d47d01d68f59ea86","2a47dc4a362214f31689870f809c7d62024afb4297a37b22cb86f679c4d04088","42d907ac511459d7c4828ee4f3f81cc331a08dc98d7b3cb98e3ff5797c095d2e","63d010bff70619e0cdf7900e954a7e188d3175461182f887b869c312a77ecfbd","1452816d619e636de512ca98546aafb9a48382d570af1473f0432a9178c4b1ff","9e3e3932fe16b9288ec8c948048aef4edf1295b09a5412630d63f4a42265370e","8bdba132259883bac06056f7bacd29a4dcf07e3f14ce89edb022fe9b78dcf9b3","5a5406107d9949d83e1225273bcee1f559bb5588942907d923165d83251a0e37","ca0ca4ca5ad4772161ee2a99741d616fea780d777549ba9f05f4a24493ab44e1","e7ee7be996db0d7cce41a85e4cae3a5fc86cf26501ad94e0a20f8b6c1c55b2d4","72263ae386d6a49392a03bde2f88660625da1eca5df8d95120d8ccf507483d20","b498375d015f01585269588b6221008aae6f0c0dc53ead8796ace64bdfcf62ea","c37aa3657fa4d1e7d22565ae609b1370c6b92bafb8c92b914403d45f0e610ddc","34534c0ead52cc753bdfdd486430ef67f615ace54a4c0e5a3652b4116af84d6d","a1079b54643537f75fa4f4bb963d787a302bddbe3a6001c4b0a524b746e6a9de","7fc9b18b6aafa8a1fc1441670c6c9da63e3d7942c7f451300c48bafd988545e9","530738d1a6a842a1fd7aa55d55a81ec61425ae63afe0478dc011c1a2a33a5579","b07705bcc32e76e988958ee77d6aa8af64f2bd37471c6dcef6f2f73b65ef703c","7e8b953d19b2dd932ff4d0549dbeeef0f9afb875afb4dec881406511ab8058e2","0ce3be41780c0a33a40343e06f3e4fa686d0bf392cf18e3a848abe7d50720d2d","351febdeb542a4d9eed5c2e16f69393c9f22d36d3ea46327175ec8db4acf7983","fd1b798443d912865c1ee180f894c10606e58ace5fa597ef7d08ef6404c6ccfe","657f2c1732847deb8000d774fe7038caecfb8f3916c41cb673699818b8bec07f",{"version":"d204bd5d20ca52a553f7ba993dc2a422e9d1fce0b8178ce2bfe55fbd027c11ae","affectsGlobalScope":true},{"version":"f85022220429b071815c8aaab62a2bfb22082ba3cc60c22c2b6be2b0d495f7a9","affectsGlobalScope":true},"b17de8523d7feb3cdd3f1a3209fc52041ea282409cfee9d6176127178ba06dd9","79602e32c4be9fb7e0e29397f474b22122fe1052e184021d34e012aa4c13129c","9aaa6cfb7d6e0e975a85c50e9b657d2436ac0a09a7ccbbc4ac9c0c734ae3f749","17b984497972e22bcde81e57083484ddb1a9ecff70093669f92c09f19b762f2d","17e584b15be700198ee5b50039a4fecda699809f177a333c87976b07e21df8b3","d902b809fb9c9e2734c412b5ddc48dc0fbcf84f2648538dde5e2d52723985530","98f40132aab59240e3daa408377a6f779aa81f4340f4451959cd2eba3750e456","b25c5f2970d06c729f464c0aeaa64b1a5b5f1355aa93554bb5f9c199b8624b1e","8670878e030b88a469db43b36ef90ffa208e74faf249416feeb8fbb6b646b4a9","3051751533eee92572241b3cef28333212401408c4e7aa21718714b793c0f4ed","3b043cf9a81854a72963fdb57d1884fc4da1cf5be69b5e0a4c5b751e58cb6d88","6f1d39d26959517da3bd105c552eded4c34702705c64d75b03f54d864b6e41c2","f0cb4b3ab88193e3e51e9e2622e4c375955003f1f81239d72c5b7a95415dad3e","92450d617e92f96354d281c8ed5613fd16cacea79eb60b1e9736494b3c057e69","8a9086357fe289efb682dc925358f30b6312c7219a5ca92212857a0a79612012","92bc42ed0e2d41559513fd457ee30d834c2f0fedb9ed5004c029cbf0ad2f8bd9","117ffeecf6c55e25b6446f449ad079029b5e7317399b0a693858faaaea5ca73e","7d7c8ef7d48a035142c07dae60545ecc0e4af4c337742760cb09726f2f8e31db","d9890ea8f1da57be3c2e2d3627b787cd4b4a463fd1747c823a0de24b240c8fe5","c7bdc99177a2a94d25fb13722adaaf5b3291bf70b4d1b27584ba189dd3889ba3",{"version":"41a44aa1929121f5c3124733b5ca9c59717a092b899b3771cc983939ae99eeb2","affectsGlobalScope":true},"e23424b97418eca3226fd24de079f1203eb70360622e4e093af2aff14d4be6ec","a473cf45c3d9809518f8af913312139d9f4db6887dc554e0d06d0f4e52722e6b","297f4ea4e4a5161a6627bc65c83040a91e0792e92bdc4764e24650831cc9867c","04eaa93bd75f937f9184dcb95a7983800c5770cf8ddd8ac0f3734dc02f5b20ef",{"version":"c8155caf28fc7b0a564156a5df28ad8a844a3bd32d331d148d8f3ce88025c870","affectsGlobalScope":true},"45ac321f2e15d268fd74a90ddaa6467dcaaff2c5b13f95b4b85831520fb7a491","5375c30f03b01e610f7370e40ccf3ade1d96de99e9a9a9a0cb0f96fc98aefb71","797a9d37eb1f76143311c3f0a186ce5c0d8735e94c0ca08ff8712a876c9b4f9e","5cc0a492da3602510b8f5ed1852b1e0390002780d8758fbc8c0cd023ca7085f8","ec7dafafe751a5121f8f1c80201ebe7e7238c47e6329280a73c4d1ca4bb7fa28","64debeb10e4b7ae4ec9e89bfb4e04c6101ab98c3cc806d14e5488607cfec2753",{"version":"2866a528b2708aa272ec3eaafd3c980abb23aec1ef831cfc5eb2186b98c37ce5","affectsGlobalScope":true},{"version":"a5782d6cea81fe43d2db7ed41e789458c933ab3ab60602f7b5b14c4da3370496","affectsGlobalScope":true},"bd30510d2d803f453e10604277088a46327f5f0b6aa2b957306c458d7428f8f7","214cf066391a5a651001ebcee2c21ee4d45e8124579d271c59d7c2343bb9d29a","d28c8598067b15c7643558b936e68caefe5d171d0e629e19e2aa6ca870bb4b00","15543feaed3ce6b96bc0508f3e3f8b8f729fae62d0609bddacd483145e71c594","13257840c0850d4ebd7c2b17604a9e006f752de76c2400ebc752bc465c330452","42176966283d3835c34278b9b5c0f470d484c0c0c6a55c20a2c916a1ce69b6e8","0cff7901aedfe78e314f7d44088f07e2afa1b6e4f0473a4169b8456ca2fb245d","6ea59cf5479f3fad5db2caa4513d8d06d6cfee8d8df69e7a040c9b5b7f25f39c","69640cc2e76dad52daeb9914e6b70c5c9a5591a3a65190a2d3ea432cf0015e16","3ec1e108d587a5661ec790db607f482605ba9f3830e118ce578e3ffa3c42e22b","2e37dc691cb5511f49be0f8ba0df3259aa0b453b0098b436e478e60c06567ae0",{"version":"dd3f82b87fa256e7c5a66c9b8ddcc9b53275b3531c10a769722c5103a30a97e9","affectsGlobalScope":true},"7f77304372efe3c9967e5f9ea2061f1b4bf41dc3cda3c83cdd676f2e5af6b7e6","992c6f6be16c0a1d2eec13ece33adeea2c747ba27fcd078353a8f4bb5b4fea58","f6ea38ddcee37ec1bebde700e3a4d85040bf2d239600c877ecefd9b265066b24","a6b0abdb67d63ebe964ba5fee31bc3daf10c12eecd46b24d778426010c04c67e","1a63584d6605d1d5b5fd5c4fa2dc2fa5a2134aa775fcfd95fbdb705971c9ca29","fd2298fba0640e7295e7bd545e2dfbfcccbb00c27019e501c87965a02bbdebf6","4fd3c4debadce3e9ab9dec3eb45f7f5e2e3d4ad65cf975a6d938d883cfb25a50","f49709e8c096b05aca0674d39f471aa05261de7c756df9abdf4a53ed0fa98901","baca27d1de400e027cdc70217ca73e414002baef5798aa24a921097c20066fa1","75b9229192e6da08f6e06daa2b9243c251e14f179dfcc9cc9bf02dd70eabeb48","7df562288f949945cf69c21cd912100c2afedeeb7cdb219085f7f4b46cb7dde4","9d16690485ff1eb4f6fc57aebe237728fd8e03130c460919da3a35f4d9bd97f5","dcc6910d95a3625fd2b0487fda055988e46ab46c357a1b3618c27b4a8dd739c9","f4149f1aa299474c7040a35fe8f8ac2ad078cc1b190415adc1fff3ed52d490ea","3730099ed008776216268a97771de31753ef71e0a7d0ec650f588cba2a06ce44","8d649dbc429d7139a1d9a14ea2bf8af1dc089e0a879447539587463d4b6c248c","60c9e27816ec8ac8df7240598bb086e95b47edfb454c5cbf4003c812e0ed6e39","0431a29ecc5bb615e6d6d1709941bdf16e708f760099d017f5408a1e68e2d248","4926467de88a92a4fc9971d8c6f21b91eca1c0e7fc2a46cc4638ab9440c73875",{"version":"2708349d5a11a5c2e5f3a0765259ebe7ee00cdcc8161cb9990cb4910328442a1","affectsGlobalScope":true},"4e0a4d84b15692ea8669fe4f3d05a4f204567906b1347da7a58b75f45bae48d3","1288f8ee930c03fd535824f8fe852375ec7181d73e4c1f445b82b414c95c5bbe","b3593bd345ebea5e4d0a894c03251a3774b34df3d6db57075c18e089a599ba76","e61a21e9418f279bc480394a94d1581b2dee73747adcbdef999b6737e34d721b","30368d3789ec56ef3006c5f2115bd00faa21471aed6cbe6fec54a5683e5497ed","6435575b4feae200831d37df9f871de6e695c64d3148611fe1b4d714d648ea24","8c2e6e491e1a08855b8bf70820184ff66ae0d43f7cf0311fc680e6d860af211c","95c22bc19835e28e2e524a4bb8898eb5f2107b640d7279a6d3aade261916bbf2","725b884357ba84171341a8e4cc08edf11417854fd069842ca6d22afb2e340e45","3ebae8c00411116a66fca65b08228ea0cf0b72724701f9b854442100aab55aba","1320ee42b30487cceb6da9f230354fc34826111f76bf12f0ad76c717c12625b0","b6e83cdeca61289e5ffd770e55ed035babdffadd87d1ffa42b03e9fe8411333f","6767cce098e1e6369c26258b7a1f9e569c5467d501a47a090136d5ea6e80ae6d","6cb35d83d21a7e72bd00398c93302749bcd38349d0cc5e76ff3a90c6d1498a4d",{"version":"369dd7668d0e6c91550bce0c325f37ce6402e5dd40ecfca66fbb5283e23e559d","affectsGlobalScope":true},"2632057d8b983ee33295566088c080384d7d69a492bc60b008d6a6dfd3508d6b","4bf71cf2a94492fc71e97800bdf2bcb0a9a0fa5fce921c8fe42c67060780cbfa","0996ff06f64cb05b6dac158a6ada2e16f8c2ccd20f9ff6f3c3e871f1ba5fb6d9","5c492d01a19fea5ebfff9d27e786bc533e5078909521ca17ae41236f16f9686a","a6ee930b81c65ec79aca49025b797817dde6f2d2e9b0e0106f0844e18e2cc819","84fce15473e993e6b656db9dd3c9196b80f545647458e6621675e840fd700d29","7d5336ee766aa72dffb1cc2a515f61d18a4fb61b7a2757cbccfb7b286b783dfb","63e96248ab63f6e7a86e31aa3e654ed6de1c3f99e3b668e04800df05874e8b77","80da0f61195385d22b666408f6cccbc261c066d401611a286f07dfddf7764017","06a20cc7d937074863861ea1159ac783ff97b13952b4b5d1811c7d8ab5c94776","ab6de4af0e293eae73b67dad251af097d7bcc0b8b62de84e3674e831514cb056","18cbd79079af97af66c9c07c61b481fce14a4e7282eca078c474b40c970ba1d0","e7b45405689d87e745a217b648d3646fb47a6aaba9c8d775204de90c7ea9ff35","669b754ec246dd7471e19b655b73bda6c2ca5bb7ccb1a4dff44a9ae45b6a716a","bcfaca4a8ff50f57fd36df91fba5d34056883f213baff7192cbfc4d3805d2084","76a564b360b267502219a89514953058494713ee0923a63b2024e542c18b40e5","8f62cbd3afbd6a07bb8c934294b6bfbe437021b89e53a4da7de2648ecfc7af25","a20629551ed7923f35f7556c4c15d0c8b2ebe7afaa68ceaab079a1707ba64be2","d6de66600c97cd499526ddecea6e12166ab1c0e8d9bf36fb2339fd39c8b3372a","8e7a5b8f867b99cc8763c0b024068fb58e09f7da2c4810c12833e1ca6eb11c4f","a8932876de2e3138a5a27f9426b225a4d27f0ba0a1e2764ba20930b4c3faf4b9","df877050b04c29b9f8409aa10278d586825f511f0841d1ec41b6554f8362092b","027d600e00c5f5e1816c207854285d736f2f5fa28276e2829db746d5d6811ba1","5443113a16ef378446e08d6500bb48b35de582426459abdb5c9704f5c7d327d9","0fb581ecb53304a3c95bb930160b4fa610537470cce850371cbaad5a458ca0d9","7da4e290c009d7967343a7f8c3f145a3d2c157c62483362183ba9f637a536489","eb21ddc3a8136a12e69176531197def71dc28ffaf357b74d4bf83407bd845991","914560d0c4c6aa947cfe7489fe970c94ba25383c414bbe0168b44fd20dbf0df4","4fb3405055b54566dea2135845c3a776339e7e170d692401d97fd41ad9a20e5d","8d607832a6ef0eac30657173441367dd76c96bf7800d77193428b922e060c3af","20ff7207f0bb5cdde5fee8e83315ade7e5b8100cfa2087d20d39069a3d7d06f4","7ca4c534eab7cff43d81327e369a23464bc37ef38ce5337ceff24a42c6c84eb2","5252dec18a34078398be4e321dee884dc7f47930e5225262543a799b591b36d2","23caed4dff98bd28157d2b798b43f1dfefe727f18641648c01ce4e0e929a1630","f67e013d5374826596d7c23dbae1cdb14375a27cd72e16c5fb46a4b445059329","ea3401b70e2302683bbf4c18b69ef2292b60f4d8f8e6d920413b81fb7bde0f65","71afe26642c0fb86b9f8b1af4af5deb5181b43b6542a3ff2314871b53d04c749","0d7f01634e6234d84cf0106508efdb8ae00e5ed126eff9606d37b031ac1de654","f8d209086bad78af6bd7fef063c1ed449c815e6f8d36058115f222d9f788b848","3ad003278d569d1953779e2f838f7798f02e793f6a1eceac8e0065f1a202669b","fb2c5eceffcd918dbb86332afa0199f5e7b6cf6ee42809e930a827b28ef25afe","f664aaff6a981eeca68f1ff2d9fd21b6664f47bf45f3ae19874df5a6683a8d8a","ce066f85d73e09e9adbd0049bcf6471c7eefbfc2ec4b5692b5bcef1e36babd2a","09d302513cacfbcc54b67088739bd8ac1c3c57917f83f510b2d1adcb99fd7d2a","3faa54e978b92a6f726440c13fe3ab35993dc74d697c7709681dc1764a25219f","2bd0489e968925eb0c4c0fb12ef090be5165c86bd088e1e803102c38d4a717d8","88924207132b9ba339c1adb1ed3ea07e47b3149ff8a2e21a3ea1f91cee68589d","b8800b93d8ab532f8915be73f8195b9d4ef06376d8a82e8cdc17c400553172d6","d7d469703b78beba76d511957f8c8b534c3bbb02bea7ab4705c65ef573532fb8","74c8c3057669c03264263d911d0f82e876cef50b05be21c54fef23c900de0420","b303eda2ff2d582a9c3c5ecb708fb57355cdc25e8c8197a9f66d4d1bf09fda19","4e5dc89fa22ff43da3dee1db97d5add0591ebaff9e4adef6c8b6f0b41f0f60f0","ec4e82cb42a902fe83dc13153c7a260bee95684541f8d7ef26cb0629a2f4ca31","5f36e24cd92b0ff3e2a243685a8a780c9413941c36739f04b428cc4e15de629d","40a26494e6ab10a91851791169582ab77fed4fbd799518968177e7eefe08c7a9","208e125b45bc561765a74f6f1019d88e44e94678769824cf93726e1bac457961","b3985971de086ef3aa698ef19009a53527b72e65851b782dc188ac341a1e1390","c81d421aabb6113cd98b9d4f11e9a03273b363b841f294b457f37c15d513151d","30063e3a184ff31254bbafa782c78a2d6636943dfe59e1a34f451827fd7a68dc","c05d4cae0bceed02c9d013360d3e65658297acb1b7a90252fe366f2bf4f9ccc9","6f14b92848889abba03a474e0750f7350cc91fc190c107408ca48679a03975ae","a588d0765b1d18bf00a498b75a83e095aef75a9300b6c1e91cbf39e408f2fe2f","502bd3d3dd93b012e56864157c9ec3a3a53695fb05d1f42671f3e6314698a665","6b1b045b3e848a844ff1922ce2f82925f21d482bdeba5710883ab0c7df2c7e2b","8fac536b0b73249d9153424adafe49282c389a08163544917c18dfc1ddcbbd25","05a21cbb7cbe1ec502e7baca1f4846a4e860d96bad112f3e316b995ba99715b7","1eaee2b52f1c0e1848845a79050c1d06ae554d8050c35e3bf479f13d6ee19dd5","fd219904eea67c470dfebbaf44129b0db858207c3c3b55514bdc84de547b1687","4de232968f584b960b4101b4cdae593456aff149c5d0c70c2389248e9eb9fbac","9d6f6d1d788d8010417b914f4bad17be02645c6c5177a098dca97bee7561a0e1","c5430542eeebb207d651e8b00a08e4bb680c47ecb73dd388d8fa597a1fc5de5b","a6c5c9906262cf10549989c0061e5a44afdc1f61da77d5e09418a9ecea0018fe","1405d8968a5da39a3aed8c1701ca813d3284f51adb87b184337bb35402b077eb","33d63a317a3d2f2e06a10cf04a5caf7a781fe5f644a0dda5dfe81883c1ab2cca","ab60a5aea46b4fd3ee9d52ba0059d908f6f974cf4aba52a693f03361aa1adec0","7faa24bb6f24e79337fa302cc328d9f50ba3fb1af45a5aedcaa64e9b326a0bab","1a8f503c64bdb36308f245960d9e4acac4cf65d8b6bd0534f88230ebf0be7883","83c54a3b3e836d1773b8c23ff76ce6e0aae1a2209fc772b75e9de173fec9eac0","475e411f48f74c14b1f6e50cc244387a5cc8ce52340dddfae897c96e03f86527","948d08b7c693d1a4d0101bd2a48a2930e814811acde8f2a4c1226fd4a907cac0","656424ca784760c679bf2677d8aaf55d1cb8452cd0ac04bbe1c0f659f45f8c11","a2c1f4012459547d62116d724e7ec820bb2e6848da40ea0747bf160ffd99b283","0dc197e52512a7cbea4823cc33c23b0337af97bd59b38bf83be047f37cd8c9a8","492c93ade227fe4545fabb3035b9dd5d57d8b4fde322e5217fdaef20aa1b80a8","e84784554ccec0a03886acbd0b08dece208335465800bc3b5c9ab152c780a303","11ef35fa1e8aef8229ce6b62ac1a6a0761d1d4bb4de1538bce6d10762a919139","de18acda71730bac52f4b256ce7511bb56cc21f6f114c59c46782eff2f632857","7eb06594824ada538b1d8b48c3925a83e7db792f47a081a62cf3e5c4e23cf0ee","029769d13d9917e3284cb2356ed28a6576e8b07ae6a06ee1e672518adf21a102","d8aab31ba8e618cc3eea10b0945de81cb93b7e8150a013a482332263b9305322","69da61a7b5093dac77fa3bec8be95dcf9a74c95a0e9161edb98bb24e30e439d2","561eca7a381b96d6ccac6e4061e6d2ae53f5bc44203f3fd9f5b26864c32ae6e9","62ea38627e3ebab429f7616812a9394d327c2bc271003dfba985de9b4137369f","b4439890c168d646357928431100daac5cbdee1d345a34e6bf6eca9f3abe22bc","5d72971a459517c44c1379dab9ed248e87a61ba0a1e0f25c9d67e1e640cd9a09","02d734976af36f4273d930bea88b3e62adf6b078cf120c1c63d49aa8d8427c5c",{"version":"516a426e3960379f310107635b8f3a7e8c307c6c665080b128039d9299ec4087","affectsGlobalScope":true},"f30350dd37c3f3c11f47adb7ce4e7a4928f578f4ae8a3197e0c8a0811da46b92","948a49768a6f616ae03f7ce6ad074a0bf0cf1d139409041e0d441d037c49aabd","58729ebab0d9f2f97c1f976204c3541a1ea865811ecbeac421fbd887eb3f82e2",{"version":"a4a1baaca291763a32fb2011afe7c1d17c522b2429500455ac94dcde1abfc954","affectsGlobalScope":true},{"version":"597e57d1aed6e56c5711328daa1a5f835d9aa1a23093f133d98acabeedff06fe","affectsGlobalScope":true},"15a58e61533036fb08dfd567fa7b1f799acdedf0cacf5cbc93bbed0f0520e87f","0359682c54e487c4cab2b53b2b4d35cc8dea4d9914bc6abcdb5701f8b8e745a4","626520302b2c8880e9eaa3a6a12022cc8b577a32e4d903aef85e3dd275063da4","96d14f21b7652903852eef49379d04dbda28c16ed36468f8c9fa08f7c14c9538","a49c26a7bad73494e987a795709e298223800407fa4e5c40c28539f752eb32ad","e86cd9c6c99834f8591ed72f08e4ca31570296f081206d0168f58f032cec5b58","2a856615ecd0af49997dfbb38cf94fd787d529062a2e96ce26b84432e61d785d","ab438f22fa7748112b6b9744b992ab6049d2fa6f46f011c145ff9c90e533856a","9a6d65d77455efaaaeff945bea30c38b8fe0922b807ba45cd23792392f1bfe76","e437d83044ba17246a861aa9691aa14223ff4a9d6f338ab1269c41c758586a88","736097ddbb2903bef918bb3b5811ef1c9c5656f2a73bd39b22a91b9cc2525e50","8fe9135b86994075c4192f3358a4350389e80d3abec712db2a82061962d9d21c","e0014889f31fee76a572b6b15e74b2174cbcf6346ae8ab5c69eb553a10e5c944","c9ad058b2cc9ce6dc2ed92960d6d009e8c04bef46d3f5312283debca6869f613","0d65b782b1a9b5891802ef2022c78481b19dfe133ba8d9f7596fe1320314342d","1502b874bbaafdb762b3907945740f787058a6aabff5e27377f9b45e4bb08ff3","2b8264b2fefd7367e0f20e2c04eed5d3038831fe00f5efbc110ff0131aab899b","c555dd691dd05955e99cd93dd99c685a65e5287813ccb5e6bfde951183248e26","65455ea1b00bae7bd26d3c8c2401eb3d10401c09c55192d6f3b8b2275eda20c2","b91aaad5f9c3f5dca5e8245d5f6464bdc63a77ba4453bb3e2d0c93959cddb13c","98437d5a640b67c41534f0de2dcb64c75433dcdff54ff8f8432e613663619a2e",{"version":"cffd3848b7af4922d70028c805b7df5e8f0eac4a8d2410b0f55b47ca62c6c3a8","affectsGlobalScope":true},"199f9ead0daf25ae4c5632e3d1f42570af59685294a38123eef457407e13f365","3169db033165677f1d414baf0c82ba27801089ca1b66d97af464512a47df31b5","db1bcf6210cc48986c17a758bff8dca8c4b93c3e9cc6cefd50316dcc5f90e1d1","67fc055eb86a0632e2e072838f889ffe1754083cb13c8c80a06a7d895d877aae","41422586881bcd739b4e62d9b91cd29909f8572aa3e3cdf316b7c50f14708d49","d558a0fe921ebcc88d3212c2c42108abf9f0d694d67ebdeba37d7728c044f579","4e22b9ea2805fec5f3c120146a690e5604a3117dbdee648c85393f58422eec16","2887592574fcdfd087647c539dcb0fbe5af2521270dad4a37f9d17c16190d579","bee79f5862fe1278d2ba275298862bce3f7abf1e59d9c669c4b9a4b2bba96956","a937bfb110176509a5fd6308b823e795525e7af8a12f1833f6567da6953ed035","6f56706c6828d0299f46f8b1a79ecae0757b91b48e63baf6f0c5292d02037129","4fb0b7d532aa6fb850b6cd2f1ee4f00802d877b5c66a51903bc1fb0624126349","b90c59ac4682368a01c83881b814738eb151de8a58f52eb7edadea2bcffb11b9","8560a87b2e9f8e2c3808c8f6172c9b7eb6c9b08cb9f937db71c285ecf292c81d","ffe3931ff864f28d80ae2f33bd11123ad3d7bad9896b910a1e61504cc093e1f5","083c1bd82f8dc3a1ed6fc9e8eaddf141f7c05df418eca386598821e045253af9","274ebe605bd7f71ce161f9f5328febc7d547a2929f803f04b44ec4a7d8729517","6ca0207e70d985a24396583f55836b10dc181063ab6069733561bfde404d1bad","5908142efeaab38ffdf43927ee0af681ae77e0d7672b956dfb8b6c705dbfe106","f772b188b943549b5c5eb803133314b8aa7689eced80eed0b70e2f30ca07ab9c","0026b816ef05cfbf290e8585820eef0f13250438669107dfc44482bac007b14f","8ef5aad624890acfe0fa48230edce255f00934016d16acb8de0edac0ea5b21bb","9af6248ff4baf0c1ddc62bb0bc43197437bd5fb2c95ff8e10e4cf2e699ea45c1","d84398556ba4595ee6be554671da142cfe964cbdebb2f0c517a10f76f2b016c0","89b42f8ee5d387a39db85ee2c7123a391c3ede266a2bcd502c85ad55626c3b2b","99c7f3bbc03f6eb3e663c26c104d639617620c2925e76fc284f7bedf1877fa2b",{"version":"5b3e6ce357a7a1a07c858432a3d2002750058725874db09a03a0a9e899d861f5","affectsGlobalScope":true},"77c5c7f8578d139c74102a29384f5f4f0792a12d819ddcdcaf8307185ff2d45d","3bdd93ec24853e61bfa4c63ebaa425ff3e474156e87a47d90122e1d8cc717c1f","1a81627b04dd2feab19e26d3df04e79f50d5dae42b9b5f9181d23dc820c9f048","b2d70a269840a9528db473ac7565442434333a05c1f66801a7a672e82beb903e"],"options":{"composite":true,"declaration":true,"declarationMap":true,"esModuleInterop":true,"jsx":2,"module":1,"noEmitOnError":false,"outDir":"./lib","rootDir":"./src","skipLibCheck":true,"sourceMap":true,"target":6},"fileIdsList":[[154,155,162],[154,155],[38,40,154,155],[149,154,155],[148,154,155],[154,155,162,163,164,165,166],[154,155,162,164],[154,155,168],[154,155,169,170],[154,155,169],[154,155,190,226],[154,155,189,226,229],[154,155,232],[38,154,155],[154,155,204,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,319,320],[154,155,321],[154,155,299,300,321],[154,155,204,298,302,321],[154,155,204,303,304,321],[154,155,204,303,321],[154,155,204,298,303,321],[154,155,204,309,321],[154,155,204,321],[154,155,317,318,321],[154,155,298,318,321],[154,155,204,298],[154,155,302],[154,155,204],[154,155,298,321],[154,155,323],[154,155,323,324],[154,155,333,334,336],[154,155,333],[154,155,330,332],[154,155,331],[154,155,228],[154,155,228,344,345],[154,155,192,214,226,349,350],[154,155,192,206,226],[154,155,224],[154,155,223,224],[154,155,189,190,197,206],[154,155,179,189,197],[154,155,215],[154,155,183,190,198],[154,155,206,211],[154,155,186,189,197],[154,155,187],[154,155,186],[154,155,189],[154,155,189,191,206,214],[154,155,189,190],[154,155,197,206,214],[154,155,189,190,192,197,206,211,214],[154,155,192,211,214],[154,155,225],[154,155,214],[154,155,186,189,206],[154,155,199],[154,155,177],[154,155,213],[154,155,204,215,218],[154,155,189,207],[154,155,206],[154,155,209],[154,155,197],[154,155,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221,222],[154,155,203],[154,155,216],[154,155,183,189,191,200,206,214,218],[154,155,226],[38,154,155,360],[34,35,36,37,154,155],[154,155,192,226],[35,38,39,154,155],[154,155,206,226],[154,155,368],[154,155,226,232,370],[154,155,226,374,375,376,377,378,379,380,381,382,383,384],[154,155,373,374,383],[154,155,374,383],[154,155,364,373,374,383],[154,155,374],[154,155,183,373,383],[154,155,373,374,375,376,377,378,379,380,381,382,384],[154,155,183,226,366,368,369,372,385],[154,155,189,192,194,206,211,214,220,226],[154,155,389],[154,155,189,206,226],[48,49,55,56,154,155],[57,121,122,154,155],[48,55,57,154,155],[49,57,154,155],[48,50,51,52,55,57,60,61,154,155],[51,62,76,77,154,155],[48,55,60,61,62,154,155],[48,50,55,57,59,60,61,154,155],[48,49,60,61,62,154,155],[47,63,68,75,78,79,120,123,145,154,155],[48,154,155],[49,53,54,154,155],[49,53,54,55,56,58,69,70,71,72,73,74,154,155],[49,54,55,154,155],[49,154,155],[48,49,54,55,57,70,154,155],[55,154,155],[49,55,56,154,155],[53,55,154,155],[62,76,154,155],[48,50,51,52,55,60,154,155],[48,55,58,61,154,155],[51,59,60,61,64,65,66,67,154,155],[61,154,155],[48,50,55,57,59,61,154,155],[57,60,154,155],[48,55,59,60,61,73,154,155],[57,154,155],[48,55,61,154,155],[49,55,60,71,154,155],[60,124,154,155],[57,61,154,155],[55,60,154,155],[60,154,155],[48,58,154,155],[48,55,154,155],[55,60,61,154,155],[80,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,154,155],[60,61,154,155],[50,55,154,155],[48,50,55,61,154,155],[48,50,55,154,155],[48,55,57,59,60,61,73,80,154,155],[81,82,83,84,85,86,87,88,89,90,91,92,93,94,95,96,97,98,99,100,101,102,103,104,105,106,107,108,109,110,111,112,113,114,115,116,117,118,119,154,155],[73,81,154,155],[81,154,155],[48,55,57,60,80,81,154,155],[154,155,326,327],[154,155,326,327,328,329],[154,155,235,236,237,238,239,240,241,242,243,244,245,246,247,248,249,254,255,257,259,260,261,262,263,264,265,266,267,268,269,270,271,272,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297],[154,155,235,237,242],[154,155,237,274],[154,155,236,241],[154,155,235,236,237,238,239,240],[154,155,236,237],[154,155,237,273],[154,155,235,236,237,242],[154,155,235,236,250],[154,155,235,236,237,238,241],[154,155,235,236],[154,155,236],[154,155,235,237,241,242],[154,155,236,237,238,241,274],[154,155,241],[154,155,241,281],[154,155,235,236,237,241],[154,155,236,237,238,241],[154,155,235,236,237,241,242],[154,155,298],[154,155,235,236,249],[154,155,251,252],[154,155,235,236,250,251],[154,155,235,236,249,250,252],[154,155,251],[154,155,235,236,251,252],[154,155,258],[154,155,253],[154,155,256],[154,155,235,241],[154,155,335],[38,40,45,154,155],[146,154,155],[45,151,152,153,154,155,156,158,160],[43,150,154,155],[43,154,155],[43,146,147,154,155,159],[43,44,154,155],[154,155,157],[38,41,42,154,155]],"referencedMap":[[164,1],[162,2],[159,2],[41,3],[150,4],[149,5],[148,2],[167,6],[163,1],[165,7],[166,1],[44,2],[169,8],[171,9],[170,10],[168,2],[172,2],[173,2],[174,2],[227,11],[228,2],[230,12],[231,11],[233,13],[39,14],[234,2],[321,15],[299,16],[301,17],[300,16],[303,18],[305,19],[306,20],[307,21],[308,19],[309,20],[310,19],[311,22],[312,20],[313,19],[318,23],[319,24],[320,25],[314,26],[304,27],[315,28],[302,28],[316,29],[322,2],[323,2],[324,30],[325,31],[337,32],[338,33],[333,34],[332,35],[331,2],[339,2],[340,2],[341,2],[342,2],[343,36],[344,2],[346,37],[347,13],[229,2],[348,2],[350,2],[351,38],[349,39],[224,2],[175,40],[177,2],[225,41],[178,2],[179,42],[180,43],[181,44],[182,45],[183,46],[184,47],[185,2],[186,48],[187,49],[188,50],[189,50],[190,51],[191,52],[176,2],[221,2],[192,53],[193,54],[194,55],[226,56],[195,50],[196,57],[197,58],[198,2],[199,59],[200,60],[201,61],[202,2],[203,2],[204,50],[205,62],[206,63],[207,64],[208,2],[209,2],[210,65],[211,66],[212,2],[223,67],[213,66],[214,68],[215,69],[216,2],[217,64],[218,2],[222,2],[219,70],[220,64],[352,2],[353,50],[354,2],[355,2],[356,2],[345,2],[334,71],[357,2],[358,2],[36,2],[359,2],[360,72],[34,2],[38,73],[361,2],[362,2],[37,2],[363,74],[364,2],[365,2],[40,75],[366,2],[367,2],[317,76],[369,77],[232,2],[371,78],[387,2],[385,79],[384,80],[375,81],[376,82],[377,82],[378,81],[379,81],[380,81],[381,83],[374,84],[382,80],[383,85],[373,2],[386,86],[372,2],[388,87],[389,2],[390,88],[391,89],[157,2],[35,2],[155,2],[154,2],[57,90],[123,91],[122,92],[121,93],[62,94],[78,95],[76,96],[77,97],[63,98],[146,99],[48,2],[50,2],[51,100],[52,2],[55,101],[58,2],[75,102],[53,2],[70,103],[56,104],[71,105],[74,106],[69,107],[72,106],[49,2],[54,2],[73,108],[79,109],[67,2],[61,110],[59,111],[68,112],[65,113],[64,113],[60,114],[66,115],[80,116],[142,117],[136,118],[129,119],[128,120],[137,121],[138,106],[130,122],[143,123],[124,124],[125,125],[126,126],[145,127],[127,120],[131,123],[132,128],[139,129],[140,104],[141,128],[133,126],[144,106],[134,130],[135,131],[81,132],[120,133],[84,134],[85,134],[86,134],[87,134],[88,134],[89,134],[90,134],[91,134],[110,134],[92,134],[93,134],[94,134],[95,134],[96,134],[97,134],[117,134],[98,134],[99,134],[100,134],[115,134],[101,134],[116,134],[102,134],[113,134],[114,134],[103,134],[104,134],[105,134],[111,134],[112,134],[106,134],[107,134],[108,134],[109,134],[118,134],[119,134],[83,135],[82,136],[47,2],[326,2],[328,137],[330,138],[329,137],[327,2],[298,139],[248,140],[246,140],[273,141],[261,142],[241,143],[238,144],[274,145],[247,146],[249,147],[242,148],[237,149],[235,150],[297,2],[243,151],[271,142],[272,142],[275,152],[276,142],[277,142],[278,142],[279,142],[280,142],[281,153],[282,154],[283,142],[239,142],[284,142],[285,142],[286,153],[287,142],[288,142],[289,155],[290,142],[291,152],[292,142],[240,142],[293,142],[294,142],[295,156],[244,157],[296,158],[250,159],[258,160],[253,160],[252,161],[251,162],[256,163],[260,164],[259,165],[254,166],[255,163],[257,167],[245,2],[236,168],[266,2],[267,2],[268,2],[270,2],[269,2],[264,2],[265,153],[263,2],[262,150],[368,2],[336,169],[335,2],[7,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[4,2],[21,2],[18,2],[19,2],[20,2],[22,2],[23,2],[24,2],[5,2],[25,2],[26,2],[27,2],[28,2],[6,2],[29,2],[30,2],[31,2],[32,2],[1,2],[33,2],[370,13],[46,170],[147,171],[161,172],[151,173],[152,174],[160,175],[45,176],[153,2],[156,174],[158,177],[42,14],[43,178]],"exportedModulesMap":[[164,1],[162,2],[159,2],[41,3],[150,4],[149,5],[148,2],[167,6],[163,1],[165,7],[166,1],[44,2],[169,8],[171,9],[170,10],[168,2],[172,2],[173,2],[174,2],[227,11],[228,2],[230,12],[231,11],[233,13],[39,14],[234,2],[321,15],[299,16],[301,17],[300,16],[303,18],[305,19],[306,20],[307,21],[308,19],[309,20],[310,19],[311,22],[312,20],[313,19],[318,23],[319,24],[320,25],[314,26],[304,27],[315,28],[302,28],[316,29],[322,2],[323,2],[324,30],[325,31],[337,32],[338,33],[333,34],[332,35],[331,2],[339,2],[340,2],[341,2],[342,2],[343,36],[344,2],[346,37],[347,13],[229,2],[348,2],[350,2],[351,38],[349,39],[224,2],[175,40],[177,2],[225,41],[178,2],[179,42],[180,43],[181,44],[182,45],[183,46],[184,47],[185,2],[186,48],[187,49],[188,50],[189,50],[190,51],[191,52],[176,2],[221,2],[192,53],[193,54],[194,55],[226,56],[195,50],[196,57],[197,58],[198,2],[199,59],[200,60],[201,61],[202,2],[203,2],[204,50],[205,62],[206,63],[207,64],[208,2],[209,2],[210,65],[211,66],[212,2],[223,67],[213,66],[214,68],[215,69],[216,2],[217,64],[218,2],[222,2],[219,70],[220,64],[352,2],[353,50],[354,2],[355,2],[356,2],[345,2],[334,71],[357,2],[358,2],[36,2],[359,2],[360,72],[34,2],[38,73],[361,2],[362,2],[37,2],[363,74],[364,2],[365,2],[40,75],[366,2],[367,2],[317,76],[369,77],[232,2],[371,78],[387,2],[385,79],[384,80],[375,81],[376,82],[377,82],[378,81],[379,81],[380,81],[381,83],[374,84],[382,80],[383,85],[373,2],[386,86],[372,2],[388,87],[389,2],[390,88],[391,89],[157,2],[35,2],[155,2],[154,2],[57,90],[123,91],[122,92],[121,93],[62,94],[78,95],[76,96],[77,97],[63,98],[146,99],[48,2],[50,2],[51,100],[52,2],[55,101],[58,2],[75,102],[53,2],[70,103],[56,104],[71,105],[74,106],[69,107],[72,106],[49,2],[54,2],[73,108],[79,109],[67,2],[61,110],[59,111],[68,112],[65,113],[64,113],[60,114],[66,115],[80,116],[142,117],[136,118],[129,119],[128,120],[137,121],[138,106],[130,122],[143,123],[124,124],[125,125],[126,126],[145,127],[127,120],[131,123],[132,128],[139,129],[140,104],[141,128],[133,126],[144,106],[134,130],[135,131],[81,132],[120,133],[84,134],[85,134],[86,134],[87,134],[88,134],[89,134],[90,134],[91,134],[110,134],[92,134],[93,134],[94,134],[95,134],[96,134],[97,134],[117,134],[98,134],[99,134],[100,134],[115,134],[101,134],[116,134],[102,134],[113,134],[114,134],[103,134],[104,134],[105,134],[111,134],[112,134],[106,134],[107,134],[108,134],[109,134],[118,134],[119,134],[83,135],[82,136],[47,2],[326,2],[328,137],[330,138],[329,137],[327,2],[298,139],[248,140],[246,140],[273,141],[261,142],[241,143],[238,144],[274,145],[247,146],[249,147],[242,148],[237,149],[235,150],[297,2],[243,151],[271,142],[272,142],[275,152],[276,142],[277,142],[278,142],[279,142],[280,142],[281,153],[282,154],[283,142],[239,142],[284,142],[285,142],[286,153],[287,142],[288,142],[289,155],[290,142],[291,152],[292,142],[240,142],[293,142],[294,142],[295,156],[244,157],[296,158],[250,159],[258,160],[253,160],[252,161],[251,162],[256,163],[260,164],[259,165],[254,166],[255,163],[257,167],[245,2],[236,168],[266,2],[267,2],[268,2],[270,2],[269,2],[264,2],[265,153],[263,2],[262,150],[368,2],[336,169],[335,2],[7,2],[9,2],[8,2],[2,2],[10,2],[11,2],[12,2],[13,2],[14,2],[15,2],[16,2],[17,2],[3,2],[4,2],[21,2],[18,2],[19,2],[20,2],[22,2],[23,2],[24,2],[5,2],[25,2],[26,2],[27,2],[28,2],[6,2],[29,2],[30,2],[31,2],[32,2],[1,2],[33,2],[370,13],[46,170],[147,171],[161,172],[151,173],[152,174],[160,175],[45,176],[153,2],[156,174],[158,177],[42,14],[43,178]],"semanticDiagnosticsPerFile":[164,162,159,41,150,149,148,167,163,165,166,44,169,171,170,168,172,173,174,227,228,230,231,233,39,234,321,299,301,300,303,305,306,307,308,309,310,311,312,313,318,319,320,314,304,315,302,316,322,323,324,325,337,338,333,332,331,339,340,341,342,343,344,346,347,229,348,350,351,349,224,175,177,225,178,179,180,181,182,183,184,185,186,187,188,189,190,191,176,221,192,193,194,226,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,223,213,214,215,216,217,218,222,219,220,352,353,354,355,356,345,334,357,358,36,359,360,34,38,361,362,37,363,364,365,40,366,367,317,369,232,371,387,385,384,375,376,377,378,379,380,381,374,382,383,373,386,372,388,389,390,391,157,35,155,154,57,123,122,121,62,78,76,77,63,146,48,50,51,52,55,58,75,53,70,56,71,74,69,72,49,54,73,79,67,61,59,68,65,64,60,66,80,142,136,129,128,137,138,130,143,124,125,126,145,127,131,132,139,140,141,133,144,134,135,81,120,84,85,86,87,88,89,90,91,110,92,93,94,95,96,97,117,98,99,100,115,101,116,102,113,114,103,104,105,111,112,106,107,108,109,118,119,83,82,47,326,328,330,329,327,298,248,246,273,261,241,238,274,247,249,242,237,235,297,243,271,272,275,276,277,278,279,280,281,282,283,239,284,285,286,287,288,289,290,291,292,240,293,294,295,244,296,250,258,253,252,251,256,260,259,254,255,257,245,236,266,267,268,270,269,264,265,263,262,368,336,335,7,9,8,2,10,11,12,13,14,15,16,17,3,4,21,18,19,20,22,23,24,5,25,26,27,28,6,29,30,31,32,1,33,370,46,147,161,151,152,160,45,153,156,158,42,43]},"version":"4.6.4"}
|